diff --git a/.version b/.version
index 770bde1f44b3d407b56396ef4614d70990bd08a1..360de6347ae2525da923af8badfd4263712327fd 100644
--- a/.version
+++ b/.version
@@ -1 +1 @@
-18.09
+19.03
\ No newline at end of file
diff --git a/default.nix b/default.nix
index 180815d4d6de90e35d846f35e05396f0c6f97bb8..f4b2640ac5a0eebed6450a0d5cb36fe3bcd3f622 100644
--- a/default.nix
+++ b/default.nix
@@ -15,6 +15,12 @@ if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.
it is safe to upgrade by running it again:
curl https://nixos.org/nix/install | sh
+
+ For more information, please see the NixOS release notes at
+ https://nixos.org/nixos/manual or locally at
+ ${toString ./doc/manual/release-notes}.
+
+ If you need further help, see https://nixos.org/nixos/support.html
''
else
diff --git a/doc/configuration.xml b/doc/configuration.xml
index c91f38f309300b2c4d0b7686d46c3cd4961ac31c..af74f3f9c01fbf07ec6bf8cf672f188290e5ebd6 100644
--- a/doc/configuration.xml
+++ b/doc/configuration.xml
@@ -325,7 +325,7 @@
};
};
}
-
+
To install it into our environment, you can just run nix-env -iA
@@ -347,7 +347,7 @@
};
};
}
-
+
pathsToLink tells Nixpkgs to only link the paths listed
@@ -383,7 +383,7 @@
};
};
}
-
+
This provides us with some useful documentation for using our packages.
@@ -395,15 +395,15 @@
{
packageOverrides = pkgs: with pkgs; rec {
myProfile = writeText "my-profile" ''
-export PATH=$HOME/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/sbin:/bin:/usr/sbin:/usr/bin
-export MANPATH=$HOME/.nix-profile/share/man:/nix/var/nix/profiles/default/share/man:/usr/share/man
+ export PATH=$HOME/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/sbin:/bin:/usr/sbin:/usr/bin
+ export MANPATH=$HOME/.nix-profile/share/man:/nix/var/nix/profiles/default/share/man:/usr/share/man
'';
myPackages = pkgs.buildEnv {
name = "my-packages";
paths = [
(runCommand "profile" {} ''
-mkdir -p $out/etc/profile.d
-cp ${myProfile} $out/etc/profile.d/my-profile.sh
+ mkdir -p $out/etc/profile.d
+ cp ${myProfile} $out/etc/profile.d/my-profile.sh
'')
aspell
bc
@@ -421,7 +421,7 @@ cp ${myProfile} $out/etc/profile.d/my-profile.sh
};
};
}
-
+
For this to work fully, you must also have this script sourced when you are
@@ -438,7 +438,7 @@ if [ -d $HOME/.nix-profile/etc/profile.d ]; then
fi
done
fi
-
+
Now just run source $HOME/.profile and you can starting
@@ -459,16 +459,16 @@ fi
{
packageOverrides = pkgs: with pkgs; rec {
myProfile = writeText "my-profile" ''
-export PATH=$HOME/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/sbin:/bin:/usr/sbin:/usr/bin
-export MANPATH=$HOME/.nix-profile/share/man:/nix/var/nix/profiles/default/share/man:/usr/share/man
-export INFOPATH=$HOME/.nix-profile/share/info:/nix/var/nix/profiles/default/share/info:/usr/share/info
+ export PATH=$HOME/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/sbin:/bin:/usr/sbin:/usr/bin
+ export MANPATH=$HOME/.nix-profile/share/man:/nix/var/nix/profiles/default/share/man:/usr/share/man
+ export INFOPATH=$HOME/.nix-profile/share/info:/nix/var/nix/profiles/default/share/info:/usr/share/info
'';
myPackages = pkgs.buildEnv {
name = "my-packages";
paths = [
(runCommand "profile" {} ''
-mkdir -p $out/etc/profile.d
-cp ${myProfile} $out/etc/profile.d/my-profile.sh
+ mkdir -p $out/etc/profile.d
+ cp ${myProfile} $out/etc/profile.d/my-profile.sh
'')
aspell
bc
@@ -485,17 +485,17 @@ cp ${myProfile} $out/etc/profile.d/my-profile.sh
pathsToLink = [ "/share/man" "/share/doc" "/share/info" "/bin" "/etc" ];
extraOutputsToInstall = [ "man" "doc" "info" ];
postBuild = ''
- if [ -x $out/bin/install-info -a -w $out/share/info ]; then
- shopt -s nullglob
- for i in $out/share/info/*.info $out/share/info/*.info.gz; do
- $out/bin/install-info $i $out/share/info/dir
- done
- fi
+ if [ -x $out/bin/install-info -a -w $out/share/info ]; then
+ shopt -s nullglob
+ for i in $out/share/info/*.info $out/share/info/*.info.gz; do
+ $out/bin/install-info $i $out/share/info/dir
+ done
+ fi
'';
};
};
}
-
+
postBuild tells Nixpkgs to run a command after building
diff --git a/doc/cross-compilation.xml b/doc/cross-compilation.xml
index a7b43aeec23f9fd763d64d1cc9e876db9bca2652..3b90596bcc2c6f1ea030aad6d5f874de95e4298d 100644
--- a/doc/cross-compilation.xml
+++ b/doc/cross-compilation.xml
@@ -30,7 +30,7 @@
Packaging in a cross-friendly manner
-
+
Platform parameters
@@ -219,7 +219,7 @@
-
+
Specifying Dependencies
@@ -304,7 +304,7 @@
-
+
Cross packaging cookbook
@@ -317,7 +317,7 @@
-
+
What if my package's build system needs to build a C program to be run
@@ -331,7 +331,7 @@
-
+
My package fails to find ar.
@@ -347,7 +347,7 @@
-
+
My package's testsuite needs to run host platform code.
diff --git a/doc/functions.xml b/doc/functions.xml
index 2a9cc44d5c5bb8b708eb04503045a30c7eec0b5c..3cfc6884bd261e6abc09ff59bf66ee2bc8b0dd3a 100644
--- a/doc/functions.xml
+++ b/doc/functions.xml
@@ -1,6 +1,7 @@
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:xi="http://www.w3.org/2001/XInclude"
+ xml:id="chap-functions">
Functions reference
The nixpkgs repository has several utility functions to manipulate Nix
@@ -30,12 +31,16 @@
Example usages:
pkgs.foo.override { arg1 = val1; arg2 = val2; ... }
-import pkgs.path { overlays = [ (self: super: {
- foo = super.foo.override { barSupport = true ; };
- })]};
-mypkg = pkgs.callPackage ./mypkg.nix {
- mydep = pkgs.mydep.override { ... };
- }
+
+import pkgs.path { overlays = [ (self: super: {
+ foo = super.foo.override { barSupport = true ; };
+ })]};
+
+
+mypkg = pkgs.callPackage ./mypkg.nix {
+ mydep = pkgs.mydep.override { ... };
+ }
+
@@ -60,9 +65,11 @@
Example usage:
-helloWithDebug = pkgs.hello.overrideAttrs (oldAttrs: rec {
- separateDebugInfo = true;
- });
+
+helloWithDebug = pkgs.hello.overrideAttrs (oldAttrs: rec {
+ separateDebugInfo = true;
+});
+
@@ -133,14 +140,16 @@
Example usage:
-mySed = pkgs.gnused.overrideDerivation (oldAttrs: {
- name = "sed-4.2.2-pre";
- src = fetchurl {
- url = ftp://alpha.gnu.org/gnu/sed/sed-4.2.2-pre.tar.bz2;
- sha256 = "11nq06d131y4wmf3drm0yk502d2xc6n5qy82cg88rb9nqd2lj41k";
- };
- patches = [];
- });
+
+mySed = pkgs.gnused.overrideDerivation (oldAttrs: {
+ name = "sed-4.2.2-pre";
+ src = fetchurl {
+ url = ftp://alpha.gnu.org/gnu/sed/sed-4.2.2-pre.tar.bz2;
+ sha256 = "11nq06d131y4wmf3drm0yk502d2xc6n5qy82cg88rb9nqd2lj41k";
+ };
+ patches = [];
+});
+
@@ -180,8 +189,10 @@
Example usage:
-f = { a, b }: { result = a+b; }
- c = lib.makeOverridable f { a = 1; b = 2; }
+
+f = { a, b }: { result = a+b; };
+c = lib.makeOverridable f { a = 1; b = 2; };
+
@@ -444,6 +455,7 @@ merge:"diff3"
./bin/start.sh -- relative paths are supported.
+
pkgs.dockerTools
@@ -480,29 +492,29 @@ merge:"diff3"
Docker build
- buildImage {
- name = "redis";
- tag = "latest";
-
- fromImage = someBaseImage;
- fromImageName = null;
- fromImageTag = "latest";
-
- contents = pkgs.redis;
- runAsRoot = ''
- #!${stdenv.shell}
- mkdir -p /data
- '';
-
- config = {
- Cmd = [ "/bin/redis-server" ];
- WorkingDir = "/data";
- Volumes = {
- "/data" = {};
- };
+buildImage {
+ name = "redis";
+ tag = "latest";
+
+ fromImage = someBaseImage;
+ fromImageName = null;
+ fromImageTag = "latest";
+
+ contents = pkgs.redis;
+ runAsRoot = ''
+ #!${stdenv.shell}
+ mkdir -p /data
+ '';
+
+ config = {
+ Cmd = [ "/bin/redis-server" ];
+ WorkingDir = "/data";
+ Volumes = {
+ "/data" = {};
};
- }
-
+ };
+}
+
@@ -521,7 +533,8 @@ merge:"diff3"
tag specifies the tag of the resulting image. By
- default it's null, which indicates that the nix output hash will be used as tag.
+ default it's null, which indicates that the nix output
+ hash will be used as tag.
@@ -644,15 +657,15 @@ merge:"diff3"
Docker pull
- pullImage {
- imageName = "nixos/nix";
- imageDigest = "sha256:20d9485b25ecfd89204e843a962c1bd70e9cc6858d65d7f5fadc340246e2116b";
- finalImageTag = "1.11";
- sha256 = "0mqjy3zq2v6rrhizgb9nvhczl87lcfphq9601wcprdika2jz7qh8";
- os = "linux";
- arch = "x86_64";
- }
-
+pullImage {
+ imageName = "nixos/nix";
+ imageDigest = "sha256:20d9485b25ecfd89204e843a962c1bd70e9cc6858d65d7f5fadc340246e2116b";
+ finalImageTag = "1.11";
+ sha256 = "0mqjy3zq2v6rrhizgb9nvhczl87lcfphq9601wcprdika2jz7qh8";
+ os = "linux";
+ arch = "x86_64";
+}
+
@@ -667,16 +680,16 @@ merge:"diff3"
imageDigest specifies the digest of the image to be
downloaded. Skopeo can be used to get the digest of an image, with its
- inspect subcommand. Since a given imageName
- may transparently refer to a manifest list of images which support
- multiple architectures and/or operating systems, supply the `--override-os`
- and `--override-arch` arguments to specify exactly which image you
- want. By default it will match the OS and architecture of the host the
- command is run on.
+ inspect subcommand. Since a given
+ imageName may transparently refer to a manifest list
+ of images which support multiple architectures and/or operating systems,
+ supply the `--override-os` and `--override-arch` arguments to specify
+ exactly which image you want. By default it will match the OS and
+ architecture of the host the command is run on.
- $ nix-shell --packages skopeo jq --command "skopeo --override-os linux --override-arch x86_64 inspect docker://docker.io/nixos/nix:1.11 | jq -r '.Digest'"
- sha256:20d9485b25ecfd89204e843a962c1bd70e9cc6858d65d7f5fadc340246e2116b
-
+$ nix-shell --packages skopeo jq --command "skopeo --override-os linux --override-arch x86_64 inspect docker://docker.io/nixos/nix:1.11 | jq -r '.Digest'"
+sha256:20d9485b25ecfd89204e843a962c1bd70e9cc6858d65d7f5fadc340246e2116b
+
This argument is required.
@@ -695,16 +708,16 @@ merge:"diff3"
-
- os, if specified, is the operating system of the fetched image.
- By default it's linux.
-
+
+ os, if specified, is the operating system of the
+ fetched image. By default it's linux.
+
-
- arch, if specified, is the cpu architecture of the fetched image.
- By default it's x86_64.
-
+
+ arch, if specified, is the cpu architecture of the
+ fetched image. By default it's x86_64.
+
@@ -734,13 +747,13 @@ merge:"diff3"
Docker export
- exportImage {
- fromImage = someLayeredImage;
- fromImageName = null;
- fromImageTag = null;
+exportImage {
+ fromImage = someLayeredImage;
+ fromImageName = null;
+ fromImageTag = null;
- name = someLayeredImage.name;
- }
+ name = someLayeredImage.name;
+}
@@ -771,19 +784,19 @@ merge:"diff3"
Shadow base files
- buildImage {
- name = "shadow-basic";
-
- runAsRoot = ''
- #!${stdenv.shell}
- ${shadowSetup}
- groupadd -r redis
- useradd -r -g redis redis
- mkdir /data
- chown redis:redis /data
- '';
- }
-
+buildImage {
+ name = "shadow-basic";
+
+ runAsRoot = ''
+ #!${stdenv.shell}
+ ${shadowSetup}
+ groupadd -r redis
+ useradd -r -g redis redis
+ mkdir /data
+ chown redis:redis /data
+ '';
+}
+
diff --git a/doc/languages-frameworks/java.xml b/doc/languages-frameworks/java.xml
index 1acea6a7547a8fa357acbd4738adf5e3c45b3f8a..667a795a8d3ac50a558c4a4d01cee7d96f4de47a 100644
--- a/doc/languages-frameworks/java.xml
+++ b/doc/languages-frameworks/java.xml
@@ -16,18 +16,17 @@ stdenv.mkDerivation {
}
Note that jdk is an alias for the OpenJDK (self-built
- where available, or pre-built via Zulu).
- Platforms with OpenJDK not (yet) in Nixpkgs (Aarch32,
- Aarch64) point to the (unfree)
- oraclejdk.
-
+ where available, or pre-built via Zulu). Platforms with OpenJDK not (yet) in
+ Nixpkgs (Aarch32, Aarch64) point to the
+ (unfree) oraclejdk.
+
JAR files that are intended to be used by other packages should be installed
- in $out/share/java. JDKs have a stdenv setup hook
- that add any JARs in the share/java directories of the
- build inputs to the CLASSPATH environment variable. For
- instance, if the package libfoo installs a JAR named
+ in $out/share/java. JDKs have a stdenv setup hook that
+ add any JARs in the share/java directories of the build
+ inputs to the CLASSPATH environment variable. For instance, if
+ the package libfoo installs a JAR named
foo.jar in its share/java
directory, and another package declares the attribute
@@ -61,18 +60,17 @@ installPhase =
${jre}/bin/java instead of
${jdk}/bin/java, you prevent your package from depending
on the JDK at runtime.
-
+
-
+
Note all JDKs passthru home, so if your application
requires environment variables like JAVA_HOME being set, that
can be done in a generic fashion with the --set argument
of makeWrapper:
-
--set JAVA_HOME ${jdk.home}
-
+
It is possible to use a different Java compiler than javac
diff --git a/doc/languages-frameworks/node.section.md b/doc/languages-frameworks/node.section.md
index 17a203ed12befb2f34a70b1b2be1aa6f9a736339..f6701c1ab9c447f4aa438afdd974e6e904512ac3 100644
--- a/doc/languages-frameworks/node.section.md
+++ b/doc/languages-frameworks/node.section.md
@@ -14,7 +14,7 @@ project.
The package set also provides support for multiple Node.js versions. The policy
is that a new package should be added to the collection for the latest stable LTS
-release (which is currently 6.x), unless there is an explicit reason to support
+release (which is currently 8.x), unless there is an explicit reason to support
a different release.
If your package uses native addons, you need to examine what kind of native
@@ -26,7 +26,7 @@ build system it uses. Here are some examples:
After you have identified the correct system, you need to override your package
expression while adding in build system as a build input. For example, `dat`
-requires `node-gyp-build`, so we override its expression in `default-v6.nix`:
+requires `node-gyp-build`, so we override its expression in `default-v8.nix`:
```nix
dat = nodePackages.dat.override (oldAttrs: {
@@ -36,14 +36,14 @@ dat = nodePackages.dat.override (oldAttrs: {
To add a package from NPM to nixpkgs:
- 1. Modify `pkgs/development/node-packages/node-packages-v6.json` to add, update
- or remove package entries. (Or `pkgs/development/node-packages/node-packages-v4.json`
- for packages depending on Node.js 4.x)
+ 1. Modify `pkgs/development/node-packages/node-packages-v8.json` to add, update
+ or remove package entries. (Or `pkgs/development/node-packages/node-packages-v10.json`
+ for packages depending on Node.js 10.x)
2. Run the script: `(cd pkgs/development/node-packages && ./generate.sh)`.
3. Build your new package to test your changes:
`cd /path/to/nixpkgs && nix-build -A nodePackages.`.
- To build against a specific Node.js version (e.g. 4.x):
- `nix-build -A nodePackages_4_x.`
+ To build against a specific Node.js version (e.g. 10.x):
+ `nix-build -A nodePackages_10_x.`
4. Add and commit all modified and generated files.
For more information about the generation process, consult the
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index 93eb5af0f2cc08d19f87651f33a33381d8502d1e..5eabb866654ef54518eb00a46a1123577fd54b5a 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -645,9 +645,15 @@ in python.withPackages(ps: [ps.blaze])).env
#### `buildPythonApplication` function
-The `buildPythonApplication` function is practically the same as `buildPythonPackage`.
-The difference is that `buildPythonPackage` by default prefixes the names of the packages with the version of the interpreter.
-Because this is irrelevant for applications, the prefix is omitted.
+The `buildPythonApplication` function is practically the same as
+`buildPythonPackage`. The main purpose of this function is to build a Python
+package where one is interested only in the executables, and not importable
+modules. For that reason, when adding this package to a `python.buildEnv`, the
+modules won't be made available.
+
+Another difference is that `buildPythonPackage` by default prefixes the names of
+the packages with the version of the interpreter. Because this is irrelevant for
+applications, the prefix is omitted.
#### `toPythonApplication` function
@@ -1068,4 +1074,5 @@ Following rules are desired to be respected:
* Make sure libraries build for all Python interpreters.
* By default we enable tests. Make sure the tests are found and, in the case of libraries, are passing for all interpreters. If certain tests fail they can be disabled individually. Try to avoid disabling the tests altogether. In any case, when you disable tests, leave a comment explaining why.
* Commit names of Python libraries should reflect that they are Python libraries, so write for example `pythonPackages.numpy: 1.11 -> 1.12`.
-
+* Attribute names in `python-packages.nix` should be normalized according to [PEP 0503](https://www.python.org/dev/peps/pep-0503/#normalized-names).
+ This means that characters should be converted to lowercase and `.` and `_` should be replaced by a single `-` (foo-bar-baz instead of Foo__Bar.baz )
diff --git a/doc/languages-frameworks/rust.section.md b/doc/languages-frameworks/rust.section.md
index eec982d4c90ab75585121308413bcd07f43664ab..6588281878a02afad00947a8861089e2e1ede641 100644
--- a/doc/languages-frameworks/rust.section.md
+++ b/doc/languages-frameworks/rust.section.md
@@ -93,8 +93,8 @@ Now, the file produced by the call to `carnix`, called `hello.nix`, looks like:
```
# Generated by carnix 0.6.5: carnix -o hello.nix --src ./. Cargo.lock --standalone
-{ lib, buildPlatform, buildRustCrate, fetchgit }:
-let kernel = buildPlatform.parsed.kernel.name;
+{ lib, stdenv, buildRustCrate, fetchgit }:
+let kernel = stdenv.buildPlatform.parsed.kernel.name;
# ... (content skipped)
in
rec {
@@ -122,8 +122,8 @@ following nix file:
```
# Generated by carnix 0.6.5: carnix -o hello.nix --src ./. Cargo.lock --standalone
-{ lib, buildPlatform, buildRustCrate, fetchgit }:
-let kernel = buildPlatform.parsed.kernel.name;
+{ lib, stdenv, buildRustCrate, fetchgit }:
+let kernel = stdenv.buildPlatform.parsed.kernel.name;
# ... (content skipped)
in
rec {
diff --git a/doc/languages-frameworks/texlive.xml b/doc/languages-frameworks/texlive.xml
index af0b07166e3ec70b8cea0dd795989c48aafa9877..e42d0a81111165c335136a8ffc5f9ca2254ddcd6 100644
--- a/doc/languages-frameworks/texlive.xml
+++ b/doc/languages-frameworks/texlive.xml
@@ -8,7 +8,7 @@
under attribute texlive.
-
+
User's guide
@@ -68,7 +68,7 @@ nix-repl> texlive.collection-<TAB>
-
+
Known problems
diff --git a/doc/multiple-output.xml b/doc/multiple-output.xml
index 981b4b966cdf28c49173f614f9b36368f0069f62..e96e84bfe72fd259d8356f6767850c08ace8820c 100644
--- a/doc/multiple-output.xml
+++ b/doc/multiple-output.xml
@@ -6,7 +6,7 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xml:id="chap-multiple-output">
Multiple-output packages
-
+
Introduction
@@ -38,7 +38,7 @@
-
+
Installing a split package
@@ -84,7 +84,7 @@
-
+
Using a split package
@@ -102,7 +102,7 @@
also added. (See .)
-
+
Writing a split derivation
@@ -283,7 +283,7 @@
-
+
Common caveats
diff --git a/doc/old/cross.txt b/doc/old/cross.txt
index c0885c08176e9e26ab23876bfa18940a8bb7c20e..ff9fefb04a86020ae8367e9f368577aa7d0333dc 100644
--- a/doc/old/cross.txt
+++ b/doc/old/cross.txt
@@ -78,7 +78,7 @@ Step 2: build kernel headers for the target architecture
---
{stdenv, fetchurl}:
-assert stdenv.system == "i686-linux";
+assert stdenv.buildPlatform.system == "i686-linux";
stdenv.mkDerivation {
name = "linux-headers-2.6.13.1-arm";
diff --git a/doc/package-notes.xml b/doc/package-notes.xml
index 0634432fe95a34f634553970fdf95b3a7c96614f..c2aef8937b060d5af2682181246725d7ec4cae6d 100644
--- a/doc/package-notes.xml
+++ b/doc/package-notes.xml
@@ -181,7 +181,7 @@ $ cat $(PRINT_PATH=1 nix-prefetch-url $i | tail -n 1) \
- In a case a contributor leaves definitively the Nix community, he
- should create an issue or post on Discourse with
- references of packages and modules he maintains so the
- maintainership can be taken over by other contributors.
+ references of packages and modules he maintains so the maintainership can be
+ taken over by other contributors.
diff --git a/doc/stdenv.xml b/doc/stdenv.xml
index 94bd7365dd9a6ff7491585b5f55a5e0affb24f5f..7a0f8f270bad1ecedfeaa686aa2207ae45aa7cd3 100644
--- a/doc/stdenv.xml
+++ b/doc/stdenv.xml
@@ -212,7 +212,7 @@ genericBuild
platforms relative to the new derivation's, and whether they are propagated.
The platform distinctions are motivated by cross compilation; see
for exactly what each platform means.
-
+
The build platform is ignored because it is a mere implementation detail
of the package satisfying the dependency: As a general programming
@@ -233,7 +233,7 @@ genericBuild
out only for dependencies whose host platform matches the new derivation's
build platform–i.e. which run on the platform where the new derivation
will be built.
-
+
Currently, that means for native builds all dependencies are put on the
PATH. But in the future that may not be the case for sake
@@ -280,7 +280,7 @@ genericBuild
Natural
Deduction using the inference rules. This probably seems a bit
obtuse, but so is the bash code that actually implements it!
-
+
The findInputs function, currently residing in
pkgs/stdenv/generic/setup.sh, implements the
@@ -1112,7 +1112,7 @@ passthru = {
By default, the configure phase applies some special hackery to all
files called ltmain.sh before running the configure
script in order to improve the purity of Libtool-based packages
-
+
It clears the
sys_lib_*search_path
@@ -1151,7 +1151,7 @@ passthru = {
or a subset to control exactly which platform flags are passed.
Compilers and other tools should use this to also pass the target
platform, for example.
-
+
Eventually these will be passed when in native builds too, to improve
determinism: build-time guessing, as is done today, is a risk of
@@ -1740,6 +1740,29 @@ set debug-file-directory ~/.nix-profile/lib/debug
+
+
+ installCheckTarget
+
+
+
+ The make target that runs the install tests. Defaults to
+ installcheck.
+
+
+
+
+
+ installCheckFlags / installCheckFlagsArray
+
+
+
+ A list of strings passed as additional flags to make.
+ Like makeFlags and makeFlagsArray,
+ but only used by the installCheck phase.
+
+
+
installCheckInputs
@@ -2190,7 +2213,7 @@ addEnvHooks "$hostOffset" myBashFunction
clang is to be used. Secondly, this helps packages
not get confused when cross-compiling, in which case multiple Bintools
Wrappers may simultaneously be in use.
-
+
Each wrapper targets a single platform, so if binaries for multiple
platforms are needed, the underlying binaries must be wrapped multiple
diff --git a/doc/submitting-changes.xml b/doc/submitting-changes.xml
index 6c6f808f631ec497f637cb2e40b431dd57ee0b45..4a6a2c634a5820be0dd913c01152cd5f7cdce791 100644
--- a/doc/submitting-changes.xml
+++ b/doc/submitting-changes.xml
@@ -2,7 +2,7 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xml:id="chap-submitting-changes">
Submitting changes
-
+
Making patches
@@ -205,7 +205,7 @@ Additional information.
-
+
Submitting changes
@@ -253,7 +253,7 @@ Additional information.
-
+
Pull Request Template
@@ -269,7 +269,7 @@ Additional information.
below:
-
+
Tested using sandboxing
@@ -322,7 +322,7 @@ Additional information.
-
+
Built on platform(s)
@@ -334,7 +334,7 @@ Additional information.
-
+
Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
@@ -350,7 +350,7 @@ Additional information.
-
+
Tested compilation of all pkgs that depend on this change using nox-review
@@ -373,7 +373,7 @@ Additional information.
-
+
Tested execution of all binary files (usually in ./result/bin/)
@@ -387,8 +387,8 @@ Additional information.
-
- Meets nixpkgs contribution standards
+
+ Meets Nixpkgs contribution standards
The last checkbox is fits
@@ -402,7 +402,7 @@ Additional information.
-
+
Hotfixing pull requests
@@ -430,7 +430,7 @@ Additional information.
-
+
Commit policy
@@ -456,7 +456,7 @@ Additional information.
-
+
Master branch
@@ -468,7 +468,7 @@ Additional information.
-
+
Staging branch
@@ -493,7 +493,7 @@ Additional information.
-
+
Stable release branches
diff --git a/lib/attrsets.nix b/lib/attrsets.nix
index cda13ee43eedebc1bea5199d899dd864392fe58e..1e4142562fa692602f132e4945e034aac9bb861d 100644
--- a/lib/attrsets.nix
+++ b/lib/attrsets.nix
@@ -145,7 +145,7 @@ rec {
foldAttrs = op: nul: list_of_attrs:
fold (n: a:
fold (name: o:
- o // (listToAttrs [{inherit name; value = op n.${name} (a.${name} or nul); }])
+ o // { ${name} = op n.${name} (a.${name} or nul); }
) a (attrNames n)
) {} list_of_attrs;
diff --git a/lib/licenses.nix b/lib/licenses.nix
index c442d74c857c1f9944df79501b9f659db69f58ea..6f0e4217c196e778b664ca4db0a7c1fa6646c60a 100644
--- a/lib/licenses.nix
+++ b/lib/licenses.nix
@@ -546,6 +546,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
fullName = "Public Domain";
};
+ purdueBsd = {
+ fullName = " Purdue BSD-Style License"; # also know as lsof license
+ url = https://enterprise.dejacode.com/licenses/public/purdue-bsd;
+ };
+
qpl = spdx {
spdxId = "QPL-1.0";
fullName = "Q Public License 1.0";
diff --git a/lib/minver.nix b/lib/minver.nix
index 2147820c0e49e7d3946fbcc5c6d08bd1d7d1210c..fee6b65a2447e63479f0522b6d8252c6d759295c 100644
--- a/lib/minver.nix
+++ b/lib/minver.nix
@@ -1,2 +1,2 @@
# Expose the minimum required version for evaluating Nixpkgs
-"1.11"
+"2.0"
diff --git a/lib/modules.nix b/lib/modules.nix
index a443d5ec5d161861938a2bb841ecceafb789f202..5fb83a4a538ccd5cf08acaf02f41fbda3f8a0446 100644
--- a/lib/modules.nix
+++ b/lib/modules.nix
@@ -192,29 +192,53 @@ rec {
(concatMap (m: map (config: { inherit (m) file; inherit config; }) (pushDownProperties m.config)) modules);
mergeModules' = prefix: options: configs:
- listToAttrs (map (name: {
+ let
+ /* byName is like foldAttrs, but will look for attributes to merge in the
+ specified attribute name.
+
+ byName "foo" (module: value: ["module.hidden=${module.hidden},value=${value}"])
+ [
+ {
+ hidden="baz";
+ foo={qux="bar"; gla="flop";};
+ }
+ {
+ hidden="fli";
+ foo={qux="gne"; gli="flip";};
+ }
+ ]
+ ===>
+ {
+ gla = [ "module.hidden=baz,value=flop" ];
+ gli = [ "module.hidden=fli,value=flip" ];
+ qux = [ "module.hidden=baz,value=bar" "module.hidden=fli,value=gne" ];
+ }
+ */
+ byName = attr: f: modules: foldl' (acc: module:
+ foldl' (inner: name:
+ inner // { ${name} = (acc.${name} or []) ++ (f module module.${attr}.${name}); }
+ ) acc (attrNames module.${attr})
+ ) {} modules;
+ # an attrset 'name' => list of submodules that declare ‘name’.
+ declsByName = byName "options"
+ (module: option: [{ inherit (module) file; options = option; }])
+ options;
+ # an attrset 'name' => list of submodules that define ‘name’.
+ defnsByName = byName "config" (module: value:
+ map (config: { inherit (module) file; inherit config; }) (pushDownProperties value)
+ ) configs;
+ # extract the definitions for each loc
+ defnsByName' = byName "config"
+ (module: value: [{ inherit (module) file; inherit value; }])
+ configs;
+ in
+ (flip mapAttrs declsByName (name: decls:
# We're descending into attribute ‘name’.
- inherit name;
- value =
let
loc = prefix ++ [name];
- # Get all submodules that declare ‘name’.
- decls = concatMap (m:
- if m.options ? ${name}
- then [ { inherit (m) file; options = m.options.${name}; } ]
- else []
- ) options;
- # Get all submodules that define ‘name’.
- defns = concatMap (m:
- if m.config ? ${name}
- then map (config: { inherit (m) file; inherit config; })
- (pushDownProperties m.config.${name})
- else []
- ) configs;
+ defns = defnsByName.${name} or [];
+ defns' = defnsByName'.${name} or [];
nrOptions = count (m: isOption m.options) decls;
- # Extract the definitions for this loc
- defns' = map (m: { inherit (m) file; value = m.config.${name}; })
- (filter (m: m.config ? ${name}) configs);
in
if nrOptions == length decls then
let opt = fixupOptionType loc (mergeOptionDecls loc decls);
@@ -226,8 +250,8 @@ rec {
in
throw "The option `${showOption loc}' in `${firstOption.file}' is a prefix of options in `${firstNonOption.file}'."
else
- mergeModules' loc decls defns;
- }) (concatMap (m: attrNames m.options) options))
+ mergeModules' loc decls defns
+ ))
// { _definedNames = map (m: { inherit (m) file; names = attrNames m.config; }) configs; };
/* Merge multiple option declarations into a single declaration. In
diff --git a/lib/systems/doubles.nix b/lib/systems/doubles.nix
index adc454406b851c75f7b27b64a65f6955c480f08c..a00165db171603477c96e0399402276a3ade9232 100644
--- a/lib/systems/doubles.nix
+++ b/lib/systems/doubles.nix
@@ -36,7 +36,7 @@ in rec {
cygwin = filterDoubles predicates.isCygwin;
darwin = filterDoubles predicates.isDarwin;
freebsd = filterDoubles predicates.isFreeBSD;
- # Should be better, but MinGW is unclear, and HURD is bit-rotted.
+ # Should be better, but MinGW is unclear.
gnu = filterDoubles (matchAttrs { kernel = parse.kernels.linux; abi = parse.abis.gnu; });
illumos = filterDoubles predicates.isSunOS;
linux = filterDoubles predicates.isLinux;
diff --git a/lib/systems/for-meta.nix b/lib/systems/for-meta.nix
index 96e8b6f86eb06fcd4520234aec760c2dd3ac4db2..51fb6ae760d1e9fd8c68711b51bd9f73d712fc9b 100644
--- a/lib/systems/for-meta.nix
+++ b/lib/systems/for-meta.nix
@@ -20,7 +20,7 @@ in rec {
cygwin = [ patterns.isCygwin ];
darwin = [ patterns.isDarwin ];
freebsd = [ patterns.isFreeBSD ];
- # Should be better, but MinGW is unclear, and HURD is bit-rotted.
+ # Should be better, but MinGW is unclear.
gnu = [
{ kernel = parse.kernels.linux; abi = abis.gnu; }
{ kernel = parse.kernels.linux; abi = abis.gnueabi; }
diff --git a/lib/systems/inspect.nix b/lib/systems/inspect.nix
index ac34ed45695cea095eab9fccbfd83646a2691417..65f560328af536b764142e7eb769661d49d78b7a 100644
--- a/lib/systems/inspect.nix
+++ b/lib/systems/inspect.nix
@@ -27,14 +27,13 @@ rec {
isBSD = { kernel = { families = { inherit (kernelFamilies) bsd; }; }; };
isDarwin = { kernel = { families = { inherit (kernelFamilies) darwin; }; }; };
- isUnix = [ isBSD isDarwin isLinux isSunOS isHurd isCygwin ];
+ isUnix = [ isBSD isDarwin isLinux isSunOS isCygwin ];
isMacOS = { kernel = kernels.macos; };
isiOS = { kernel = kernels.ios; };
isLinux = { kernel = kernels.linux; };
isSunOS = { kernel = kernels.solaris; };
isFreeBSD = { kernel = kernels.freebsd; };
- isHurd = { kernel = kernels.hurd; };
isNetBSD = { kernel = kernels.netbsd; };
isOpenBSD = { kernel = kernels.openbsd; };
isWindows = { kernel = kernels.windows; };
diff --git a/lib/systems/parse.nix b/lib/systems/parse.nix
index 7ee3479c333d88bb11afb3e734d2d041be07922c..bb26c93f3d7aa774e1664217b4fce5a14242d0c6 100644
--- a/lib/systems/parse.nix
+++ b/lib/systems/parse.nix
@@ -172,7 +172,6 @@ rec {
macos = { execFormat = macho; families = { inherit darwin; }; name = "darwin"; };
ios = { execFormat = macho; families = { inherit darwin; }; };
freebsd = { execFormat = elf; families = { inherit bsd; }; };
- hurd = { execFormat = elf; families = { }; };
linux = { execFormat = elf; families = { }; };
netbsd = { execFormat = elf; families = { inherit bsd; }; };
none = { execFormat = unknown; families = { }; };
@@ -259,8 +258,6 @@ rec {
"2" = # We only do 2-part hacks for things Nix already supports
if elemAt l 1 == "cygwin"
then { cpu = elemAt l 0; kernel = "windows"; abi = "cygnus"; }
- else if elemAt l 1 == "gnu"
- then { cpu = elemAt l 0; kernel = "hurd"; abi = "gnu"; }
else { cpu = elemAt l 0; kernel = elemAt l 1; };
"3" = # Awkwards hacks, beware!
if elemAt l 1 == "apple"
diff --git a/lib/tests/systems.nix b/lib/tests/systems.nix
index ffdd8ae929c86819057261f3bdd376ac80701e4f..91604280e4e7be2a163a3e509453f303448ee490 100644
--- a/lib/tests/systems.nix
+++ b/lib/tests/systems.nix
@@ -22,7 +22,7 @@ in with lib.systems.doubles; lib.runTests {
cygwin = assertTrue (mseteq cygwin [ "i686-cygwin" "x86_64-cygwin" ]);
darwin = assertTrue (mseteq darwin [ "x86_64-darwin" ]);
freebsd = assertTrue (mseteq freebsd [ "i686-freebsd" "x86_64-freebsd" ]);
- gnu = assertTrue (mseteq gnu (linux /* ++ hurd ++ kfreebsd ++ ... */));
+ gnu = assertTrue (mseteq gnu (linux /* ++ kfreebsd ++ ... */));
illumos = assertTrue (mseteq illumos [ "x86_64-solaris" ]);
linux = assertTrue (mseteq linux [ "i686-linux" "x86_64-linux" "armv5tel-linux" "armv6l-linux" "armv7l-linux" "aarch64-linux" "mipsel-linux" ]);
netbsd = assertTrue (mseteq netbsd [ "i686-netbsd" "x86_64-netbsd" ]);
diff --git a/lib/trivial.nix b/lib/trivial.nix
index b75e81eb7352fee44c6cd7309b212a96c73c909a..e702b8cdcc9fcb33421e31241eb348bb695ec83b 100644
--- a/lib/trivial.nix
+++ b/lib/trivial.nix
@@ -36,18 +36,18 @@ rec {
/* bitwise “and” */
bitAnd = builtins.bitAnd
- or import ./zip-int-bits.nix
- (a: b: if a==1 && b==1 then 1 else 0);
+ or (import ./zip-int-bits.nix
+ (a: b: if a==1 && b==1 then 1 else 0));
/* bitwise “or” */
bitOr = builtins.bitOr
- or import ./zip-int-bits.nix
- (a: b: if a==1 || b==1 then 1 else 0);
+ or (import ./zip-int-bits.nix
+ (a: b: if a==1 || b==1 then 1 else 0));
/* bitwise “xor” */
bitXor = builtins.bitXor
- or import ./zip-int-bits.nix
- (a: b: if a!=b then 1 else 0);
+ or (import ./zip-int-bits.nix
+ (a: b: if a!=b then 1 else 0));
/* bitwise “not” */
bitNot = builtins.sub (-1);
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 657e5696041cf236ae21d1b52f3bd302e90e07fd..6356c0c7cefea45a05bbb6e7bf33d37aeaf2cead 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -23,6 +23,11 @@
github = "a1russell";
name = "Adam Russell";
};
+ aanderse = {
+ email = "aaron@fosslib.net";
+ github = "aanderse";
+ name = "Aaron Andersen";
+ };
aaronschif = {
email = "aaronschif@gmail.com";
github = "aaronschif";
@@ -425,6 +430,11 @@
github = "Baughn";
name = "Svein Ove Aas";
};
+ bb010g = {
+ email = "me@bb010g.com";
+ github = "bb010g";
+ name = "Brayden Banks";
+ };
bbarker = {
email = "brandon.barker@gmail.com";
github = "bbarker";
@@ -827,6 +837,11 @@
github = "couchemar";
name = "Andrey Pavlov";
};
+ countingsort = {
+ email = "niclas@countingsort.com";
+ github = "countingsort";
+ name = "Niclas Meyer";
+ };
cpages = {
email = "page@ruiec.cat";
github = "cpages";
@@ -1555,6 +1570,11 @@
github = "grburst";
name = "Julius Elias";
};
+ greydot = {
+ email = "lanablack@amok.cc";
+ github = "greydot";
+ name = "Lana Black";
+ };
gridaphobe = {
email = "eric@seidel.io";
github = "gridaphobe";
@@ -1625,6 +1645,11 @@
github = "heel";
name = "Sergii Paryzhskyi";
};
+ helkafen = {
+ email = "arnaudpourseb@gmail.com";
+ github = "Helkafen";
+ name = "Sébastian Méric de Bellefon";
+ };
henrytill = {
email = "henrytill@gmail.com";
github = "henrytill";
@@ -1852,6 +1877,11 @@
github = "jgillich";
name = "Jakob Gillich";
};
+ jglukasik = {
+ email = "joseph@jgl.me";
+ github = "jglukasik";
+ name = "Joseph Lukasik";
+ };
jhhuh = {
email = "jhhuh.note@gmail.com";
github = "jhhuh";
@@ -3695,6 +3725,11 @@
github = "siddharthist";
name = "Langston Barrett";
};
+ siers = {
+ email = "veinbahs+nixpkgs@gmail.com";
+ github = "siers";
+ name = "Raitis Veinbahs";
+ };
sifmelcara = {
email = "ming@culpring.com";
github = "sifmelcara";
diff --git a/nixos/doc/manual/Makefile b/nixos/doc/manual/Makefile
index 5cbbf140869a6d649b4ff42dfbddd78f1e94d91c..2e9adf70c3963e7fd4360dfa6dc3251174904f95 100644
--- a/nixos/doc/manual/Makefile
+++ b/nixos/doc/manual/Makefile
@@ -11,7 +11,7 @@ manual-combined.xml: generated *.xml
.PHONY: format
format:
- find . -iname '*.xml' -type f -print0 | xargs -0 -I{} -n1 \
+ find ../../ -iname '*.xml' -type f -print0 | xargs -0 -I{} -n1 \
xmlformat --config-file "../xmlformat.conf" -i {}
.PHONY: fix-misc-xml
diff --git a/nixos/doc/manual/administration/cleaning-store.xml b/nixos/doc/manual/administration/cleaning-store.xml
index ee201982a40be37a0e6ae52f4b5e9dfe365d20f3..f078b8c3ba370916661543a3eb524dc4bd4626c6 100644
--- a/nixos/doc/manual/administration/cleaning-store.xml
+++ b/nixos/doc/manual/administration/cleaning-store.xml
@@ -50,4 +50,14 @@ $ nix-store --optimise
Since this command needs to read the entire Nix store, it can take quite a
while to finish.
+
+ NixOS Boot Entries
+
+
+ If your /boot partition runs out of space, after
+ clearing old profiles you must rebuild your system with
+ nixos-rebuild to update the /boot
+ partition and clear space.
+
+
diff --git a/nixos/doc/manual/configuration/linux-kernel.xml b/nixos/doc/manual/configuration/linux-kernel.xml
index f4d697c42dbd0b030dee92e66502c8e67e72901f..2f766f2b32f777af6d16e3f6681483d8c3200009 100644
--- a/nixos/doc/manual/configuration/linux-kernel.xml
+++ b/nixos/doc/manual/configuration/linux-kernel.xml
@@ -66,14 +66,15 @@ nixpkgs.config.packageOverrides = pkgs:
sets the kernel’s TCP keepalive time to 120 seconds. To see the available
parameters, run sysctl -a.
-
+
Customize your kernel
The first step before compiling the kernel is to generate an appropriate
- .config configuration. Either you pass your own config via
- the configfile setting of linuxManualConfig:
- .config configuration. Either you pass your own config
+ via the configfile setting of
+ linuxManualConfig:
+make menuconfig
]]>
-
+
Developing kernel modules
diff --git a/nixos/doc/manual/configuration/modularity.xml b/nixos/doc/manual/configuration/modularity.xml
index 3ff96f719ec57f70004103c2f2925c058d11edff..298ffd661f67801f9d2116b05d15b1d3c613902b 100644
--- a/nixos/doc/manual/configuration/modularity.xml
+++ b/nixos/doc/manual/configuration/modularity.xml
@@ -74,7 +74,7 @@ The unique option `services.httpd.adminAddr' is defined multiple times, in `/etc
argument is for: it contains the complete, merged system configuration. That
is, config is the result of combining the configurations
returned by every module
-
+
If you’re wondering how it’s possible that the (indirect)
result of a function is passed as an
diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml
index 948b35209b7902a39c433e9bf065216d44d57bfb..703a1b8b7f09adf0705291f683e29ef5a063af97 100644
--- a/nixos/doc/manual/configuration/x-windows.xml
+++ b/nixos/doc/manual/configuration/x-windows.xml
@@ -60,7 +60,7 @@
# systemctl start display-manager.service
-
+
NVIDIA Graphics Cards
NVIDIA provides a proprietary driver for its graphics cards that has better
@@ -86,7 +86,7 @@
-
+
AMD Graphics Cards
AMD provides a proprietary driver for its graphics cards that has better 3D
@@ -106,7 +106,7 @@
-
+
Touchpads
Support for Synaptics touchpads (found in many laptops such as the Dell
@@ -123,7 +123,7 @@
since NixOS 17.09.
-
+
GTK/Qt themes
GTK themes can be installed either to user profile or system-wide (via
diff --git a/nixos/doc/manual/configuration/xfce.xml b/nixos/doc/manual/configuration/xfce.xml
index 40e61d2bd691ff360ad2767e46a3ebe3e4d4c677..77d5d963279212513373e00d286e963aba78a418 100644
--- a/nixos/doc/manual/configuration/xfce.xml
+++ b/nixos/doc/manual/configuration/xfce.xml
@@ -31,7 +31,7 @@
(system wide), put them into your
.
-
+
Thunar Volume Support
To enable Thunar volume support, put
@@ -41,7 +41,7 @@
into your configuration.nix.
-
+
Polkit Authentication Agent
There is no authentication agent automatically installed alongside Xfce. To
@@ -50,7 +50,7 @@
and login did the trick.
-
+
Troubleshooting
Even after enabling udisks2, volume management might not work. Thunar and/or
diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix
index be28c2c17afd83bf87fd8693609a26984dc14724..aaa6e0da545f9efbda8504ebc57b294f623e173b 100644
--- a/nixos/doc/manual/default.nix
+++ b/nixos/doc/manual/default.nix
@@ -90,7 +90,9 @@ let
fi
${buildPackages.libxslt.bin}/bin/xsltproc \
--stringparam revision '${revision}' \
- -o $out ${./options-to-docbook.xsl} $optionsXML
+ -o intermediate.xml ${./options-to-docbook.xsl} $optionsXML
+ ${buildPackages.libxslt.bin}/bin/xsltproc \
+ -o "$out" ${./postprocess-option-descriptions.xsl} intermediate.xml
'';
sources = lib.sourceFilesBySuffices ./. [".xml"];
diff --git a/nixos/doc/manual/development/assertions.xml b/nixos/doc/manual/development/assertions.xml
index 17c38ffcc717b219b5d68f6eb5c650febcc0f773..32f90cf2e7c47acabb01d3c35a8542cb80380526 100644
--- a/nixos/doc/manual/development/assertions.xml
+++ b/nixos/doc/manual/development/assertions.xml
@@ -20,7 +20,7 @@
NixOS module system.
-
+
Warnings
@@ -44,7 +44,7 @@
-
+
Assertions
diff --git a/nixos/doc/manual/development/option-def.xml b/nixos/doc/manual/development/option-def.xml
index 580a5afd58cdc9452a58e7b9ad44350d5e0410ce..50a705d0cb8ed717c54c780e897e5ae2cbf030a4 100644
--- a/nixos/doc/manual/development/option-def.xml
+++ b/nixos/doc/manual/development/option-def.xml
@@ -17,7 +17,7 @@ config = {
definitions in a property to achieve certain effects:
-
+
Delaying Conditionals
If a set of option definitions is conditional on the value of another
@@ -59,7 +59,7 @@ config = {
-
+
Setting Priorities
A module can override the definitions of an option in other modules by
@@ -76,7 +76,7 @@ services.openssh.enable = mkOverride 10 false;
-
+
Merging Configurations
In conjunction with mkIf, it is sometimes useful for a
diff --git a/nixos/doc/manual/development/option-types.xml b/nixos/doc/manual/development/option-types.xml
index 47dd09158e91e4d935fcf92de11d9a886f61e235..e6c9eae11a728d47355d5cd59e7f329c8f0ab088 100644
--- a/nixos/doc/manual/development/option-types.xml
+++ b/nixos/doc/manual/development/option-types.xml
@@ -11,7 +11,7 @@
value definitions.
-
+
Basic Types
@@ -196,7 +196,7 @@
-
+
Value Types
@@ -257,7 +257,7 @@
-
+
Composed Types
@@ -483,7 +483,7 @@ config.mod.two = { foo = 2; bar = "two"; };
-
+
Extending types
@@ -543,14 +543,14 @@ nixThings = mkOption {
-
+
Custom Types
Custom types can be created with the mkOptionType
function. As type creation includes some more complex topics such as
submodule handling, it is recommended to get familiar with
- types.nix
code before creating a new type.
diff --git a/nixos/doc/manual/development/writing-documentation.xml b/nixos/doc/manual/development/writing-documentation.xml
index 8ecdd1c770f2dce348ceac88480e74d9d7635a15..2183937ad0daac02a154122566c5b042308b41cc 100644
--- a/nixos/doc/manual/development/writing-documentation.xml
+++ b/nixos/doc/manual/development/writing-documentation.xml
@@ -10,7 +10,7 @@
sources and presenting it in an accessible style would be a worthy
contribution to the project.
-
+
Building the Manual
@@ -42,7 +42,7 @@
./result/share/doc/nixos/index.html.
-
+
Editing DocBook XML
@@ -76,7 +76,7 @@
Issue and someone will handle the conversion to XML for you.
-
+
Creating a Topic
@@ -128,7 +128,7 @@
-
+
Adding a Topic to the Book
diff --git a/nixos/doc/manual/installation/installing-behind-a-proxy.xml b/nixos/doc/manual/installation/installing-behind-a-proxy.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c59d073c61c73a1153f2e5c85d83799d7728a3d3
--- /dev/null
+++ b/nixos/doc/manual/installation/installing-behind-a-proxy.xml
@@ -0,0 +1,47 @@
+
+ Installing behind a proxy
+
+
+ To install NixOS behind a proxy, do the following before running
+ nixos-install.
+
+
+
+
+ Update proxy configuration in
+ /mnt/etc/nixos/configuration.nix to keep the
+ internet accessible after reboot.
+
+
+networking.proxy.default = "http://user:password@proxy:port/";
+networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
+
+
+
+
+ Setup the proxy environment variables in the shell where you are
+ running nixos-install.
+
+
+# proxy_url="http://user:password@proxy:port/"
+# export http_proxy="$proxy_url"
+# export HTTP_PROXY="$proxy_url"
+# export https_proxy="$proxy_url"
+# export HTTPS_PROXY="$proxy_url"
+
+
+
+
+
+
+ If you are switching networks with different proxy configurations, use the
+ nesting.clone option in
+ configuration.nix to switch proxies at runtime.
+ Refer to for more information.
+
+
+
diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml
index 6f8e0f613b198aa0d67d40ebc2cc1e10e7d9a1f6..916384559e24b61c0bcab496314a42c1086bc2a1 100644
--- a/nixos/doc/manual/installation/installing.xml
+++ b/nixos/doc/manual/installation/installing.xml
@@ -443,4 +443,5 @@ $ nix-env -i w3m
+
diff --git a/nixos/doc/manual/installation/upgrading.xml b/nixos/doc/manual/installation/upgrading.xml
index 20355812ec635e32ce6f10e84f3ace3d7e0ba004..85e5082575d3f374f72694f26d1f2eb91044e5a3 100644
--- a/nixos/doc/manual/installation/upgrading.xml
+++ b/nixos/doc/manual/installation/upgrading.xml
@@ -109,7 +109,7 @@ nixos https://nixos.org/channels/nixos-unstable
so in that case you will not be able to go back to your original channel.
-
+
Automatic Upgrades
diff --git a/nixos/doc/manual/manual.xml b/nixos/doc/manual/manual.xml
index e9338efbc025d7fdfff21217f945adeb75789c35..a5efde32885cf4c7ba9b30fc20cec6eb23c4b406 100644
--- a/nixos/doc/manual/manual.xml
+++ b/nixos/doc/manual/manual.xml
@@ -8,7 +8,7 @@
Version
-
+
Preface
This manual describes how to install, use and extend NixOS, a Linux
diff --git a/nixos/doc/manual/options-to-docbook.xsl b/nixos/doc/manual/options-to-docbook.xsl
index 43a69806a2b0fd27ff6c36b12353446ad11d8513..72ac89d4ff62ccc3c90afe783acd5495052a5e6d 100644
--- a/nixos/doc/manual/options-to-docbook.xsl
+++ b/nixos/doc/manual/options-to-docbook.xsl
@@ -4,6 +4,7 @@
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://exslt.org/strings"
xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:nixos="tag:nixos.org"
xmlns="http://docbook.org/ns/docbook"
extension-element-prefixes="str"
>
@@ -15,7 +16,7 @@
-
+
Configuration Options
@@ -30,10 +31,12 @@
-
-
-
+
+
+
+
+
diff --git a/nixos/doc/manual/postprocess-option-descriptions.xsl b/nixos/doc/manual/postprocess-option-descriptions.xsl
new file mode 100644
index 0000000000000000000000000000000000000000..1201c7612c2edb5722c58b85fb104a789eb509d8
--- /dev/null
+++ b/nixos/doc/manual/postprocess-option-descriptions.xsl
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/nixos/doc/manual/release-notes/release-notes.xml b/nixos/doc/manual/release-notes/release-notes.xml
index 94f176186b6e0abacb766793b198ba85137a0031..a222bfa29d5af27fbf3e17c242434d6481bbbc7d 100644
--- a/nixos/doc/manual/release-notes/release-notes.xml
+++ b/nixos/doc/manual/release-notes/release-notes.xml
@@ -8,6 +8,7 @@
This section lists the release notes for each stable version of NixOS and
current unstable revision.
+
diff --git a/nixos/doc/manual/release-notes/rl-1809.xml b/nixos/doc/manual/release-notes/rl-1809.xml
index d831f851446620a57eb1ceb46d983f2007ba9960..53ffef31e3ccac4eff7253b1e003fcfd5b94e083 100644
--- a/nixos/doc/manual/release-notes/rl-1809.xml
+++ b/nixos/doc/manual/release-notes/rl-1809.xml
@@ -91,7 +91,7 @@ $ nix-instantiate -E '(import <nixpkgsunstable> {}).gitFull'
When enabled the iproute2 will copy the files expected
by ip route (e.g., rt_tables) in
- /run/iproute2. This allows to write aliases for
+ /etc/iproute2. This allows to write aliases for
routing tables for instance.
@@ -111,6 +111,12 @@ $ nix-instantiate -E '(import <nixpkgsunstable> {}).gitFull'
stroke configuration interface.
+
+
+ The new services.elasticsearch-curator service
+ periodically curates or manages, your Elasticsearch indices and snapshots.
+
+
@@ -133,6 +139,50 @@ $ nix-instantiate -E '(import <nixpkgsunstable> {}).gitFull'
seen a complete rewrite. (See above.)
+
+
+ The minimum version of Nix required to evaluate Nixpkgs is now 2.0.
+
+
+
+
+ For users of NixOS 18.03, NixOS 18.03 defaulted to Nix 2.0, but
+ supported using Nix 1.11 by setting nix.package =
+ pkgs.nix1;. If this option is set to a Nix 1.11 package, you
+ will need to either unset the option or upgrade it to Nix 2.0.
+
+
+
+
+ For users of NixOS 17.09, you will first need to upgrade Nix by setting
+ nix.package = pkgs.nixStable2; and run
+ nixos-rebuild switch as the root
+ user.
+
+
+
+
+ For users of a daemon-less Nix installation on Linux or macOS, you can
+ upgrade Nix by running curl https://nixos.org/nix/install |
+ sh, or prior to doing a channel update, running
+ nix-env -iA nix.
+
+
+ If you have already run a channel update and Nix is no longer able to
+ evaluate Nixpkgs, the error message printed should provide adequate
+ directions for upgrading Nix.
+
+
+
+
+ For users of the Nix daemon on macOS, you can upgrade Nix by running
+ sudo -i sh -c 'nix-channel --update && nix-env -iA
+ nixpkgs.nix'; sudo launchctl stop org.nixos.nix-daemon; sudo launchctl
+ start org.nixos.nix-daemon.
+
+
+
+
lib.strict is removed. Use
@@ -190,6 +240,39 @@ $ nix-instantiate -E '(import <nixpkgsunstable> {}).gitFull'
which indicates that the nix output hash will be used as tag.
+
+
+ The ELK stack: elasticsearch, logstash and kibana
+ has been upgraded from 2.* to 6.3.*.
+ The 2.* versions have been unsupported since last year
+ so they have been removed. You can still use the 5.* versions under the names
+ elasticsearch5, logstash5 and
+ kibana5.
+
+
+ The elastic beats:
+ filebeat, heartbeat,
+ metricbeat and packetbeat
+ have had the same treatment: they now target 6.3.* as well.
+ The 5.* versions are available under the names:
+ filebeat5, heartbeat5,
+ metricbeat5 and packetbeat5
+
+
+ The ELK-6.3 stack now comes with
+ X-Pack by default.
+ Since X-Pack is licensed under the
+ Elastic License
+ the ELK packages now have an unfree license. To use them you need to specify
+ allowUnfree = true; in your nixpkgs configuration.
+
+
+ Fortunately there is also a free variant of the ELK stack without X-Pack.
+ The packages are available under the names:
+ elasticsearch-oss, logstash-oss and
+ kibana-oss.
+
+
Options
@@ -431,6 +514,28 @@ inherit (pkgs.nixos {
The module option is now defaulted to true.
+
+
+ The config activation script of nixos-rebuild now
+ reloads
+ all user units for each authenticated user.
+
+
+
+
+ The default display manager is now LightDM.
+ To use SLiM set services.xserver.displayManager.slim.enable
+ to true.
+
+
+
+
+ NixOS option descriptions are now automatically broken up into individual
+ paragraphs if the text contains two consecutive newlines, so it's no
+ longer necessary to use </para><para>
to start
+ a new paragraph.
+
+
diff --git a/nixos/doc/manual/release-notes/rl-1903.xml b/nixos/doc/manual/release-notes/rl-1903.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9ae34dd58ab0b270b31bf0c6b060c3f93a508fbf
--- /dev/null
+++ b/nixos/doc/manual/release-notes/rl-1903.xml
@@ -0,0 +1,58 @@
+
+ Release 19.03 (“Koi”, 2019/03/??)
+
+
+ Highlights
+
+
+ In addition to numerous new and upgraded packages, this release has the
+ following highlights:
+
+
+
+
+
+
+
+
+
+
+ New Services
+
+
+ The following new services were added since the last release:
+
+
+
+
+
+
+
+
+
+
+ Other Notable Changes
+
+
+
+
+
+
+
+
diff --git a/nixos/lib/make-system-tarball.nix b/nixos/lib/make-system-tarball.nix
index 92539235be754932dbee61e72d68da62792aeb8c..846013b02d149ce31b6260c29a03cc6a25d41913 100644
--- a/nixos/lib/make-system-tarball.nix
+++ b/nixos/lib/make-system-tarball.nix
@@ -1,7 +1,7 @@
{ stdenv, perl, pixz, pathsFromGraph
, # The file name of the resulting tarball
- fileName ? "nixos-system-${stdenv.system}"
+ fileName ? "nixos-system-${stdenv.hostPlatform.system}"
, # The files and directories to be placed in the tarball.
# This is a list of attribute sets {source, target} where `source'
diff --git a/nixos/lib/qemu-flags.nix b/nixos/lib/qemu-flags.nix
index 6f61c64a832e119b3cfed1311dd3182b31026584..779f0377a512300e8b65ac3eea73615f53e63583 100644
--- a/nixos/lib/qemu-flags.nix
+++ b/nixos/lib/qemu-flags.nix
@@ -1,21 +1,25 @@
# QEMU flags shared between various Nix expressions.
{ pkgs }:
+let
+ zeroPad = n: if n < 10 then "0${toString n}" else toString n;
+in
+
{
qemuNICFlags = nic: net: machine:
- [ "-net nic,vlan=${toString nic},macaddr=52:54:00:12:${toString net}:${toString machine},model=virtio"
- "-net vde,vlan=${toString nic},sock=$QEMU_VDE_SOCKET_${toString net}"
+ [ "-device virtio-net-pci,netdev=vlan${toString nic},mac=52:54:00:12:${zeroPad net}:${zeroPad machine}"
+ "-netdev vde,id=vlan${toString nic},sock=$QEMU_VDE_SOCKET_${toString net}"
];
qemuSerialDevice = if pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64 then "ttyS0"
else if pkgs.stdenv.isAarch32 || pkgs.stdenv.isAarch64 then "ttyAMA0"
- else throw "Unknown QEMU serial device for system '${pkgs.stdenv.system}'";
+ else throw "Unknown QEMU serial device for system '${pkgs.stdenv.hostPlatform.system}'";
qemuBinary = qemuPkg: {
"x86_64-linux" = "${qemuPkg}/bin/qemu-kvm -cpu kvm64";
"armv7l-linux" = "${qemuPkg}/bin/qemu-system-arm -enable-kvm -machine virt -cpu host";
"aarch64-linux" = "${qemuPkg}/bin/qemu-system-aarch64 -enable-kvm -machine virt,gic-version=host -cpu host";
"x86_64-darwin" = "${qemuPkg}/bin/qemu-kvm -cpu kvm64";
- }.${pkgs.stdenv.system} or "${qemuPkg}/bin/qemu-kvm";
+ }.${pkgs.stdenv.hostPlatform.system} or "${qemuPkg}/bin/qemu-kvm";
}
diff --git a/nixos/modules/config/iproute2.nix b/nixos/modules/config/iproute2.nix
index 881ad671a627596c8b903c8bc1fb493ce96acc9d..a1d9ebcec66bf54f94a0f20b0e0fc69c18acded7 100644
--- a/nixos/modules/config/iproute2.nix
+++ b/nixos/modules/config/iproute2.nix
@@ -4,20 +4,29 @@ with lib;
let
cfg = config.networking.iproute2;
- confDir = "/run/iproute2";
in
{
- options.networking.iproute2.enable = mkEnableOption "copy IP route configuration files";
-
- config = mkMerge [
- ({ nixpkgs.config.iproute2.confDir = confDir; })
-
- (mkIf cfg.enable {
- system.activationScripts.iproute2 = ''
- cp -R ${pkgs.iproute}/etc/iproute2 ${confDir}
- chmod -R 664 ${confDir}
- chmod +x ${confDir}
+ options.networking.iproute2 = {
+ enable = mkEnableOption "copy IP route configuration files";
+ rttablesExtraConfig = mkOption {
+ type = types.lines;
+ default = "";
+ description = ''
+ Verbatim lines to add to /etc/iproute2/rt_tables
'';
- })
- ];
+ };
+ };
+
+ config = mkIf cfg.enable {
+ environment.etc."iproute2/bpf_pinning" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/bpf_pinning"; };
+ environment.etc."iproute2/ematch_map" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/ematch_map"; };
+ environment.etc."iproute2/group" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/group"; };
+ environment.etc."iproute2/nl_protos" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/nl_protos"; };
+ environment.etc."iproute2/rt_dsfield" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/rt_dsfield"; };
+ environment.etc."iproute2/rt_protos" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/rt_protos"; };
+ environment.etc."iproute2/rt_realms" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/rt_realms"; };
+ environment.etc."iproute2/rt_scopes" = { mode = "0644"; text = fileContents "${pkgs.iproute}/etc/iproute2/rt_scopes"; };
+ environment.etc."iproute2/rt_tables" = { mode = "0644"; text = (fileContents "${pkgs.iproute}/etc/iproute2/rt_tables")
+ + (optionalString (cfg.rttablesExtraConfig != "") "\n\n${cfg.rttablesExtraConfig}"); };
+ };
}
diff --git a/nixos/modules/config/shells-environment.nix b/nixos/modules/config/shells-environment.nix
index 9dc4749b08d1e48723e7b1afd439624a189c9c84..31adc9b82620b59105bb1ed1b9e035a2f3c010cd 100644
--- a/nixos/modules/config/shells-environment.nix
+++ b/nixos/modules/config/shells-environment.nix
@@ -34,6 +34,7 @@ in
environment.variables = mkOption {
default = {};
+ example = { EDITOR = "nvim"; VISUAL = "nvim"; };
description = ''
A set of environment variables used in the global environment.
These variables will be set on shell initialisation (e.g. in /etc/profile).
@@ -80,7 +81,7 @@ in
default = "";
description = ''
Shell script code called during shell initialisation.
- This code is asumed to be shell-independent, which means you should
+ This code is assumed to be shell-independent, which means you should
stick to pure sh without sh word split.
'';
type = types.lines;
@@ -90,7 +91,7 @@ in
default = "";
description = ''
Shell script code called during login shell initialisation.
- This code is asumed to be shell-independent, which means you should
+ This code is assumed to be shell-independent, which means you should
stick to pure sh without sh word split.
'';
type = types.lines;
@@ -100,7 +101,7 @@ in
default = "";
description = ''
Shell script code called during interactive shell initialisation.
- This code is asumed to be shell-independent, which means you should
+ This code is assumed to be shell-independent, which means you should
stick to pure sh without sh word split.
'';
type = types.lines;
diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix
index 361151665018130c75eb6fb002f40cce387da945..3c24dab85e4d86d00ce9967f8b6593c0be1d7286 100644
--- a/nixos/modules/config/system-path.nix
+++ b/nixos/modules/config/system-path.nix
@@ -13,7 +13,7 @@ let
pkgs.attr
pkgs.bashInteractive # bash with ncurses support
pkgs.bzip2
- pkgs.coreutils
+ pkgs.coreutils-full
pkgs.cpio
pkgs.curl
pkgs.diffutils
@@ -81,6 +81,12 @@ in
description = "List of additional package outputs to be symlinked into /run/current-system/sw.";
};
+ extraSetup = mkOption {
+ type = types.lines;
+ default = "";
+ description = "Shell fragments to be run after the system environment has been created. This should only be used for things that need to modify the internals of the environment, e.g. generating MIME caches. The environment being built can be accessed at $out.";
+ };
+
};
system = {
@@ -107,12 +113,7 @@ in
"/etc/gtk-3.0"
"/lib" # FIXME: remove and update debug-info.nix
"/sbin"
- "/share/applications"
- "/share/desktop-directories"
"/share/emacs"
- "/share/icons"
- "/share/menus"
- "/share/mime"
"/share/nano"
"/share/org"
"/share/themes"
@@ -132,10 +133,6 @@ in
# outputs TODO: note that the tools will often not be linked by default
postBuild =
''
- if [ -x $out/bin/update-mime-database -a -w $out/share/mime ]; then
- XDG_DATA_DIRS=$out/share $out/bin/update-mime-database -V $out/share/mime > /dev/null
- fi
-
if [ -x $out/bin/gtk-update-icon-cache -a -f $out/share/icons/hicolor/index.theme ]; then
$out/bin/gtk-update-icon-cache $out/share/icons/hicolor
fi
@@ -143,17 +140,8 @@ in
if [ -x $out/bin/glib-compile-schemas -a -w $out/share/glib-2.0/schemas ]; then
$out/bin/glib-compile-schemas $out/share/glib-2.0/schemas
fi
-
- if [ -x $out/bin/update-desktop-database -a -w $out/share/applications ]; then
- $out/bin/update-desktop-database $out/share/applications
- fi
-
- if [ -x $out/bin/install-info -a -w $out/share/info ]; then
- shopt -s nullglob
- for i in $out/share/info/*.info $out/share/info/*.info.gz; do
- $out/bin/install-info $i $out/share/info/dir
- done
- fi
+
+ ${config.environment.extraSetup}
'';
};
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index ddec21b5f6e55b27c656d5fae4e2181bf1b6d870..426e1666a814f90b6fbc1a9825ac578f4fde0a49 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -524,6 +524,8 @@ in {
utmp.gid = ids.gids.utmp;
adm.gid = ids.gids.adm;
input.gid = ids.gids.input;
+ kvm.gid = ids.gids.kvm;
+ render.gid = ids.gids.render;
};
system.activationScripts.users = stringAfter [ "stdio" ]
diff --git a/nixos/modules/config/xdg/autostart.nix b/nixos/modules/config/xdg/autostart.nix
new file mode 100644
index 0000000000000000000000000000000000000000..0ee94fed818b16dc109c764fb7422239d0243a36
--- /dev/null
+++ b/nixos/modules/config/xdg/autostart.nix
@@ -0,0 +1,22 @@
+{ config, lib, ... }:
+
+with lib;
+{
+ options = {
+ xdg.autostart.enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to install files to support the
+ XDG Autostart specification.
+ '';
+ };
+ };
+
+ config = mkIf config.xdg.autostart.enable {
+ environment.pathsToLink = [
+ "/etc/xdg/autostart"
+ ];
+ };
+
+}
diff --git a/nixos/modules/config/xdg/icons.nix b/nixos/modules/config/xdg/icons.nix
new file mode 100644
index 0000000000000000000000000000000000000000..8268a3771a0ea553561bd2af8b1a3154b5ce1b2e
--- /dev/null
+++ b/nixos/modules/config/xdg/icons.nix
@@ -0,0 +1,27 @@
+{ config, lib, ... }:
+
+with lib;
+{
+ options = {
+ xdg.icons.enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to install files to support the
+ XDG Icon Theme specification.
+ '';
+ };
+ };
+
+ config = mkIf config.xdg.icons.enable {
+ environment.pathsToLink = [
+ "/share/icons"
+ "/share/pixmaps"
+ ];
+
+ environment.profileRelativeEnvVars = {
+ XCURSOR_PATH = [ "/share/icons" ];
+ };
+ };
+
+}
diff --git a/nixos/modules/config/xdg/menus.nix b/nixos/modules/config/xdg/menus.nix
new file mode 100644
index 0000000000000000000000000000000000000000..c172692df5d7d64d5213bdb2fcaa357414053200
--- /dev/null
+++ b/nixos/modules/config/xdg/menus.nix
@@ -0,0 +1,25 @@
+{ config, lib, ... }:
+
+with lib;
+{
+ options = {
+ xdg.menus.enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to install files to support the
+ XDG Desktop Menu specification.
+ '';
+ };
+ };
+
+ config = mkIf config.xdg.menus.enable {
+ environment.pathsToLink = [
+ "/share/applications"
+ "/share/desktop-directories"
+ "/etc/xdg/menus"
+ "/etc/xdg/menus/applications-merged"
+ ];
+ };
+
+}
diff --git a/nixos/modules/config/xdg/mime.nix b/nixos/modules/config/xdg/mime.nix
new file mode 100644
index 0000000000000000000000000000000000000000..f1b672234a344bf7985076bffc4dd6fdc2465040
--- /dev/null
+++ b/nixos/modules/config/xdg/mime.nix
@@ -0,0 +1,36 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+{
+ options = {
+ xdg.mime.enable = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to install files to support the
+ XDG Shared MIME-info specification and the
+ XDG MIME Applications specification.
+ '';
+ };
+ };
+
+ config = mkIf config.xdg.mime.enable {
+ environment.pathsToLink = [ "/share/mime" ];
+
+ environment.systemPackages = [
+ # this package also installs some useful data, as well as its utilities
+ pkgs.shared-mime-info
+ ];
+
+ environment.extraSetup = ''
+ if [ -w $out/share/mime ]; then
+ XDG_DATA_DIRS=$out/share ${pkgs.shared-mime-info}/bin/update-mime-database -V $out/share/mime > /dev/null
+ fi
+
+ if [ -w $out/share/applications ]; then
+ ${pkgs.desktop-file-utils}/bin/update-desktop-database $out/share/applications
+ fi
+ '';
+ };
+
+}
diff --git a/nixos/modules/i18n/input-method/default.xml b/nixos/modules/i18n/input-method/default.xml
index eb75b7415c9c4e943bb6f64b7f41c8c3251d7078..ab918a9fb23e3fb690990cf565626af4191a5539 100644
--- a/nixos/modules/i18n/input-method/default.xml
+++ b/nixos/modules/i18n/input-method/default.xml
@@ -23,7 +23,7 @@
bridge.
-IBus
+IBus
IBus is an Intelligent Input Bus. It provides full featured and user
friendly input method user interface.
@@ -69,7 +69,7 @@ ibus.engines = with pkgs.ibus-engines; [ table table-others ];
as shown above, and also (after running nixos-rebuild) the
input method must be added from IBus' preference dialog.
-
+
Troubleshooting
If IBus works in some applications but not others, a likely cause of
this is that IBus is depending on a different version of
@@ -82,7 +82,7 @@ ibus.engines = with pkgs.ibus-engines; [ table table-others ];
-Fcitx
+Fcitx
Fcitx is an input method framework with extension support. It has three
built-in Input Method Engine, Pinyin, QuWei and Table-based input
@@ -122,7 +122,7 @@ i18n.inputMethod = {
-Nabi
+Nabi
Nabi is an easy to use Korean X input method. It allows you to enter
phonetic Korean characters (hangul) and pictographic Korean characters
@@ -136,7 +136,7 @@ i18n.inputMethod = {
-Uim
+Uim
Uim (short for "universal input method") is a multilingual input method
framework. Applications can use it through so-called bridges.
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-base.nix b/nixos/modules/installer/cd-dvd/installation-cd-base.nix
index 1453e8082b0ddc526abc466512abd381f4e45508..24070a786945a6bc6d52f47dbca3678a08a6234d 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-base.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-base.nix
@@ -16,7 +16,7 @@ with lib;
];
# ISO naming.
- isoImage.isoName = "${config.isoImage.isoBaseName}-${config.system.nixos.label}-${pkgs.stdenv.system}.iso";
+ isoImage.isoName = "${config.isoImage.isoBaseName}-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso";
isoImage.volumeID = substring 0 11 "NIXOS_ISO";
diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix
index 1ac9e5c5c74b77f7f56eb3fcc51b20a0be1196ef..98712f0759a98c59d30383120cde777ae68b5c9f 100644
--- a/nixos/modules/installer/cd-dvd/iso-image.nix
+++ b/nixos/modules/installer/cd-dvd/iso-image.nix
@@ -7,6 +7,63 @@
with lib;
let
+ /**
+ * Given a list of `options`, concats the result of mapping each options
+ * to a menuentry for use in grub.
+ *
+ * * defaults: {name, image, params, initrd}
+ * * options: [ option... ]
+ * * option: {name, params, class}
+ */
+ menuBuilderGrub2 =
+ defaults: options: lib.concatStrings
+ (
+ map
+ (option: ''
+ menuentry '${defaults.name} ${
+ # Name appended to menuentry defaults to params if no specific name given.
+ option.name or (if option ? params then "(${option.params})" else "")
+ }' ${if option ? class then " --class ${option.class}" else ""} {
+ linux ${defaults.image} ${defaults.params} ${
+ option.params or ""
+ }
+ initrd ${defaults.initrd}
+ }
+ '')
+ options
+ )
+ ;
+
+ /**
+ * Given a `config`, builds the default options.
+ */
+ buildMenuGrub2 = config:
+ buildMenuAdditionalParamsGrub2 config ""
+ ;
+
+ /**
+ * Given a `config` and params to add to `params`, build a set of default options.
+ * Use this one when creating a variant (e.g. hidpi)
+ */
+ buildMenuAdditionalParamsGrub2 = config: additional:
+ let
+ finalCfg = {
+ name = "NixOS ${config.system.nixos.label}${config.isoImage.appendToMenuLabel}";
+ params = "init=${config.system.build.toplevel}/init ${additional} ${toString config.boot.kernelParams}";
+ image = "/boot/bzImage";
+ initrd = "/boot/initrd";
+ };
+ in
+ menuBuilderGrub2
+ finalCfg
+ [
+ { class = "installer"; }
+ { class = "nomodeset"; params = "nomodeset"; }
+ { class = "copytoram"; params = "copytoram"; }
+ { class = "debug"; params = "debug"; }
+ ]
+ ;
+
# Timeout in syslinux is in units of 1/10 of a second.
# 0 is used to disable timeouts.
syslinuxTimeout = if config.boot.loader.timeout == null then
@@ -36,6 +93,28 @@ let
UI vesamenu.c32
MENU TITLE NixOS
MENU BACKGROUND /isolinux/background.png
+ MENU RESOLUTION 800 600
+ MENU CLEAR
+ MENU ROWS 6
+ MENU CMDLINEROW -4
+ MENU TIMEOUTROW -3
+ MENU TABMSGROW -2
+ MENU HELPMSGROW -1
+ MENU HELPMSGENDROW -1
+ MENU MARGIN 0
+
+ # FG:AARRGGBB BG:AARRGGBB shadow
+ MENU COLOR BORDER 30;44 #00000000 #00000000 none
+ MENU COLOR SCREEN 37;40 #FF000000 #00E2E8FF none
+ MENU COLOR TABMSG 31;40 #80000000 #00000000 none
+ MENU COLOR TIMEOUT 1;37;40 #FF000000 #00000000 none
+ MENU COLOR TIMEOUT_MSG 37;40 #FF000000 #00000000 none
+ MENU COLOR CMDMARK 1;36;40 #FF000000 #00000000 none
+ MENU COLOR CMDLINE 37;40 #FF000000 #00000000 none
+ MENU COLOR TITLE 1;36;44 #00000000 #00000000 none
+ MENU COLOR UNSEL 37;44 #FF000000 #00000000 none
+ MENU COLOR SEL 7;37;40 #FFFFFFFF #FF5277C3 std
+
DEFAULT boot
LABEL boot
@@ -76,49 +155,167 @@ let
isolinuxCfg = concatStringsSep "\n"
([ baseIsolinuxCfg ] ++ optional config.boot.loader.grub.memtest86.enable isolinuxMemtest86Entry);
+ # Setup instructions for rEFInd.
+ refind =
+ if targetArch == "x64" then
+ ''
+ # Adds rEFInd to the ISO.
+ cp -v ${pkgs.refind}/share/refind/refind_x64.efi $out/EFI/boot/
+ ''
+ else
+ "# No refind for ia32"
+ ;
+
+ grubMenuCfg = ''
+ #
+ # Menu configuration
+ #
+
+ insmod gfxterm
+ insmod png
+ set gfxpayload=keep
+
+ # Fonts can be loaded?
+ # (This font is assumed to always be provided as a fallback by NixOS)
+ if loadfont (hd0)/EFI/boot/unicode.pf2; then
+ # Use graphical term, it can be either with background image or a theme.
+ # input is "console", while output is "gfxterm".
+ # This enables "serial" input and output only when possible.
+ # Otherwise the failure mode is to not even enable gfxterm.
+ if test "\$with_serial" == "yes"; then
+ terminal_output gfxterm serial
+ terminal_input console serial
+ else
+ terminal_output gfxterm
+ terminal_input console
+ fi
+ else
+ # Sets colors for the non-graphical term.
+ set menu_color_normal=cyan/blue
+ set menu_color_highlight=white/blue
+ fi
+
+ ${ # When there is a theme configured, use it, otherwise use the background image.
+ if (!isNull config.isoImage.grubTheme) then ''
+ # Sets theme.
+ set theme=(hd0)/EFI/boot/grub-theme/theme.txt
+ # Load theme fonts
+ $(find ${config.isoImage.grubTheme} -iname '*.pf2' -printf "loadfont (hd0)/EFI/boot/grub-theme/%P\n")
+ '' else ''
+ if background_image (hd0)/EFI/boot/efi-background.png; then
+ # Black background means transparent background when there
+ # is a background image set... This seems undocumented :(
+ set color_normal=black/black
+ set color_highlight=white/blue
+ else
+ # Falls back again to proper colors.
+ set menu_color_normal=cyan/blue
+ set menu_color_highlight=white/blue
+ fi
+ ''}
+ '';
+
# The EFI boot image.
+ # Notes about grub:
+ # * Yes, the grubMenuCfg has to be repeated in all submenus. Otherwise you
+ # will get white-on-black console-like text on sub-menus. *sigh*
efiDir = pkgs.runCommand "efi-directory" {} ''
- mkdir -p $out/EFI/boot
- cp -v ${pkgs.systemd}/lib/systemd/boot/efi/systemd-boot${targetArch}.efi $out/EFI/boot/boot${targetArch}.efi
- mkdir -p $out/loader/entries
-
- cat << EOF > $out/loader/entries/nixos-iso.conf
- title NixOS ${config.system.nixos.label}${config.isoImage.appendToMenuLabel}
- linux /boot/${config.system.boot.loader.kernelFile}
- initrd /boot/${config.system.boot.loader.initrdFile}
- options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams}
- EOF
-
- # A variant to boot with 'nomodeset'
- cat << EOF > $out/loader/entries/nixos-iso-nomodeset.conf
- title NixOS ${config.system.nixos.label}${config.isoImage.appendToMenuLabel}
- version nomodeset
- linux /boot/${config.system.boot.loader.kernelFile}
- initrd /boot/${config.system.boot.loader.initrdFile}
- options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} nomodeset
- EOF
-
- # A variant to boot with 'copytoram'
- cat << EOF > $out/loader/entries/nixos-iso-copytoram.conf
- title NixOS ${config.system.nixos.label}${config.isoImage.appendToMenuLabel}
- version copytoram
- linux /boot/${config.system.boot.loader.kernelFile}
- initrd /boot/${config.system.boot.loader.initrdFile}
- options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} copytoram
+ mkdir -p $out/EFI/boot/
+
+ MODULES="fat iso9660 part_gpt part_msdos \
+ normal boot linux configfile loopback chain halt \
+ efifwsetup efi_gop efi_uga \
+ ls search search_label search_fs_uuid search_fs_file \
+ gfxmenu gfxterm gfxterm_background gfxterm_menu test all_video loadenv \
+ exfat ext2 ntfs btrfs hfsplus udf \
+ videoinfo png \
+ echo serial \
+ "
+ # Make our own efi program, we can't rely on "grub-install" since it seems to
+ # probe for devices, even with --skip-fs-probe.
+ ${pkgs.grub2_efi}/bin/grub-mkimage -o $out/EFI/boot/${if targetArch == "x64" then "bootx64" else "bootx32"}.efi -p /EFI/boot -O ${if targetArch == "x64" then "x86_64" else "i386"}-efi \
+ $MODULES
+ cp ${pkgs.grub2_efi}/share/grub/unicode.pf2 $out/EFI/boot/
+
+ cat < $out/EFI/boot/grub.cfg
+
+ # If you want to use serial for "terminal_*" commands, you need to set one up:
+ # Example manual configuration:
+ # → serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
+ # This uses the defaults, and makes the serial terminal available.
+ set with_serial=no
+ if serial; then set with_serial=yes ;fi
+ export with_serial
+ clear
+ set timeout=10
+ ${grubMenuCfg}
+
+ #
+ # Menu entries
+ #
+
+ ${buildMenuGrub2 config}
+ submenu "HiDPI, Quirks and Accessibility" --class hidpi --class submenu {
+ ${grubMenuCfg}
+ submenu "Suggests resolution @720p" --class hidpi-720p {
+ ${grubMenuCfg}
+ ${buildMenuAdditionalParamsGrub2 config "video=1280x720@60"}
+ }
+ submenu "Suggests resolution @1080p" --class hidpi-1080p {
+ ${grubMenuCfg}
+ ${buildMenuAdditionalParamsGrub2 config "video=1920x1080@60"}
+ }
+
+ # Some laptop and convertibles have the panel installed in an
+ # inconvenient way, rotated away from the keyboard.
+ # Those entries makes it easier to use the installer.
+ submenu "" {return}
+ submenu "Rotate framebuffer Clockwise" --class rotate-90cw {
+ ${grubMenuCfg}
+ ${buildMenuAdditionalParamsGrub2 config "fbcon=rotate:1"}
+ }
+ submenu "Rotate framebuffer Upside-Down" --class rotate-180 {
+ ${grubMenuCfg}
+ ${buildMenuAdditionalParamsGrub2 config "fbcon=rotate:2"}
+ }
+ submenu "Rotate framebuffer Counter-Clockwise" --class rotate-90ccw {
+ ${grubMenuCfg}
+ ${buildMenuAdditionalParamsGrub2 config "fbcon=rotate:3"}
+ }
+
+ # As a proof of concept, mainly. (Not sure it has accessibility merits.)
+ submenu "" {return}
+ submenu "Use black on white" --class accessibility-blakconwhite {
+ ${grubMenuCfg}
+ ${buildMenuAdditionalParamsGrub2 config "vt.default_red=0xFF,0xBC,0x4F,0xB4,0x56,0xBC,0x4F,0x00,0xA1,0xCF,0x84,0xCA,0x8D,0xB4,0x84,0x68 vt.default_grn=0xFF,0x55,0xBA,0xBA,0x4D,0x4D,0xB3,0x00,0xA0,0x8F,0xB3,0xCA,0x88,0x93,0xA4,0x68 vt.default_blu=0xFF,0x58,0x5F,0x58,0xC5,0xBD,0xC5,0x00,0xA8,0xBB,0xAB,0x97,0xBD,0xC7,0xC5,0x68"}
+ }
+
+ # Serial access is a must!
+ submenu "" {return}
+ submenu "Serial console=ttyS0,115200n8" --class serial {
+ ${grubMenuCfg}
+ ${buildMenuAdditionalParamsGrub2 config "console=ttyS0,115200n8"}
+ }
+ }
+
+ menuentry 'rEFInd' --class refind {
+ # UUID is hard-coded in the derivation.
+ search --set=root --no-floppy --fs-uuid 1234-5678
+ chainloader (\$root)/EFI/boot/refind_x64.efi
+ }
+ menuentry 'Firmware Setup' --class settings {
+ fwsetup
+ clear
+ echo ""
+ echo "If you see this message, your EFI system doesn't support this feature."
+ echo ""
+ }
+ menuentry 'Shutdown' --class shutdown {
+ halt
+ }
EOF
- # A variant to boot with verbose logging to the console
- cat << EOF > $out/loader/entries/nixos-iso-debug.conf
- title NixOS ${config.system.nixos.label}${config.isoImage.appendToMenuLabel} (debug)
- linux /boot/${config.system.boot.loader.kernelFile}
- initrd /boot/${config.system.boot.loader.initrdFile}
- options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} loglevel=7
- EOF
-
- cat << EOF > $out/loader/loader.conf
- default nixos-iso
- timeout ${builtins.toString config.boot.loader.timeout}
- EOF
+ ${refind}
'';
efiImg = pkgs.runCommand "efi-image_eltorito" { buildInputs = [ pkgs.mtools pkgs.libfaketime ]; }
@@ -234,13 +431,31 @@ in
'';
};
+ isoImage.efiSplashImage = mkOption {
+ default = pkgs.fetchurl {
+ url = https://raw.githubusercontent.com/NixOS/nixos-artwork/a9e05d7deb38a8e005a2b52575a3f59a63a4dba0/bootloader/efi-background.png;
+ sha256 = "18lfwmp8yq923322nlb9gxrh5qikj1wsk6g5qvdh31c4h5b1538x";
+ };
+ description = ''
+ The splash image to use in the EFI bootloader.
+ '';
+ };
+
isoImage.splashImage = mkOption {
default = pkgs.fetchurl {
- url = https://raw.githubusercontent.com/NixOS/nixos-artwork/5729ab16c6a5793c10a2913b5a1b3f59b91c36ee/ideas/grub-splash/grub-nixos-1.png;
- sha256 = "43fd8ad5decf6c23c87e9026170a13588c2eba249d9013cb9f888da5e2002217";
+ url = https://raw.githubusercontent.com/NixOS/nixos-artwork/a9e05d7deb38a8e005a2b52575a3f59a63a4dba0/bootloader/isolinux/bios-boot.png;
+ sha256 = "1wp822zrhbg4fgfbwkr7cbkr4labx477209agzc0hr6k62fr6rxd";
};
description = ''
- The splash image to use in the bootloader.
+ The splash image to use in the legacy-boot bootloader.
+ '';
+ };
+
+ isoImage.grubTheme = mkOption {
+ default = pkgs.nixos-grub2-theme;
+ type = types.nullOr (types.either types.path types.package);
+ description = ''
+ The grub2 theme used for UEFI boot.
'';
};
@@ -358,6 +573,9 @@ in
{ source = "${pkgs.syslinux}/share/syslinux";
target = "/isolinux";
}
+ { source = config.isoImage.efiSplashImage;
+ target = "/EFI/boot/efi-background.png";
+ }
{ source = config.isoImage.splashImage;
target = "/isolinux/background.png";
}
@@ -371,13 +589,14 @@ in
{ source = "${efiDir}/EFI";
target = "/EFI";
}
- { source = "${efiDir}/loader";
- target = "/loader";
- }
] ++ optionals config.boot.loader.grub.memtest86.enable [
{ source = "${pkgs.memtest86plus}/memtest.bin";
target = "/boot/memtest.bin";
}
+ ] ++ optionals (!isNull config.isoImage.grubTheme) [
+ { source = config.isoImage.grubTheme;
+ target = "/EFI/boot/grub-theme";
+ }
];
boot.loader.timeout = 10;
diff --git a/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix b/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
index bd6cf029967cbc69583b427dd390dc4038e25815..86e19f3da5629d9364765a79a4e41e1eccf7bc59 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
@@ -16,7 +16,8 @@ in
];
assertions = lib.singleton {
- assertion = pkgs.stdenv.system == "aarch64-linux";
+ assertion = pkgs.stdenv.hostPlatform.system == "aarch64-linux"
+ && pkgs.stdenv.hostPlatform.system == pkgs.stdenv.buildPlatform.system;
message = "sd-image-aarch64.nix can be only built natively on Aarch64 / ARM64; " +
"it cannot be cross compiled";
};
diff --git a/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix b/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
index 0c89eb533359b85c368f04aa102dbb62a46b1ce3..695c79ca17073e8a9b1ea804d1ebd14cad50bc98 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
@@ -16,7 +16,8 @@ in
];
assertions = lib.singleton {
- assertion = pkgs.stdenv.system == "armv7l-linux";
+ assertion = pkgs.stdenv.hostPlatform.system == "armv7l-linux"
+ && pkgs.stdenv.hostPlatform.system == pkgs.stdenv.buildPlatform.system;
message = "sd-image-armv7l-multiplatform.nix can be only built natively on ARMv7; " +
"it cannot be cross compiled";
};
diff --git a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix b/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
index 78ea3f1a205c86b37854c48f1f83c68dd80643b6..e395b265d15e94511c29b03f4c1a2efc31709ab6 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
@@ -16,7 +16,8 @@ in
];
assertions = lib.singleton {
- assertion = pkgs.stdenv.system == "armv6l-linux";
+ assertion = pkgs.stdenv.hostPlatform.system == "armv6l-linux"
+ && pkgs.stdenv.hostPlatform.system == pkgs.stdenv.buildPlatform.system;
message = "sd-image-raspberrypi.nix can be only built natively on ARMv6; " +
"it cannot be cross compiled";
};
diff --git a/nixos/modules/installer/cd-dvd/sd-image.nix b/nixos/modules/installer/cd-dvd/sd-image.nix
index 2371be9d89a1e8688f00fc697fdc8a9d15e1d032..b6e1d11c2b547f6ae69dc66611f62a8056665aee 100644
--- a/nixos/modules/installer/cd-dvd/sd-image.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image.nix
@@ -22,7 +22,7 @@ in
{
options.sdImage = {
imageName = mkOption {
- default = "${config.sdImage.imageBaseName}-${config.system.nixos.label}-${pkgs.stdenv.system}.img";
+ default = "${config.sdImage.imageBaseName}-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.img";
description = ''
Name of the generated image file.
'';
@@ -102,7 +102,7 @@ in
mkdir -p $out/nix-support $out/sd-image
export img=$out/sd-image/${config.sdImage.imageName}
- echo "${pkgs.stdenv.system}" > $out/nix-support/system
+ echo "${pkgs.stdenv.buildPlatform.system}" > $out/nix-support/system
echo "file sd-image $img" >> $out/nix-support/hydra-build-products
# Create the image file sized to fit /boot and /, plus 20M of slack
diff --git a/nixos/modules/installer/netboot/netboot.nix b/nixos/modules/installer/netboot/netboot.nix
index ea640173c6dd4ee91235574a098fd4eb610a6681..303d9fce3f9aa521a682b131ca6736b81e9f9dec 100644
--- a/nixos/modules/installer/netboot/netboot.nix
+++ b/nixos/modules/installer/netboot/netboot.nix
@@ -25,7 +25,7 @@ with lib;
# !!! Hack - attributes expected by other modules.
environment.systemPackages = [ pkgs.grub2_efi ]
- ++ (if pkgs.stdenv.system == "aarch64-linux"
+ ++ (if pkgs.stdenv.hostPlatform.system == "aarch64-linux"
then []
else [ pkgs.grub2 pkgs.syslinux ]);
diff --git a/nixos/modules/installer/tools/nix-fallback-paths.nix b/nixos/modules/installer/tools/nix-fallback-paths.nix
index 7c5414257b46f052a347e8a5ffa198cfa9b4b547..6611a6ca079094d6ac8e00534d3df2b2322da730 100644
--- a/nixos/modules/installer/tools/nix-fallback-paths.nix
+++ b/nixos/modules/installer/tools/nix-fallback-paths.nix
@@ -1,6 +1,6 @@
{
- x86_64-linux = "/nix/store/0d60i73mcv8z1m8d2m74yfn84980gfsa-nix-2.0.4";
- i686-linux = "/nix/store/6ssafj2s5a2g9x28yld7b70vwd6vw6lb-nix-2.0.4";
- aarch64-linux = "/nix/store/3wwch7bp7n7xsl8apgy2a4b16yzyij1z-nix-2.0.4";
- x86_64-darwin = "/nix/store/771l8i0mz4c8kry8cz3sz8rr3alalckg-nix-2.0.4";
+ x86_64-linux = "/nix/store/r9i30v8nasafg2851wflg71ln49fw03y-nix-2.1";
+ i686-linux = "/nix/store/dsg3pr7wwrk51f7la9wgby173j18llqh-nix-2.1";
+ aarch64-linux = "/nix/store/m3qgnch4xin21pmd1azas8kkcp9rhkr6-nix-2.1";
+ x86_64-darwin = "/nix/store/n7fvy0k555gwkkdszdkhi3h0aahca8h3-nix-2.1";
}
diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl
index bb201d97ded1edb6995d9ca94a1dd4ff17762f56..359caad89a7206ed730ed2976fde7a17fb3fc37c 100644
--- a/nixos/modules/installer/tools/nixos-generate-config.pl
+++ b/nixos/modules/installer/tools/nixos-generate-config.pl
@@ -574,6 +574,10 @@ $bootLoaderConfig
# networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
+ # Configure network proxy if necessary
+ # networking.proxy.default = "http://user:password\@proxy:port/";
+ # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
+
# Select internationalisation properties.
# i18n = {
# consoleFont = "Lat2-Terminus16";
diff --git a/nixos/modules/misc/documentation.nix b/nixos/modules/misc/documentation.nix
index b482a5a675230405cc6d7f2c35928330dbca80e2..e6ccda5d7f4001baadae1ba6b19660440ccd004b 100644
--- a/nixos/modules/misc/documentation.nix
+++ b/nixos/modules/misc/documentation.nix
@@ -82,6 +82,14 @@ let cfg = config.documentation; in
environment.systemPackages = [ pkgs.texinfoInteractive ];
environment.pathsToLink = [ "/share/info" ];
environment.extraOutputsToInstall = [ "info" ] ++ optional cfg.dev.enable "devinfo";
+ environment.extraSetup = ''
+ if [ -w $out/share/info ]; then
+ shopt -s nullglob
+ for i in $out/share/info/*.info $out/share/info/*.info.gz; do
+ ${pkgs.texinfo}/bin/install-info $i $out/share/info/dir
+ done
+ fi
+ '';
})
(mkIf cfg.doc.enable {
diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix
index bffd8aff78b9081743923213adf7ed2e6a62b677..8292cdc995e0829239621240507187ac8cd393d2 100644
--- a/nixos/modules/misc/ids.nix
+++ b/nixos/modules/misc/ids.nix
@@ -326,6 +326,9 @@
cfssl = 299;
cassandra = 300;
qemu-libvirtd = 301;
+ # kvm = 302; # unused
+ # render = 303; # unused
+ zeronet = 304;
# When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399!
@@ -612,6 +615,9 @@
cfssl = 299;
cassandra = 300;
qemu-libvirtd = 301;
+ kvm = 302; # default udev rules from systemd requires these
+ render = 303; # default udev rules from systemd requires these
+ zeronet = 304;
# When adding a gid, make sure it doesn't match an existing
# uid. Users and groups with the same name should have equal
diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix
index 63717e0c6a8107debd672791d979d9d350d1bf69..c593adcdae6e00e3b0398cc4657fbd265ccc82cf 100644
--- a/nixos/modules/misc/version.nix
+++ b/nixos/modules/misc/version.nix
@@ -84,7 +84,7 @@ in
versionSuffix = mkIf (pathIsDirectory gitRepo) (mkDefault (".git." + gitCommitId));
# Note: the first letter is bumped on every release. It's an animal.
- codeName = "Jellyfish";
+ codeName = "Koi";
};
# Generate /etc/os-release. See
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 2846afea8fbc1231568ffdc124ec6a94ecb09982..4795922abcfb830c588435b34865bf5cf8656b01 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -7,6 +7,10 @@
./config/fonts/fontdir.nix
./config/fonts/fonts.nix
./config/fonts/ghostscript.nix
+ ./config/xdg/autostart.nix
+ ./config/xdg/icons.nix
+ ./config/xdg/menus.nix
+ ./config/xdg/mime.nix
./config/gnu.nix
./config/i18n.nix
./config/iproute2.nix
@@ -250,6 +254,7 @@
./services/desktops/zeitgeist.nix
./services/development/bloop.nix
./services/development/hoogle.nix
+ ./services/development/jupyter/default.nix
./services/editors/emacs.nix
./services/editors/infinoted.nix
./services/games/factorio.nix
@@ -416,6 +421,7 @@
./services/monitoring/graphite.nix
./services/monitoring/hdaps.nix
./services/monitoring/heapster.nix
+ ./services/monitoring/incron.nix
./services/monitoring/longview.nix
./services/monitoring/monit.nix
./services/monitoring/munin.nix
@@ -614,6 +620,7 @@
./services/networking/xl2tpd.nix
./services/networking/xrdp.nix
./services/networking/zerobin.nix
+ ./services/networking/zeronet.nix
./services/networking/zerotierone.nix
./services/networking/znc.nix
./services/printing/cupsd.nix
@@ -623,6 +630,7 @@
./services/scheduling/fcron.nix
./services/scheduling/marathon.nix
./services/search/elasticsearch.nix
+ ./services/search/elasticsearch-curator.nix
./services/search/hound.nix
./services/search/kibana.nix
./services/search/solr.nix
diff --git a/nixos/modules/programs/environment.nix b/nixos/modules/programs/environment.nix
index 3bac8d98990ab5c48165de40233cfe119d6c5d15..3c6d356ef998d517880b27046d2e495342e9c051 100644
--- a/nixos/modules/programs/environment.nix
+++ b/nixos/modules/programs/environment.nix
@@ -40,7 +40,6 @@ in
GTK_PATH = [ "/lib/gtk-2.0" "/lib/gtk-3.0" ];
XDG_CONFIG_DIRS = [ "/etc/xdg" ];
XDG_DATA_DIRS = [ "/share" ];
- XCURSOR_PATH = [ "/share/icons" ];
MOZ_PLUGIN_PATH = [ "/lib/mozilla/plugins" ];
LIBEXEC_PATH = [ "/lib/libexec" ];
};
diff --git a/nixos/modules/programs/zsh/oh-my-zsh.xml b/nixos/modules/programs/zsh/oh-my-zsh.xml
index b74da8630ee77e86d23a6b176bd87e1381f027a1..6567d4a42facd62b66bbc1d3fa897cb188a5a5dc 100644
--- a/nixos/modules/programs/zsh/oh-my-zsh.xml
+++ b/nixos/modules/programs/zsh/oh-my-zsh.xml
@@ -10,7 +10,7 @@
to manage your ZSH configuration
including completion scripts for several CLI tools or custom prompt themes.
-Basic usage
+Basic usage
The module uses the oh-my-zsh package with all available features. The
initial setup using Nix expressions is fairly similar to the configuration format
of oh-my-zsh.
@@ -32,7 +32,7 @@ For a detailed explanation of these arguments please refer to the
configuration and writes it into your /etc/zshrc.
-Custom additions
+Custom additions
Sometimes third-party or custom scripts such as a modified theme may be needed.
oh-my-zsh provides the
@@ -48,7 +48,7 @@ environment variable for this which points to a directory with additional script
-Custom environments
+Custom environments
There are several extensions for oh-my-zsh packaged in nixpkgs.
One of them is nix-zsh-completions
@@ -77,7 +77,7 @@ as it requires an immutable store path while custom shall rem
will be thrown if both custom and customPkgs are set.
-Package your own customizations
+Package your own customizations
If third-party customizations (e.g. new themes) are supposed to be added to oh-my-zsh
there are several pitfalls to keep in mind:
diff --git a/nixos/modules/programs/zsh/zsh.nix b/nixos/modules/programs/zsh/zsh.nix
index 42d4e1d4ada010f843fa08408ac2cef74cfe8e05..d30b3415411f2aee695253ef225531f3ec726f57 100644
--- a/nixos/modules/programs/zsh/zsh.nix
+++ b/nixos/modules/programs/zsh/zsh.nix
@@ -87,6 +87,19 @@ in
type = types.bool;
};
+
+ enableGlobalCompInit = mkOption {
+ default = cfg.enableCompletion;
+ description = ''
+ Enable execution of compinit call for all interactive zsh shells.
+
+ This option can be disabled if the user wants to extend its
+ fpath and a custom compinit
+ call in the local config is required.
+ '';
+ type = types.bool;
+ };
+
};
};
@@ -159,7 +172,7 @@ in
fpath+=($p/share/zsh/site-functions $p/share/zsh/$ZSH_VERSION/functions $p/share/zsh/vendor-completions)
done
- ${optionalString cfg.enableCompletion "autoload -U compinit && compinit"}
+ ${optionalString cfg.enableGlobalCompInit "autoload -U compinit && compinit"}
${cfge.interactiveShellInit}
diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix
index f032f10e455730a94654293d9881a4a018f650e7..4a6bdfe83dd28495e35215bfd6ea1c973a758c37 100644
--- a/nixos/modules/rename.nix
+++ b/nixos/modules/rename.nix
@@ -219,7 +219,7 @@ with lib;
'')
# Profile splitting
- (mkRenamedOptionModule [ "virtualization" "growPartition" ] [ "boot" "growPartition" ])
+ (mkRenamedOptionModule [ "virtualisation" "growPartition" ] [ "boot" "growPartition" ])
# misc/version.nix
(mkRenamedOptionModule [ "system" "nixosVersion" ] [ "system" "nixos" "version" ])
@@ -256,6 +256,7 @@ with lib;
(mkRemovedOptionModule [ "fonts" "fontconfig" "forceAutohint" ] "")
(mkRemovedOptionModule [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ] "")
(mkRemovedOptionModule [ "virtualisation" "xen" "qemu" ] "You don't need this option anymore, it will work without it.")
+ (mkRemovedOptionModule [ "services" "logstash" "enableWeb" ] "The web interface was removed from logstash")
(mkRemovedOptionModule [ "boot" "zfs" "enableLegacyCrypto" ] "The corresponding package was removed from nixpkgs.")
# ZSH
diff --git a/nixos/modules/security/acme.xml b/nixos/modules/security/acme.xml
index 7cdc554989ea4bce9033ef330e3edf27a36f305a..b4cd83f6632c757fded6bcf975e13faf5adf9c0b 100644
--- a/nixos/modules/security/acme.xml
+++ b/nixos/modules/security/acme.xml
@@ -11,7 +11,7 @@ retrieval and renewal using the ACME protocol. This is currently only
implemented by and for Let's Encrypt. The alternative ACME client
simp_le is used under the hood.
-Prerequisites
+Prerequisites
You need to have a running HTTP server for verification. The server must
have a webroot defined that can serve
@@ -41,7 +41,7 @@ http {
-Configuring
+Configuring
To enable ACME certificate retrieval & renewal for a certificate for
foo.example.com, add the following in your
@@ -66,7 +66,7 @@ options for the security.acme mod
-Using ACME certificates in Nginx
+Using ACME certificates in Nginx
NixOS supports fetching ACME certificates for you by setting
enableACME = true; in a virtualHost config. We
first create self-signed placeholder certificates in place of the
diff --git a/nixos/modules/services/databases/foundationdb.xml b/nixos/modules/services/databases/foundationdb.xml
index f4090c4927641117c5673d98f1a0f34c880e7603..7883680d46cc3a3b82e10d1c2afaf0654d82a5c0 100644
--- a/nixos/modules/services/databases/foundationdb.xml
+++ b/nixos/modules/services/databases/foundationdb.xml
@@ -17,7 +17,7 @@
FoundationDB (or "FDB") is an open source, distributed, transactional
key-value store.
-Configuring and basic setup
+Configuring and basic setup
To enable FoundationDB, add the following to your
configuration.nix:
@@ -133,7 +133,7 @@ corresponding as well.
-Scaling processes and backup agents
+Scaling processes and backup agents
Scaling the number of server processes is quite easy; simply specify
to be the number of
@@ -151,7 +151,7 @@ available backup processes.
-Clustering
+Clustering
FoundationDB on NixOS works similarly to other Linux systems, so this
section will be brief. Please refer to the full FoundationDB documentation for
@@ -221,7 +221,7 @@ informing all client processes to do the same.
-Client connectivity
+Client connectivity
By default, all clients must use the current
fdb.cluster file to access a given FoundationDB cluster.
@@ -232,7 +232,7 @@ to a new node in order to connect, if it is not part of the cluster.
-Client authorization and TLS
+Client authorization and TLS
By default, any user who can connect to a FoundationDB process with the
correct cluster configuration can access anything. FoundationDB uses a
@@ -270,7 +270,7 @@ on.
-Backups and Disaster Recovery
+Backups and Disaster Recovery
The usual rules for doing FoundationDB backups apply on NixOS as written
in the FoundationDB manual. However, one important difference is the security
@@ -316,7 +316,7 @@ $ sudo -u foundationdb fdbbackup status -t default
-Known limitations
+Known limitations
The FoundationDB setup for NixOS should currently be considered beta.
FoundationDB is not new software, but the NixOS compilation and integration has
@@ -333,7 +333,7 @@ only undergone fairly basic testing of all the available functionality.
-Options
+Options
NixOS's FoundationDB module allows you to configure all of the most
relevant configuration options for fdbmonitor, matching it
@@ -343,7 +343,7 @@ also read the FoundationDB documentation as well.
-Full documentation
+Full documentation
FoundationDB is a complex piece of software, and requires careful
administration to properly use. Full documentation for administration can be
diff --git a/nixos/modules/services/databases/postgresql.xml b/nixos/modules/services/databases/postgresql.xml
index 98a631c0cd32aff47946ba9e4e7e034262b5b07e..1aaf339632454c02cd9e8e81bcc81207eebacee2 100644
--- a/nixos/modules/services/databases/postgresql.xml
+++ b/nixos/modules/services/databases/postgresql.xml
@@ -17,7 +17,7 @@
PostgreSQL is an advanced, free relational database.
-Configuring
+Configuring
To enable PostgreSQL, add the following to your
configuration.nix:
@@ -60,14 +60,14 @@ alice=>
-Upgrading
+Upgrading
FIXME: document dump/upgrade/load cycle.
-Options
+Options
A complete list of options for the PostgreSQL module may be found here.
diff --git a/nixos/modules/services/development/jupyter/default.nix b/nixos/modules/services/development/jupyter/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..9fcc0043186547269c5c9f8a8f2c6a40b041815b
--- /dev/null
+++ b/nixos/modules/services/development/jupyter/default.nix
@@ -0,0 +1,184 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ cfg = config.services.jupyter;
+
+ # NOTE: We don't use top-level jupyter because we don't
+ # want to pass in JUPYTER_PATH but use .environment instead,
+ # saving a rebuild.
+ package = pkgs.python3.pkgs.notebook;
+
+ kernels = (pkgs.jupyter-kernel.create {
+ definitions = if cfg.kernels != null
+ then cfg.kernels
+ else pkgs.jupyter-kernel.default;
+ });
+
+ notebookConfig = pkgs.writeText "jupyter_config.py" ''
+ ${cfg.notebookConfig}
+
+ c.NotebookApp.password = ${cfg.password}
+ '';
+
+in {
+ meta.maintainers = with maintainers; [ aborsu ];
+
+ options.services.jupyter = {
+ enable = mkEnableOption "Jupyter development server";
+
+ ip = mkOption {
+ type = types.str;
+ default = "localhost";
+ description = ''
+ IP address Jupyter will be listening on.
+ '';
+ };
+
+ port = mkOption {
+ type = types.int;
+ default = 8888;
+ description = ''
+ Port number Jupyter will be listening on.
+ '';
+ };
+
+ notebookDir = mkOption {
+ type = types.str;
+ default = "~/";
+ description = ''
+ Root directory for notebooks.
+ '';
+ };
+
+ user = mkOption {
+ type = types.str;
+ default = "jupyter";
+ description = ''
+ Name of the user used to run the jupyter service.
+ For security reason, jupyter should really not be run as root.
+ If not set (jupyter), the service will create a jupyter user with appropriate settings.
+ '';
+ example = "aborsu";
+ };
+
+ group = mkOption {
+ type = types.str;
+ default = "jupyter";
+ description = ''
+ Name of the group used to run the jupyter service.
+ Use this if you want to create a group of users that are able to view the notebook directory's content.
+ '';
+ example = "users";
+ };
+
+ password = mkOption {
+ type = types.str;
+ description = ''
+ Password to use with notebook.
+ Can be generated using:
+ In [1]: from notebook.auth import passwd
+ In [2]: passwd('test')
+ Out[2]: 'sha1:1b961dc713fb:88483270a63e57d18d43cf337e629539de1436ba'
+ NOTE: you need to keep the single quote inside the nix string.
+ Or you can use a python oneliner:
+ "open('/path/secret_file', 'r', encoding='utf8').read().strip()"
+ It will be interpreted at the end of the notebookConfig.
+ '';
+ example = [
+ "'sha1:1b961dc713fb:88483270a63e57d18d43cf337e629539de1436ba'"
+ "open('/path/secret_file', 'r', encoding='utf8').read().strip()"
+ ];
+ };
+
+ notebookConfig = mkOption {
+ type = types.lines;
+ default = "";
+ description = ''
+ Raw jupyter config.
+ '';
+ };
+
+ kernels = mkOption {
+ type = types.nullOr (types.attrsOf(types.submodule (import ./kernel-options.nix {
+ inherit lib;
+ })));
+
+ default = null;
+ example = literalExample ''
+ {
+ python3 = let
+ env = (pkgs.python3.withPackages (pythonPackages: with pythonPackages; [
+ ipykernel
+ pandas
+ scikitlearn
+ ]));
+ in {
+ displayName = "Python 3 for machine learning";
+ argv = [
+ "$ {env.interpreter}"
+ "-m"
+ "ipykernel_launcher"
+ "-f"
+ "{connection_file}"
+ ];
+ language = "python";
+ logo32 = "$ {env.sitePackages}/ipykernel/resources/logo-32x32.png";
+ logo64 = "$ {env.sitePackages}/ipykernel/resources/logo-64x64.png";
+ };
+ }
+ '';
+ description = "Declarative kernel config
+
+ Kernels can be declared in any language that supports and has the required
+ dependencies to communicate with a jupyter server.
+ In python's case, it means that ipykernel package must always be included in
+ the list of packages of the targeted environment.
+ ";
+ };
+ };
+
+ config = mkMerge [
+ (mkIf cfg.enable {
+ systemd.services.jupyter = {
+ description = "Jupyter development server";
+
+ wantedBy = [ "multi-user.target" ];
+
+ # TODO: Patch notebook so we can explicitly pass in a shell
+ path = [ pkgs.bash ]; # needed for sh in cell magic to work
+
+ environment = {
+ JUPYTER_PATH = toString kernels;
+ };
+
+ serviceConfig = {
+ Restart = "always";
+ ExecStart = ''${package}/bin/jupyter-notebook \
+ --no-browser \
+ --ip=${cfg.ip} \
+ --port=${toString cfg.port} --port-retries 0 \
+ --notebook-dir=${cfg.notebookDir} \
+ --NotebookApp.config_file=${notebookConfig}
+ '';
+ User = cfg.user;
+ Group = cfg.group;
+ WorkingDirectory = "~";
+ };
+ };
+ })
+ (mkIf (cfg.enable && (cfg.group == "jupyter")) {
+ users.groups.jupyter = {};
+ })
+ (mkIf (cfg.enable && (cfg.user == "jupyter")) {
+ users.extraUsers.jupyter = {
+ extraGroups = [ cfg.group ];
+ home = "/var/lib/jupyter";
+ createHome = true;
+ useDefaultShell = true; # needed so that the user can start a terminal.
+ };
+ })
+ ];
+}
diff --git a/nixos/modules/services/development/jupyter/kernel-options.nix b/nixos/modules/services/development/jupyter/kernel-options.nix
new file mode 100644
index 0000000000000000000000000000000000000000..03547637449a2112f1da2f8196aa93ecbc377638
--- /dev/null
+++ b/nixos/modules/services/development/jupyter/kernel-options.nix
@@ -0,0 +1,60 @@
+# Options that can be used for creating a jupyter kernel.
+{lib }:
+
+with lib;
+
+{
+ options = {
+
+ displayName = mkOption {
+ type = types.str;
+ default = "";
+ example = [
+ "Python 3"
+ "Python 3 for Data Science"
+ ];
+ description = ''
+ Name that will be shown to the user.
+ '';
+ };
+
+ argv = mkOption {
+ type = types.listOf types.str;
+ example = [
+ "{customEnv.interpreter}"
+ "-m"
+ "ipykernel_launcher"
+ "-f"
+ "{connection_file}"
+ ];
+ description = ''
+ Command and arguments to start the kernel.
+ '';
+ };
+
+ language = mkOption {
+ type = types.str;
+ example = "python";
+ description = ''
+ Language of the environment. Typically the name of the binary.
+ '';
+ };
+
+ logo32 = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ example = "{env.sitePackages}/ipykernel/resources/logo-32x32.png";
+ description = ''
+ Path to 32x32 logo png.
+ '';
+ };
+ logo64 = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ example = "{env.sitePackages}/ipykernel/resources/logo-64x64.png";
+ description = ''
+ Path to 64x64 logo png.
+ '';
+ };
+ };
+}
diff --git a/nixos/modules/services/editors/emacs.xml b/nixos/modules/services/editors/emacs.xml
index dfab5ce4a79d39747e72de8d052e2cbae14a4985..94eb2e6a77bf51b551f1b10da274f846adf280aa 100644
--- a/nixos/modules/services/editors/emacs.xml
+++ b/nixos/modules/services/editors/emacs.xml
@@ -39,7 +39,7 @@
starting the Emacs daemon.
-
+
Installing Emacs
@@ -49,7 +49,7 @@
can be enabled.
-
+
The Different Releases of Emacs
@@ -100,7 +100,7 @@
-
+
Adding Packages to Emacs
Emacs includes an entire ecosystem of functionality beyond
@@ -274,7 +274,7 @@ $ ./result/bin/emacs -q
The list of available packages in the various ELPA
repositories can be seen with the following commands:
-
+
Querying Emacs packages
" -qaP -A emacsPackagesNg.elpaPackages
@@ -291,7 +291,7 @@ nix-env -f "" -qaP -A emacsPackagesNg.orgPackages
(see ). Simply
modify your file configuration.nix to
make it contain:
-
+
Custom Emacs in configuration.nix
~/.config/nixpkgs/config.nix
(see Nixpkgs manual):
-
+
Custom Emacs in ~/.config/nixpkgs/config.nix
-
+
Advanced Emacs Configuration
@@ -380,7 +380,7 @@ in [...]
-
+
Running Emacs as a Service
NixOS provides an optional
@@ -396,7 +396,7 @@ in [...]
modules/services/editors/emacs.nix
-
+
Enabling the Service
@@ -438,7 +438,7 @@ $ systemctl --user start emacs.service # to start the Emacs daemon
-
+
Starting the client
Ensure that the emacs server is enabled, either by customizing
@@ -457,7 +457,7 @@ emacsclient --create-frame --tty # opens a new frame on the current terminal
-
+
Configuring the EDITOR variable
@@ -487,7 +487,7 @@ emacsclient --create-frame --tty # opens a new frame on the current terminal
-
+
Per-User Enabling of the Service
@@ -515,14 +515,14 @@ emacsclient --create-frame --tty # opens a new frame on the current terminal
-
+
Configuring Emacs
The Emacs init file should be changed to load the extension
packages at startup:
-
+
Package initialization in .emacs
-
+
A Major Mode for Nix Expressions
@@ -558,7 +558,7 @@ emacsclient --create-frame --tty # opens a new frame on the current terminal
-
+
Accessing man pages
You can use woman to get completion of all
diff --git a/nixos/modules/services/logging/logstash.nix b/nixos/modules/services/logging/logstash.nix
index 28d89a7463ab7d419e7a1f8eb594cdfbbceb20e7..aa019d855ea9d631a62ed67e3c7128297cacdde3 100644
--- a/nixos/modules/services/logging/logstash.nix
+++ b/nixos/modules/services/logging/logstash.nix
@@ -4,25 +4,12 @@ with lib;
let
cfg = config.services.logstash;
- atLeast54 = versionAtLeast (builtins.parseDrvName cfg.package.name).version "5.4";
pluginPath = lib.concatStringsSep ":" cfg.plugins;
havePluginPath = lib.length cfg.plugins > 0;
ops = lib.optionalString;
- verbosityFlag =
- if atLeast54
- then "--log.level " + cfg.logLevel
- else {
- debug = "--debug";
- info = "--verbose";
- warn = ""; # intentionally empty
- error = "--quiet";
- fatal = "--silent";
- }."${cfg.logLevel}";
-
- pluginsPath =
- if atLeast54
- then "--path.plugins ${pluginPath}"
- else "--pluginpath ${pluginPath}";
+ verbosityFlag = "--log.level " + cfg.logLevel;
+
+ pluginsPath = "--path.plugins ${pluginPath}";
logstashConf = pkgs.writeText "logstash.conf" ''
input {
@@ -63,7 +50,7 @@ in
type = types.package;
default = pkgs.logstash;
defaultText = "pkgs.logstash";
- example = literalExample "pkgs.logstash";
+ example = literalExample "pkgs.logstash5";
description = "Logstash package to use.";
};
@@ -95,12 +82,6 @@ in
description = "The quantity of filter workers to run.";
};
- enableWeb = mkOption {
- type = types.bool;
- default = false;
- description = "Enable the logstash web interface.";
- };
-
listenAddress = mkOption {
type = types.str;
default = "127.0.0.1";
@@ -174,16 +155,6 @@ in
###### implementation
config = mkIf cfg.enable {
- assertions = [
- { assertion = atLeast54 -> !cfg.enableWeb;
- message = ''
- The logstash web interface is only available for versions older than 5.4.
- So either set services.logstash.enableWeb = false,
- or set services.logstash.package to an older logstash.
- '';
- }
- ];
-
systemd.services.logstash = with pkgs; {
description = "Logstash Daemon";
wantedBy = [ "multi-user.target" ];
@@ -193,14 +164,12 @@ in
ExecStartPre = ''${pkgs.coreutils}/bin/mkdir -p "${cfg.dataDir}" ; ${pkgs.coreutils}/bin/chmod 700 "${cfg.dataDir}"'';
ExecStart = concatStringsSep " " (filter (s: stringLength s != 0) [
"${cfg.package}/bin/logstash"
- (ops (!atLeast54) "agent")
"-w ${toString cfg.filterWorkers}"
(ops havePluginPath pluginsPath)
"${verbosityFlag}"
"-f ${logstashConf}"
- (ops atLeast54 "--path.settings ${logstashSettingsDir}")
- (ops atLeast54 "--path.data ${cfg.dataDir}")
- (ops cfg.enableWeb "-- web -a ${cfg.listenAddress} -p ${cfg.port}")
+ "--path.settings ${logstashSettingsDir}"
+ "--path.data ${cfg.dataDir}"
]);
};
};
diff --git a/nixos/modules/services/misc/gitea.nix b/nixos/modules/services/misc/gitea.nix
index 5d664728e0b5f9e49b5844345ece977c217b5ec4..a222325579fecf5e0cd3f9b9fe387a532460b59c 100644
--- a/nixos/modules/services/misc/gitea.nix
+++ b/nixos/modules/services/misc/gitea.nix
@@ -261,7 +261,8 @@ in
runConfig = "${cfg.stateDir}/custom/conf/app.ini";
secretKey = "${cfg.stateDir}/custom/conf/secret_key";
in ''
- mkdir -p ${cfg.stateDir}
+ # Make sure that the stateDir exists, as well as the conf dir in there
+ mkdir -p ${cfg.stateDir}/conf
# copy custom configuration and generate a random secret key if needed
${optionalString (cfg.useWizard == false) ''
@@ -282,7 +283,7 @@ in
mkdir -p ${cfg.repositoryRoot}
# update all hooks' binary paths
- HOOKS=$(find ${cfg.repositoryRoot} -mindepth 4 -maxdepth 5 -type f -wholename "*git/hooks/*")
+ HOOKS=$(find ${cfg.repositoryRoot} -mindepth 4 -maxdepth 6 -type f -wholename "*git/hooks/*")
if [ "$HOOKS" ]
then
sed -ri 's,/nix/store/[a-z0-9.-]+/bin/gitea,${gitea.bin}/bin/gitea,g' $HOOKS
@@ -290,11 +291,13 @@ in
sed -ri 's,/nix/store/[a-z0-9.-]+/bin/bash,${pkgs.bash}/bin/bash,g' $HOOKS
sed -ri 's,/nix/store/[a-z0-9.-]+/bin/perl,${pkgs.perl}/bin/perl,g' $HOOKS
fi
- if [ ! -d ${cfg.stateDir}/conf/locale ]
+ # If we have a folder or symlink with gitea locales, remove it
+ if [ -e ${cfg.stateDir}/conf/locale ]
then
- mkdir -p ${cfg.stateDir}/conf
- cp -r ${gitea.out}/locale ${cfg.stateDir}/conf/locale
+ rm -r ${cfg.stateDir}/conf/locale
fi
+ # And symlink the current gitea locales in place
+ ln -s ${gitea.out}/locale ${cfg.stateDir}/conf/locale
# update command option in authorized_keys
if [ -r ${cfg.stateDir}/.ssh/authorized_keys ]
then
diff --git a/nixos/modules/services/misc/gitit.nix b/nixos/modules/services/misc/gitit.nix
index 0025d96bd37bddc7f702f11a4c796fe8519949ab..1ec030549f98e1df239ed3a2bf903f80e8cb573f 100644
--- a/nixos/modules/services/misc/gitit.nix
+++ b/nixos/modules/services/misc/gitit.nix
@@ -10,7 +10,7 @@ let
toYesNo = b: if b then "yes" else "no";
- gititShared = with cfg.haskellPackages; gitit + "/share/" + pkgs.stdenv.system + "-" + ghc.name + "/" + gitit.pname + "-" + gitit.version;
+ gititShared = with cfg.haskellPackages; gitit + "/share/" + pkgs.stdenv.hostPlatform.system + "-" + ghc.name + "/" + gitit.pname + "-" + gitit.version;
gititWithPkgs = hsPkgs: extras: hsPkgs.ghcWithPackages (self: with self; [ gitit ] ++ (extras self));
diff --git a/nixos/modules/services/misc/gitlab.xml b/nixos/modules/services/misc/gitlab.xml
index 3306ba8e9b11e143e039fff13ccaff00bd9b50c4..67b9f1d3e474e65264e72365d27d413688fc6313 100644
--- a/nixos/modules/services/misc/gitlab.xml
+++ b/nixos/modules/services/misc/gitlab.xml
@@ -8,7 +8,7 @@
Gitlab is a feature-rich git hosting service.
-Prerequisites
+Prerequisites
The gitlab service exposes only an Unix socket at
/run/gitlab/gitlab-workhorse.socket. You need to configure a
@@ -35,7 +35,7 @@ webserver to proxy HTTP requests to the socket.
-Configuring
+Configuring
Gitlab depends on both PostgreSQL and Redis and will automatically enable
both services. In the case of PostgreSQL, a database and a role will be created.
@@ -119,7 +119,7 @@ options for the services.gitlab
-Maintenance
+Maintenance
You can run Gitlab's rake tasks with gitlab-rake
which will be available on the system when gitlab is enabled. You will
diff --git a/nixos/modules/services/misc/nixos-manual.nix b/nixos/modules/services/misc/nixos-manual.nix
index 3916c3052e8bf146acb36367e38755864a010710..993b59590bb0ca4ccb93addcf07fb1698884effc 100644
--- a/nixos/modules/services/misc/nixos-manual.nix
+++ b/nixos/modules/services/misc/nixos-manual.nix
@@ -44,7 +44,13 @@ let
helpScript = pkgs.writeScriptBin "nixos-help"
''
#! ${pkgs.runtimeShell} -e
- browser="$BROWSER"
+ # Finds first executable browser in a colon-separated list.
+ # (see how xdg-open defines BROWSER)
+ browser="$(
+ IFS=: ; for b in $BROWSER; do
+ [ -n "$(type -P "$b" || true)" ] && echo "$b" && break
+ done
+ )"
if [ -z "$browser" ]; then
browser="$(type -P xdg-open || true)"
if [ -z "$browser" ]; then
diff --git a/nixos/modules/services/misc/taskserver/doc.xml b/nixos/modules/services/misc/taskserver/doc.xml
index 75493ac1394f6e7b0d546417c60dc42a22ddc085..21d25ecf391f13cfd8799286a4cdda63c8f0b949 100644
--- a/nixos/modules/services/misc/taskserver/doc.xml
+++ b/nixos/modules/services/misc/taskserver/doc.xml
@@ -16,7 +16,7 @@
-
+
Configuration
@@ -48,7 +48,7 @@
-
+
The nixos-taskserver tool
@@ -78,7 +78,7 @@
switch.
-
+
Declarative/automatic CA management
@@ -131,7 +131,7 @@ $ ssh server nixos-taskserver user export my-company alice | sh
task sync after that stage.
-
+
Manual CA management
diff --git a/nixos/modules/services/monitoring/datadog-agent.nix b/nixos/modules/services/monitoring/datadog-agent.nix
index f8ee34ebdf883d22ff3aba9ac9d6321ee3b2d81d..e545e06b3495831af4c34b72f0e7e96b6bb60067 100644
--- a/nixos/modules/services/monitoring/datadog-agent.nix
+++ b/nixos/modules/services/monitoring/datadog-agent.nix
@@ -11,7 +11,7 @@ let
api_key = "";
confd_path = "/etc/datadog-agent/conf.d";
additional_checksd = "/etc/datadog-agent/checks.d";
- use_dogstatsd = "yes";
+ use_dogstatsd = true;
}
// optionalAttrs (cfg.logLevel != null) { log_level = cfg.logLevel; }
// optionalAttrs (cfg.hostname != null) { inherit (cfg) hostname; }
diff --git a/nixos/modules/services/monitoring/incron.nix b/nixos/modules/services/monitoring/incron.nix
new file mode 100644
index 0000000000000000000000000000000000000000..1789fd9f20514adbd5d1fb0bf2b66f924e6a6ef3
--- /dev/null
+++ b/nixos/modules/services/monitoring/incron.nix
@@ -0,0 +1,98 @@
+
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ cfg = config.services.incron;
+
+in
+
+{
+ options = {
+
+ services.incron = {
+
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to enable the incron daemon.
+
+ Note that commands run under incrontab only support common Nix profiles for the PATH provided variable.
+ '';
+ };
+
+ allow = mkOption {
+ type = types.nullOr (types.listOf types.str);
+ default = null;
+ description = ''
+ Users allowed to use incrontab.
+
+ If empty then no user will be allowed to have their own incrontab.
+ If null then will defer to .
+ If both and are null
+ then all users will be allowed to have their own incrontab.
+ '';
+ };
+
+ deny = mkOption {
+ type = types.nullOr (types.listOf types.str);
+ default = null;
+ description = "Users forbidden from using incrontab.";
+ };
+
+ systab = mkOption {
+ type = types.lines;
+ default = "";
+ description = "The system incrontab contents.";
+ example = ''
+ /var/mail IN_CLOSE_WRITE abc $@/$#
+ /tmp IN_ALL_EVENTS efg $@/$# $&
+ '';
+ };
+
+ extraPackages = mkOption {
+ type = types.listOf types.package;
+ default = [];
+ example = literalExample "[ pkgs.rsync ]";
+ description = "Extra packages available to the system incrontab.";
+ };
+
+ };
+
+ };
+
+ config = mkIf cfg.enable {
+
+ warnings = optional (cfg.allow != null && cfg.deny != null)
+ ''If `services.incron.allow` is set then `services.incron.deny` will be ignored.'';
+
+ environment.systemPackages = [ pkgs.incron ];
+
+ security.wrappers.incrontab.source = "${pkgs.incron}/bin/incrontab";
+
+ # incron won't read symlinks
+ environment.etc."incron.d/system" = {
+ mode = "0444";
+ text = cfg.systab;
+ };
+ environment.etc."incron.allow" = mkIf (cfg.allow != null) {
+ text = concatStringsSep "\n" cfg.allow;
+ };
+ environment.etc."incron.deny" = mkIf (cfg.deny != null) {
+ text = concatStringsSep "\n" cfg.deny;
+ };
+
+ systemd.services.incron = {
+ description = "File System Events Scheduler";
+ wantedBy = [ "multi-user.target" ];
+ path = cfg.extraPackages;
+ serviceConfig.PIDFile = "/run/incrond.pid";
+ serviceConfig.ExecStartPre = "${pkgs.coreutils}/bin/mkdir -m 710 -p /var/spool/incron";
+ serviceConfig.ExecStart = "${pkgs.incron}/bin/incrond --foreground";
+ };
+ };
+
+}
diff --git a/nixos/modules/services/monitoring/prometheus/exporters.xml b/nixos/modules/services/monitoring/prometheus/exporters.xml
index 4f0bcb29810670e181f5e985a09b9f0ef779842b..be86abb74b44c59c598cdbd49fdfc9ba68a459af 100644
--- a/nixos/modules/services/monitoring/prometheus/exporters.xml
+++ b/nixos/modules/services/monitoring/prometheus/exporters.xml
@@ -8,7 +8,7 @@
Prometheus exporters provide metrics for the prometheus monitoring system.
-Configuration
+Configuration
One of the most common exporters is the node exporter, it provides hardware and OS metrics from the host it's running on. The exporter could be configured as follows:
services.promtheus.exporters.node = {
@@ -33,7 +33,7 @@ For more information about configuration see man configuration.nixavailable options.
-Adding a new exporter
+Adding a new exporter
To add a new exporter, it has to be packaged first (see nixpkgs/pkgs/servers/monitoring/prometheus/ for examples), then a module can be added. The postfix exporter is used in this example:
diff --git a/nixos/modules/services/monitoring/zabbix-agent.nix b/nixos/modules/services/monitoring/zabbix-agent.nix
index 87857225e7d754ca3f7069c1544f976d17bb6469..426cf9bf86ef8157bb62d525060eafdbbff6bcee 100644
--- a/nixos/modules/services/monitoring/zabbix-agent.nix
+++ b/nixos/modules/services/monitoring/zabbix-agent.nix
@@ -7,6 +7,8 @@ let
cfg = config.services.zabbixAgent;
+ zabbix = cfg.package;
+
stateDir = "/var/run/zabbix";
logDir = "/var/log/zabbix";
@@ -44,6 +46,16 @@ in
'';
};
+ package = mkOption {
+ type = types.attrs; # Note: pkgs.zabbixXY isn't a derivation, but an attrset of { server = ...; agent = ...; }.
+ default = pkgs.zabbix;
+ defaultText = "pkgs.zabbix";
+ example = literalExample "pkgs.zabbix34";
+ description = ''
+ The Zabbix package to use.
+ '';
+ };
+
server = mkOption {
default = "127.0.0.1";
description = ''
@@ -87,14 +99,14 @@ in
chown zabbix ${stateDir} ${logDir}
'';
- serviceConfig.ExecStart = "@${pkgs.zabbix.agent}/sbin/zabbix_agentd zabbix_agentd --config ${configFile}";
+ serviceConfig.ExecStart = "@${zabbix.agent}/sbin/zabbix_agentd zabbix_agentd --config ${configFile}";
serviceConfig.Type = "forking";
serviceConfig.RemainAfterExit = true;
serviceConfig.Restart = "always";
serviceConfig.RestartSec = 2;
};
- environment.systemPackages = [ pkgs.zabbix.agent ];
+ environment.systemPackages = [ zabbix.agent ];
};
diff --git a/nixos/modules/services/monitoring/zabbix-server.nix b/nixos/modules/services/monitoring/zabbix-server.nix
index f62d55457ed4ac884e0a1621390288741f0d656e..5f9fc12832fc0fc9a2b3d3e30e5ec9e808867be2 100644
--- a/nixos/modules/services/monitoring/zabbix-server.nix
+++ b/nixos/modules/services/monitoring/zabbix-server.nix
@@ -103,8 +103,8 @@ in
chown zabbix ${stateDir} ${logDir} ${libDir}
if ! test -e "${libDir}/db-created"; then
- ${pkgs.postgresql}/bin/createuser --no-superuser --no-createdb --no-createrole zabbix || true
- ${pkgs.postgresql}/bin/createdb --owner zabbix zabbix || true
+ ${pkgs.su}/bin/su -s "$SHELL" ${config.services.postgresql.superUser} -c '${pkgs.postgresql}/bin/createuser --no-superuser --no-createdb --no-createrole zabbix' || true
+ ${pkgs.su}/bin/su -s "$SHELL" ${config.services.postgresql.superUser} -c '${pkgs.postgresql}/bin/createdb --owner zabbix zabbix' || true
cat ${pkgs.zabbix.server}/share/zabbix/db/schema/postgresql.sql | ${pkgs.su}/bin/su -s "$SHELL" zabbix -c '${pkgs.postgresql}/bin/psql zabbix'
cat ${pkgs.zabbix.server}/share/zabbix/db/data/images_pgsql.sql | ${pkgs.su}/bin/su -s "$SHELL" zabbix -c '${pkgs.postgresql}/bin/psql zabbix'
cat ${pkgs.zabbix.server}/share/zabbix/db/data/data.sql | ${pkgs.su}/bin/su -s "$SHELL" zabbix -c '${pkgs.postgresql}/bin/psql zabbix'
diff --git a/nixos/modules/services/networking/bird.nix b/nixos/modules/services/networking/bird.nix
index 9f08cc0a79ede566398a3af929fdeb432eb485c6..555733aab7c0cc8c9f64b3673e4b4b6f4c9b782a 100644
--- a/nixos/modules/services/networking/bird.nix
+++ b/nixos/modules/services/networking/bird.nix
@@ -44,6 +44,7 @@ let
systemd.services.${variant} = {
description = "BIRD Internet Routing Daemon (${descr})";
wantedBy = [ "multi-user.target" ];
+ reloadIfChanged = true;
serviceConfig = {
Type = "forking";
Restart = "on-failure";
diff --git a/nixos/modules/services/networking/dnscrypt-proxy.xml b/nixos/modules/services/networking/dnscrypt-proxy.xml
index ff10886985891daca1e9f5c8b45c68051e2ddfcd..a97579202523e52d9a9a20dab331f32fcf7b8bdf 100644
--- a/nixos/modules/services/networking/dnscrypt-proxy.xml
+++ b/nixos/modules/services/networking/dnscrypt-proxy.xml
@@ -14,7 +14,7 @@
upstream is trustworthy).
- Basic configuration
+ Basic configuration
To enable the client proxy, set
@@ -31,7 +31,7 @@
- As a forwarder for another DNS client
+ As a forwarder for another DNS client
To run the DNSCrypt proxy client as a forwarder for another
@@ -42,7 +42,7 @@
- dnsmasq
+ dnsmasq
{
@@ -53,7 +53,7 @@
- unbound
+ unbound
{
diff --git a/nixos/modules/services/networking/firewall.nix b/nixos/modules/services/networking/firewall.nix
index 36f1dd8d24797b9683ac9bee5e6e0ecacc9b3e2d..86463f276c65d11453ebd0520acc5dfcc03e593e 100644
--- a/nixos/modules/services/networking/firewall.nix
+++ b/nixos/modules/services/networking/firewall.nix
@@ -123,7 +123,7 @@ let
# Perform a reverse-path test to refuse spoofers
# For now, we just drop, as the raw table doesn't have a log-refuse yet
ip46tables -t raw -N nixos-fw-rpfilter 2> /dev/null || true
- ip46tables -t raw -A nixos-fw-rpfilter -m rpfilter ${optionalString (cfg.checkReversePath == "loose") "--loose"} -j RETURN
+ ip46tables -t raw -A nixos-fw-rpfilter -m rpfilter --validmark ${optionalString (cfg.checkReversePath == "loose") "--loose"} -j RETURN
# Allows this host to act as a DHCP4 client without first having to use APIPA
iptables -t raw -A nixos-fw-rpfilter -p udp --sport 67 --dport 68 -j RETURN
diff --git a/nixos/modules/services/networking/iwd.nix b/nixos/modules/services/networking/iwd.nix
index cfc536fc5b5f66b5cdc8937b9cfd2575c24409f4..eb03d2e1d6321e53d37ca67d385ce7b099722ada 100644
--- a/nixos/modules/services/networking/iwd.nix
+++ b/nixos/modules/services/networking/iwd.nix
@@ -20,14 +20,7 @@ in {
services.dbus.packages = [ pkgs.iwd ];
- systemd.services.iwd = {
- description = "Wireless daemon";
- before = [ "network.target" ];
- wants = [ "network.target" ];
- wantedBy = [ "multi-user.target" ];
-
- serviceConfig.ExecStart = "${pkgs.iwd}/libexec/iwd";
- };
+ systemd.packages = [ pkgs.iwd ];
systemd.tmpfiles.rules = [
"d /var/lib/iwd 0700 root root -"
diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix
index b0bc1c83d6b706f27e41bb6c1b9c666332dfbf33..d5af4648e8f918e99724fb11fdfbabda2f55322c 100644
--- a/nixos/modules/services/networking/networkmanager.nix
+++ b/nixos/modules/services/networking/networkmanager.nix
@@ -289,7 +289,7 @@ in {
source = mkOption {
type = types.path;
description = ''
- A script.
+ Path to the hook script.
'';
};
@@ -297,12 +297,28 @@ in {
type = types.enum (attrNames dispatcherTypesSubdirMap);
default = "basic";
description = ''
- Dispatcher hook type. Only basic hooks are currently available.
+ Dispatcher hook type. Look up the hooks described at
+ https://developer.gnome.org/NetworkManager/stable/NetworkManager.html
+ and choose the type depending on the output folder.
+ You should then filter the event type (e.g., "up"/"down") from within your script.
'';
};
};
});
default = [];
+ example = literalExample ''
+ [ {
+ source = pkgs.writeText "upHook" '''
+
+ if [ "$2" != "up" ]; then
+ logger "exit: event $2 != up"
+ fi
+
+ # coreutils and iproute are in PATH too
+ logger "Device $DEVICE_IFACE coming up"
+ ''';
+ type = "basic";
+ } ]'';
description = ''
A list of scripts which will be executed in response to network events.
'';
@@ -418,6 +434,7 @@ in {
++ lib.imap1 (i: s: {
inherit (s) source;
target = "NetworkManager/dispatcher.d/${dispatcherTypesSubdirMap.${s.type}}03userscript${lib.fixedWidthNumber 4 i}";
+ mode = "0544";
}) cfg.dispatcherScripts
++ optional (dynamicHostsEnabled)
{ target = "NetworkManager/dnsmasq.d/dyndns.conf";
@@ -475,6 +492,14 @@ in {
};
};
+ systemd.services."NetworkManager-dispatcher" = {
+ wantedBy = [ "network.target" ];
+ restartTriggers = [ configFile ];
+
+ # useful binaries for user-specified hooks
+ path = [ pkgs.iproute pkgs.utillinux pkgs.coreutils ];
+ };
+
# Turn off NixOS' network management
networking = {
useDHCP = false;
diff --git a/nixos/modules/services/networking/vsftpd.nix b/nixos/modules/services/networking/vsftpd.nix
index 1f9107c3ce9c85292f425541afbd7c22e0916f85..31e1e65fa9cacdbf03c83f5199ca1f0197f77aa4 100644
--- a/nixos/modules/services/networking/vsftpd.nix
+++ b/nixos/modules/services/networking/vsftpd.nix
@@ -99,7 +99,7 @@ let
nopriv_user=vsftpd
secure_chroot_dir=/var/empty
syslog_enable=YES
- ${optionalString (pkgs.stdenv.system == "x86_64-linux") ''
+ ${optionalString (pkgs.stdenv.hostPlatform.system == "x86_64-linux") ''
seccomp_sandbox=NO
''}
anon_umask=${cfg.anonymousUmask}
diff --git a/nixos/modules/services/networking/wireguard.nix b/nixos/modules/services/networking/wireguard.nix
index 1b87b77f9768de24c7fa13853a8fa2f3fb699d95..564632a85ae5c408dd32cfedf38c775e8c7d4fc0 100644
--- a/nixos/modules/services/networking/wireguard.nix
+++ b/nixos/modules/services/networking/wireguard.nix
@@ -190,7 +190,8 @@ let
nameValuePair "wireguard-${name}"
{
description = "WireGuard Tunnel - ${name}";
- after = [ "network.target" ];
+ requires = [ "network-online.target" ];
+ after = [ "network.target" "network-online.target" ];
wantedBy = [ "multi-user.target" ];
environment.DEVICE = name;
path = with pkgs; [ kmod iproute wireguard-tools ];
@@ -236,7 +237,7 @@ let
${values.postSetup}
'';
- preStop = ''
+ postStop = ''
ip link del dev ${name}
${values.postShutdown}
'';
diff --git a/nixos/modules/services/networking/xrdp.nix b/nixos/modules/services/networking/xrdp.nix
index 0e882873b4ba9516e7ac48ed0b9ab87cfded3204..61f22a366a0236bc5d272712d11b44f7f460ac02 100644
--- a/nixos/modules/services/networking/xrdp.nix
+++ b/nixos/modules/services/networking/xrdp.nix
@@ -93,10 +93,14 @@ in
config = mkIf cfg.enable {
- # copied from
# xrdp can run X11 program even if "services.xserver.enable = false"
- environment.pathsToLink =
- [ "/etc/xdg" "/share/xdg" "/share/applications" "/share/icons" "/share/pixmaps" ];
+ xdg = {
+ autostart.enable = true;
+ menus.enable = true;
+ mime.enable = true;
+ icons.enable = true;
+ };
+
fonts.enableDefaultFonts = mkDefault true;
systemd = {
diff --git a/nixos/modules/services/networking/zeronet.nix b/nixos/modules/services/networking/zeronet.nix
new file mode 100644
index 0000000000000000000000000000000000000000..2377cb2c8f1195eac1a6cee660848dd567ab7182
--- /dev/null
+++ b/nixos/modules/services/networking/zeronet.nix
@@ -0,0 +1,102 @@
+{ config, lib, pkgs, ... }:
+
+let
+ cfg = config.services.zeronet;
+
+ zConfFile = pkgs.writeTextFile {
+ name = "zeronet.conf";
+
+ text = ''
+ [global]
+ data_dir = ${cfg.dataDir}
+ log_dir = ${cfg.logDir}
+ '' + lib.optionalString (cfg.port != null) ''
+ ui_port = ${toString cfg.port}
+ '' + cfg.extraConfig;
+ };
+in with lib; {
+ options.services.zeronet = {
+ enable = mkEnableOption "zeronet";
+
+ dataDir = mkOption {
+ type = types.path;
+ default = "/var/lib/zeronet";
+ example = "/home/okina/zeronet";
+ description = "Path to the zeronet data directory.";
+ };
+
+ logDir = mkOption {
+ type = types.path;
+ default = "/var/log/zeronet";
+ example = "/home/okina/zeronet/log";
+ description = "Path to the zeronet log directory.";
+ };
+
+ port = mkOption {
+ type = types.nullOr types.int;
+ default = null;
+ example = 15441;
+ description = "Optional zeronet port.";
+ };
+
+ tor = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Use TOR for all zeronet traffic.";
+ };
+
+ extraConfig = mkOption {
+ type = types.lines;
+ default = "";
+
+ description = ''
+ Extra configuration. Contents will be added verbatim to the
+ configuration file at the end.
+ '';
+ };
+ };
+
+ config = mkIf cfg.enable {
+ services.tor = mkIf cfg.tor {
+ enable = true;
+ controlPort = 9051;
+ extraConfig = "CookieAuthentication 1";
+ };
+
+ systemd.services.zeronet = {
+ description = "zeronet";
+ after = [ "network.target" (optionalString cfg.tor "tor.service") ];
+ wantedBy = [ "multi-user.target" ];
+
+ preStart = ''
+ # Ensure folder exists or create it and permissions are correct
+ mkdir -p ${escapeShellArg cfg.dataDir} ${escapeShellArg cfg.logDir}
+ chmod 750 ${escapeShellArg cfg.dataDir} ${escapeShellArg cfg.logDir}
+ chown zeronet:zeronet ${escapeShellArg cfg.dataDir} ${escapeShellArg cfg.logDir}
+ '';
+
+ serviceConfig = {
+ PermissionsStartOnly = true;
+ PrivateTmp = "yes";
+ User = "zeronet";
+ Group = "zeronet";
+ ExecStart = "${pkgs.zeronet}/bin/zeronet --config_file ${zConfFile}";
+ };
+ };
+
+ users = {
+ groups.zeronet.gid = config.ids.gids.zeronet;
+
+ users.zeronet = {
+ description = "zeronet service user";
+ home = cfg.dataDir;
+ createHome = true;
+ group = "zeronet";
+ extraGroups = mkIf cfg.tor [ "tor" ];
+ uid = config.ids.uids.zeronet;
+ };
+ };
+ };
+
+ meta.maintainers = with maintainers; [ chiiruno ];
+}
diff --git a/nixos/modules/services/search/elasticsearch-curator.nix b/nixos/modules/services/search/elasticsearch-curator.nix
new file mode 100644
index 0000000000000000000000000000000000000000..43785c392feed500eacce7b4ef8ef9d99d85db12
--- /dev/null
+++ b/nixos/modules/services/search/elasticsearch-curator.nix
@@ -0,0 +1,93 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.elasticsearch-curator;
+ curatorConfig = pkgs.writeTextFile {
+ name = "config.yaml";
+ text = ''
+ ---
+ # Remember, leave a key empty if there is no value. None will be a string,
+ # not a Python "NoneType"
+ client:
+ hosts: ${builtins.toJSON cfg.hosts}
+ port: ${toString cfg.port}
+ url_prefix:
+ use_ssl: False
+ certificate:
+ client_cert:
+ client_key:
+ ssl_no_validate: False
+ http_auth:
+ timeout: 30
+ master_only: False
+ logging:
+ loglevel: INFO
+ logfile:
+ logformat: default
+ blacklist: ['elasticsearch', 'urllib3']
+ '';
+ };
+ curatorAction = pkgs.writeTextFile {
+ name = "action.yaml";
+ text = cfg.actionYAML;
+ };
+in {
+
+ options.services.elasticsearch-curator = {
+
+ enable = mkEnableOption "elasticsearch curator";
+ interval = mkOption {
+ description = "The frequency to run curator, a systemd.time such as 'hourly'";
+ default = "hourly";
+ type = types.str;
+ };
+ hosts = mkOption {
+ description = "a list of elasticsearch hosts to connect to";
+ type = types.listOf types.str;
+ default = ["localhost"];
+ };
+ port = mkOption {
+ description = "the port that elasticsearch is listening on";
+ type = types.int;
+ default = 9200;
+ };
+ actionYAML = mkOption {
+ description = "curator action.yaml file contents, alternatively use curator-cli which takes a simple action command";
+ example = ''
+ ---
+ actions:
+ 1:
+ action: delete_indices
+ description: >-
+ Delete indices older than 45 days (based on index name), for logstash-
+ prefixed indices. Ignore the error if the filter does not result in an
+ actionable list of indices (ignore_empty_list) and exit cleanly.
+ options:
+ ignore_empty_list: True
+ disable_action: False
+ filters:
+ - filtertype: pattern
+ kind: prefix
+ value: logstash-
+ - filtertype: age
+ source: name
+ direction: older
+ timestring: '%Y.%m.%d'
+ unit: days
+ unit_count: 45
+ '';
+ };
+ };
+
+ config = mkIf cfg.enable {
+
+ systemd.services.elasticsearch-curator = {
+ startAt = cfg.interval;
+ serviceConfig = {
+ ExecStart = ''${pkgs.python36Packages.elasticsearch-curator}/bin/curator --config ${curatorConfig} ${curatorAction}'';
+ };
+ };
+ };
+}
diff --git a/nixos/modules/services/search/elasticsearch.nix b/nixos/modules/services/search/elasticsearch.nix
index b0831dcd1ca8c2faeac524beefb7e2abfcb8d89e..6b688c640d59b75c6d88e8a150931e953a468dfc 100644
--- a/nixos/modules/services/search/elasticsearch.nix
+++ b/nixos/modules/services/search/elasticsearch.nix
@@ -5,22 +5,14 @@ with lib;
let
cfg = config.services.elasticsearch;
- es5 = builtins.compareVersions (builtins.parseDrvName cfg.package.name).version "5" >= 0;
- es6 = builtins.compareVersions (builtins.parseDrvName cfg.package.name).version "6" >= 0;
+ es6 = builtins.compareVersions cfg.package.version "6" >= 0;
esConfig = ''
network.host: ${cfg.listenAddress}
cluster.name: ${cfg.cluster_name}
- ${if es5 then ''
- http.port: ${toString cfg.port}
- transport.tcp.port: ${toString cfg.tcp_port}
- '' else ''
- network.port: ${toString cfg.port}
- network.tcp.port: ${toString cfg.tcp_port}
- # TODO: find a way to enable security manager
- security.manager.enabled: false
- ''}
+ http.port: ${toString cfg.port}
+ transport.tcp.port: ${toString cfg.tcp_port}
${cfg.extraConf}
'';
@@ -32,7 +24,7 @@ let
text = esConfig;
};
- loggingConfigFilename = if es5 then "log4j2.properties" else "logging.yml";
+ loggingConfigFilename = "log4j2.properties";
loggingConfigFile = pkgs.writeTextFile {
name = loggingConfigFilename;
text = cfg.logging;
@@ -41,8 +33,7 @@ let
esPlugins = pkgs.buildEnv {
name = "elasticsearch-plugins";
paths = cfg.plugins;
- # Elasticsearch 5.x won't start when the plugins directory does not exist
- postBuild = if es5 then "${pkgs.coreutils}/bin/mkdir -p $out/plugins" else "";
+ postBuild = "${pkgs.coreutils}/bin/mkdir -p $out/plugins";
};
in {
@@ -58,8 +49,8 @@ in {
package = mkOption {
description = "Elasticsearch package to use.";
- default = pkgs.elasticsearch2;
- defaultText = "pkgs.elasticsearch2";
+ default = pkgs.elasticsearch;
+ defaultText = "pkgs.elasticsearch";
type = types.package;
};
@@ -100,30 +91,18 @@ in {
logging = mkOption {
description = "Elasticsearch logging configuration.";
- default =
- if es5 then ''
- logger.action.name = org.elasticsearch.action
- logger.action.level = info
-
- appender.console.type = Console
- appender.console.name = console
- appender.console.layout.type = PatternLayout
- appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c{1.}] %marker%m%n
-
- rootLogger.level = info
- rootLogger.appenderRef.console.ref = console
- '' else ''
- rootLogger: INFO, console
- logger:
- action: INFO
- com.amazonaws: WARN
- appender:
- console:
- type: console
- layout:
- type: consolePattern
- conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
- '';
+ default = ''
+ logger.action.name = org.elasticsearch.action
+ logger.action.level = info
+
+ appender.console.type = Console
+ appender.console.name = console
+ appender.console.layout.type = PatternLayout
+ appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c{1.}] %marker%m%n
+
+ rootLogger.level = info
+ rootLogger.appenderRef.console.ref = console
+ '';
type = types.str;
};
@@ -204,9 +183,9 @@ in {
cp ${elasticsearchYml} ${configDir}/elasticsearch.yml
# Make sure the logging configuration for old elasticsearch versions is removed:
- rm -f ${if es5 then "${configDir}/logging.yml" else "${configDir}/log4j2.properties"}
+ rm -f "${configDir}/logging.yml"
cp ${loggingConfigFile} ${configDir}/${loggingConfigFilename}
- ${optionalString es5 "mkdir -p ${configDir}/scripts"}
+ mkdir -p ${configDir}/scripts
${optionalString es6 "cp ${cfg.package}/config/jvm.options ${configDir}/jvm.options"}
if [ "$(id -u)" = 0 ]; then chown -R elasticsearch:elasticsearch ${cfg.dataDir}; fi
diff --git a/nixos/modules/services/search/kibana.nix b/nixos/modules/services/search/kibana.nix
index 5885a72c6628f0abf5d7b8522373aa2d090e1920..ca36bba58c02662dd69e992a35390053ec272967 100644
--- a/nixos/modules/services/search/kibana.nix
+++ b/nixos/modules/services/search/kibana.nix
@@ -5,43 +5,7 @@ with lib;
let
cfg = config.services.kibana;
- atLeast54 = versionAtLeast (builtins.parseDrvName cfg.package.name).version "5.4";
-
- cfgFile = if atLeast54 then cfgFile5 else cfgFile4;
-
- cfgFile4 = pkgs.writeText "kibana.json" (builtins.toJSON (
- (filterAttrsRecursive (n: v: v != null) ({
- host = cfg.listenAddress;
- port = cfg.port;
- ssl_cert_file = cfg.cert;
- ssl_key_file = cfg.key;
-
- kibana_index = cfg.index;
- default_app_id = cfg.defaultAppId;
-
- elasticsearch_url = cfg.elasticsearch.url;
- kibana_elasticsearch_username = cfg.elasticsearch.username;
- kibana_elasticsearch_password = cfg.elasticsearch.password;
- kibana_elasticsearch_cert = cfg.elasticsearch.cert;
- kibana_elasticsearch_key = cfg.elasticsearch.key;
- ca = cfg.elasticsearch.ca;
-
- bundled_plugin_ids = [
- "plugins/dashboard/index"
- "plugins/discover/index"
- "plugins/doc/index"
- "plugins/kibana/index"
- "plugins/markdown_vis/index"
- "plugins/metric_vis/index"
- "plugins/settings/index"
- "plugins/table_vis/index"
- "plugins/vis_types/index"
- "plugins/visualize/index"
- ];
- } // cfg.extraConf)
- )));
-
- cfgFile5 = pkgs.writeText "kibana.json" (builtins.toJSON (
+ cfgFile = pkgs.writeText "kibana.json" (builtins.toJSON (
(filterAttrsRecursive (n: v: v != null) ({
server.host = cfg.listenAddress;
server.port = cfg.port;
diff --git a/nixos/modules/services/security/usbguard.nix b/nixos/modules/services/security/usbguard.nix
index 5d469cabe2cbf7f476ebf4781f0d34e30e4149ca..88d2f69db57297f27f26fd8016be809f338705c9 100644
--- a/nixos/modules/services/security/usbguard.nix
+++ b/nixos/modules/services/security/usbguard.nix
@@ -188,11 +188,14 @@ in {
wants = [ "systemd-udevd.service" "local-fs.target" ];
# make sure an empty rule file and required directories exist
- preStart = ''mkdir -p $(dirname "${cfg.ruleFile}") "${cfg.IPCAccessControlFiles}" && ([ -f "${cfg.ruleFile}" ] || touch ${cfg.ruleFile})'';
+ preStart = ''
+ mkdir -p $(dirname "${cfg.ruleFile}") $(dirname "${cfg.auditFilePath}") "${cfg.IPCAccessControlFiles}" \
+ && ([ -f "${cfg.ruleFile}" ] || touch ${cfg.ruleFile})
+ '';
serviceConfig = {
Type = "simple";
- ExecStart = ''${pkgs.usbguard}/bin/usbguard-daemon -P -d -k -c ${daemonConfFile}'';
+ ExecStart = ''${pkgs.usbguard}/bin/usbguard-daemon -P -k -c ${daemonConfFile}'';
Restart = "on-failure";
};
};
diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix
index 96413d2dd563f0036ef41120619a858cfd82b802..719eb76f42c28eef3d4d92827593f09274bd99b3 100644
--- a/nixos/modules/services/torrent/transmission.nix
+++ b/nixos/modules/services/torrent/transmission.nix
@@ -142,6 +142,7 @@ in
${getLib pkgs.attr}/lib/libattr*.so* mr,
${getLib pkgs.lz4}/lib/liblz4*.so* mr,
${getLib pkgs.libkrb5}/lib/lib*.so* mr,
+ ${getLib pkgs.keyutils}/lib/libkeyutils*.so* mr,
@{PROC}/sys/kernel/random/uuid r,
@{PROC}/sys/vm/overcommit_memory r,
diff --git a/nixos/modules/services/web-apps/matomo-doc.xml b/nixos/modules/services/web-apps/matomo-doc.xml
index 456aae6cc366283ab08d131cbc4436b20791f54c..6f878015c51481024dc33f5c5c56bf62888c156b 100644
--- a/nixos/modules/services/web-apps/matomo-doc.xml
+++ b/nixos/modules/services/web-apps/matomo-doc.xml
@@ -15,7 +15,7 @@
-
+
Database Setup
@@ -51,7 +51,7 @@
-
+
Backup
You only need to take backups of your MySQL database and the
@@ -62,7 +62,7 @@
-
+
-
+
Using other Web Servers than nginx
diff --git a/nixos/modules/services/web-servers/nginx/default.nix b/nixos/modules/services/web-servers/nginx/default.nix
index 355976c4b7cbcbb960c8feb10ef85a31d59a1087..b231ee5a3f0186c2ffaa47a5507b87e3b4405d6b 100644
--- a/nixos/modules/services/web-servers/nginx/default.nix
+++ b/nixos/modules/services/web-servers/nginx/default.nix
@@ -16,9 +16,11 @@ let
} // (optionalAttrs vhostConfig.enableACME {
sslCertificate = "${acmeDirectory}/${serverName}/fullchain.pem";
sslCertificateKey = "${acmeDirectory}/${serverName}/key.pem";
+ sslTrustedCertificate = "${acmeDirectory}/${serverName}/full.pem";
}) // (optionalAttrs (vhostConfig.useACMEHost != null) {
sslCertificate = "${acmeDirectory}/${vhostConfig.useACMEHost}/fullchain.pem";
sslCertificateKey = "${acmeDirectory}/${vhostConfig.useACMEHost}/key.pem";
+ sslTrustedCertificate = "${acmeDirectory}/${vhostConfig.useACMEHost}/full.pem";
})
) cfg.virtualHosts;
enableIPv6 = config.networking.enableIPv6;
@@ -92,8 +94,18 @@ let
gzip on;
gzip_disable "msie6";
gzip_proxied any;
- gzip_comp_level 9;
- gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
+ gzip_comp_level 5;
+ gzip_types
+ application/atom+xml
+ application/javascript
+ application/json
+ application/xml
+ application/xml+rss
+ image/svg+xml
+ text/css
+ text/javascript
+ text/plain
+ text/xml;
gzip_vary on;
''}
@@ -218,6 +230,9 @@ let
ssl_certificate ${vhost.sslCertificate};
ssl_certificate_key ${vhost.sslCertificateKey};
''}
+ ${optionalString (hasSSL && vhost.sslTrustedCertificate != null) ''
+ ssl_trusted_certificate ${vhost.sslTrustedCertificate};
+ ''}
${optionalString (vhost.basicAuthFile != null || vhost.basicAuth != {}) ''
auth_basic secured;
diff --git a/nixos/modules/services/web-servers/nginx/vhost-options.nix b/nixos/modules/services/web-servers/nginx/vhost-options.nix
index 1075b00768fd6d252cf22e2a9a53850420cbd10e..8e2b8819e71bdc1181c52d939f176d70d33b1c93 100644
--- a/nixos/modules/services/web-servers/nginx/vhost-options.nix
+++ b/nixos/modules/services/web-servers/nginx/vhost-options.nix
@@ -129,6 +129,13 @@ with lib;
description = "Path to server SSL certificate key.";
};
+ sslTrustedCertificate = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ example = "/var/root.cert";
+ description = "Path to root SSL certificate for stapling and client certificates.";
+ };
+
http2 = mkOption {
type = types.bool;
default = true;
diff --git a/nixos/modules/services/x11/desktop-managers/enlightenment.nix b/nixos/modules/services/x11/desktop-managers/enlightenment.nix
index da3287aaea6ecb98d0cc9bd24e899869e40934de..6fa3ec3b92550ea5bfc914c8b353864226517a21 100644
--- a/nixos/modules/services/x11/desktop-managers/enlightenment.nix
+++ b/nixos/modules/services/x11/desktop-managers/enlightenment.nix
@@ -33,12 +33,17 @@ in
pkgs.xorg.xauth # used by kdesu
pkgs.gtk2 # To get GTK+'s themes.
pkgs.tango-icon-theme
- pkgs.shared-mime-info
+
pkgs.gnome2.gnomeicontheme
pkgs.xorg.xcursorthemes
];
- environment.pathsToLink = [ "/etc/enlightenment" "/etc/xdg" "/share/enlightenment" "/share/elementary" "/share/applications" "/share/locale" "/share/icons" "/share/themes" "/share/mime" "/share/desktop-directories" ];
+ environment.pathsToLink = [
+ "/etc/enlightenment"
+ "/share/enlightenment"
+ "/share/elementary"
+ "/share/locale"
+ ];
services.xserver.desktopManager.session = [
{ name = "Enlightenment";
diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix
index c339d24b098aada7bf90f3e421f4762b20f57e00..faf5214130db928ce98da354cb3b0847a3463e13 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome3.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix
@@ -33,10 +33,10 @@ let
chmod -R a+w $out/share/gsettings-schemas/nixos-gsettings-overrides
cat - > $out/share/gsettings-schemas/nixos-gsettings-overrides/glib-2.0/schemas/nixos-defaults.gschema.override <<- EOF
[org.gnome.desktop.background]
- picture-uri='${pkgs.nixos-artwork.wallpapers.gnome-dark}/share/artwork/gnome/Gnome_Dark.png'
+ picture-uri='${pkgs.nixos-artwork.wallpapers.simple-dark-gray}/share/artwork/gnome/nix-wallpaper-simple-dark-gray.png'
[org.gnome.desktop.screensaver]
- picture-uri='${pkgs.nixos-artwork.wallpapers.gnome-dark}/share/artwork/gnome/Gnome_Dark.png'
+ picture-uri='${pkgs.nixos-artwork.wallpapers.simple-dark-gray-bottom}/share/artwork/gnome/nix-wallpaper-simple-dark-gray_bottom.png'
${cfg.extraGSettingsOverrides}
EOF
@@ -132,6 +132,7 @@ in {
fonts.fonts = [ pkgs.dejavu_fonts pkgs.cantarell-fonts ];
+ services.xserver.displayManager.gdm.enable = mkDefault true;
services.xserver.displayManager.extraSessionFilePackages = [ pkgs.gnome3.gnome-session ];
services.xserver.displayManager.sessionCommands = ''
@@ -161,6 +162,8 @@ in {
# TODO: Create nautilus-with-extensions package
environment.variables.NAUTILUS_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-3.0";
+ services.xserver.updateDbusEnvironment = true;
+
environment.variables.GIO_EXTRA_MODULES = [ "${lib.getLib pkgs.gnome3.dconf}/lib/gio/modules"
"${pkgs.gnome3.glib-networking.out}/lib/gio/modules"
"${pkgs.gnome3.gvfs}/lib/gio/modules" ];
diff --git a/nixos/modules/services/x11/desktop-managers/lumina.nix b/nixos/modules/services/x11/desktop-managers/lumina.nix
index 5fe84cfb82ec496c3b755c9f788747d919fb15de..43fed2572b515979cedd99333eeebfc6454a0a91 100644
--- a/nixos/modules/services/x11/desktop-managers/lumina.nix
+++ b/nixos/modules/services/x11/desktop-managers/lumina.nix
@@ -41,9 +41,8 @@ in
# Link some extra directories in /run/current-system/software/share
environment.pathsToLink = [
- "/share/desktop-directories"
- "/share/icons"
"/share/lumina"
+ # FIXME: modules should link subdirs of `/share` rather than relying on this
"/share"
];
diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix
index 83d1957a646a0e14e868e41412e363dbf0e609ae..d1cb962f6ff87a344ccd2c19ca1d3bde000cbd71 100644
--- a/nixos/modules/services/x11/desktop-managers/plasma5.nix
+++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix
@@ -174,7 +174,10 @@ in
++ lib.optional config.services.colord.enable colord-kde
++ lib.optionals config.services.samba.enable [ kdenetwork-filesharing pkgs.samba ];
- environment.pathsToLink = [ "/share" ];
+ environment.pathsToLink = [
+ # FIXME: modules should link subdirs of `/share` rather than relying on this
+ "/share"
+ ];
environment.etc = singleton {
source = xcfg.xkbDir;
diff --git a/nixos/modules/services/x11/desktop-managers/xfce.nix b/nixos/modules/services/x11/desktop-managers/xfce.nix
index ae155470419d546060ecdedaab06322f9fbadb94..75b9a76e1924c76143574e8a8798edec01b01249 100644
--- a/nixos/modules/services/x11/desktop-managers/xfce.nix
+++ b/nixos/modules/services/x11/desktop-managers/xfce.nix
@@ -59,9 +59,6 @@ in
tango-icon-theme
xfce4-icon-theme
- desktop-file-utils
- shared-mime-info
-
# Needed by Xfce's xinitrc script
# TODO: replace with command -v
which
@@ -100,8 +97,6 @@ in
environment.pathsToLink = [
"/share/xfce4"
"/share/themes"
- "/share/mime"
- "/share/desktop-directories"
"/share/gtksourceview-2.0"
];
diff --git a/nixos/modules/services/x11/display-managers/auto.nix b/nixos/modules/services/x11/display-managers/auto.nix
index d2aae64bf2252e3d89ee680fc78c3acd1079a0c5..1068a344e0cfb76eb3baee0ddb48628970f77cc4 100644
--- a/nixos/modules/services/x11/display-managers/auto.nix
+++ b/nixos/modules/services/x11/display-managers/auto.nix
@@ -41,12 +41,28 @@ in
config = mkIf cfg.enable {
- services.xserver.displayManager.slim = {
+ services.xserver.displayManager.lightdm = {
enable = true;
- autoLogin = true;
- defaultUser = cfg.user;
+ autoLogin = {
+ enable = true;
+ user = cfg.user;
+ };
};
+ # lightdm by default doesn't allow auto login for root, which is
+ # required by some nixos tests. Override it here.
+ security.pam.services.lightdm-autologin.text = lib.mkForce ''
+ auth requisite pam_nologin.so
+ auth required pam_succeed_if.so quiet
+ auth required pam_permit.so
+
+ account include lightdm
+
+ password include lightdm
+
+ session include lightdm
+ '';
+
};
}
diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix
index 66886f23737d4734987bd1e20892efe22d4932f1..f561c5f8b7a921c9a846d8cc01b0451a02894382 100644
--- a/nixos/modules/services/x11/display-managers/default.nix
+++ b/nixos/modules/services/x11/display-managers/default.nix
@@ -27,6 +27,15 @@ let
Xft.hintstyle: hintslight
'';
+ mkCases = session:
+ concatStrings (
+ mapAttrsToList (name: starts: ''
+ (${name})
+ ${concatMapStringsSep "\n " (n: n.start) starts}
+ ;;
+ '') (lib.groupBy (n: n.name) session)
+ );
+
# file provided by services.xserver.displayManager.session.wrapper
xsessionWrapper = pkgs.writeScript "xsession-wrapper"
''
@@ -139,21 +148,13 @@ let
# Start the window manager.
case "$windowManager" in
- ${concatMapStrings (s: ''
- (${s.name})
- ${s.start}
- ;;
- '') wm}
+ ${mkCases wm}
(*) echo "$0: Window manager '$windowManager' not found.";;
esac
# Start the desktop manager.
case "$desktopManager" in
- ${concatMapStrings (s: ''
- (${s.name})
- ${s.start}
- ;;
- '') dm}
+ ${mkCases dm}
(*) echo "$0: Desktop manager '$desktopManager' not found.";;
esac
diff --git a/nixos/modules/services/x11/display-managers/gdm.nix b/nixos/modules/services/x11/display-managers/gdm.nix
index 78dc39f7f62fa49e4f05af12e68bdab86a32ae8e..a775dd0f0e04a57e00f1104a39c8cc2e0372bdf3 100644
--- a/nixos/modules/services/x11/display-managers/gdm.nix
+++ b/nixos/modules/services/x11/display-managers/gdm.nix
@@ -87,7 +87,7 @@ in
}
];
- services.xserver.displayManager.slim.enable = false;
+ services.xserver.displayManager.lightdm.enable = false;
users.users.gdm =
{ name = "gdm";
diff --git a/nixos/modules/services/x11/display-managers/lightdm.nix b/nixos/modules/services/x11/display-managers/lightdm.nix
index dc82f7086c82c488cb5a5b33b3df8409c22f02c6..cd9c3d81a0fb860f069924990ddf0404eab74d8f 100644
--- a/nixos/modules/services/x11/display-managers/lightdm.nix
+++ b/nixos/modules/services/x11/display-managers/lightdm.nix
@@ -115,7 +115,7 @@ in
background = mkOption {
type = types.str;
- default = "${pkgs.nixos-artwork.wallpapers.gnome-dark}/share/artwork/gnome/Gnome_Dark.png";
+ default = "${pkgs.nixos-artwork.wallpapers.simple-dark-gray-bottom}/share/artwork/gnome/nix-wallpaper-simple-dark-gray_bottom.png";
description = ''
The background image or color to use.
'';
@@ -191,8 +191,6 @@ in
}
];
- services.xserver.displayManager.slim.enable = false;
-
services.xserver.displayManager.job = {
logToFile = true;
diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix
index 2b03ed81b5ed5168cb6bf51625173d93b8d16da9..1635c0f9acc5f610017f9f0f53072edd0cb7d4f4 100644
--- a/nixos/modules/services/x11/display-managers/sddm.nix
+++ b/nixos/modules/services/x11/display-managers/sddm.nix
@@ -206,8 +206,6 @@ in
}
];
- services.xserver.displayManager.slim.enable = false;
-
services.xserver.displayManager.job = {
logToFile = true;
diff --git a/nixos/modules/services/x11/display-managers/slim.nix b/nixos/modules/services/x11/display-managers/slim.nix
index 51ce5f4e24376cebd8949f4c42cffce8cfc20137..4e411c8ceb0be8bd1c43044553ddd2be16e6b361 100644
--- a/nixos/modules/services/x11/display-managers/slim.nix
+++ b/nixos/modules/services/x11/display-managers/slim.nix
@@ -49,7 +49,7 @@ in
enable = mkOption {
type = types.bool;
- default = config.services.xserver.enable;
+ default = false;
description = ''
Whether to enable SLiM as the display manager.
'';
diff --git a/nixos/modules/services/x11/hardware/libinput.nix b/nixos/modules/services/x11/hardware/libinput.nix
index 072004d5dd91ce06664ebd358d246917bd826733..58fe702d4969c1971938baaadd41e992a6a637ad 100644
--- a/nixos/modules/services/x11/hardware/libinput.nix
+++ b/nixos/modules/services/x11/hardware/libinput.nix
@@ -205,7 +205,7 @@ in {
})
];
- services.udev.packages = [ pkgs.libinput ];
+ services.udev.packages = [ pkgs.libinput.out ];
services.xserver.config =
''
diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix
index b45e510f6b8394f3d573f6fde9612ca98b8e5a65..75bfeaac1fa3425c398217ba5931c11136b7597e 100644
--- a/nixos/modules/services/x11/xserver.nix
+++ b/nixos/modules/services/x11/xserver.nix
@@ -535,6 +535,15 @@ in
config = mkIf cfg.enable {
+ services.xserver.displayManager.lightdm.enable =
+ let dmconf = cfg.displayManager;
+ default = !( dmconf.auto.enable
+ || dmconf.gdm.enable
+ || dmconf.sddm.enable
+ || dmconf.slim.enable
+ || dmconf.xpra.enable );
+ in mkIf (default) true;
+
hardware.opengl.enable = mkDefault true;
services.xserver.videoDrivers = mkIf (cfg.videoDriver != null) [ cfg.videoDriver ];
@@ -616,8 +625,12 @@ in
]
++ optional (elem "virtualbox" cfg.videoDrivers) xorg.xrefresh;
- environment.pathsToLink =
- [ "/etc/xdg" "/share/xdg" "/share/applications" "/share/icons" "/share/pixmaps" ];
+ xdg = {
+ autostart.enable = true;
+ menus.enable = true;
+ mime.enable = true;
+ icons.enable = true;
+ };
# The default max inotify watches is 8192.
# Nowadays most apps require a good number of inotify watches,
diff --git a/nixos/modules/system/activation/activation-script.nix b/nixos/modules/system/activation/activation-script.nix
index c563614caaaf3802823628243aab31c45c72ba21..93a1b13a81dda6605edb205e37093d3f03bb7fb3 100644
--- a/nixos/modules/system/activation/activation-script.nix
+++ b/nixos/modules/system/activation/activation-script.nix
@@ -8,7 +8,12 @@ let
addAttributeName = mapAttrs (a: v: v // {
text = ''
#### Activation script snippet ${a}:
+ _localstatus=0
${v.text}
+
+ if (( _localstatus > 0 )); then
+ printf "Activation script snippet '%s' failed (%s)\n" "${a}" "$_localstatus"
+ fi
'';
});
@@ -71,7 +76,7 @@ in
done
_status=0
- trap "_status=1" ERR
+ trap "_status=1 _localstatus=\$?" ERR
# Ensure a consistent umask.
umask 0022
diff --git a/nixos/modules/system/activation/switch-to-configuration.pl b/nixos/modules/system/activation/switch-to-configuration.pl
index ecd35767e01dfc389f7903a455b4a8933ea68bf8..b3fe6caf62dc94c9e49f6fcdf107fc234190e411 100644
--- a/nixos/modules/system/activation/switch-to-configuration.pl
+++ b/nixos/modules/system/activation/switch-to-configuration.pl
@@ -412,6 +412,18 @@ system("@systemd@/bin/systemctl", "reset-failed");
# Make systemd reload its units.
system("@systemd@/bin/systemctl", "daemon-reload") == 0 or $res = 3;
+# Reload user units
+open my $listActiveUsers, '-|', '@systemd@/bin/loginctl', 'list-users', '--no-legend';
+while (my $f = <$listActiveUsers>) {
+ next unless $f =~ /^\s*(?\d+)\s+(?\S+)/;
+ my ($uid, $name) = ($+{uid}, $+{user});
+ print STDERR "reloading user units for $name...\n";
+
+ system("su", "-l", $name, "-c", "XDG_RUNTIME_DIR=/run/user/$uid @systemd@/bin/systemctl --user daemon-reload");
+}
+
+close $listActiveUsers;
+
# Set the new tmpfiles
print STDERR "setting up tmpfiles\n";
system("@systemd@/bin/systemd-tmpfiles", "--create", "--remove", "--exclude-prefix=/dev") == 0 or $res = 3;
diff --git a/nixos/modules/system/activation/top-level.nix b/nixos/modules/system/activation/top-level.nix
index 9d410a8b9ca4b713365b92c21ec69e595244cdf6..fff88e2c2bf34b669866e7ca17da227fbf18cd72 100644
--- a/nixos/modules/system/activation/top-level.nix
+++ b/nixos/modules/system/activation/top-level.nix
@@ -162,6 +162,13 @@ in
description = ''
Additional configurations to build based on the current
configuration which then has a lower priority.
+
+ To switch to a cloned configuration (e.g. child-1)
+ at runtime, run
+
+
+ # sudo /run/current-system/fine-tune/child-1/bin/switch-to-configuration test
+
'';
};
diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix
index 42da658572219822113c6d2fccd0b36159a6425a..3a33b3f65d36ff82683c03d1dd50a2955bf56ee8 100644
--- a/nixos/modules/system/boot/loader/grub/grub.nix
+++ b/nixos/modules/system/boot/loader/grub/grub.nix
@@ -38,6 +38,8 @@ let
in
pkgs.writeText "grub-config.xml" (builtins.toXML
{ splashImage = f cfg.splashImage;
+ splashMode = f cfg.splashMode;
+ backgroundColor = f cfg.backgroundColor;
grub = f grub;
grubTarget = f (grub.grubTarget or "");
shell = "${pkgs.runtimeShell}";
@@ -80,6 +82,8 @@ let
"--output" "$out"
] ++ (optional (cfg.fontSize!=null) "--size ${toString cfg.fontSize}")))
);
+
+ defaultSplash = "${pkgs.nixos-artwork.wallpapers.simple-dark-gray-bootloader}/share/artwork/gnome/nix-wallpaper-simple-dark-gray_bootloader.png";
in
{
@@ -328,6 +332,31 @@ in
'';
};
+ backgroundColor = mkOption {
+ type = types.nullOr types.string;
+ example = "#7EBAE4";
+ default = null;
+ description = ''
+ Background color to be used for GRUB to fill the areas the image isn't filling.
+
+
+ This options has no effect for GRUB 1.
+
+ '';
+ };
+
+ splashMode = mkOption {
+ type = types.enum [ "normal" "stretch" ];
+ default = "stretch";
+ description = ''
+ Whether to stretch the image or show the image in the top-left corner unstretched.
+
+
+ This options has no effect for GRUB 1.
+
+ '';
+ };
+
font = mkOption {
type = types.nullOr types.path;
default = "${realGrub}/share/grub/unicode.pf2";
@@ -531,9 +560,14 @@ in
sha256 = "14kqdx2lfqvh40h6fjjzqgff1mwk74dmbjvmqphi6azzra7z8d59";
}
# GRUB 1.97 doesn't support gzipped XPMs.
- else "${pkgs.nixos-artwork.wallpapers.gnome-dark}/share/artwork/gnome/Gnome_Dark.png");
+ else defaultSplash);
}
+ (mkIf (cfg.splashImage == defaultSplash) {
+ boot.loader.grub.backgroundColor = mkDefault "#2F302F";
+ boot.loader.grub.splashMode = mkDefault "normal";
+ })
+
(mkIf cfg.enable {
boot.loader.grub.devices = optional (cfg.device != "") cfg.device;
diff --git a/nixos/modules/system/boot/loader/grub/install-grub.pl b/nixos/modules/system/boot/loader/grub/install-grub.pl
index d1ff6e6bf5256bb3cddf7a09ad22adaf404351c3..bda6a313640770fe6dd4bcdf6ba1f3deb7093c8a 100644
--- a/nixos/modules/system/boot/loader/grub/install-grub.pl
+++ b/nixos/modules/system/boot/loader/grub/install-grub.pl
@@ -51,6 +51,8 @@ my $extraEntries = get("extraEntries");
my $extraEntriesBeforeNixOS = get("extraEntriesBeforeNixOS") eq "true";
my $extraInitrd = get("extraInitrd");
my $splashImage = get("splashImage");
+my $splashMode = get("splashMode");
+my $backgroundColor = get("backgroundColor");
my $configurationLimit = int(get("configurationLimit"));
my $copyKernels = get("copyKernels") eq "true";
my $timeout = int(get("timeout"));
@@ -246,7 +248,7 @@ if ($grubVersion == 1) {
";
if ($splashImage) {
copy $splashImage, "$bootPath/background.xpm.gz" or die "cannot copy $splashImage to $bootPath\n";
- $conf .= "splashimage " . $grubBoot->path . "/background.xpm.gz\n";
+ $conf .= "splashimage " . ($grubBoot->path eq "/" ? "" : $grubBoot->path) . "/background.xpm.gz\n";
}
}
@@ -287,7 +289,7 @@ else {
copy $font, "$bootPath/converted-font.pf2" or die "cannot copy $font to $bootPath\n";
$conf .= "
insmod font
- if loadfont " . $grubBoot->path . "/converted-font.pf2; then
+ if loadfont " . ($grubBoot->path eq "/" ? "" : $grubBoot->path) . "/converted-font.pf2; then
insmod gfxterm
if [ \"\${grub_platform}\" = \"efi\" ]; then
set gfxmode=$gfxmodeEfi
@@ -307,10 +309,15 @@ else {
if ($suffix eq ".jpg") {
$suffix = ".jpeg";
}
+ if ($backgroundColor) {
+ $conf .= "
+ background_color '$backgroundColor'
+ ";
+ }
copy $splashImage, "$bootPath/background$suffix" or die "cannot copy $splashImage to $bootPath\n";
$conf .= "
insmod " . substr($suffix, 1) . "
- if background_image " . $grubBoot->path . "/background$suffix; then
+ if background_image --mode '$splashMode' " . ($grubBoot->path eq "/" ? "" : $grubBoot->path) . "/background$suffix; then
set color_normal=white/black
set color_highlight=black/white
else
@@ -345,7 +352,7 @@ sub copyToKernelsDir {
rename $tmp, $dst or die "cannot rename $tmp to $dst\n";
}
$copied{$dst} = 1;
- return $grubBoot->path . "/kernels/$name";
+ return ($grubBoot->path eq "/" ? "" : $grubBoot->path) . "/kernels/$name";
}
sub addEntry {
diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix
index 27c1f891f485a25ba06e58bf0f0e67a5156a00dc..ed8b9f01e2750c79e905024259ce76c5e321d2eb 100644
--- a/nixos/modules/system/boot/luksroot.nix
+++ b/nixos/modules/system/boot/luksroot.nix
@@ -324,7 +324,7 @@ in
[ "aes" "aes_generic" "blowfish" "twofish"
"serpent" "cbc" "xts" "lrw" "sha1" "sha256" "sha512"
- (if pkgs.stdenv.system == "x86_64-linux" then "aes_x86_64" else "aes_i586")
+ (if pkgs.stdenv.hostPlatform.system == "x86_64-linux" then "aes_x86_64" else "aes_i586")
];
description = ''
A list of cryptographic kernel modules needed to decrypt the root device(s).
diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix
index c11aaeaeb6dcd2958e3994652e724c4d2f9417c9..4bacf0f126a4b70679e1b1428414c8c084cfb26f 100644
--- a/nixos/modules/system/boot/networkd.nix
+++ b/nixos/modules/system/boot/networkd.nix
@@ -30,10 +30,14 @@ let
(assertValueOneOf "UDPSegmentationOffload" boolValues)
(assertValueOneOf "GenericReceiveOffload" boolValues)
(assertValueOneOf "LargeReceiveOffload" boolValues)
- (assertRange "RxChannels" 1 4294967295)
- (assertRange "TxChannels" 1 4294967295)
- (assertRange "OtherChannels" 1 4294967295)
- (assertRange "CombinedChannels" 1 4294967295)
+ (assertInt "RxChannels")
+ (assertMinimum "RxChannels" 1)
+ (assertInt "TxChannels")
+ (assertMinimum "TxChannels" 1)
+ (assertInt "OtherChannels")
+ (assertMinimum "OtherChannels" 1)
+ (assertInt "CombinedChannels")
+ (assertMinimum "CombinedChannels" 1)
];
checkNetdev = checkUnitConfig "Netdev" [
@@ -226,7 +230,8 @@ let
(assertValueOneOf "UseTimezone" boolValues)
(assertValueOneOf "CriticalConnection" boolValues)
(assertValueOneOf "RequestBroadcast" boolValues)
- (assertRange "RouteTable" 0 4294967295)
+ (assertInt "RouteTable")
+ (assertMinimum "RouteTable" 0)
(assertValueOneOf "RapidCommit" boolValues)
];
diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh
index de8451bbe31b76c5579ba4487a5fc81b36ea2376..3bc33a20a09f7d9af836ca224c985d1bf309a21c 100644
--- a/nixos/modules/system/boot/stage-1-init.sh
+++ b/nixos/modules/system/boot/stage-1-init.sh
@@ -263,6 +263,13 @@ checkFS() {
return 0
fi
+ # Device might be already mounted manually
+ # e.g. NBD-device or the host filesystem of the file which contains encrypted root fs
+ if mount | grep -q "^$device on "; then
+ echo "skip checking already mounted $device"
+ return 0
+ fi
+
# Optionally, skip fsck on journaling filesystems. This option is
# a hack - it's mostly because e2fsck on ext3 takes much longer to
# recover the journal than the ext3 implementation in the kernel
diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh
index b83012dfda7ef4e0808bc0b5d3b6469a206bca03..49764b75a55796b481e820f9cfd9637ab196dcc0 100644
--- a/nixos/modules/system/boot/stage-2-init.sh
+++ b/nixos/modules/system/boot/stage-2-init.sh
@@ -159,6 +159,6 @@ exec {logOutFd}>&- {logErrFd}>&-
# Start systemd.
echo "starting systemd..."
-PATH=/run/current-system/systemd/lib/systemd \
+PATH=/run/current-system/systemd/lib/systemd:@fsPackagesPath@ \
LOCALE_ARCHIVE=/run/current-system/sw/lib/locale/locale-archive \
exec systemd
diff --git a/nixos/modules/system/boot/stage-2.nix b/nixos/modules/system/boot/stage-2.nix
index 9fd89b6319db81041b25dbccd021ab518a78a742..55e6b19c67fd2c37c16f92d29a3a13cefa54b782 100644
--- a/nixos/modules/system/boot/stage-2.nix
+++ b/nixos/modules/system/boot/stage-2.nix
@@ -17,6 +17,7 @@ let
pkgs.utillinux
pkgs.openresolv
];
+ fsPackagesPath = lib.makeBinPath config.system.fsPackages;
postBootCommands = pkgs.writeText "local-cmds"
''
${config.boot.postBootCommands}
diff --git a/nixos/modules/system/boot/systemd-lib.nix b/nixos/modules/system/boot/systemd-lib.nix
index 8b37bf8d35d812e14274d19c1c112973ab85aef7..9c8d4a026b4af3b1dca64bdf99271a45ea2d50cf 100644
--- a/nixos/modules/system/boot/systemd-lib.nix
+++ b/nixos/modules/system/boot/systemd-lib.nix
@@ -73,11 +73,19 @@ in rec {
optional (attr ? ${name} && !(min <= attr.${name} && max >= attr.${name}))
"Systemd ${group} field `${name}' is outside the range [${toString min},${toString max}]";
+ assertMinimum = name: min: group: attr:
+ optional (attr ? ${name} && attr.${name} < min)
+ "Systemd ${group} field `${name}' must be greater than or equal to ${toString min}";
+
assertOnlyFields = fields: group: attr:
let badFields = filter (name: ! elem name fields) (attrNames attr); in
optional (badFields != [ ])
"Systemd ${group} has extra fields [${concatStringsSep " " badFields}].";
+ assertInt = name: group: attr:
+ optional (attr ? ${name} && !isInt attr.${name})
+ "Systemd ${group} field `${name}' is not an integer";
+
checkUnitConfig = group: checks: attrs: let
# We're applied at the top-level type (attrsOf unitOption), so the actual
# unit options might contain attributes from mkOverride that we need to
diff --git a/nixos/modules/tasks/network-interfaces-scripted.nix b/nixos/modules/tasks/network-interfaces-scripted.nix
index f3f6a19318a2f1b39812903551dd2f350983dd13..af61c95da0af63140a14090a4be0f25a4e1aff59 100644
--- a/nixos/modules/tasks/network-interfaces-scripted.nix
+++ b/nixos/modules/tasks/network-interfaces-scripted.nix
@@ -473,7 +473,12 @@ let
# Remove Dead Interfaces
ip link show "${n}" >/dev/null 2>&1 && ip link delete "${n}"
ip link add link "${v.interface}" name "${n}" type vlan id "${toString v.id}"
- ip link set "${n}" up
+
+ # We try to bring up the logical VLAN interface. If the master
+ # interface the logical interface is dependent upon is not up yet we will
+ # fail to immediately bring up the logical interface. The resulting logical
+ # interface will brought up later when the master interface is up.
+ ip link set "${n}" up || true
'';
postStop = ''
ip link delete "${n}" || true
diff --git a/nixos/modules/testing/test-instrumentation.nix b/nixos/modules/testing/test-instrumentation.nix
index d94e21d681f3060b1535933f060413d84e2c0e5e..ed4cfa7805e2d5d07143ebdc05b7333ce8fcded3 100644
--- a/nixos/modules/testing/test-instrumentation.nix
+++ b/nixos/modules/testing/test-instrumentation.nix
@@ -102,8 +102,12 @@ with import ../../lib/qemu-flags.nix { inherit pkgs; };
MaxLevelConsole=debug
'';
- # Don't clobber the console with duplicate systemd messages.
- systemd.extraConfig = "ShowStatus=no";
+ systemd.extraConfig = ''
+ # Don't clobber the console with duplicate systemd messages.
+ ShowStatus=no
+ # Allow very slow start
+ DefaultTimeoutStartSec=300
+ '';
boot.consoleLogLevel = 7;
diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix
index b7ab54aab7ec8aaac2d6ce7b84d0f24dcc06a732..770cefbcd511228d5a0e6bc7a25c30567567f12b 100644
--- a/nixos/modules/virtualisation/azure-agent.nix
+++ b/nixos/modules/virtualisation/azure-agent.nix
@@ -77,7 +77,7 @@ in
config = mkIf cfg.enable {
assertions = [ {
assertion = pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64;
- message = "Azure not currently supported on ${pkgs.stdenv.system}";
+ message = "Azure not currently supported on ${pkgs.stdenv.hostPlatform.system}";
} {
assertion = config.networking.networkmanager.enable == false;
message = "Windows Azure Linux Agent is not compatible with NetworkManager";
diff --git a/nixos/modules/virtualisation/brightbox-image.nix b/nixos/modules/virtualisation/brightbox-image.nix
index 39a655b4c104e9e3d4a0146f8ecd39fd130a04dc..e716982c510a76f85f76cb6de151a56f274e8ee3 100644
--- a/nixos/modules/virtualisation/brightbox-image.nix
+++ b/nixos/modules/virtualisation/brightbox-image.nix
@@ -26,7 +26,7 @@ in
rm $diskImageBase
popd
'';
- diskImageBase = "nixos-image-${config.system.nixos.label}-${pkgs.stdenv.system}.raw";
+ diskImageBase = "nixos-image-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.raw";
buildInputs = [ pkgs.utillinux pkgs.perl ];
exportReferencesGraph =
[ "closure" config.system.build.toplevel ];
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index de2c43b8a40adbb11b4dfeb48c000025e1422ba2..4c7cffcf45572cd2bf7f57bc891062d452d11482 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -14,7 +14,7 @@ in
PATH=$PATH:${pkgs.stdenv.lib.makeBinPath [ pkgs.gnutar pkgs.gzip ]}
pushd $out
mv $diskImage disk.raw
- tar -Szcf nixos-image-${config.system.nixos.label}-${pkgs.stdenv.system}.raw.tar.gz disk.raw
+ tar -Szcf nixos-image-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.raw.tar.gz disk.raw
rm $out/disk.raw
popd
'';
diff --git a/nixos/modules/virtualisation/virtualbox-guest.nix b/nixos/modules/virtualisation/virtualbox-guest.nix
index 78c6f740788e41355868f9693231a9b60aee50a0..834b994e92d2a89fbe5bfd7d7a539e2cdf4e3b85 100644
--- a/nixos/modules/virtualisation/virtualbox-guest.nix
+++ b/nixos/modules/virtualisation/virtualbox-guest.nix
@@ -34,7 +34,7 @@ in
config = mkIf cfg.enable (mkMerge [{
assertions = [{
assertion = pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64;
- message = "Virtualbox not currently supported on ${pkgs.stdenv.system}";
+ message = "Virtualbox not currently supported on ${pkgs.stdenv.hostPlatform.system}";
}];
environment.systemPackages = [ kernel.virtualboxGuestAdditions ];
diff --git a/nixos/modules/virtualisation/virtualbox-image.nix b/nixos/modules/virtualisation/virtualbox-image.nix
index 475852d1546c7d8216a39ac3745298fe8bc1a17b..60048911658c410cee100d9e71b51e12a8a8e4a9 100644
--- a/nixos/modules/virtualisation/virtualbox-image.nix
+++ b/nixos/modules/virtualisation/virtualbox-image.nix
@@ -26,21 +26,21 @@ in {
};
vmDerivationName = mkOption {
type = types.str;
- default = "nixos-ova-${config.system.nixos.label}-${pkgs.stdenv.system}";
+ default = "nixos-ova-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}";
description = ''
The name of the derivation for the VirtualBox appliance.
'';
};
vmName = mkOption {
type = types.str;
- default = "NixOS ${config.system.nixos.label} (${pkgs.stdenv.system})";
+ default = "NixOS ${config.system.nixos.label} (${pkgs.stdenv.hostPlatform.system})";
description = ''
The name of the VirtualBox appliance.
'';
};
vmFileName = mkOption {
type = types.str;
- default = "nixos-${config.system.nixos.label}-${pkgs.stdenv.system}.ova";
+ default = "nixos-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.ova";
description = ''
The file name of the VirtualBox appliance.
'';
@@ -67,10 +67,10 @@ in {
echo "creating VirtualBox VM..."
vmName="${cfg.vmName}";
VBoxManage createvm --name "$vmName" --register \
- --ostype ${if pkgs.stdenv.system == "x86_64-linux" then "Linux26_64" else "Linux26"}
+ --ostype ${if pkgs.stdenv.hostPlatform.system == "x86_64-linux" then "Linux26_64" else "Linux26"}
VBoxManage modifyvm "$vmName" \
--memory ${toString cfg.memorySize} --acpi on --vram 32 \
- ${optionalString (pkgs.stdenv.system == "i686-linux") "--pae on"} \
+ ${optionalString (pkgs.stdenv.hostPlatform.system == "i686-linux") "--pae on"} \
--nictype1 virtio --nic1 nat \
--audiocontroller ac97 --audio alsa \
--rtcuseutc on \
diff --git a/nixos/modules/virtualisation/vmware-guest.nix b/nixos/modules/virtualisation/vmware-guest.nix
index 68930a0e32546e73715fafd8ce202924f8e3159d..15c78f14c524dedc8f91caa2d3d57f9d5d6402eb 100644
--- a/nixos/modules/virtualisation/vmware-guest.nix
+++ b/nixos/modules/virtualisation/vmware-guest.nix
@@ -22,7 +22,7 @@ in
config = mkIf cfg.enable {
assertions = [ {
assertion = pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64;
- message = "VMWare guest is not currently supported on ${pkgs.stdenv.system}";
+ message = "VMWare guest is not currently supported on ${pkgs.stdenv.hostPlatform.system}";
} ];
environment.systemPackages = [ open-vm-tools ];
diff --git a/nixos/modules/virtualisation/xen-dom0.nix b/nixos/modules/virtualisation/xen-dom0.nix
index cf57868acef90853d2575296cf7888186c467d38..70e575b6c0d2dc3f9f476ae6fab0e74ce9e93aba 100644
--- a/nixos/modules/virtualisation/xen-dom0.nix
+++ b/nixos/modules/virtualisation/xen-dom0.nix
@@ -146,7 +146,7 @@ in
config = mkIf cfg.enable {
assertions = [ {
assertion = pkgs.stdenv.isx86_64;
- message = "Xen currently not supported on ${pkgs.stdenv.system}";
+ message = "Xen currently not supported on ${pkgs.stdenv.hostPlatform.system}";
} {
assertion = config.boot.loader.grub.enable && (config.boot.loader.grub.efiSupport == false);
message = "Xen currently does not support EFI boot";
diff --git a/nixos/release.nix b/nixos/release.nix
index b25c684ff47a8a794ac8775f2a449f323508d024..17f51d977c98a420dd804b4bb0cc23deb5fe29e9 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -249,7 +249,7 @@ in rec {
tests.beegfs = callTest tests/beegfs.nix {};
tests.bittorrent = callTest tests/bittorrent.nix {};
tests.bind = callTest tests/bind.nix {};
- tests.blivet = callTest tests/blivet.nix {};
+ #tests.blivet = callTest tests/blivet.nix {}; # broken since 2017-07024
tests.boot = callSubTests tests/boot.nix {};
tests.boot-stage1 = callTest tests/boot-stage1.nix {};
tests.borgbackup = callTest tests/borgbackup.nix {};
@@ -291,6 +291,7 @@ in rec {
tests.firefox = callTest tests/firefox.nix {};
tests.flatpak = callTest tests/flatpak.nix {};
tests.firewall = callTest tests/firewall.nix {};
+ tests.fsck = callTest tests/fsck.nix {};
tests.fwupd = callTest tests/fwupd.nix {};
tests.gdk-pixbuf = callTest tests/gdk-pixbuf.nix {};
#tests.gitlab = callTest tests/gitlab.nix {};
@@ -326,7 +327,6 @@ in rec {
tests.keymap = callSubTests tests/keymap.nix {};
tests.initrdNetwork = callTest tests/initrd-network.nix {};
tests.kafka = callSubTests tests/kafka.nix {};
- tests.kernel-copperhead = callTest tests/kernel-copperhead.nix {};
tests.kernel-latest = callTest tests/kernel-latest.nix {};
tests.kernel-lts = callTest tests/kernel-lts.nix {};
tests.kubernetes.dns = callSubTestsOnMatchingSystems ["x86_64-linux"] tests/kubernetes/dns.nix {};
@@ -421,6 +421,7 @@ in rec {
tests.yabar = callTest tests/yabar.nix {};
tests.zookeeper = callTest tests/zookeeper.nix {};
tests.morty = callTest tests/morty.nix { };
+ tests.bcachefs = callTest tests/bcachefs.nix { };
/* Build a bunch of typical closures so that Hydra can keep track of
the evolution of closure sizes. */
diff --git a/nixos/tests/bcachefs.nix b/nixos/tests/bcachefs.nix
new file mode 100644
index 0000000000000000000000000000000000000000..658676ef0ab9988d52c65ab6ec7469570cbc04eb
--- /dev/null
+++ b/nixos/tests/bcachefs.nix
@@ -0,0 +1,38 @@
+import ./make-test.nix ({ pkgs, ... }: {
+ name = "bcachefs";
+ meta.maintainers = with pkgs.stdenv.lib.maintainers; [ chiiruno ];
+
+ machine = { pkgs, ... }: {
+ virtualisation.emptyDiskImages = [ 4096 ];
+ networking.hostId = "deadbeef";
+ boot.supportedFilesystems = [ "bcachefs" ];
+ environment.systemPackages = with pkgs; [ parted ];
+ };
+
+ testScript = ''
+ $machine->succeed("modprobe bcachefs");
+ $machine->succeed("bcachefs version");
+ $machine->succeed("ls /dev");
+
+ $machine->succeed(
+ "mkdir /tmp/mnt",
+
+ "udevadm settle",
+ "parted --script /dev/vdb mklabel msdos",
+ "parted --script /dev/vdb -- mkpart primary 1024M -1s",
+ "udevadm settle",
+
+ # Due to #32279, we cannot use encryption for this test yet
+ # "echo password | bcachefs format --encrypted /dev/vdb1",
+ # "echo password | bcachefs unlock /dev/vdb1",
+ "bcachefs format /dev/vdb1",
+ "mount -t bcachefs /dev/vdb1 /tmp/mnt",
+ "udevadm settle",
+
+ "bcachefs fs usage /tmp/mnt",
+
+ "umount /tmp/mnt",
+ "udevadm settle"
+ );
+ '';
+})
diff --git a/nixos/tests/ec2.nix b/nixos/tests/ec2.nix
index f585fa2ec237bb83e60f4f531520e828b450bc77..8271747ccc631aa29e65c75897f2e5c4417d25de 100644
--- a/nixos/tests/ec2.nix
+++ b/nixos/tests/ec2.nix
@@ -68,7 +68,9 @@ let
# again when it deletes link-local addresses.) Ideally we'd
# turn off the DHCP server, but qemu does not have an option
# to do that.
- my $startCommand = "qemu-kvm -m 768 -net nic,vlan=0,model=virtio -net 'user,vlan=0,net=169.0.0.0/8,guestfwd=tcp:169.254.169.254:80-cmd:${pkgs.micro-httpd}/bin/micro_httpd ${metaData}'";
+ my $startCommand = "qemu-kvm -m 768";
+ $startCommand .= " -device virtio-net-pci,netdev=vlan0";
+ $startCommand .= " -netdev 'user,id=vlan0,net=169.0.0.0/8,guestfwd=tcp:169.254.169.254:80-cmd:${pkgs.micro-httpd}/bin/micro_httpd ${metaData}'";
$startCommand .= " -drive file=$diskImage,if=virtio,werror=report";
$startCommand .= " \$QEMU_OPTS";
diff --git a/nixos/tests/elk.nix b/nixos/tests/elk.nix
index 4c5c441ca2654ce2059b918b9695f0a89d17eaba..15be72b80bbad5d99518eaffd4150a48fdb409a9 100644
--- a/nixos/tests/elk.nix
+++ b/nixos/tests/elk.nix
@@ -63,6 +63,33 @@ let
package = elk.kibana;
elasticsearch.url = esUrl;
};
+
+ elasticsearch-curator = {
+ enable = true;
+ actionYAML = ''
+ ---
+ actions:
+ 1:
+ action: delete_indices
+ description: >-
+ Delete indices older than 1 second (based on index name), for logstash-
+ prefixed indices. Ignore the error if the filter does not result in an
+ actionable list of indices (ignore_empty_list) and exit cleanly.
+ options:
+ ignore_empty_list: True
+ disable_action: False
+ filters:
+ - filtertype: pattern
+ kind: prefix
+ value: logstash-
+ - filtertype: age
+ source: name
+ direction: older
+ timestring: '%Y.%m.%d'
+ unit: seconds
+ unit_count: 1
+ '';
+ };
};
};
};
@@ -91,6 +118,11 @@ let
# See if logstash messages arive in elasticsearch.
$one->waitUntilSucceeds("curl --silent --show-error '${esUrl}/_search' -H 'Content-Type: application/json' -d '{\"query\" : { \"match\" : { \"message\" : \"flowers\"}}}' | jq .hits.total | grep -v 0");
$one->waitUntilSucceeds("curl --silent --show-error '${esUrl}/_search' -H 'Content-Type: application/json' -d '{\"query\" : { \"match\" : { \"message\" : \"dragons\"}}}' | jq .hits.total | grep 0");
+
+ # Test elasticsearch-curator.
+ $one->systemctl("stop logstash");
+ $one->systemctl("start elasticsearch-curator");
+ $one->waitUntilSucceeds("! curl --silent --show-error '${esUrl}/_cat/indices' | grep logstash | grep -q ^$1");
'';
};
in mapAttrs mkElkTest {
diff --git a/nixos/tests/flatpak.nix b/nixos/tests/flatpak.nix
index 096b37e6e2cb723c7b31ec12c420a1b0a2951495..b0c61830d05aff561f190898c3d2345166768746 100644
--- a/nixos/tests/flatpak.nix
+++ b/nixos/tests/flatpak.nix
@@ -10,6 +10,8 @@ import ./make-test.nix ({ pkgs, ... }:
machine = { pkgs, ... }: {
imports = [ ./common/x11.nix ];
services.xserver.desktopManager.gnome3.enable = true; # TODO: figure out minimal environment where the tests work
+ # common/x11.nix enables the auto display manager (lightdm)
+ services.xserver.displayManager.gdm.enable = false;
environment.gnome3.excludePackages = pkgs.gnome3.optionalPackages;
services.flatpak.enable = true;
environment.systemPackages = with pkgs; [ gnupg gnome-desktop-testing ostree python2 ];
diff --git a/nixos/tests/fsck.nix b/nixos/tests/fsck.nix
new file mode 100644
index 0000000000000000000000000000000000000000..f943bb7f235008f475d52358968a398187011a5b
--- /dev/null
+++ b/nixos/tests/fsck.nix
@@ -0,0 +1,29 @@
+import ./make-test.nix {
+ name = "fsck";
+
+ machine = { lib, ... }: {
+ virtualisation.emptyDiskImages = [ 1 ];
+
+ fileSystems = lib.mkVMOverride {
+ "/mnt" = {
+ device = "/dev/vdb";
+ fsType = "ext4";
+ autoFormat = true;
+ };
+ };
+ };
+
+ testScript = ''
+ $machine->waitForUnit('default.target');
+
+ subtest "root fs is fsckd", sub {
+ $machine->succeed('journalctl -b | grep "fsck.ext4.*/dev/vda"');
+ };
+
+ subtest "mnt fs is fsckd", sub {
+ $machine->succeed('journalctl -b | grep "fsck.*/dev/vdb.*clean"');
+ $machine->succeed('grep "Requires=systemd-fsck@dev-vdb.service" /run/systemd/generator/mnt.mount');
+ $machine->succeed('grep "After=systemd-fsck@dev-vdb.service" /run/systemd/generator/mnt.mount');
+ };
+ '';
+}
diff --git a/nixos/tests/gnome3-gdm.nix b/nixos/tests/gnome3-gdm.nix
index 1f590f337fd9034e92d1d803cbb70c3bc3f99f80..959030d598802d42c9e5e91f0b50fef0fcbda347 100644
--- a/nixos/tests/gnome3-gdm.nix
+++ b/nixos/tests/gnome3-gdm.nix
@@ -11,7 +11,6 @@ import ./make-test.nix ({ pkgs, ...} : {
services.xserver.enable = true;
- services.xserver.displayManager.slim.enable = false;
services.xserver.displayManager.gdm = {
enable = true;
autoLogin = {
diff --git a/nixos/tests/gnome3.nix b/nixos/tests/gnome3.nix
index af2404bf530c8d933f30020b2fcb9d9126d29ecd..3f0368592b8d18ca188e10c73f28431f3efdc6e4 100644
--- a/nixos/tests/gnome3.nix
+++ b/nixos/tests/gnome3.nix
@@ -11,6 +11,7 @@ import ./make-test.nix ({ pkgs, ...} : {
services.xserver.enable = true;
+ services.xserver.displayManager.gdm.enable = false;
services.xserver.displayManager.lightdm.enable = true;
services.xserver.displayManager.lightdm.autoLogin.enable = true;
services.xserver.displayManager.lightdm.autoLogin.user = "alice";
diff --git a/nixos/tests/i3wm.nix b/nixos/tests/i3wm.nix
index 245c17eedf7e2c385751420a0ed7dca96fdce7b0..e51aee30fdb007ab0d993e4c5e68c05b8b8256e0 100644
--- a/nixos/tests/i3wm.nix
+++ b/nixos/tests/i3wm.nix
@@ -16,18 +16,20 @@ import ./make-test.nix ({ pkgs, ...} : {
$machine->waitForFile("/home/alice/.Xauthority");
$machine->succeed("xauth merge ~alice/.Xauthority");
$machine->waitForWindow(qr/first configuration/);
- $machine->sleep(1);
+ $machine->sleep(2);
$machine->screenshot("started");
$machine->sendKeys("ret");
- $machine->sleep(1);
+ $machine->sleep(2);
$machine->sendKeys("alt");
- $machine->sleep(1);
+ $machine->sleep(2);
$machine->screenshot("configured");
$machine->sendKeys("ret");
+ # make sure the config file is created before we continue
+ $machine->waitForFile("/home/alice/.config/i3/config");
$machine->sleep(2);
$machine->sendKeys("alt-ret");
$machine->waitForWindow(qr/machine.*alice/);
- $machine->sleep(1);
+ $machine->sleep(2);
$machine->screenshot("terminal");
'';
})
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index 507665190a26bda06f9c8a257d00f5540b88c114..3d31c8dc4457c7b90fae2569e0fbb49cde18227b 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -233,13 +233,16 @@ let
[ sudo
libxml2.bin
libxslt.bin
+ desktop-file-utils
docbook5
docbook_xsl_ns
unionfs-fuse
ntp
- nixos-artwork.wallpapers.gnome-dark
+ nixos-artwork.wallpapers.simple-dark-gray-bottom
perlPackages.XMLLibXML
perlPackages.ListCompare
+ shared-mime-info
+ texinfo
xorg.lndir
# add curl so that rather than seeing the test attempt to download
diff --git a/nixos/tests/kernel-copperhead.nix b/nixos/tests/kernel-copperhead.nix
deleted file mode 100644
index 652fbf055373ee5e111bed4719e0df3cc6edd807..0000000000000000000000000000000000000000
--- a/nixos/tests/kernel-copperhead.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-import ./make-test.nix ({ pkgs, ...} : {
- name = "kernel-copperhead";
- meta = with pkgs.stdenv.lib.maintainers; {
- maintainers = [ nequissimus ];
- };
-
- machine = { pkgs, ... }:
- {
- boot.kernelPackages = pkgs.linuxPackages_copperhead_lts;
- };
-
- testScript =
- ''
- $machine->succeed("uname -a");
- $machine->succeed("uname -s | grep 'Linux'");
- $machine->succeed("uname -a | grep '${pkgs.linuxPackages_copperhead_lts.kernel.modDirVersion}'");
- $machine->succeed("uname -a | grep 'hardened'");
- '';
-})
diff --git a/nixos/tests/matrix-synapse.nix b/nixos/tests/matrix-synapse.nix
index 113fb622588b3ea1409f4330c1b88c3867fe2815..8504a7c0d057cfcdee3897a256436630a7402308 100644
--- a/nixos/tests/matrix-synapse.nix
+++ b/nixos/tests/matrix-synapse.nix
@@ -6,12 +6,13 @@ import ./make-test.nix ({ pkgs, ... } : {
};
nodes = {
- server_postgres = args: {
+ # Since 0.33.0, matrix-synapse doesn't allow underscores in server names
+ serverpostgres = args: {
services.matrix-synapse.enable = true;
services.matrix-synapse.database_type = "psycopg2";
};
- server_sqlite = args: {
+ serversqlite = args: {
services.matrix-synapse.enable = true;
services.matrix-synapse.database_type = "sqlite3";
};
@@ -19,12 +20,12 @@ import ./make-test.nix ({ pkgs, ... } : {
testScript = ''
startAll;
- $server_postgres->waitForUnit("matrix-synapse.service");
- $server_postgres->waitUntilSucceeds("curl -Lk https://localhost:8448/");
- $server_postgres->requireActiveUnit("postgresql.service");
- $server_sqlite->waitForUnit("matrix-synapse.service");
- $server_sqlite->waitUntilSucceeds("curl -Lk https://localhost:8448/");
- $server_sqlite->mustSucceed("[ -e /var/lib/matrix-synapse/homeserver.db ]");
+ $serverpostgres->waitForUnit("matrix-synapse.service");
+ $serverpostgres->waitUntilSucceeds("curl -Lk https://localhost:8448/");
+ $serverpostgres->requireActiveUnit("postgresql.service");
+ $serversqlite->waitForUnit("matrix-synapse.service");
+ $serversqlite->waitUntilSucceeds("curl -Lk https://localhost:8448/");
+ $serversqlite->mustSucceed("[ -e /var/lib/matrix-synapse/homeserver.db ]");
'';
})
diff --git a/nixos/tests/mesos.nix b/nixos/tests/mesos.nix
index 3ceb1d8125b2014b50a2c6c5bab07519b83d7147..2e6dc0eda063c852fa3f7b2d08cfbc567472908b 100644
--- a/nixos/tests/mesos.nix
+++ b/nixos/tests/mesos.nix
@@ -33,6 +33,7 @@ import ./make-test.nix ({ pkgs, ...} : rec {
simpleDocker = pkgs.dockerTools.buildImage {
name = "echo";
+ tag = "latest";
contents = [ pkgs.stdenv.shellPackage pkgs.coreutils ];
config = {
Env = [
diff --git a/nixos/tests/munin.nix b/nixos/tests/munin.nix
index eb91d4d630bc8594bd1692c4e4d36d152492ebd9..9f66005292ab51afff38036df8582b7197e292fa 100644
--- a/nixos/tests/munin.nix
+++ b/nixos/tests/munin.nix
@@ -12,16 +12,23 @@ import ./make-test.nix ({ pkgs, ...} : {
{ config, ... }:
{
services = {
- munin-node.enable = true;
- munin-cron = {
+ munin-node = {
enable = true;
- hosts = ''
- [${config.networking.hostName}]
- address localhost
+ # disable a failing plugin to prevent irrelevant error message, see #23049
+ extraConfig = ''
+ ignore_file ^apc_nis$
'';
};
+ munin-cron = {
+ enable = true;
+ hosts = ''
+ [${config.networking.hostName}]
+ address localhost
+ '';
+ };
};
- systemd.services.munin-node.serviceConfig.TimeoutStartSec = "3min";
+ # long timeout to prevent hydra failure on high load
+ systemd.services.munin-node.serviceConfig.TimeoutStartSec = "10min";
};
};
@@ -29,7 +36,10 @@ import ./make-test.nix ({ pkgs, ...} : {
startAll;
$one->waitForUnit("munin-node.service");
+ # make sure the node is actually listening
+ $one->waitForOpenPort(4949);
$one->succeed('systemctl start munin-cron');
+ # wait for munin-cron output
$one->waitForFile("/var/lib/munin/one/one-uptime-uptime-g.rrd");
$one->waitForFile("/var/www/munin/one/index.html");
'';
diff --git a/nixos/tests/netdata.nix b/nixos/tests/netdata.nix
index eb45db6f04c3fb275e8ab4af1cafbcc5191c9715..9bd147968e4b1acd0318e3940546b1704a5dc34c 100644
--- a/nixos/tests/netdata.nix
+++ b/nixos/tests/netdata.nix
@@ -20,6 +20,9 @@ import ./make-test.nix ({ pkgs, ...} : {
$netdata->waitForUnit("netdata.service");
+ # wait for the service to listen before sending a request
+ $netdata->waitForOpenPort(19999);
+
# check if the netdata main page loads.
$netdata->succeed("curl --fail http://localhost:19999/");
diff --git a/nixos/tests/networking.nix b/nixos/tests/networking.nix
index cd5d537a3be74eb7735a284fa1b2caeec21b2593..02bd4bd980790fe5f015dd0a5f089154406adf90 100644
--- a/nixos/tests/networking.nix
+++ b/nixos/tests/networking.nix
@@ -11,6 +11,7 @@ let
let
vlanIfs = range 1 (length config.virtualisation.vlans);
in {
+ environment.systemPackages = [ pkgs.iptables ]; # to debug firewall rules
virtualisation.vlans = [ 1 2 3 ];
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = true;
networking = {
@@ -320,9 +321,14 @@ let
name = "MACVLAN";
nodes.router = router;
nodes.client = { pkgs, ... }: with pkgs.lib; {
+ environment.systemPackages = [ pkgs.iptables ]; # to debug firewall rules
virtualisation.vlans = [ 1 ];
networking = {
useNetworkd = networkd;
+ firewall.logReversePathDrops = true; # to debug firewall rules
+ # reverse path filtering rules for the macvlan interface seem
+ # to be incorrect, causing the test to fail. Disable temporarily.
+ firewall.checkReversePath = false;
firewall.allowPing = true;
useDHCP = true;
macvlans.macvlan.interface = "eth1";
@@ -341,9 +347,16 @@ let
$client->waitUntilSucceeds("ip addr show dev eth1 | grep -q '192.168.1'");
$client->waitUntilSucceeds("ip addr show dev macvlan | grep -q '192.168.1'");
- # Print diagnosting information
+ # Print lots of diagnostic information
+ $router->log('**********************************************');
$router->succeed("ip addr >&2");
+ $router->succeed("ip route >&2");
+ $router->execute("iptables-save >&2");
+ $client->log('==============================================');
$client->succeed("ip addr >&2");
+ $client->succeed("ip route >&2");
+ $client->execute("iptables-save >&2");
+ $client->log('##############################################');
# Test macvlan creates routable ips
$client->waitUntilSucceeds("ping -c 1 192.168.1.1");
@@ -448,8 +461,8 @@ let
testScript = ''
my $targetList = <<'END';
- tap0: tap UNKNOWN_FLAGS:800 user 0
- tun0: tun UNKNOWN_FLAGS:800 user 0
+ tap0: tap persist user 0
+ tun0: tun persist user 0
END
# Wait for networking to come up
@@ -552,15 +565,15 @@ let
testScript = ''
my $targetIPv4Table = <<'END';
- 10.0.0.0/16 scope link mtu 1500
+ 10.0.0.0/16 proto static scope link mtu 1500
192.168.1.0/24 proto kernel scope link src 192.168.1.2
- 192.168.2.0/24 via 192.168.1.1
+ 192.168.2.0/24 via 192.168.1.1 proto static
END
my $targetIPv6Table = <<'END';
2001:1470:fffd:2097::/64 proto kernel metric 256 pref medium
- 2001:1470:fffd:2098::/64 via fdfd:b3f0::1 metric 1024 pref medium
- fdfd:b3f0::/48 metric 1024 pref medium
+ 2001:1470:fffd:2098::/64 via fdfd:b3f0::1 proto static metric 1024 pref medium
+ fdfd:b3f0::/48 proto static metric 1024 pref medium
END
$machine->start;
diff --git a/nixos/tests/nfs.nix b/nixos/tests/nfs.nix
index 1992f240e7b00fbde800d48752530ee686c3ea0f..0ef44f1a489054aa0fba95a9765afcaa7d051921 100644
--- a/nixos/tests/nfs.nix
+++ b/nixos/tests/nfs.nix
@@ -6,7 +6,8 @@ let
{ pkgs, ... }:
{ fileSystems = pkgs.lib.mkVMOverride
[ { mountPoint = "/data";
- device = "server:/data";
+ # nfs4 exports the export with fsid=0 as a virtual root directory
+ device = if (version == 4) then "server:/" else "server:/data";
fsType = "nfs";
options = [ "vers=${toString version}" ];
}
diff --git a/nixos/tests/virtualbox.nix b/nixos/tests/virtualbox.nix
index 4207112cf16aca8fd6f9a7d5311d6e5dc1f70ca3..ce84576edca170f17a0ac294bac3bead56f674e0 100644
--- a/nixos/tests/virtualbox.nix
+++ b/nixos/tests/virtualbox.nix
@@ -1,4 +1,4 @@
-{ system ? builtins.currentSystem, debug ? false }:
+{ system ? builtins.currentSystem, debug ? false, enableUnfree ? false }:
with import ../lib/testing.nix { inherit system; };
with pkgs.lib;
@@ -378,6 +378,26 @@ let
};
};
+ unfreeTests = mapAttrs (mkVBoxTest true vboxVMsWithExtpack) {
+ enable-extension-pack = ''
+ createVM_testExtensionPack;
+ vbm("startvm testExtensionPack");
+ waitForStartup_testExtensionPack;
+ $machine->screenshot("cli_started");
+ waitForVMBoot_testExtensionPack;
+ $machine->screenshot("cli_booted");
+
+ $machine->nest("Checking for privilege escalation", sub {
+ $machine->fail("test -e '/root/VirtualBox VMs'");
+ $machine->fail("test -e '/root/.config/VirtualBox'");
+ $machine->succeed("test -e '/home/alice/VirtualBox VMs'");
+ });
+
+ shutdownVM_testExtensionPack;
+ destroyVM_testExtensionPack;
+ '';
+ };
+
in mapAttrs (mkVBoxTest false vboxVMs) {
simple-gui = ''
createVM_simple;
@@ -484,22 +504,4 @@ in mapAttrs (mkVBoxTest false vboxVMs) {
destroyVM_test1;
destroyVM_test2;
'';
-} // mapAttrs (mkVBoxTest true vboxVMsWithExtpack) {
- enable-extension-pack = ''
- createVM_testExtensionPack;
- vbm("startvm testExtensionPack");
- waitForStartup_testExtensionPack;
- $machine->screenshot("cli_started");
- waitForVMBoot_testExtensionPack;
- $machine->screenshot("cli_booted");
-
- $machine->nest("Checking for privilege escalation", sub {
- $machine->fail("test -e '/root/VirtualBox VMs'");
- $machine->fail("test -e '/root/.config/VirtualBox'");
- $machine->succeed("test -e '/home/alice/VirtualBox VMs'");
- });
-
- shutdownVM_testExtensionPack;
- destroyVM_testExtensionPack;
- '';
-}
+} // (if enableUnfree then unfreeTests else {})
diff --git a/pkgs/applications/altcoins/default.nix b/pkgs/applications/altcoins/default.nix
index f4a49e79f6ad7f073a7fa5abe3e1e1e6148d1d74..95d79a8650fd0cfdb992ec041931ea18d023e47f 100644
--- a/pkgs/applications/altcoins/default.nix
+++ b/pkgs/applications/altcoins/default.nix
@@ -1,4 +1,4 @@
-{ callPackage, boost155, boost165, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3 }:
+{ callPackage, boost155, boost165, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3, buildGo110Package }:
rec {
@@ -51,10 +51,13 @@ rec {
freicoin = callPackage ./freicoin.nix { boost = boost155; };
go-ethereum = callPackage ./go-ethereum.nix {
+ buildGoPackage = buildGo110Package;
inherit (darwin) libobjc;
inherit (darwin.apple_sdk.frameworks) IOKit;
};
- go-ethereum-classic = callPackage ./go-ethereum-classic { };
+ go-ethereum-classic = callPackage ./go-ethereum-classic {
+ buildGoPackage = buildGo110Package;
+ };
litecoin = callPackage ./litecoin.nix { withGui = true; };
litecoind = callPackage ./litecoin.nix { withGui = false; };
diff --git a/pkgs/applications/altcoins/ethabi.nix b/pkgs/applications/altcoins/ethabi.nix
index 81b4cb52948f4abcb9e2e783e28a30134c8011ec..d0bc700eb70ff9a08c5c3b98a565df5bc1874163 100644
--- a/pkgs/applications/altcoins/ethabi.nix
+++ b/pkgs/applications/altcoins/ethabi.nix
@@ -17,10 +17,11 @@ buildRustPackage rec {
cargoBuildFlags = ["--features cli"];
- meta = {
+ meta = with stdenv.lib; {
description = "Ethereum function call encoding (ABI) utility";
homepage = https://github.com/ethcore/ethabi/;
- maintainers = [stdenv.lib.maintainers.dbrock];
+ maintainers = [ maintainers.dbrock ];
+ license = licenses.gpl3;
inherit version;
};
}
diff --git a/pkgs/applications/altcoins/ethrun.nix b/pkgs/applications/altcoins/ethrun.nix
index 2a8c37610dba5cc176de6a088f2dae7501b50583..c58d9d8faf48d9f2885ac62759895f513e6d82b2 100644
--- a/pkgs/applications/altcoins/ethrun.nix
+++ b/pkgs/applications/altcoins/ethrun.nix
@@ -15,10 +15,11 @@ buildRustPackage rec {
cargoSha256 = "14x8pbjgkz0g724lnvd9mi2alqd6fipjljw6xsraf9gqwijn1kn0";
- meta = {
+ meta = with stdenv.lib; {
description = "Directly run Ethereum bytecode";
homepage = https://github.com/dapphub/ethrun/;
- maintainers = [stdenv.lib.maintainers.dbrock];
+ maintainers = [ maintainers.dbrock ];
+ license = licenses.gpl3;
broken = true; # mark temporary as broken
inherit version;
};
diff --git a/pkgs/applications/altcoins/mist.nix b/pkgs/applications/altcoins/mist.nix
index 5f89b0a0c17355d8ba78315a0d7ec09a7fa72b9e..194c004f9c7f9e29004a6aa4a519342767fc1814 100644
--- a/pkgs/applications/altcoins/mist.nix
+++ b/pkgs/applications/altcoins/mist.nix
@@ -4,7 +4,7 @@ let
version = "0.11.1";
name = "mist";
- throwSystem = throw "Unsupported system: ${stdenv.system}";
+ throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
meta = with stdenv.lib; {
description = "Browse and use Ðapps on the Ethereum network";
@@ -37,7 +37,7 @@ let
url = "https://github.com/ethereum/mist/releases/download/v${version}/Mist-linux64-${urlVersion}.zip";
sha256 = "0yx4x72l8gk68yh9saki48zgqx8k92xnkm79dc651wdpd5c25cz3";
};
- }.${stdenv.system} or throwSystem;
+ }.${stdenv.hostPlatform.system} or throwSystem;
buildInputs = [ unzip makeWrapper ];
diff --git a/pkgs/applications/altcoins/nano-wallet/default.nix b/pkgs/applications/altcoins/nano-wallet/default.nix
index 76ee914bd3d7834a2427a72af8a79b71c5d97aff..7491e8306285b240a7f6cb14f3a7061d9984073a 100644
--- a/pkgs/applications/altcoins/nano-wallet/default.nix
+++ b/pkgs/applications/altcoins/nano-wallet/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "nano-wallet-${version}";
- version = "14.2";
+ version = "15.2";
src = fetchFromGitHub {
owner = "nanocurrency";
repo = "raiblocks";
rev = "V${version}";
- sha256 = "0jbv5a8sz403a1pqcgl32idk6y0z510h7ikjg1dcxla0rsch6ipl";
+ sha256 = "0ngsnaczw5y709zk52flp6m2c83q3kxfgz0bzi8rzfjxp10ncnz3";
fetchSubmodules = true;
};
diff --git a/pkgs/applications/altcoins/particl/particl-core.nix b/pkgs/applications/altcoins/particl/particl-core.nix
index 331e169cf3f352e4e3b030786bc9b5b5957c5798..a06f373683a917248179decfc5baefcefbdd35a1 100644
--- a/pkgs/applications/altcoins/particl/particl-core.nix
+++ b/pkgs/applications/altcoins/particl/particl-core.nix
@@ -16,11 +16,11 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "particl-core-${version}";
- version = "0.16.1.0";
+ version = "0.16.2.0";
src = fetchurl {
url = "https://github.com/particl/particl-core/archive/v${version}.tar.gz";
- sha256 = "0rfqywyrl6cgxn3ba91zsa88ph2yf9d1vn706xpyz19pfb6mjfbg";
+ sha256 = "1d2vvg7avlhsg0rcpd5pbzafnk1w51a2y29xjjkpafi6iqs2l617";
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
diff --git a/pkgs/applications/audio/axoloti/dfu-util.nix b/pkgs/applications/audio/axoloti/dfu-util.nix
index 2076e45de5469acd8cfbb155e45261b9cb6c63d6..07a78260991f59210e1617ec3000f64d2e79bb6f 100644
--- a/pkgs/applications/audio/axoloti/dfu-util.nix
+++ b/pkgs/applications/audio/axoloti/dfu-util.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
phones. With dfu-util you are able to download firmware to your device or
upload firmware from it.
'';
- homepage = http://dfu-util.gnumonks.org/;
+ homepage = http://dfu-util.sourceforge.net;
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = [ ];
diff --git a/pkgs/applications/audio/axoloti/libusb1.nix b/pkgs/applications/audio/axoloti/libusb1.nix
index cf71c006046ed35f8260a103e8cf5cb3456229ad..1a6ebd346ccab1c5cde9a25704ad12d0135ce18a 100644
--- a/pkgs/applications/audio/axoloti/libusb1.nix
+++ b/pkgs/applications/audio/axoloti/libusb1.nix
@@ -29,10 +29,10 @@ stdenv.mkDerivation rec {
sed 's,-ludev,-L${systemd.lib}/lib -ludev,' -i $out/lib/libusb-1.0.la
'';
- meta = {
+ meta = with stdenv.lib; {
homepage = http://www.libusb.info;
description = "User-space USB library";
- platforms = stdenv.lib.platforms.unix;
- maintainers = [ ];
+ platforms = platforms.unix;
+ license = licenses.lgpl21;
};
}
diff --git a/pkgs/applications/audio/baudline/default.nix b/pkgs/applications/audio/baudline/default.nix
index deaa3f98e52ea309a0885f79a2a90a442515abfb..6827d12b321793ebf7f6ac8ab9a1397e58a27f2f 100644
--- a/pkgs/applications/audio/baudline/default.nix
+++ b/pkgs/applications/audio/baudline/default.nix
@@ -11,18 +11,18 @@ stdenv.mkDerivation rec {
version = "1.08";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "http://www.baudline.com/baudline_${version}_linux_x86_64.tar.gz";
sha256 = "09fn0046i69in1jpizkzbaq5ggij0mpflcsparyskm3wh71mbzvr";
}
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "http://www.baudline.com/baudline_${version}_linux_i686.tar.gz";
sha256 = "1waip5pmcf5ffcfvn8lf1rvsaq2ab66imrbfqs777scz7k8fhhjb";
}
else
- throw "baudline isn't supported (yet?) on ${stdenv.system}";
+ throw "baudline isn't supported (yet?) on ${stdenv.hostPlatform.system}";
buildInputs = [ makeWrapper ];
diff --git a/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix b/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix
new file mode 100644
index 0000000000000000000000000000000000000000..dab3a97f6e7345472e9ab46af66b8058f540833c
--- /dev/null
+++ b/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, libxml2, deadbeef, glib, gtk3 }:
+
+stdenv.mkDerivation rec {
+ name = "deadbeef-headerbar-gtk3-plugin-${version}";
+ version = "1.2";
+
+ src = fetchFromGitHub {
+ owner = "saivert";
+ repo = "ddb_misc_headerbar_GTK3";
+ rev = "v${version}";
+ sha256 = "1v1schvnps7ypjqgcbqi74a45w8r2gbhrawz7filym22h1qr9wn0";
+ };
+
+ nativeBuildInputs = [ autoconf automake libtool pkgconfig libxml2 ];
+ buildInputs = [ deadbeef glib gtk3 ];
+
+ # Choose correct installation path
+ # https://github.com/saivert/ddb_misc_headerbar_GTK3/commit/50ff75f76aa9d40761e352311670a894bfcd5cf6#r30319680
+ makeFlags = [ "pkglibdir=$(out)/lib/deadbeef" ];
+
+ preConfigure = "./autogen.sh";
+
+ meta = with stdenv.lib; {
+ description = "Plug-in that adds GTK 3 header bar to the DeaDBeeF music player";
+ homepage = https://github.com/saivert/ddb_misc_headerbar_GTK3;
+ license = licenses.gpl2Plus;
+ maintainers = [ maintainers.jtojnar ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/audio/deadbeef/plugins/infobar.nix b/pkgs/applications/audio/deadbeef/plugins/infobar.nix
new file mode 100644
index 0000000000000000000000000000000000000000..92f566e36578cda263a53eab085ca2395cc82bd1
--- /dev/null
+++ b/pkgs/applications/audio/deadbeef/plugins/infobar.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, pkgconfig, deadbeef, gtk3, libxml2 }:
+
+stdenv.mkDerivation rec {
+ name = "deadbeef-infobar-plugin-${version}";
+ version = "1.4";
+
+ src = fetchurl {
+ url = "https://bitbucket.org/dsimbiriatin/deadbeef-infobar/downloads/deadbeef-infobar-${version}.tar.gz";
+ sha256 = "0c9wh3wh1hdww7v96i8cy797la06mylhfi0880k8vwh88079aapf";
+ };
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ deadbeef gtk3 libxml2 ];
+
+ buildFlags = [ "gtk3" ];
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/lib/deadbeef
+ cp gtk3/ddb_infobar_gtk3.so $out/lib/deadbeef
+
+ runHook postInstall
+ '';
+
+ meta = with stdenv.lib; {
+ description = "DeadBeeF Infobar Plugin";
+ homepage = https://bitbucket.org/dsimbiriatin/deadbeef-infobar;
+ license = licenses.gpl2Plus;
+ maintainers = [ maintainers.jtojnar ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/audio/distrho/default.nix b/pkgs/applications/audio/distrho/default.nix
index 5885e0f73f53e05ef35287777defc5a5b1da6c3a..bf79b68bc7dbc1dbb64cc3e63565af6b59aee6af 100644
--- a/pkgs/applications/audio/distrho/default.nix
+++ b/pkgs/applications/audio/distrho/default.nix
@@ -46,6 +46,7 @@ stdenv.mkDerivation rec {
TAL-Filter-2 TAL-NoiseMaker TAL-Reverb TAL-Reverb-2 TAL-Reverb-3
TAL-Vocoder-2 TheFunction ThePilgrim Vex Wolpertinger
'';
+ license = with licenses; [ gpl2 gpl3 gpl2Plus lgpl3 mit ];
maintainers = [ maintainers.goibhniu ];
platforms = [ "x86_64-linux" ];
};
diff --git a/pkgs/applications/audio/faust/faustlive.nix b/pkgs/applications/audio/faust/faustlive.nix
new file mode 100644
index 0000000000000000000000000000000000000000..b8ff73f2cb32d3449b48a05aa242c200c9e555fd
--- /dev/null
+++ b/pkgs/applications/audio/faust/faustlive.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchFromGitHub
+, llvm, qt48Full, libqrencode, libmicrohttpd, libjack2, alsaLib, faust, curl
+, bc, coreutils, which
+}:
+
+stdenv.mkDerivation rec {
+ name = "faustlive-${version}";
+ version = "2017-12-05";
+ src = fetchFromGitHub {
+ owner = "grame-cncm";
+ repo = "faustlive";
+ rev = "281fcb852dcd94f8c57ade1b2a7a3937542e1b2d";
+ sha256 = "0sw44yd9928rid9ib0b5mx2x129m7zljrayfm6jz6hrwdc5q3k9a";
+ };
+
+ buildInputs = [
+ llvm qt48Full libqrencode libmicrohttpd libjack2 alsaLib faust curl
+ bc coreutils which
+ ];
+
+ makeFlags = [ "PREFIX=$(out)" ];
+
+ preBuild = "patchShebangs Build/Linux/buildversion";
+
+ meta = with stdenv.lib; {
+ description = "A standalone just-in-time Faust compiler";
+ longDescription = ''
+ FaustLive is a standalone just-in-time Faust compiler. It tries to bring
+ together the convenience of a standalone interpreted language with the
+ efficiency of a compiled language. It's ideal for fast prototyping.
+ '';
+ homepage = http://faust.grame.fr/;
+ license = licenses.gpl3;
+ };
+}
diff --git a/pkgs/applications/audio/google-musicmanager/default.nix b/pkgs/applications/audio/google-musicmanager/default.nix
index 4cd3010ec3d388f97c12a293104a76072f78f735..b4fe78dcbfcd758ce6e584d34f6b8a02fa4f95cc 100644
--- a/pkgs/applications/audio/google-musicmanager/default.nix
+++ b/pkgs/applications/audio/google-musicmanager/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl
, flac, expat, libidn, qtbase, qtwebkit, libvorbis }:
-assert stdenv.system == "x86_64-linux";
+assert stdenv.hostPlatform.system == "x86_64-linux";
stdenv.mkDerivation rec {
version = "beta_1.0.467.4929-r0"; # friendly to nix-env version sorting algo
diff --git a/pkgs/applications/audio/google-play-music-desktop-player/default.nix b/pkgs/applications/audio/google-play-music-desktop-player/default.nix
index 6c7d6dba455c929641a60e0818326d1e7edfc39e..5951572dd24602a2061294822522e4cf19ae1523 100644
--- a/pkgs/applications/audio/google-play-music-desktop-player/default.nix
+++ b/pkgs/applications/audio/google-play-music-desktop-player/default.nix
@@ -1,10 +1,10 @@
{ stdenv, alsaLib, atk, cairo, cups, dbus, dpkg, expat, fontconfig, freetype
-, fetchurl, GConf, gdk_pixbuf, glib, gtk2, libpulseaudio, makeWrapper, nspr
+, fetchurl, GConf, gdk_pixbuf, glib, gtk2, gtk3, libpulseaudio, makeWrapper, nspr
, nss, pango, udev, xorg
}:
let
- version = "4.5.0";
+ version = "4.6.1";
deps = [
alsaLib
@@ -19,6 +19,7 @@ let
gdk_pixbuf
glib
gtk2
+ gtk3
libpulseaudio
nspr
nss
@@ -46,7 +47,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://github.com/MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL-/releases/download/v${version}/google-play-music-desktop-player_${version}_amd64.deb";
- sha256 = "06h9g1yhd5q7gg8v55q143fr65frxg0khfgckr03gsaw0swin51q";
+ sha256 = "0dyn2fxhcri9d9nmcprszs6yg79gsr09bjfzzb1p10yjmi77cj2g";
};
dontBuild = true;
diff --git a/pkgs/applications/audio/gradio/default.nix b/pkgs/applications/audio/gradio/default.nix
index ed34c3118c68ddf0dc2823685be7d1216825ac99..0e636c532b467710ecb719d879eb19628c1fbeff 100644
--- a/pkgs/applications/audio/gradio/default.nix
+++ b/pkgs/applications/audio/gradio/default.nix
@@ -56,7 +56,7 @@ in stdenv.mkDerivation rec {
enableParallelBuilding = true;
postInstall = ''
- ${glib.dev}/bin/glib-compile-schemas $out/share/glib-2.0/schemas
+ glib-compile-schemas "$out"/share/glib-2.0/schemas
'';
patches = [ ./0001-Remove-post-install-script-that-hardcodes-paths.patch ];
diff --git a/pkgs/applications/audio/kid3/default.nix b/pkgs/applications/audio/kid3/default.nix
index 31369bd1e6385677d3a13e0a70c94d04ff9826d7..22342581434494657cc1866def70acf04b91e5ae 100644
--- a/pkgs/applications/audio/kid3/default.nix
+++ b/pkgs/applications/audio/kid3/default.nix
@@ -9,11 +9,11 @@
stdenv.mkDerivation rec {
name = "kid3-${version}";
- version = "3.6.1";
+ version = "3.6.2";
src = fetchurl {
url = "mirror://sourceforge/project/kid3/kid3/${version}/${name}.tar.gz";
- sha256 = "1bbnd6jgahdiqmsbw6c3x4h517m50db592fnq1w0v4k5aaav4i26";
+ sha256 = "19yq39fqj19g98cxd4cdgv0f935ckfw0c43cxaxbf27x5f5dj0yz";
};
buildInputs = with stdenv.lib;
diff --git a/pkgs/applications/audio/lastfmsubmitd/default.nix b/pkgs/applications/audio/lastfmsubmitd/default.nix
index e22bca29bc974b847f8ffcbf6f98fc34a4fe2c36..3135a00334c7d941ea9d5fd575bd613845a34364 100644
--- a/pkgs/applications/audio/lastfmsubmitd/default.nix
+++ b/pkgs/applications/audio/lastfmsubmitd/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, pythonPackages }:
+{ lib, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
pname = "lastfmsubmitd";
@@ -15,6 +15,7 @@ pythonPackages.buildPythonApplication rec {
meta = {
homepage = https://www.red-bean.com/decklin/lastfmsubmitd/;
+ license = lib.licenses.mit;
description = "An last.fm audio scrobbler and daemon";
};
}
diff --git a/pkgs/applications/audio/lollypop/default.nix b/pkgs/applications/audio/lollypop/default.nix
index dc59ba6e01abd52f8a55a3a835492353eb0a711f..2256fa1893dbc58d58088f7a63cd67f80ea263aa 100644
--- a/pkgs/applications/audio/lollypop/default.nix
+++ b/pkgs/applications/audio/lollypop/default.nix
@@ -3,14 +3,14 @@
, python36Packages, gnome3, glib, gst_all_1 }:
stdenv.mkDerivation rec {
- version = "0.9.521";
+ version = "0.9.522";
name = "lollypop-${version}";
src = fetchgit {
url = "https://gitlab.gnome.org/World/lollypop";
rev = "refs/tags/${version}";
fetchSubmodules = true;
- sha256 = "1iwv0fj50h0xynv152anisbq29jfbmb9hpm60kaa9a9hdiypskcc";
+ sha256 = "0f2brwv884cvmxj644jcj9sg5hix3wvnjy2ndg0fh5cxyqz0kwn5";
};
nativeBuildInputs = with python36Packages; [
@@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
gobjectIntrospection
meson
ninja
+ python36Packages.python
pkgconfig
wrapGAppsHook
wrapPython
diff --git a/pkgs/applications/audio/mixxx/default.nix b/pkgs/applications/audio/mixxx/default.nix
index 60a0695ffecc90f97abe954e6c1fbae0049bfbda..f3318a7866b4f826e95367bbe5fe7ced45f4aaf2 100644
--- a/pkgs/applications/audio/mixxx/default.nix
+++ b/pkgs/applications/audio/mixxx/default.nix
@@ -1,34 +1,27 @@
-{ stdenv, fetchurl, chromaprint, fetchpatch, fftw, flac, faad2, mp4v2
+{ stdenv, fetchFromGitHub, makeWrapper, chromaprint, fetchpatch
+, fftw, flac, faad2, glibcLocales, mp4v2
, libid3tag, libmad, libopus, libshout, libsndfile, libusb1, libvorbis
, pkgconfig, portaudio, portmidi, protobuf, qt4, rubberband, scons, sqlite
-, taglib, vampSDK
+, taglib, upower, vampSDK
}:
stdenv.mkDerivation rec {
name = "mixxx-${version}";
- version = "2.0.0";
+ version = "2.1.3";
- src = fetchurl {
- url = "https://downloads.mixxx.org/${name}/${name}-src.tar.gz";
- sha256 = "0vb71w1yq0xwwsclrn2jj9bk8w4n14rfv5c0aw46c11mp8xz7f71";
+ src = fetchFromGitHub {
+ owner = "mixxxdj";
+ repo = "mixxx";
+ rev = "release-${version}";
+ sha256 = "1fm8lkbnxka4haidf6yr8mb3r6vaxmc97hhrp8pcx0fvq2mnzvy2";
};
- patches = [
- (fetchpatch {
- url = "https://sources.debian.net/data/main/m/mixxx/2.0.0~dfsg-7.1/debian/patches/0007-fix_gcc6_issue.patch";
- sha256 = "0kpyv10wcjcvbijk6vpq54gx9sqzrq4kq2qilc1czmisp9qdy5sd";
- })
- (fetchpatch {
- url = "https://622776.bugs.gentoo.org/attachment.cgi?id=487284";
- name = "sqlite.patch";
- sha256 = "1qqbd8nrxrjcc1dwvyqfq1k2yz3l071sfcgd2dmpk6j8d4j5kx31";
- })
- ];
+ nativeBuildInputs = [ makeWrapper ];
buildInputs = [
- chromaprint fftw flac faad2 mp4v2 libid3tag libmad libopus libshout libsndfile
+ chromaprint fftw flac faad2 glibcLocales mp4v2 libid3tag libmad libopus libshout libsndfile
libusb1 libvorbis pkgconfig portaudio portmidi protobuf qt4
- rubberband scons sqlite taglib vampSDK
+ rubberband scons sqlite taglib upower vampSDK
];
sconsFlags = [
@@ -52,11 +45,16 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
+ fixupPhase = ''
+ wrapProgram $out/bin/mixxx \
+ --set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive;
+ '';
+
meta = with stdenv.lib; {
homepage = https://mixxx.org;
description = "Digital DJ mixing software";
license = licenses.gpl2Plus;
- maintainers = [ maintainers.aszlig maintainers.goibhniu ];
+ maintainers = [ maintainers.aszlig maintainers.goibhniu maintainers.bfortz ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/audio/mopidy/iris.nix b/pkgs/applications/audio/mopidy/iris.nix
index 9d47018055c4dc607c6459dcc031049c6507aebb..482e3652ec09a9afc6a45736cb8c891638c6c533 100644
--- a/pkgs/applications/audio/mopidy/iris.nix
+++ b/pkgs/applications/audio/mopidy/iris.nix
@@ -2,11 +2,11 @@
pythonPackages.buildPythonApplication rec {
pname = "Mopidy-Iris";
- version = "3.24.0";
+ version = "3.25.1";
src = pythonPackages.fetchPypi {
inherit pname version;
- sha256 = "19aympbkiil68j9jpvk1pgl4hplfs0vpc0d4vmzmpbcslkpirx2g";
+ sha256 = "148ksv87lw3l3dwncmlq8qzv6xik29axdgaljdcp0g4pd98a7dlk";
};
propagatedBuildInputs = [
diff --git a/pkgs/applications/audio/mpg123/default.nix b/pkgs/applications/audio/mpg123/default.nix
index 3aef2e35943d746fc8497267733e0b5d86757212..44f1c681ec1a7ad5947b702bfb110551affff0c6 100644
--- a/pkgs/applications/audio/mpg123/default.nix
+++ b/pkgs/applications/audio/mpg123/default.nix
@@ -1,6 +1,5 @@
{ stdenv
, fetchurl, alsaLib
-, hostPlatform
}:
stdenv.mkDerivation rec {
@@ -13,8 +12,9 @@ stdenv.mkDerivation rec {
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
- configureFlags =
- stdenv.lib.optional (hostPlatform ? mpg123) "--with-cpu=${hostPlatform.mpg123.cpu}";
+ configureFlags = stdenv.lib.optional
+ (stdenv.hostPlatform ? mpg123)
+ "--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
meta = {
description = "Fast console MPEG Audio Player and decoder library";
diff --git a/pkgs/applications/audio/pianobar/default.nix b/pkgs/applications/audio/pianobar/default.nix
index 1518ed9b79421d599e30ccc7e24b688d7878584b..60cd2567f62571f4b039075372d5865d7523b7d8 100644
--- a/pkgs/applications/audio/pianobar/default.nix
+++ b/pkgs/applications/audio/pianobar/default.nix
@@ -1,16 +1,16 @@
-{ fetchurl, stdenv, pkgconfig, libao, json_c, libgcrypt, libav, curl }:
+{ fetchurl, stdenv, pkgconfig, libao, json_c, libgcrypt, ffmpeg, curl }:
stdenv.mkDerivation rec {
- name = "pianobar-2016.06.02";
+ name = "pianobar-2018.06.22";
src = fetchurl {
url = "http://6xq.net/projects/pianobar/${name}.tar.bz2";
- sha256 = "0n9544bfsdp04xqcjm4nhfvp357dx0c3gpys0rjkq09nzv8b1vy6";
+ sha256 = "1hnlif62vsxgh8j9mcibxwj4gybpgqc11ba729kflpvvi9qmfqwl";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
- libao json_c libgcrypt libav curl
+ libao json_c libgcrypt ffmpeg curl
];
makeFlags="PREFIX=$(out)";
diff --git a/pkgs/applications/audio/pulseeffects/default.nix b/pkgs/applications/audio/pulseeffects/default.nix
index 313f737cd422926b92547efb951accecd87d6f4c..46d4f971420a87207ed7a152f3bf8f34343dd0f0 100644
--- a/pkgs/applications/audio/pulseeffects/default.nix
+++ b/pkgs/applications/audio/pulseeffects/default.nix
@@ -4,6 +4,7 @@
, ninja
, pkgconfig
, itstool
+, python3
, libxml2
, desktop-file-utils
, wrapGAppsHook
@@ -43,13 +44,13 @@ let
];
in stdenv.mkDerivation rec {
name = "pulseeffects-${version}";
- version = "4.2.8";
+ version = "4.3.4";
src = fetchFromGitHub {
owner = "wwmm";
repo = "pulseeffects";
rev = "v${version}";
- sha256 = "0ckl0640n6lhk0gcmnmwngajkf46rrd8bxfh7xy5sq6qmm01dhdd";
+ sha256 = "0gyyqxfmmp6hbwc10i48sxrgdxansm3vsbwgc6rh89clxwcnfiml";
};
nativeBuildInputs = [
@@ -58,6 +59,7 @@ in stdenv.mkDerivation rec {
pkgconfig
libxml2
itstool
+ python3
desktop-file-utils
wrapGAppsHook
];
diff --git a/pkgs/applications/audio/renoise/default.nix b/pkgs/applications/audio/renoise/default.nix
index 24a2f1a8a60143f291bbae2aaea685b99237d1ae..cd06fa80f5aa471d135803a0422b344a9e870182 100644
--- a/pkgs/applications/audio/renoise/default.nix
+++ b/pkgs/applications/audio/renoise/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
version = "3.1.0";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
if builtins.isNull releasePath then
fetchurl {
url = "https://files.renoise.com/demo/Renoise_${urlVersion version}_Demo_x86_64.tar.bz2";
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
}
else
releasePath
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
if builtins.isNull releasePath then
fetchurl {
url = "http://files.renoise.com/demo/Renoise_${urlVersion version}_Demo_x86.tar.bz2";
diff --git a/pkgs/applications/audio/sayonara/default.nix b/pkgs/applications/audio/sayonara/default.nix
index 1bf1a8b2c49e2bbe1478145376b73ddb80aa1703..fbe90c5377df752c3be31aab0b7ad05f1ef317ee 100644
--- a/pkgs/applications/audio/sayonara/default.nix
+++ b/pkgs/applications/audio/sayonara/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, cmake, qt5, zlib, taglib, pkgconfig, pcre, gst_all_1 }:
let
- version = "1.0.0-git5-20180115";
+ version = "1.1.1-git1-20180828";
in
stdenv.mkDerivation {
name = "sayonara-player-${version}";
src = fetchurl {
url = "https://sayonara-player.com/sw/sayonara-player-${version}.tar.gz";
- sha256 = "1fl7zplnrrvbv1xm4g348bpd46jj39jvbm808hyjjq92i64wqg37";
+ sha256 = "0rvy47qvavrp03zjdrw025dmq9fq5aaii3q1qq8b94byarl0c5kn";
};
nativeBuildInputs = [ cmake pkgconfig ];
@@ -39,7 +39,7 @@ stdenv.mkDerivation {
{ description = "Sayonara music player";
homepage = https://sayonara-player.com/;
license = licenses.gpl3;
- platforms = qt5.qtbase.meta.platforms;
+ platforms = platforms.linux;
maintainers = [ maintainers.deepfire ];
};
}
diff --git a/pkgs/applications/audio/setbfree/default.nix b/pkgs/applications/audio/setbfree/default.nix
index 905de343117d2e4cdc64af8d7c980f6a5a6439c0..1047734a2c183d40a41f4f369aa7cae585d1ca1c 100644
--- a/pkgs/applications/audio/setbfree/default.nix
+++ b/pkgs/applications/audio/setbfree/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "setbfree-${version}";
- version = "0.8.7";
+ version = "0.8.8";
src = fetchurl {
url = "https://github.com/pantherb/setBfree/archive/v${version}.tar.gz";
- sha256 = "07s320r67cz0cdjdsbcwn0fw3xs0wz7lgrybqpws2skvkbls228q";
+ sha256 = "1ldxwds99azingkjh246kz7x3j7307jhr0fls5rjjbcfchpg7v99";
};
patchPhase = ''
diff --git a/pkgs/applications/audio/split2flac/default.nix b/pkgs/applications/audio/split2flac/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..372e507ed0e909c9d5aaffa1380504f0f9a52662
--- /dev/null
+++ b/pkgs/applications/audio/split2flac/default.nix
@@ -0,0 +1,62 @@
+{ stdenv, fetchFromGitHub, makeWrapper
+, shntool, cuetools
+, flac, faac, mp4v2, wavpack, mac
+, imagemagick, libiconv, enca, lame, pythonPackages, vorbis-tools
+, aacgain, mp3gain, vorbisgain
+}:
+
+let
+ wrapSplit2flac = format: ''
+ makeWrapper $out/bin/.split2flac-wrapped $out/bin/split2${format} \
+ --set SPLIT2FLAC_FORMAT ${format} \
+ --prefix PATH : ${stdenv.lib.makeBinPath [
+ shntool cuetools
+ flac faac mp4v2 wavpack mac
+ imagemagick libiconv enca lame pythonPackages.mutagen vorbis-tools
+ aacgain mp3gain vorbisgain
+ ]}
+ '';
+
+in stdenv.mkDerivation rec {
+ name = "split2flac-${version}";
+ version = "122";
+
+ src = fetchFromGitHub {
+ owner = "ftrvxmtrx";
+ repo = "split2flac";
+ rev = version;
+ sha256 = "1a71amamip25hhqx7wwzfcl3d5snry9xsiha0kw73iq2m83r2k63";
+ };
+
+ dontBuild = true;
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ patchPhase = ''
+ substituteInPlace split2flac \
+ --replace 'FORMAT="''${0##*split2}"' 'FORMAT=''${SPLIT2FLAC_FORMAT:-flac}'
+ '';
+
+ installPhase = ''
+ mkdir -p $out/share/bash-completion/completions
+ cp split2flac-bash-completion.sh \
+ $out/share/bash-completion/completions/split2flac-bash-completion.sh
+
+ mkdir -p $out/bin
+ cp split2flac $out/bin/.split2flac-wrapped
+
+ ${wrapSplit2flac "flac"}
+ ${wrapSplit2flac "mp3"}
+ ${wrapSplit2flac "ogg"}
+ ${wrapSplit2flac "m4a"}
+ ${wrapSplit2flac "wav"}
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Split flac/ape/wv/wav + cue sheet into separate tracks";
+ homepage = https://github.com/ftrvxmtrx/split2flac;
+ license = licenses.mit;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ jfrankenau ];
+ };
+}
diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix
index 04bdff3c8135321ec1fb929e5d3fed808dc120fa..1639ab34b6cfdf0859e6574910250566ccf07986 100644
--- a/pkgs/applications/audio/spotify/default.nix
+++ b/pkgs/applications/audio/spotify/default.nix
@@ -3,15 +3,16 @@
, libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_0_10, curl, zlib, gnome3 }:
let
+ # TO UPDATE: just execute the ./update.sh script (won't do anything if there is no update)
# "rev" decides what is actually being downloaded
- version = "1.0.80.474.gef6b503e-7";
+ version = "1.0.88.353.g15c26ea1-14";
# To get the latest stable revision:
# curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated'
# To get general information:
# curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.'
# More exapmles of api usage:
# https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py
- rev = "16";
+ rev = "19";
deps = [
@@ -64,7 +65,7 @@ stdenv.mkDerivation {
# https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334
src = fetchurl {
url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap";
- sha512 = "45b7ab574b30fb368e0b6f4dd60addbfd1ddc02173b4f98b31c524eed49073432352a361e75959ce8e2f752231e93c79ca1b538c4bd295c935d1e2e0585d147f";
+ sha512 = "3a068cbe3c1fca84ae67e28830216f993aa459947517956897c3b3f63063005c9db646960e85185b149747ffc302060c208a7f9968ea69d50a3496067089f3db";
};
buildInputs = [ squashfsTools makeWrapper ];
diff --git a/pkgs/applications/audio/spotify/update.sh b/pkgs/applications/audio/spotify/update.sh
old mode 100644
new mode 100755
diff --git a/pkgs/applications/audio/transcribe/default.nix b/pkgs/applications/audio/transcribe/default.nix
index 5ec5087b9f26ebc0c7cf303cb57ee4cbd74b9bfd..c6d5ebc1627f514b08fe525e68f261e6026d3146 100644
--- a/pkgs/applications/audio/transcribe/default.nix
+++ b/pkgs/applications/audio/transcribe/default.nix
@@ -7,12 +7,12 @@ stdenv.mkDerivation rec {
name = "transcribe-${version}";
version = "8.40";
- src = if stdenv.system == "i686-linux" then
+ src = if stdenv.hostPlatform.system == "i686-linux" then
fetchzip {
url = "https://www.seventhstring.com/xscribe/downlinux32_old/xscsetup.tar.gz";
sha256 = "1ngidmj9zz8bmv754s5xfsjv7v6xr03vck4kigzq4bpc9b1fdhjq";
}
- else if stdenv.system == "x86_64-linux" then
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
fetchzip {
url = "https://www.seventhstring.com/xscribe/downlinux64_old/xsc64setup.tar.gz";
sha256 = "0svzi8svj6zn06gj0hr8mpnhq4416dvb4g5al0gpb1g3paywdaf9";
diff --git a/pkgs/applications/backup/deja-dup/default.nix b/pkgs/applications/backup/deja-dup/default.nix
index 797a00f4fc4a42b12b66405a58040cddf522e887..c8fb4af3c4bf6e241f3092a00f961eccf7ca335e 100644
--- a/pkgs/applications/backup/deja-dup/default.nix
+++ b/pkgs/applications/backup/deja-dup/default.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
propagatedUserEnvPkgs = [ duplicity ];
- PKG_CONFIG_LIBNAUTILUS_EXTENSION_EXTENSIONDIR = "lib/nautilus/extensions-3.0";
+ PKG_CONFIG_LIBNAUTILUS_EXTENSION_EXTENSIONDIR = "${placeholder "out"}/lib/nautilus/extensions-3.0";
postInstall = ''
glib-compile-schemas $out/share/glib-2.0/schemas
diff --git a/pkgs/applications/display-managers/lightdm/default.nix b/pkgs/applications/display-managers/lightdm/default.nix
index 4bf81dcdd26ae995428c4daeef9c47889e0cb629..bec07ac2d5060f610aeabf7a46e97654493dde15 100644
--- a/pkgs/applications/display-managers/lightdm/default.nix
+++ b/pkgs/applications/display-managers/lightdm/default.nix
@@ -9,15 +9,17 @@ with stdenv.lib;
stdenv.mkDerivation rec {
pname = "lightdm";
- version = "1.26.0";
+ version = "1.28.0";
name = "${pname}-${version}";
+ outputs = [ "out" "dev" ];
+
src = fetchFromGitHub {
owner = "CanonicalLtd";
repo = pname;
rev = version;
- sha256 = "1mhj6l025cnf2dzxnbzlk0qa9fm4gj2aw58qh5fl4ky87dp4wdyb";
+ sha256 = "1mmqy1jdvgc0h0h9gli7n4vdv5p8m5019qjr5ni4h73iz6mjdj2b";
};
nativeBuildInputs = [
@@ -73,6 +75,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = https://github.com/CanonicalLtd/lightdm;
+ description = "A cross-desktop display manager.";
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = with maintainers; [ ocharles wkennington worldofpeace ];
diff --git a/pkgs/applications/editors/android-studio/common.nix b/pkgs/applications/editors/android-studio/common.nix
index cd031ce5ac8cb7262d4733734f3c37f43054884e..23e0584cb7f072e0cdad8efb687266981156708b 100644
--- a/pkgs/applications/editors/android-studio/common.nix
+++ b/pkgs/applications/editors/android-studio/common.nix
@@ -31,9 +31,10 @@
, stdenv
, unzip
, which
-, writeTextFile
+, runCommand
, xkeyboard_config
, zlib
+, makeDesktopItem
}:
let
@@ -113,6 +114,17 @@ let
'';
};
+ desktopItem = makeDesktopItem {
+ name = drvName;
+ exec = pname;
+ icon = drvName;
+ desktopName = "Android Studio (${channel} channel)";
+ comment = "The official Android IDE";
+ categories = "Development;IDE;";
+ startupNotify = "true";
+ extraEntries="StartupWMClass=jetbrains-studio";
+ };
+
# Android Studio downloads prebuilt binaries as part of the SDK. These tools
# (e.g. `mksdcard`) have `/lib/ld-linux.so.2` set as the interpreter. An FHS
# environment is used as a work around for that.
@@ -120,18 +132,15 @@ let
name = "${drvName}-fhs-env";
multiPkgs = pkgs: [ pkgs.ncurses5 ];
};
-
-in
- writeTextFile {
- name = "${drvName}-wrapper";
- # TODO: Rename preview -> beta (and add -stable suffix?):
- destination = "/bin/${pname}";
- executable = true;
- text = ''
+in runCommand
+ "${drvName}-wrapper"
+ {
+ startScript = ''
#!${bash}/bin/bash
${fhsEnv}/bin/${drvName}-fhs-env ${androidStudio}/bin/studio.sh
'';
- } // {
+ preferLocalBuild = true;
+ allowSubstitutes = false;
meta = with stdenv.lib; {
description = "The Official IDE for Android (${channel} channel)";
longDescription = ''
@@ -146,3 +155,12 @@ in
maintainers = with maintainers; [ primeos ];
};
}
+ ''
+ mkdir -p $out/{bin,share/pixmaps}
+
+ # TODO: Rename preview -> beta (and add -stable suffix?):
+ echo -n "$startScript" > $out/bin/${pname}
+ chmod +x $out/bin/${pname}
+ ln -s ${androidStudio}/bin/studio.png $out/share/pixmaps/${drvName}.png
+ ln -s ${desktopItem}/share/applications $out/share/applications
+ ''
diff --git a/pkgs/applications/editors/android-studio/default.nix b/pkgs/applications/editors/android-studio/default.nix
index 8a45604824c08f03d0d035740c0e2869707ec0ff..199793a44fb78de9021c99ff094f8fb8e13bd103 100644
--- a/pkgs/applications/editors/android-studio/default.nix
+++ b/pkgs/applications/editors/android-studio/default.nix
@@ -13,14 +13,14 @@ let
sha256Hash = "0xx6yprylmcb32ipmwdcfkgddlm1nrxi1w68miclvgrbk015brf2";
};
betaVersion = {
- version = "3.2.0.23"; # "Android Studio 3.2 RC 1"
- build = "181.4963425";
- sha256Hash = "0b3mmafpnc07chiy3fv3vlrarkiwbb0c62x3qk26kpxq1l6m8bgw";
+ version = "3.2.0.24"; # "Android Studio 3.2 RC 2"
+ build = "181.4974118";
+ sha256Hash = "0sj848pzpsbmnfi2692gg73v6m72hr1pwlk5x8q912w60iypi3pz";
};
latestVersion = { # canary & dev
- version = "3.3.0.6"; # "Android Studio 3.3 Canary 7"
- build = "182.4968538";
- sha256Hash = "159sya24p99pj9q0mj1sbcz2609ackz54x4pj3q1mxhiamsn1y2q";
+ version = "3.3.0.7"; # "Android Studio 3.3 Canary 8"
+ build = "182.4978721";
+ sha256Hash = "0xa19wrw1a6y7f2jdv8699yqv7g34h3zdw3wc0ql0447afzwg9a9";
};
in rec {
# Old alias
diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix
index bc3f8baf51087f13f2f3149e9f2cfcbae052f379..d5e0259d2adc11f4f22d54426c104963aa074f95 100644
--- a/pkgs/applications/editors/atom/default.nix
+++ b/pkgs/applications/editors/atom/default.nix
@@ -73,13 +73,13 @@ let
};
in stdenv.lib.mapAttrs common {
atom = {
- version = "1.29.0";
- sha256 = "0f0qpn8aw2qlqk8ah71xvk4vcmwsnsf2f3g4hz0rvaqnhb9ri9fz";
+ version = "1.30.0";
+ sha256 = "1hqizfn9c249l51rlpfgk0h374maqgw6pagswlh4xa278qzb6qzs";
};
atom-beta = {
- version = "1.30.0";
- beta = 1;
- sha256 = "0ygqj81xlwhzmmci0d0rd2q7xfskxd1k7h6db3zvvjdxjcnyqp1z";
+ version = "1.31.0";
+ beta = 0;
+ sha256 = "11nlaz89rg6lgzsxp83qdqk4bnn2cij2p5aqjd9a3phd7v70xmy5";
};
}
diff --git a/pkgs/applications/editors/eclipse/build-eclipse.nix b/pkgs/applications/editors/eclipse/build-eclipse.nix
index a26d380ec1dff60fb85da8dbbad9d6b852b917f2..389608ad824905dfd88a3d5f13cd74bfe9f6f6a9 100644
--- a/pkgs/applications/editors/eclipse/build-eclipse.nix
+++ b/pkgs/applications/editors/eclipse/build-eclipse.nix
@@ -2,7 +2,7 @@
, zlib, jdk, glib, gtk3, libXtst, gsettings-desktop-schemas, webkitgtk
, makeWrapper, ... }:
-{ name, src ? builtins.getAttr stdenv.system sources, sources ? null, description }:
+{ name, src ? builtins.getAttr stdenv.hostPlatform.system sources, sources ? null, description }:
stdenv.mkDerivation rec {
inherit name src;
diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix
index c719c7b2da1aa430c39c654be96c0eff0475845c..8d47a551c93ef54e3d7623ba0842fdc70381de18 100644
--- a/pkgs/applications/editors/eclipse/default.nix
+++ b/pkgs/applications/editors/eclipse/default.nix
@@ -27,24 +27,24 @@ rec {
name = "eclipse-cpp-4.7.0";
description = "Eclipse IDE for C/C++ Developers, Oxygen release";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/oxygen/R/eclipse-cpp-oxygen-R-linux-gtk-x86_64.tar.gz;
sha512 = "813c791e739d7d0e2ab242a5bacadca135bbeee20ef97aa830353cd90f63fa6e9c89cfcc6aadf635c742befe035bd6e3f15103013f63c419f6144e86ebde3ed1";
}
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/oxygen/R/eclipse-cpp-oxygen-R-linux-gtk.tar.gz;
sha512 = "2b50f4a00306a89cda1aaaa606e62285cacbf93464a9dd3f3319dca3e2c578b802e685de6f78e5e617d269e21271188effe73d41f491a6de946e28795d82db8a";
}
- else throw "Unsupported system: ${stdenv.system}";
+ else throw "Unsupported system: ${stdenv.hostPlatform.system}";
};
eclipse-cpp-37 = buildEclipse {
name = "eclipse-cpp-3.7";
description = "Eclipse IDE for C/C++ Developers";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/indigo/R/eclipse-cpp-indigo-incubation-linux-gtk-x86_64.tar.gz;
sha256 = "14ppc9g9igzvj1pq7jl01vwhzb66nmzbl9wsdl1sf3xnwa9wnqk3";
@@ -65,7 +65,7 @@ rec {
name = "eclipse-modeling-4.7";
description = "Eclipse Modeling Tools";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/oxygen/R/eclipse-modeling-oxygen-R-linux-gtk-x86_64.tar.gz;
sha512 = "3b9a7ad4b5d6b77fbdd64e8d323e0adb6c2904763ad042b374b4d87cef8607408cb407e395870fc755d58c0c800e20818adcf456ebe193d76cede16c5fe12271";
@@ -81,7 +81,7 @@ rec {
name = "eclipse-modeling-3.6.2";
description = "Eclipse Modeling Tools (includes Incubating components)";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/helios/SR2/eclipse-modeling-helios-SR2-incubation-linux-gtk-x86_64.tar.gz;
sha1 = "e96f5f006298f68476f4a15a2be8589158d5cc61";
@@ -151,7 +151,7 @@ rec {
name = "eclipse-scala-sdk-4.4.1";
description = "Eclipse IDE for Scala Developers";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl { # tested
url = https://downloads.typesafe.com/scalaide-pack/4.4.1-vfinal-luna-211-20160504/scala-SDK-4.4.1-vfinal-2.11-linux.gtk.x86_64.tar.gz;
sha256 = "4c2d1ac68384e12a11a851cf0fc7757aea087eba69329b21d539382a65340d27";
diff --git a/pkgs/applications/editors/ed/default.nix b/pkgs/applications/editors/ed/default.nix
index 832dc3c0e799734a203e3db513baaf03f5085027..536b319cab04fcc47201f321953149ce14acdf2d 100644
--- a/pkgs/applications/editors/ed/default.nix
+++ b/pkgs/applications/editors/ed/default.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchurl, lzip
-, buildPlatform, hostPlatform
}:
stdenv.mkDerivation (rec {
@@ -36,7 +35,7 @@ stdenv.mkDerivation (rec {
maintainers = [ ];
platforms = stdenv.lib.platforms.unix;
};
-} // stdenv.lib.optionalAttrs (hostPlatform != buildPlatform) {
+} // stdenv.lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform) {
# This may be moved above during a stdenv rebuild.
preConfigure = ''
configureFlagsArray+=("CC=$CC")
diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
index bec845b815ce7687fb250a5a1180a4d08491b9ac..addae2674684bd1f9276c7c92cfda5f2d1bce0fd 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
@@ -146,6 +146,12 @@ self:
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
+ magit-todos = super.magit-todos.overrideAttrs (attrs: {
+ # searches for Git at build time
+ nativeBuildInputs =
+ (attrs.nativeBuildInputs or []) ++ [ external.git ];
+ });
+
# missing OCaml
merlin = markBroken super.merlin;
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
index 61086b96230e37b75b18cf1bc006f4766f41a00d..98927cbd9873501d5d6458a41fdd20e6b92a3e44 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
@@ -151,6 +151,12 @@ self:
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
+ magit-todos = super.magit-todos.overrideAttrs (attrs: {
+ # searches for Git at build time
+ nativeBuildInputs =
+ (attrs.nativeBuildInputs or []) ++ [ external.git ];
+ });
+
# missing OCaml
merlin = markBroken super.merlin;
diff --git a/pkgs/applications/editors/flpsed/default.nix b/pkgs/applications/editors/flpsed/default.nix
index bd00045bca91b7764e266e302d65d965e9e5281c..67f789eee782da44f43fc63ef146a05e8f8b92e7 100644
--- a/pkgs/applications/editors/flpsed/default.nix
+++ b/pkgs/applications/editors/flpsed/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "WYSIWYG PostScript annotator";
- homepage = http://http://flpsed.org/flpsed.html;
+ homepage = http://flpsed.org/flpsed.html;
license = licenses.gpl3;
platforms = platforms.mesaPlatforms;
maintainers = with maintainers; [ fuuzetsu ];
diff --git a/pkgs/applications/editors/gnome-builder/default.nix b/pkgs/applications/editors/gnome-builder/default.nix
index db2d07db31e771c91a687163c92bc676e9b3e4e6..6fcf9d7d3a9d479c3ec53ee864a94892452cbd7e 100644
--- a/pkgs/applications/editors/gnome-builder/default.nix
+++ b/pkgs/applications/editors/gnome-builder/default.nix
@@ -52,6 +52,7 @@ in stdenv.mkDerivation {
meson
ninja
pkgconfig
+ python3
python3.pkgs.wrapPython
wrapGAppsHook
];
diff --git a/pkgs/applications/editors/jetbrains/common.nix b/pkgs/applications/editors/jetbrains/common.nix
index 04de4f564c3382e2f784c234863d1c4bb96aa263..2bb84bce0b1271f3df9db6e2c61fc42597157d47 100644
--- a/pkgs/applications/editors/jetbrains/common.nix
+++ b/pkgs/applications/editors/jetbrains/common.nix
@@ -42,7 +42,7 @@ with stdenv; lib.makeOverridable mkDerivation rec {
}
interpreter=$(echo ${stdenv.glibc.out}/lib/ld-linux*.so.2)
- if [ "${stdenv.system}" == "x86_64-linux" ]; then
+ if [ "${stdenv.hostPlatform.system}" == "x86_64-linux" ]; then
target_size=$(get_file_size bin/fsnotifier64)
patchelf --set-interpreter "$interpreter" bin/fsnotifier64
munge_size_hack bin/fsnotifier64 $target_size
diff --git a/pkgs/applications/editors/jupyter/default.nix b/pkgs/applications/editors/jupyter/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..2bca120c1debc04703cdd8717e5edee1ef571e05
--- /dev/null
+++ b/pkgs/applications/editors/jupyter/default.nix
@@ -0,0 +1,18 @@
+# Jupyter notebook with the given kernel definitions
+
+{ python3
+, jupyter-kernel
+, definitions ? jupyter-kernel.default
+}:
+
+let
+
+ jupyterPath = (jupyter-kernel.create { inherit definitions; });
+
+in
+
+with python3.pkgs; toPythonModule (
+ notebook.overridePythonAttrs(oldAttrs: {
+ makeWrapperArgs = ["--set JUPYTER_PATH ${jupyterPath}"];
+ })
+)
diff --git a/pkgs/applications/editors/jupyter/kernel.nix b/pkgs/applications/editors/jupyter/kernel.nix
new file mode 100644
index 0000000000000000000000000000000000000000..cdb6b6212bd38cc0483e2eed449fef340157229d
--- /dev/null
+++ b/pkgs/applications/editors/jupyter/kernel.nix
@@ -0,0 +1,74 @@
+{ lib, stdenv, python3}:
+
+let
+
+ default = {
+ python3 = let
+ env = (python3.withPackages (ps: with ps; [ ipykernel ]));
+ in {
+ displayName = "Python 3";
+ argv = [
+ "${env.interpreter}"
+ "-m"
+ "ipykernel_launcher"
+ "-f"
+ "{connection_file}"
+ ];
+ language = "python";
+ logo32 = "${env.sitePackages}/ipykernel/resources/logo-32x32.png";
+ logo64 = "${env.sitePackages}/ipykernel/resources/logo-64x64.png";
+ };
+ };
+
+in
+{
+ inherit default;
+
+ # Definitions is an attribute set.
+
+ create = { definitions ? default }: with lib; stdenv.mkDerivation rec {
+
+ name = "jupyter-kernels";
+
+ src = "/dev/null";
+
+ unpackCmd = "mkdir jupyter_kernels";
+
+ installPhase = ''
+ mkdir kernels
+
+ ${concatStringsSep "\n" (mapAttrsToList (kernelName: kernel:
+ let
+ config = builtins.toJSON {
+ display_name = if (kernel.displayName != "")
+ then kernel.displayName
+ else kernelName;
+ argv = kernel.argv;
+ language = kernel.language;
+ };
+ logo32 =
+ if (kernel.logo32 != null)
+ then "ln -s ${kernel.logo32} 'kernels/${kernelName}/logo-32x32.png';"
+ else "";
+ logo64 =
+ if (kernel.logo64 != null)
+ then "ln -s ${kernel.logo64} 'kernels/${kernelName}/logo-64x64.png';"
+ else "";
+ in ''
+ mkdir 'kernels/${kernelName}';
+ echo '${config}' > 'kernels/${kernelName}/kernel.json';
+ ${logo32}
+ ${logo64}
+ '') definitions)}
+
+ mkdir $out
+ cp -r kernels $out
+ '';
+
+ meta = {
+ description = "Wrapper to create jupyter notebook kernel definitions";
+ homepage = http://jupyter.org/;
+ maintainers = with maintainers; [ aborsu ];
+ };
+ };
+}
diff --git a/pkgs/applications/editors/kdevelop5/kdevelop.nix b/pkgs/applications/editors/kdevelop5/kdevelop.nix
index 41d1a6262ed594a3263b3ffc597d930f7fb84e84..f0ac79e2d22c021d5b5f9b81debda72cc3cebc12 100644
--- a/pkgs/applications/editors/kdevelop5/kdevelop.nix
+++ b/pkgs/applications/editors/kdevelop5/kdevelop.nix
@@ -1,23 +1,23 @@
{ mkDerivation, lib, fetchurl, cmake, gettext, pkgconfig, extra-cmake-modules
-, qtquickcontrols, qtwebkit, qttools, kde-cli-tools
+, qtquickcontrols, qtwebkit, qttools, kde-cli-tools, qtbase
, kconfig, kdeclarative, kdoctools, kiconthemes, ki18n, kitemmodels, kitemviews
, kjobwidgets, kcmutils, kio, knewstuff, knotifyconfig, kparts, ktexteditor
, threadweaver, kxmlgui, kwindowsystem, grantlee, kcrash, karchive, kguiaddons
-, plasma-framework, krunner, kdevplatform, kdevelop-pg-qt, shared-mime-info
-, libksysguard, konsole, llvmPackages, makeWrapper
+, plasma-framework, krunner, kdevelop-pg-qt, shared-mime-info, libkomparediff2
+, libksysguard, konsole, llvmPackages, makeWrapper, kpurpose, boost
}:
let
pname = "kdevelop";
- version = "5.1.2";
-
+ version = "5.2.4";
+ qtVersion = "5.${lib.versions.minor qtbase.version}";
in
mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
- sha256 = "af54e807847d145fe5f3eb55962ed0d22e6363c2bc6c32167e51ca4823c00ac7";
+ sha256 = "1jbks7nh9rybz4kg152l39hfj2x0p6mjins8x9mz03bbv8jf8gic";
};
nativeBuildInputs = [
@@ -30,20 +30,22 @@ mkDerivation rec {
];
propagatedBuildInputs = [
- qtquickcontrols qtwebkit
+ qtquickcontrols qtwebkit boost libkomparediff2
kconfig kdeclarative kdoctools kiconthemes ki18n kitemmodels kitemviews
kjobwidgets kcmutils kio knewstuff knotifyconfig kparts ktexteditor
threadweaver kxmlgui kwindowsystem grantlee plasma-framework krunner
- kdevplatform shared-mime-info libksysguard konsole kcrash karchive kguiaddons
+ shared-mime-info libksysguard konsole kcrash karchive kguiaddons kpurpose
];
postInstall = ''
# The kdevelop! script (shell environment) needs qdbus and kioclient5 in PATH.
- wrapProgram "$out/bin/kdevelop!" --prefix PATH ":" "${lib.makeBinPath [ qttools kde-cli-tools ]}"
+ wrapProgram "$out/bin/kdevelop!" \
+ --prefix PATH ":" "${lib.makeBinPath [ qttools kde-cli-tools ]}"
+
+ wrapProgram "$out/bin/kdevelop" \
+ --prefix QT_PLUGIN_PATH : $out/lib/qt-${qtVersion}/plugins
# Fix the (now wrapped) kdevelop! to find things in right places:
- # - Make KDEV_BASEDIR point to bin directory of kdevplatform.
- kdev_fixup_sed="s|^export KDEV_BASEDIR=.*$|export KDEV_BASEDIR=${kdevplatform}/bin|"
# - Fixup the one use where KDEV_BASEDIR is assumed to contain kdevelop.
kdev_fixup_sed+=";s|\\\$KDEV_BASEDIR/kdevelop|$out/bin/kdevelop|"
sed -E -i "$kdev_fixup_sed" "$out/bin/.kdevelop!-wrapped"
diff --git a/pkgs/applications/editors/kdevelop5/kdevplatform.nix b/pkgs/applications/editors/kdevelop5/kdevplatform.nix
deleted file mode 100644
index 88164c2c4585176986c747255a2e74d1b0e9e2e0..0000000000000000000000000000000000000000
--- a/pkgs/applications/editors/kdevelop5/kdevplatform.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ stdenv, fetchurl, cmake, gettext, pkgconfig, extra-cmake-modules
-, boost, subversion, apr, aprutil, kwindowsystem
-, qtscript, qtwebkit, grantlee, karchive, kconfig, kcoreaddons, kguiaddons, kiconthemes, ki18n
-, kitemmodels, kitemviews, kio, kparts, sonnet, kcmutils, knewstuff, knotifications
-, knotifyconfig, ktexteditor, threadweaver, kdeclarative, libkomparediff2 }:
-
-let
- pname = "kdevplatform";
- version = "5.1.2";
-
-in
-stdenv.mkDerivation rec {
- name = "${pname}-${version}";
-
- src = fetchurl {
- url = "mirror://kde/stable/kdevelop/${version}/src/${name}.tar.xz";
- sha256 = "e622ddad552a678baaf1166d5cbdc5fd1192d2324300c52ef2d25f1c6778664a";
- };
-
- nativeBuildInputs = [ cmake gettext pkgconfig extra-cmake-modules ];
-
- buildInputs = [
- boost subversion apr aprutil kwindowsystem
- qtscript qtwebkit grantlee karchive kconfig kcoreaddons kguiaddons kiconthemes
- ki18n kitemmodels kitemviews kio kparts sonnet kcmutils knewstuff
- knotifications knotifyconfig ktexteditor threadweaver kdeclarative
- libkomparediff2
- ];
-
- enableParallelBuilding = true;
-
- meta = with stdenv.lib; {
- maintainers = [ maintainers.ambrop72 ];
- platforms = platforms.linux;
- description = "KDE libraries for IDE-like programs";
- longDescription = ''
- A free, opensource set of libraries that can be used as a foundation for
- IDE-like programs. It is programing-language independent, and is planned
- to be used by programs like: KDevelop, Quanta, Kile, KTechLab ... etc."
- '';
- homepage = https://www.kdevelop.org;
- license = with stdenv.lib.licenses; [ gpl2Plus lgpl2Plus ];
- };
-}
diff --git a/pkgs/applications/editors/kodestudio/default.nix b/pkgs/applications/editors/kodestudio/default.nix
index 4e22e032e357ffe8e2bd65e6e1dadeecae8cd85c..b212773712c2170da6f39123fc0f54cfaf7ec331 100644
--- a/pkgs/applications/editors/kodestudio/default.nix
+++ b/pkgs/applications/editors/kodestudio/default.nix
@@ -8,15 +8,15 @@ let
version = "17.1";
- sha256 = if stdenv.system == "x86_64-linux" then "1kddisnvlk48jip6k59mw3wlkrl7rkck2lxpaghn0gfx02cvms5f"
- else if stdenv.system == "i686-cygwin" then "1izp42afrlh4yd322ax9w85ki388gnkqfqbw8dwnn4k3j7r5487z"
- else throw "Unsupported system: ${stdenv.system}";
+ sha256 = if stdenv.hostPlatform.system == "x86_64-linux" then "1kddisnvlk48jip6k59mw3wlkrl7rkck2lxpaghn0gfx02cvms5f"
+ else if stdenv.hostPlatform.system == "i686-cygwin" then "1izp42afrlh4yd322ax9w85ki388gnkqfqbw8dwnn4k3j7r5487z"
+ else throw "Unsupported system: ${stdenv.hostPlatform.system}";
urlBase = "https://github.com/Kode/KodeStudio/releases/download/v${version}/KodeStudio-";
- urlStr = if stdenv.system == "x86_64-linux" then urlBase + "linux64.tar.gz"
- else if stdenv.system == "i686-cygwin" then urlBase + "win32.zip"
- else throw "Unsupported system: ${stdenv.system}";
+ urlStr = if stdenv.hostPlatform.system == "x86_64-linux" then urlBase + "linux64.tar.gz"
+ else if stdenv.hostPlatform.system == "i686-cygwin" then urlBase + "win32.zip"
+ else throw "Unsupported system: ${stdenv.hostPlatform.system}";
in
@@ -47,7 +47,7 @@ in
cp -r ./* $out
'';
- postFixup = lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") ''
+ postFixup = lib.optionalString (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux") ''
# Patch Binaries
patchelf \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
diff --git a/pkgs/applications/editors/micro/default.nix b/pkgs/applications/editors/micro/default.nix
index f1c1e3dcac70bd91618b148051cf0fa905748a79..fab3646efdff7f9d5ec2ae1c32b67936332dcab4 100644
--- a/pkgs/applications/editors/micro/default.nix
+++ b/pkgs/applications/editors/micro/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "micro-${version}";
- version = "1.4.0";
+ version = "1.4.1";
goPackagePath = "github.com/zyedidia/micro";
@@ -10,7 +10,7 @@ buildGoPackage rec {
owner = "zyedidia";
repo = "micro";
rev = "v${version}";
- sha256 = "0w1rmh81h28n1jlb05k89i751h498i6p883hrsjr70hvrwq5zjpb";
+ sha256 = "0m9p6smb5grdazsgr3m1x4rry9ihhlgl9ildhvfp53czrifbx0m5";
fetchSubmodules = true;
};
diff --git a/pkgs/applications/editors/music/tuxguitar/default.nix b/pkgs/applications/editors/music/tuxguitar/default.nix
index f305db1abb8fd8830ceda23ab6a386512d5b2a84..1b1c6eaf9e543064345e91120f4800b33a1c3ea1 100644
--- a/pkgs/applications/editors/music/tuxguitar/default.nix
+++ b/pkgs/applications/editors/music/tuxguitar/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, swt, jdk, makeWrapper, alsaLib }:
-let metadata = assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
- if stdenv.system == "i686-linux" then
+let metadata = assert stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux";
+ if stdenv.hostPlatform.system == "i686-linux" then
{ arch = "x86"; sha256 = "1qmb51k0538pn7gv4nsvhfv33xik4l4af0qmpllkzrikmj8wvzlb"; }
else
{ arch = "x86_64"; sha256 = "12af47jhlrh9aq5b3d13l7cdhlndgnfpy61gz002hajbq7i00ixh"; };
diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix
index 86134687ba31c3c7bab073f5221023d1bb27e428..64b8e48b2881ccde9afaf147b6cbd164af4ed829 100644
--- a/pkgs/applications/editors/nano/default.nix
+++ b/pkgs/applications/editors/nano/default.nix
@@ -14,8 +14,8 @@ let
nixSyntaxHighlight = fetchFromGitHub {
owner = "seitz";
repo = "nanonix";
- rev = "17e0de65e1cbba3d6baa82deaefa853b41f5c161";
- sha256 = "1g51h65i31andfs2fbp1v3vih9405iknqn11fzywjxji00kjqv5s";
+ rev = "7483fd8b79f1f3f2179dbbd46aa400df4320ba10";
+ sha256 = "10pv75kfrgnziz8sr83hdbb0c3klm2fmsdw3i5cpqqf5va1fzb8h";
};
in stdenv.mkDerivation rec {
diff --git a/pkgs/applications/editors/neovim/wrapper.nix b/pkgs/applications/editors/neovim/wrapper.nix
index fa0603255599418cfd5ec3bba1147ff428cbf5f7..17cf49521f1db14402b525f9b1cf69c954fcc903 100644
--- a/pkgs/applications/editors/neovim/wrapper.nix
+++ b/pkgs/applications/editors/neovim/wrapper.nix
@@ -10,13 +10,13 @@ neovim:
let
wrapper = {
- withPython ? true, extraPythonPackages ? []
- , withPython3 ? true, extraPython3Packages ? []
+ withPython ? true, extraPythonPackages ? (_: []) /* the function you would have passed to python.withPackages */
+ , withPython3 ? true, extraPython3Packages ? (_: []) /* the function you would have passed to python.withPackages */
, withRuby ? true
, withPyGUI ? false
, vimAlias ? false
, viAlias ? false
- , configure ? null
+ , configure ? {}
}:
let
@@ -28,25 +28,27 @@ let
'';
};
- pluginPythonPackages = if configure == null then [] else builtins.concatLists
- (map ({ pythonDependencies ? [], ...}: pythonDependencies)
- (vimUtils.requiredPlugins configure));
- pythonEnv = pythonPackages.python.buildEnv.override {
- extraLibs = (
- if withPyGUI
- then [ pythonPackages.neovim_gui ]
- else [ pythonPackages.neovim ]
- ) ++ extraPythonPackages ++ pluginPythonPackages;
- ignoreCollisions = true;
- };
+ /* for compatibility with passing extraPythonPackages as a list; added 2018-07-11 */
+ compatFun = funOrList: (if builtins.isList funOrList then
+ (_: builtins.trace "passing a list as extraPythonPackages to the neovim wrapper is deprecated, pass a function as to python.withPackages instead" funOrList)
+ else funOrList);
+ extraPythonPackagesFun = compatFun extraPythonPackages;
+ extraPython3PackagesFun = compatFun extraPython3Packages;
- pluginPython3Packages = if configure == null then [] else builtins.concatLists
- (map ({ python3Dependencies ? [], ...}: python3Dependencies)
- (vimUtils.requiredPlugins configure));
- python3Env = python3Packages.python.buildEnv.override {
- extraLibs = [ python3Packages.neovim ] ++ extraPython3Packages ++ pluginPython3Packages;
- ignoreCollisions = true;
- };
+ requiredPlugins = vimUtils.requiredPlugins configure;
+ getDeps = attrname: map (plugin: plugin.${attrname} or (_:[]));
+
+ pluginPythonPackages = getDeps "pythonDependencies" requiredPlugins;
+ pythonEnv = pythonPackages.python.withPackages(ps:
+ (if withPyGUI then [ ps.neovim_gui ] else [ ps.neovim ])
+ ++ (extraPythonPackagesFun ps)
+ ++ (concatMap (f: f ps) pluginPythonPackages));
+
+ pluginPython3Packages = getDeps "python3Dependencies" requiredPlugins;
+ python3Env = python3Packages.python.withPackages (ps:
+ [ ps.neovim ]
+ ++ (extraPython3PackagesFun ps)
+ ++ (concatMap (f: f ps) pluginPython3Packages));
in
stdenv.mkDerivation {
@@ -63,7 +65,6 @@ let
--cmd \"${if withPython then "let g:python_host_prog='$out/bin/nvim-python'" else "let g:loaded_python_provider = 1"}\" \
--cmd \"${if withPython3 then "let g:python3_host_prog='$out/bin/nvim-python3'" else "let g:loaded_python3_provider = 1"}\" \
--cmd \"${if withRuby then "let g:ruby_host_prog='$out/bin/nvim-ruby'" else "let g:loaded_ruby_provider=1"}\" " \
- --unset PYTHONPATH \
${optionalString withRuby '' --suffix PATH : ${rubyEnv}/bin --set GEM_HOME ${rubyEnv}/${rubyEnv.ruby.gemPath}'' }
''
@@ -75,9 +76,9 @@ let
--replace 'Name=Neovim' 'Name=WrappedNeovim'
''
+ optionalString withPython ''
- ln -s ${pythonEnv}/bin/python $out/bin/nvim-python
+ makeWrapper ${pythonEnv}/bin/python $out/bin/nvim-python --unset PYTHONPATH
'' + optionalString withPython3 ''
- ln -s ${python3Env}/bin/python3 $out/bin/nvim-python3
+ makeWrapper ${python3Env}/bin/python3 $out/bin/nvim-python3 --unset PYTHONPATH
'' + optionalString withRuby ''
ln -s ${rubyEnv}/bin/neovim-ruby-host $out/bin/nvim-ruby
''
@@ -88,7 +89,7 @@ let
ln -s $out/bin/nvim $out/bin/vim
'' + optionalString viAlias ''
ln -s $out/bin/nvim $out/bin/vi
- '' + optionalString (configure != null) ''
+ '' + optionalString (configure != {}) ''
wrapProgram $out/bin/nvim --add-flags "-u ${vimUtils.vimrcFile configure}"
''
;
diff --git a/pkgs/applications/editors/rstudio/default.nix b/pkgs/applications/editors/rstudio/default.nix
index 0943513a4d12607ce5e9c40f6ce8f925c09b1936..1a5c9d65583fda18a528da778ea5c38a60b026e6 100644
--- a/pkgs/applications/editors/rstudio/default.nix
+++ b/pkgs/applications/editors/rstudio/default.nix
@@ -6,7 +6,7 @@
let
verMajor = "1";
verMinor = "1";
- verPatch = "442";
+ verPatch = "456";
version = "${verMajor}.${verMinor}.${verPatch}";
ginVer = "1.5";
gwtVer = "2.7.0";
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
owner = "rstudio";
repo = "rstudio";
rev = "v${version}";
- sha256 = "0drqh2brfs9w8dfh4r7j3fsqdsg63s6pvj2bbg5xwwc0yf220ahs";
+ sha256 = "0hv07qrbjwapbjrkddasglsgk0x5j7qal468i5rv77krsp09s4fz";
};
# Hack RStudio to only use the input R.
diff --git a/pkgs/applications/editors/sublime/2/default.nix b/pkgs/applications/editors/sublime/2/default.nix
index 78c2d9aaa0c41cca63d23f626c73d43c629d28cb..11724d9802a59e5e8e43f7324a83eaeb51ee69c8 100644
--- a/pkgs/applications/editors/sublime/2/default.nix
+++ b/pkgs/applications/editors/sublime/2/default.nix
@@ -6,7 +6,7 @@ in
stdenv.mkDerivation rec {
name = "sublimetext-2.0.2";
src =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
name = "sublimetext-2.0.2.tar.bz2";
url = http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.2.tar.bz2;
diff --git a/pkgs/applications/editors/sublime/3/common.nix b/pkgs/applications/editors/sublime/3/common.nix
index 628993dbf5be55d7a8f33109c66ad0d0263f163b..eb282b1be3a8ea2b8664280d94da9bbee2d063b7 100644
--- a/pkgs/applications/editors/sublime/3/common.nix
+++ b/pkgs/applications/editors/sublime/3/common.nix
@@ -13,13 +13,13 @@ let
++ stdenv.lib.optional gksuSupport "/usr/bin/gksudo=${gksu}/bin/gksudo";
in let
archSha256 =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
x32sha256
else
x64sha256;
arch =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
"x32"
else
"x64";
diff --git a/pkgs/applications/editors/typora/default.nix b/pkgs/applications/editors/typora/default.nix
index 93ee70e4148bb9f7a7e11770318a0f9924afa217..0bff4864c612ed3a07795be338fe09899bdbb082 100644
--- a/pkgs/applications/editors/typora/default.nix
+++ b/pkgs/applications/editors/typora/default.nix
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
version = "0.9.53";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://www.typora.io/linux/typora_${version}_amd64.deb";
sha256 = "02k6x30l4mbjragqbq5rn663xbw3h4bxzgppfxqf5lwydswldklb";
diff --git a/pkgs/applications/editors/vanubi/default.nix b/pkgs/applications/editors/vanubi/default.nix
deleted file mode 100644
index 98f45f6be02d2b56e80a5648d450ef026c1f00e8..0000000000000000000000000000000000000000
--- a/pkgs/applications/editors/vanubi/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, vala_0_28, which, autoconf, automake
-, libtool, glib, gtk3, gnome3, libwnck3, asciidoc, python3Packages }:
-
-stdenv.mkDerivation rec {
- name = "vanubi-${version}";
- version = "0.0.16";
-
- src = fetchurl {
- url = "https://github.com/vanubi/vanubi/archive/v${version}.tar.gz";
- sha256 = "145zxgaky5bcq5bxm4z7h0pvviq7k1nrgnf40q6nax6ik616ybjq";
- };
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ vala_0_28 which autoconf automake
- libtool glib gtk3 libwnck3 asciidoc
- gnome3.gtksourceview gnome3.vte_290 python3Packages.pygments ];
-
- configureScript = "./autogen.sh";
-
- enableParallelBuilding = true;
-
- meta = with stdenv.lib; {
- homepage = http://vanubi.github.io/vanubi;
- description = "Programming editor for GTK+ inspired by Emacs";
- license = licenses.gpl3;
- platforms = platforms.linux;
- maintainers = [ maintainers.lethalman ];
- };
-}
diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix
index 3711b3cdcee4414916e916668822cb9c17ca678b..7ee28adfa47fd2f72b1bc9acaa5115e8ee1e12ee 100644
--- a/pkgs/applications/editors/vim/configurable.nix
+++ b/pkgs/applications/editors/vim/configurable.nix
@@ -1,7 +1,7 @@
# TODO tidy up eg The patchelf code is patching gvim even if you don't build it..
# but I have gvim with python support now :) - Marc
-args@{ source ? "default", callPackage, fetchurl, stdenv, ncurses, pkgconfig, gettext
-, writeText, lib, config, glib, gtk2, gtk3, python, perl, tcl, ruby
+{ source ? "default", callPackage, fetchurl, stdenv, ncurses, pkgconfig, gettext
+, writeText, config, glib, gtk2, gtk3, lua, python, perl, tcl, ruby
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
, libICE
, vimPlugins
@@ -13,7 +13,7 @@ args@{ source ? "default", callPackage, fetchurl, stdenv, ncurses, pkgconfig, ge
, features ? "huge" # One of tiny, small, normal, big or huge
, wrapPythonDrv ? false
-, guiSupport ? config.vim.gui or "auto"
+, guiSupport ? config.vim.gui or "gtk3"
, luaSupport ? config.vim.lua or true
, perlSupport ? config.vim.perl or false # Perl interpreter
, pythonSupport ? config.vim.python or true # Python interpreter
@@ -24,11 +24,10 @@ args@{ source ? "default", callPackage, fetchurl, stdenv, ncurses, pkgconfig, ge
, cscopeSupport ? config.vim.cscope or true # Enable cscope interface
, netbeansSupport ? config.netbeans or true # Enable NetBeans integration support.
, ximSupport ? config.vim.xim or true # less than 15KB, needed for deadkeys
-# By default, compile with darwin support if we're compiling on darwin, but
-# allow this to be disabled by setting config.vim.darwin to false
-, darwinSupport ? stdenv.isDarwin && (config.vim.darwin or true) # Enable Darwin support
+, darwinSupport ? config.vim.darwin or false # Enable Darwin support
, ftNixSupport ? config.vim.ftNix or true # Add .nix filetype detection and minimal syntax highlighting support
-, ... }: with args;
+, ...
+}:
let
@@ -99,8 +98,10 @@ in stdenv.mkDerivation rec {
"--disable-carbon_check"
"--disable-gtktest"
]
+ ++ stdenv.lib.optional stdenv.isDarwin
+ (if darwinSupport then "--enable-darwin" else "--disable-darwin")
++ stdenv.lib.optionals luaSupport [
- "--with-lua-prefix=${args.lua}"
+ "--with-lua-prefix=${lua}"
"--enable-luainterp"
]
++ stdenv.lib.optionals pythonSupport [
@@ -128,7 +129,8 @@ in stdenv.mkDerivation rec {
buildInputs = [ ncurses libX11 libXext libSM libXpm libXt libXaw libXau
libXmu glib libICE ]
- ++ (if guiSupport == "gtk3" then [gtk3] else [gtk2])
+ ++ stdenv.lib.optional (guiSupport == "gtk2") gtk2
+ ++ stdenv.lib.optional (guiSupport == "gtk3") gtk3
++ stdenv.lib.optionals darwinSupport [ CoreServices CoreData Cocoa Foundation libobjc cf-private ]
++ stdenv.lib.optional luaSupport lua
++ stdenv.lib.optional pythonSupport python
@@ -142,22 +144,36 @@ in stdenv.mkDerivation rec {
cp ${vimPlugins.vim-nix.src}/syntax/nix.vim runtime/syntax/nix.vim
'';
- NIX_LDFLAGS = stdenv.lib.optionalString (darwinSupport && stdenv.isDarwin)
- "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation";
-
postInstall = ''
'' + stdenv.lib.optionalString stdenv.isLinux ''
patchelf --set-rpath \
- "$(patchelf --print-rpath $out/bin/vim):${lib.makeLibraryPath buildInputs}" \
+ "$(patchelf --print-rpath $out/bin/vim):${stdenv.lib.makeLibraryPath buildInputs}" \
"$out"/bin/{vim,gvim}
ln -sfn '${nixosRuntimepath}' "$out"/share/vim/vimrc
'' + stdenv.lib.optionalString wrapPythonDrv ''
wrapProgram "$out/bin/vim" --prefix PATH : "${python}/bin"
'' + stdenv.lib.optionalString (guiSupport == "gtk3") ''
- rm "$out/bin/gvim"
- echo -e '#!${stdenv.shell}\n"'"$out/bin/vim"'" -g "$@"' > "$out/bin/gvim"
- chmod a+x "$out/bin/gvim"
+
+ rewrap () {
+ rm -f "$out/bin/$1"
+ echo -e '#!${stdenv.shell}\n"'"$out/bin/vim"'" '"$2"' "$@"' > "$out/bin/$1"
+ chmod a+x "$out/bin/$1"
+ }
+
+ rewrap ex -e
+ rewrap view -R
+ rewrap gvim -g
+ rewrap gex -eg
+ rewrap gview -Rg
+ rewrap rvim -Z
+ rewrap rview -RZ
+ rewrap rgvim -gZ
+ rewrap rgview -RgZ
+ rewrap evim -y
+ rewrap eview -yR
+ rewrap vimdiff -d
+ rewrap gvimdiff -gd
'';
preInstall = ''
diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix
index 067179974b1ea59e7fff6985cb81ada95c2ed365..26cd61d182bd158f8b27d69c3d287ba9ff9322c8 100644
--- a/pkgs/applications/editors/vim/default.nix
+++ b/pkgs/applications/editors/vim/default.nix
@@ -7,7 +7,6 @@
}
# apple frameworks
, Carbon, Cocoa
-, buildPlatform, hostPlatform
}:
let
@@ -20,12 +19,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ gettext pkgconfig ];
buildInputs = [ ncurses ]
- ++ stdenv.lib.optionals hostPlatform.isDarwin [ Carbon Cocoa ];
+ ++ stdenv.lib.optionals stdenv.hostPlatform.isDarwin [ Carbon Cocoa ];
configureFlags = [
"--enable-multibyte"
"--enable-nls"
- ] ++ stdenv.lib.optionals (hostPlatform != buildPlatform) [
+ ] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"vim_cv_toupper_broken=no"
"--with-tlib=ncurses"
"vim_cv_terminfo=yes"
diff --git a/pkgs/applications/editors/vscode/default.nix b/pkgs/applications/editors/vscode/default.nix
index a775fb3bd79a6ebbaa0bfafa2d7bd83cd90c757a..0cf0c7bcbc6956aa3fea11b201a91300c75f7c4a 100644
--- a/pkgs/applications/editors/vscode/default.nix
+++ b/pkgs/applications/editors/vscode/default.nix
@@ -9,15 +9,15 @@ let
"i686-linux" = "linux-ia32";
"x86_64-linux" = "linux-x64";
"x86_64-darwin" = "darwin";
- }.${stdenv.system};
+ }.${stdenv.hostPlatform.system};
sha256 = {
"i686-linux" = "1g7kqbz6mrf8ngx2bnwpi9fifq5rjznxgsgwjb532z3nh92ypa8n";
"x86_64-linux" = "02yldycakn5zxj1ji4nmhdyazqlkjqpzdj3g8j501c3j28pgiwjy";
"x86_64-darwin" = "0pnsfkh20mj7pzqw7wlfd98jqc6a1mnsq1iira15n7fafqgj8zpl";
- }.${stdenv.system};
+ }.${stdenv.hostPlatform.system};
- archive_fmt = if stdenv.system == "x86_64-darwin" then "zip" else "tar.gz";
+ archive_fmt = if stdenv.hostPlatform.system == "x86_64-darwin" then "zip" else "tar.gz";
rpath = lib.concatStringsSep ":" [
atomEnv.libPath
@@ -48,12 +48,12 @@ in
categories = "GNOME;GTK;Utility;TextEditor;Development;";
};
- buildInputs = if stdenv.system == "x86_64-darwin"
+ buildInputs = if stdenv.hostPlatform.system == "x86_64-darwin"
then [ unzip libXScrnSaver libsecret ]
else [ wrapGAppsHook libXScrnSaver libxkbfile libsecret ];
installPhase =
- if stdenv.system == "x86_64-darwin" then ''
+ if stdenv.hostPlatform.system == "x86_64-darwin" then ''
mkdir -p $out/lib/vscode $out/bin
cp -r ./* $out/lib/vscode
ln -s $out/lib/vscode/Contents/Resources/app/bin/code $out/bin
@@ -72,7 +72,7 @@ in
cp $out/lib/vscode/resources/app/resources/linux/code.png $out/share/pixmaps/code.png
'';
- postFixup = lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") ''
+ postFixup = lib.optionalString (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux") ''
patchelf \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${rpath}" \
diff --git a/pkgs/applications/gis/qgis/default.nix b/pkgs/applications/gis/qgis/default.nix
index 8f06a659f60cd2c77a3eb3bc4e88456797b63455..744aef20fda69bfbc44070f9dd5ab6f495632f77 100644
--- a/pkgs/applications/gis/qgis/default.nix
+++ b/pkgs/applications/gis/qgis/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl
+{ stdenv, fetchurl, fetchpatch, gdal, cmake, qt4, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl
, qwt, fcgi, python2Packages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper
, qjson, qca2, txt2tags, openssl, darwin, pkgconfig
, withGrass ? true, grass, IOKit, ApplicationServices
@@ -37,6 +37,14 @@ stdenv.mkDerivation rec {
sha256 = "00b3a2hfn3i7bdx7x96vz2nj0976vpkhid4ss7n8c33fdvw3k82a";
};
+ patches = [
+ # https://github.com/qgis/QGIS/pull/7765
+ (fetchpatch {
+ url = "https://github.com/qgis/QGIS/commit/6b61ef361a77f057dc29eb07463007bd9012b253.patch";
+ sha256 = "1xibcahm18n7nxff1xvwwzjf505hvhiw5dk12is7aclv49h0rdf7";
+ })
+ ];
+
# CMAKE_FIND_FRAMEWORK=never stops the installer choosing system
# installed frameworks
# QGIS_MACAPP_BUNDLE=0 stops the installer copying the Qt binaries into the
diff --git a/pkgs/applications/graphics/ImageMagick/7.0.nix b/pkgs/applications/graphics/ImageMagick/7.0.nix
index c4afd6b3bed3cfc6c8dc1097c5d645a262171a0c..7881741a1cbb34c92e604b675b14388d4cbfe5d8 100644
--- a/pkgs/applications/graphics/ImageMagick/7.0.nix
+++ b/pkgs/applications/graphics/ImageMagick/7.0.nix
@@ -2,15 +2,14 @@
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg
, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp, libheif
, ApplicationServices
-, hostPlatform
}:
let
arch =
- if stdenv.system == "i686-linux" then "i686"
- else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64"
- else if stdenv.system == "armv7l-linux" then "armv7l"
- else if stdenv.system == "aarch64-linux" then "aarch64"
+ if stdenv.hostPlatform.system == "i686-linux" then "i686"
+ else if stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "x86_64-darwin" then "x86-64"
+ else if stdenv.hostPlatform.system == "armv7l-linux" then "armv7l"
+ else if stdenv.hostPlatform.system == "aarch64-linux" then "aarch64"
else throw "ImageMagick is not supported on this platform.";
cfg = {
@@ -46,7 +45,7 @@ stdenv.mkDerivation rec {
[ "--with-gs-font-dir=${ghostscript}/share/ghostscript/fonts"
"--with-gslib"
]
- ++ lib.optionals hostPlatform.isMinGW
+ ++ lib.optionals stdenv.hostPlatform.isMinGW
[ "--enable-static" "--disable-shared" ] # due to libxml2 being without DLLs ATM
;
@@ -56,13 +55,13 @@ stdenv.mkDerivation rec {
[ zlib fontconfig freetype ghostscript
libpng libtiff libxml2 libheif
]
- ++ lib.optionals (!hostPlatform.isMinGW)
+ ++ lib.optionals (!stdenv.hostPlatform.isMinGW)
[ openexr librsvg openjpeg ]
++ lib.optional stdenv.isDarwin ApplicationServices;
propagatedBuildInputs =
[ bzip2 freetype libjpeg lcms2 ]
- ++ lib.optionals (!hostPlatform.isMinGW)
+ ++ lib.optionals (!stdenv.hostPlatform.isMinGW)
[ libX11 libXext libXt libwebp ]
;
diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix
index 94a4aeaa9337e7b6a419b5e19c6d0df65093bb33..5220fdf8981372a8f2c6b0844f89f1358e8be88f 100644
--- a/pkgs/applications/graphics/ImageMagick/default.nix
+++ b/pkgs/applications/graphics/ImageMagick/default.nix
@@ -2,15 +2,14 @@
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg
, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp, fftw, libheif, libde265
, ApplicationServices
-, hostPlatform
}:
let
arch =
- if stdenv.system == "i686-linux" then "i686"
- else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64"
- else if stdenv.system == "armv7l-linux" then "armv7l"
- else if stdenv.system == "aarch64-linux" then "aarch64"
+ if stdenv.hostPlatform.system == "i686-linux" then "i686"
+ else if stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "x86_64-darwin" then "x86-64"
+ else if stdenv.hostPlatform.system == "armv7l-linux" then "armv7l"
+ else if stdenv.hostPlatform.system == "aarch64-linux" then "aarch64"
else throw "ImageMagick is not supported on this platform.";
cfg = {
@@ -20,7 +19,7 @@ let
}
# Freeze version on mingw so we don't need to port the patch too often.
# FIXME: This version has multiple security vulnerabilities
- // lib.optionalAttrs (hostPlatform.isMinGW) {
+ // lib.optionalAttrs (stdenv.hostPlatform.isMinGW) {
version = "6.9.2-0";
sha256 = "17ir8bw1j7g7srqmsz3rx780sgnc21zfn0kwyj78iazrywldx8h7";
patches = [(fetchpatch {
@@ -58,7 +57,7 @@ stdenv.mkDerivation rec {
[ "--with-gs-font-dir=${ghostscript}/share/ghostscript/fonts"
"--with-gslib"
]
- ++ lib.optionals (hostPlatform.isMinGW)
+ ++ lib.optionals (stdenv.hostPlatform.isMinGW)
[ "--enable-static" "--disable-shared" ] # due to libxml2 being without DLLs ATM
;
@@ -68,13 +67,13 @@ stdenv.mkDerivation rec {
[ zlib fontconfig freetype ghostscript
libpng libtiff libxml2 libheif libde265
]
- ++ lib.optionals (!hostPlatform.isMinGW)
+ ++ lib.optionals (!stdenv.hostPlatform.isMinGW)
[ openexr librsvg openjpeg ]
++ lib.optional stdenv.isDarwin ApplicationServices;
propagatedBuildInputs =
[ bzip2 freetype libjpeg lcms2 fftw ]
- ++ lib.optionals (!hostPlatform.isMinGW)
+ ++ lib.optionals (!stdenv.hostPlatform.isMinGW)
[ libX11 libXext libXt libwebp ]
;
diff --git a/pkgs/applications/graphics/drawpile/default.nix b/pkgs/applications/graphics/drawpile/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..fd8f88aa53ad154da7e78a08abf13eb1db4d46a7
--- /dev/null
+++ b/pkgs/applications/graphics/drawpile/default.nix
@@ -0,0 +1,44 @@
+{ stdenv
+, fetchurl
+, cmake
+, qtbase
+, qtsvg
+, qtmultimedia
+, qttools
+, kdnssd
+, karchive
+, libsodium
+, libmicrohttpd
+, giflib
+, miniupnpc
+}:
+
+stdenv.mkDerivation rec {
+ name = "drawpile-${version}";
+ version = "2.0.11";
+ src = fetchurl {
+ url = "https://drawpile.net/files/src/drawpile-${version}.tar.gz";
+ sha256 = "0h018rxhc0lwpqwmlihalz634nd0xaafk4p2b782djjd87irnjpk";
+ };
+ buildInputs = [
+ cmake
+ qtbase qtsvg qtmultimedia qttools
+ karchive
+ # optional deps:
+ libsodium # ext-auth support
+ libmicrohttpd # HTTP admin api
+ giflib # gif animation export support
+ miniupnpc # automatic port forwarding
+ kdnssd # local server discovery with Zeroconf
+ ];
+ configurePhase = "cmake -DCMAKE_INSTALL_PREFIX=$out .";
+
+ meta = with stdenv.lib; {
+ description = "A collaborative drawing program that allows multiple users to sketch on the same canvas simultaneously";
+ homepage = https://drawpile.net/;
+ downloadPage = https://drawpile.net/download/;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ fgaz ];
+ };
+}
+
diff --git a/pkgs/applications/graphics/gcolor2/default.nix b/pkgs/applications/graphics/gcolor2/default.nix
index 3747b802e2316c0e057f378e8bcf0cdd8c6d7200..27ca6e26e9f96cfbdee0efe35e6d73b3b08555a8 100644
--- a/pkgs/applications/graphics/gcolor2/default.nix
+++ b/pkgs/applications/graphics/gcolor2/default.nix
@@ -3,7 +3,7 @@
let version = "0.4"; in
stdenv.mkDerivation {
name = "gcolor2-${version}";
- arch = if stdenv.system == "x86_64-linux" then "amd64" else "386";
+ arch = if stdenv.hostPlatform.system == "x86_64-linux" then "amd64" else "386";
src = fetchurl {
url = "mirror://sourceforge/project/gcolor2/gcolor2/${version}/gcolor2-${version}.tar.bz2";
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
'';
# from https://github.com/PhantomX/slackbuilds/tree/master/gcolor2/patches
- patches = if stdenv.system == "x86_64-linux" then
+ patches = if stdenv.hostPlatform.system == "x86_64-linux" then
[ ./gcolor2-amd64.patch ] else
[ ];
diff --git a/pkgs/applications/graphics/gcolor3/default.nix b/pkgs/applications/graphics/gcolor3/default.nix
index 09d1a86db8e3e2148fa22987c8962e15ce05c9d8..cd43cd2fe72377e57a7d31301b7d7579ca1c86d1 100644
--- a/pkgs/applications/graphics/gcolor3/default.nix
+++ b/pkgs/applications/graphics/gcolor3/default.nix
@@ -1,7 +1,7 @@
-{ stdenv, fetchFromGitHub, gnome3, libtool, intltool, pkgconfig, gtk3, hicolor-icon-theme, wrapGAppsHook } :
+{ stdenv, fetchFromGitHub, fetchpatch, gnome3, meson, ninja, gettext, pkgconfig, libxml2, gtk3, hicolor-icon-theme, wrapGAppsHook }:
let
- version = "2.2";
+ version = "2.3";
in stdenv.mkDerivation {
name = "gcolor3-${version}";
@@ -9,23 +9,35 @@ in stdenv.mkDerivation {
owner = "hjdskes";
repo = "gcolor3";
rev = "v${version}";
- sha256 = "1rbahsi33pfggpj5cigy6wy5333g3rpm8v2q0b35c6m7pwhmf2gr";
+ sha256 = "186j72kwsqdcakvdik9jl18gz3csdj53j3ylwagr9gfwmy0nmyjb";
};
- nativeBuildInputs = [ gnome3.gnome-common libtool intltool pkgconfig hicolor-icon-theme wrapGAppsHook ];
+ patches = [
+ # Fix darwin build
+ (fetchpatch {
+ url = https://github.com/Hjdskes/gcolor3/commit/9130ffeff091fbafff6a0c8f06b09f54657d5dfd.patch;
+ sha256 = "1kn5hx536wivafb4awg7lsa8h32njy0lynmn7ci9y78dlp54057r";
+ })
+ (fetchpatch {
+ url = https://github.com/Hjdskes/gcolor3/commit/8d89081a8e13749f5a9051821114bc5fe814eaf3.patch;
+ sha256 = "1ldyr84dl2g6anqkp2mpxsrcr41fcqwi6ck14rfhai7rgrm8yar3";
+ })
+ ];
- buildInputs = [ gtk3 ];
+ nativeBuildInputs = [ meson ninja gettext pkgconfig libxml2 wrapGAppsHook ];
- configureScript = "./autogen.sh";
+ buildInputs = [ gtk3 hicolor-icon-theme ];
- # clang-4.0: error: argument unused during compilation: '-pthread'
- NIX_CFLAGS_COMPILE = stdenv.lib.optional stdenv.cc.isClang "-Wno-error=unused-command-line-argument";
+ postPatch = ''
+ chmod +x meson_install.sh # patchShebangs requires executable file
+ patchShebangs meson_install.sh
+ '';
- meta = {
+ meta = with stdenv.lib; {
description = "A simple color chooser written in GTK3";
homepage = https://hjdskes.github.io/projects/gcolor3/;
- license = stdenv.lib.licenses.gpl2;
- maintainers = with stdenv.lib.maintainers; [ jtojnar ];
- platforms = stdenv.lib.platforms.unix;
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ jtojnar ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/graphics/grafx2/default.nix b/pkgs/applications/graphics/grafx2/default.nix
index fd17ef69c99227fbf2f28c385d339550e2cc3d50..b1580d73b6417622284133f360584c103ed3ae08 100644
--- a/pkgs/applications/graphics/grafx2/default.nix
+++ b/pkgs/applications/graphics/grafx2/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Bitmap paint program inspired by the Amiga programs Deluxe Paint and Brilliance";
- homepage = http://code.google.co/p/grafx2/;
+ homepage = http://pulkomandy.tk/projects/GrafX2;
license = stdenv.lib.licenses.gpl2;
platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = [ stdenv.lib.maintainers.zoomulator ];
diff --git a/pkgs/applications/graphics/imgcat/default.nix b/pkgs/applications/graphics/imgcat/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..a98029dd5807b11b62521cf3ee680684aefd68cf
--- /dev/null
+++ b/pkgs/applications/graphics/imgcat/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromGitHub, autoconf, automake, libtool, ncurses }:
+
+stdenv.mkDerivation rec {
+ name = "imgcat-${version}";
+ version = "2.3.0";
+
+ buildInputs = [ autoconf automake libtool ncurses ];
+
+ preConfigure = ''
+ ${autoconf}/bin/autoconf
+ sed -i -e "s|-ltermcap|-L ${ncurses}/lib -lncurses|" Makefile
+ '';
+
+ preInstall = ''
+ makeFlagsArray=(PREFIX="$out");
+ '';
+
+ src = fetchFromGitHub {
+ owner = "eddieantonio";
+ repo = "imgcat";
+ rev = "3d854c72f785dce0eecd9485767a7f972d54890c";
+ sha256 = "0m83c33rzxvs0w214njql2c7q3fg06wnyijch3l2s88i7frl121f";
+ };
+
+ meta = with stdenv.lib; {
+ description = "It's like cat, but for images";
+ homepage = https://github.com/eddieantonio/imgcat;
+ license = licenses.isc;
+ maintainers = with maintainers; [ jwiegley ];
+ platforms = platforms.unix;
+ };
+}
+
diff --git a/pkgs/applications/graphics/imv/default.nix b/pkgs/applications/graphics/imv/default.nix
index e9a0dccd30a9c2e0ffe08927d8689bfbb5372b5a..9def3f16ad0352019a8612c9488081c998e212ed 100644
--- a/pkgs/applications/graphics/imv/default.nix
+++ b/pkgs/applications/graphics/imv/default.nix
@@ -1,25 +1,32 @@
-{ stdenv, fetchgit, SDL2, SDL2_ttf, freeimage, fontconfig }:
+{ stdenv, fetchFromGitHub, SDL2, SDL2_ttf
+, freeimage, fontconfig, pkgconfig
+, asciidoc, docbook_xsl, libxslt, cmocka
+}:
stdenv.mkDerivation rec {
name = "imv-${version}";
- version = "2.1.3";
+ version = "3.0.0";
- src = fetchgit {
- url = "https://github.com/eXeC64/imv.git";
- rev = "e59d0e9e120f1dbde9ab068748a190e93978e5b7";
- sha256 = "0j48dk1bcbh5541522qkn487637wcx104zckrnxa5g3nirfqa7r7";
+ src = fetchFromGitHub {
+ owner = "eXeC64";
+ repo = "imv";
+ rev = "v${version}";
+ sha256 = "0j5aykdkm1g518ism5y5flhwxvjvl92ksq989fhl2wpnv0la82jp";
};
- buildInputs = [ SDL2 SDL2_ttf freeimage fontconfig ];
+ buildInputs = [
+ SDL2 SDL2_ttf freeimage fontconfig pkgconfig
+ asciidoc docbook_xsl libxslt cmocka
+ ];
- configurePhase = "substituteInPlace Makefile --replace /usr $out";
+ installFlags = [ "PREFIX=$(out)" "CONFIGPREFIX=$(out)/etc" ];
meta = with stdenv.lib; {
description = "A command line image viewer for tiling window managers";
homepage = https://github.com/eXeC64/imv;
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
- platforms = platforms.unix;
+ platforms = [ "x86_64-linux" ];
};
}
diff --git a/pkgs/applications/graphics/k3d/default.nix b/pkgs/applications/graphics/k3d/default.nix
index 3555c2b477ffccc3ed4641d542aaa93da67cff56..a4b509704a7f1e7003b32cded6d19b26071a2ed2 100644
--- a/pkgs/applications/graphics/k3d/default.nix
+++ b/pkgs/applications/graphics/k3d/default.nix
@@ -39,12 +39,11 @@ stdenv.mkDerivation rec {
#doCheck = false;
- meta = {
+ meta = with stdenv.lib; {
description = "A 3D editor with support for procedural editing";
homepage = http://www.k-3d.org/;
- platforms = with stdenv.lib.platforms;
- linux;
- maintainers = with stdenv.lib.maintainers;
- [raskin];
+ platforms = platforms.linux;
+ maintainers = [ maintainers.raskin ];
+ license = licenses.gpl2;
};
}
diff --git a/pkgs/applications/graphics/krita/default.nix b/pkgs/applications/graphics/krita/default.nix
index 836a78ce058bd08762675a398db3f98c1c1a3413..d4ac9720e15f46aa233251c147f2adf70e4d19b9 100644
--- a/pkgs/applications/graphics/krita/default.nix
+++ b/pkgs/applications/graphics/krita/default.nix
@@ -1,4 +1,4 @@
-{ mkDerivation, lib, fetchurl, cmake, extra-cmake-modules
+{ mkDerivation, lib, stdenv, fetchurl, cmake, extra-cmake-modules
, karchive, kconfig, kwidgetsaddons, kcompletion, kcoreaddons
, kguiaddons, ki18n, kitemmodels, kitemviews, kwindowsystem
, kio, kcrash
@@ -23,10 +23,10 @@ mkDerivation rec {
karchive kconfig kwidgetsaddons kcompletion kcoreaddons kguiaddons
ki18n kitemmodels kitemviews kwindowsystem kio kcrash
boost libraw fftw eigen exiv2 lcms2 gsl openexr libheif giflib
- openjpeg opencolorio vc poppler_qt5 curl ilmbase
+ openjpeg opencolorio poppler_qt5 curl ilmbase
qtmultimedia qtx11extras
python3
- ];
+ ] ++ lib.optional (stdenv.hostPlatform.isi686 || stdenv.hostPlatform.isx86_64) vc;
NIX_CFLAGS_COMPILE = [ "-I${ilmbase.dev}/include/OpenEXR" ];
diff --git a/pkgs/applications/graphics/pbrt/default.nix b/pkgs/applications/graphics/pbrt/default.nix
index 1c582df50dead922b05b9ef508c17e50b298fb45..3cc7166b4e46c8ad721417c43105cd7c6ee867f9 100644
--- a/pkgs/applications/graphics/pbrt/default.nix
+++ b/pkgs/applications/graphics/pbrt/default.nix
@@ -2,17 +2,22 @@
stdenv.mkDerivation rec {
- version = "2017-01-12";
+ version = "2018-08-15";
name = "pbrt-v3-${version}";
src = fetchFromGitHub {
- rev = "35b6da3429526f2026fe5e5ebaf36d593e113028";
+ rev = "86b5821308088deea70b207bc8c22219d0103d65";
owner = "mmp";
repo = "pbrt-v3";
- sha256 = "10lvbph13p6ilzqb8sgrvn9gg1zmi8wpy3hhjbqp8dnsa4x0mhj7";
+ sha256 = "0f7ivsczba6zfk5f0bba1js6dcwf6w6jrkiby147qp1sx5k35cv8";
fetchSubmodules = true;
};
+ patches = [
+ # https://github.com/mmp/pbrt-v3/issues/196
+ ./openexr-cmake-3.12.patch
+ ];
+
buildInputs = [ git flex bison cmake zlib ];
meta = with stdenv.lib; {
diff --git a/pkgs/applications/graphics/pbrt/openexr-cmake-3.12.patch b/pkgs/applications/graphics/pbrt/openexr-cmake-3.12.patch
new file mode 100644
index 0000000000000000000000000000000000000000..2993922a1ecf475812459f809179ddf1bb57b98e
--- /dev/null
+++ b/pkgs/applications/graphics/pbrt/openexr-cmake-3.12.patch
@@ -0,0 +1,26 @@
+diff -ur a/src/ext/openexr/CMakeLists.txt b/src/ext/openexr/CMakeLists.txt
+--- a/src/ext/openexr/CMakeLists.txt 1970-01-01 09:00:01.000000000 +0900
++++ b/src/ext/openexr/CMakeLists.txt 2018-08-31 21:44:56.490714484 +0900
+@@ -26,22 +26,4 @@
+ ${CMAKE_CURRENT_BINARY_DIR}/IlmBase/config
+ )
+
+-add_custom_target(CopyIlmBaseLibs
+- COMMAND ${CMAKE_COMMAND} -E copy_directory
+- ${CMAKE_CURRENT_BINARY_DIR}/IlmBase/Half/$
+- ${CMAKE_CURRENT_BINARY_DIR}/OpenEXR/IlmImf/$
+- COMMAND ${CMAKE_COMMAND} -E copy_directory
+- ${CMAKE_CURRENT_BINARY_DIR}/IlmBase/IlmThread/$
+- ${CMAKE_CURRENT_BINARY_DIR}/OpenEXR/IlmImf/$
+- COMMAND ${CMAKE_COMMAND} -E copy_directory
+- ${CMAKE_CURRENT_BINARY_DIR}/IlmBase/Iex/$
+- ${CMAKE_CURRENT_BINARY_DIR}/OpenEXR/IlmImf/$
+- COMMAND ${CMAKE_COMMAND} -E copy_directory
+- ${CMAKE_CURRENT_BINARY_DIR}/IlmBase/Imath/$
+- ${CMAKE_CURRENT_BINARY_DIR}/OpenEXR/IlmImf/$
+-)
+-add_dependencies(CopyIlmBaseLibs Iex Imath IlmThread Half)
+-
+ add_subdirectory(OpenEXR OpenEXR)
+-add_dependencies(b44ExpLogTable CopyIlmBaseLibs)
+-add_dependencies(dwaLookups CopyIlmBaseLibs)
diff --git a/pkgs/applications/graphics/photoflow/default.nix b/pkgs/applications/graphics/photoflow/default.nix
index ffef558e84dd816ad0b9e231b4968d8ce15699a7..6f3bf69889c53efeb8b72b1b811342431d84e75c 100644
--- a/pkgs/applications/graphics/photoflow/default.nix
+++ b/pkgs/applications/graphics/photoflow/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, gettext, glib, libxml2, pkgconfig, swig, automake, gobjectIntrospection, cmake, ninja, libtiff, libjpeg, fftw, exiv2, lensfun, gtkmm2, libraw, lcms2, libexif, vips, expat, pcre, pugixml }:
stdenv.mkDerivation {
- name = "photoflow-unstable-2018-03-06";
+ name = "photoflow-unstable-2018-08-28";
src = fetchFromGitHub {
owner = "aferrero2707";
repo = "PhotoFlow";
- rev = "f9bbea183fa02412d1d17075955d2284eeaf8174";
- sha256 = "1fsk7kdmlkd64wcswbxrl87aqwmzqak6p3s38ggxzx2h51fa7lmf";
+ rev = "df03f2538ddd232e693c307db4ab63eb5bdfea38";
+ sha256 = "08ybhv08h24y4li8wb4m89xgrz1szlwpksf6vjharp8cznn4y4x9";
};
nativeBuildInputs = [
@@ -50,6 +50,7 @@ stdenv.mkDerivation {
homepage = https://aferrero2707.github.io/PhotoFlow/;
license = licenses.gpl3Plus;
maintainers = [ maintainers.MtP ];
- platforms = platforms.all;
+ platforms = platforms.linux;
+ broken = stdenv.isAarch64;
};
}
diff --git a/pkgs/applications/graphics/qcomicbook/default.nix b/pkgs/applications/graphics/qcomicbook/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..d67c8ef9b02596f67cecfb832ae271c95ac025e9
--- /dev/null
+++ b/pkgs/applications/graphics/qcomicbook/default.nix
@@ -0,0 +1,43 @@
+{ stdenv, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools, qtx11extras, poppler_qt5 }:
+
+stdenv.mkDerivation rec {
+ name = "qcomicbook-${version}";
+ version = "0.9.1";
+
+ src = fetchFromGitHub {
+ owner = "stolowski";
+ repo = "QComicBook";
+ rev = version;
+ sha256 = "1b769lp6gfwds4jb2g7ymhdm9c06zg57zpyz3zpdb40w07zfsjzv";
+ };
+
+ nativeBuildInputs = [
+ cmake pkgconfig
+ ];
+
+ buildInputs = [
+ qtbase qttools qtx11extras poppler_qt5
+ ];
+
+ postInstall = ''
+ substituteInPlace $out/share/applications/*.desktop \
+ --replace "Exec=qcomicbook" "Exec=$out/bin/qcomicbook"
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/stolowski/QComicBook;
+ description = "Comic book reader in Qt5";
+ license = licenses.gpl2;
+
+ longDescription = ''
+ QComicBook is a viewer for PDF files and comic book archives containing
+ jpeg/png/xpm/gif/bmp images, which aims at convenience and simplicity.
+ Features include: automatic unpacking of archive files, full-screen mode, continuous
+ scrolling mode, double-pages viewing, manga mode, thumbnails view, page scaling,
+ mouse or keyboard navigation etc.
+ '';
+
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ greydot ];
+ };
+}
diff --git a/pkgs/applications/graphics/sane/backends/brscan4/default.nix b/pkgs/applications/graphics/sane/backends/brscan4/default.nix
index df44c132ed96587ae4363737446115bbe7c8c033..b431cf51b019e9d65b69fc2ab292b158554172e5 100644
--- a/pkgs/applications/graphics/sane/backends/brscan4/default.nix
+++ b/pkgs/applications/graphics/sane/backends/brscan4/default.nix
@@ -12,17 +12,17 @@ let
in stdenv.mkDerivation rec {
name = "brscan4-0.4.4-4";
src =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "http://download.brother.com/welcome/dlf006646/${name}.i386.deb";
sha256 = "13mhjbzf9nvpdzrc2s98684r7likg76zxs1wlz2h8w59fsqgx4k2";
}
- else if stdenv.system == "x86_64-linux" then
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://download.brother.com/welcome/dlf006645/${name}.amd64.deb";
sha256 = "0xy5px96y1saq9l80vwvfn6anr2q42qlxdhm6ci2a0diwib5q9fd";
}
- else throw "${name} is not supported on ${stdenv.system} (only i686-linux and x86_64 linux are supported)";
+ else throw "${name} is not supported on ${stdenv.hostPlatform.system} (only i686-linux and x86_64 linux are supported)";
unpackPhase = ''
ar x $src
diff --git a/pkgs/applications/graphics/unigine-valley/default.nix b/pkgs/applications/graphics/unigine-valley/default.nix
index f1adc6bd10eaf0c017a16f03a83c26530f9b259f..d29c9cd825983ea701dcb8ea5e95e5accf19b5a1 100644
--- a/pkgs/applications/graphics/unigine-valley/default.nix
+++ b/pkgs/applications/graphics/unigine-valley/default.nix
@@ -17,12 +17,12 @@
let
version = "1.0";
- arch = if stdenv.system == "x86_64-linux" then
+ arch = if stdenv.hostPlatform.system == "x86_64-linux" then
"x64"
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
"x86"
else
- throw "Unsupported platform ${stdenv.system}";
+ throw "Unsupported platform ${stdenv.hostPlatform.system}";
in
stdenv.mkDerivation rec {
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index f995abf283615f892eed97c34b894a41e4b81816..072b66e556386deb092b7a10533fe454f07c9ba1 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -113,6 +113,7 @@ let
kidentitymanagement = callPackage ./kidentitymanagement.nix {};
kig = callPackage ./kig.nix {};
kimap = callPackage ./kimap.nix {};
+ kitinerary = callPackage ./kitinerary.nix {};
kio-extras = callPackage ./kio-extras.nix {};
kldap = callPackage ./kldap.nix {};
kleopatra = callPackage ./kleopatra.nix {};
@@ -132,6 +133,7 @@ let
kpimtextedit = callPackage ./kpimtextedit.nix {};
ksmtp = callPackage ./ksmtp {};
kqtquickcharts = callPackage ./kqtquickcharts.nix {};
+ kpkpass = callPackage ./kpkpass.nix {};
krdc = callPackage ./krdc.nix {};
krfb = callPackage ./krfb.nix {};
kruler = callPackage ./kruler.nix {};
diff --git a/pkgs/applications/kde/dolphin.nix b/pkgs/applications/kde/dolphin.nix
index 6a4635c26fb341c6e742d36e8cf000347844dc67..dcc797743035f4199f52f802ff44e156f99fecbd 100644
--- a/pkgs/applications/kde/dolphin.nix
+++ b/pkgs/applications/kde/dolphin.nix
@@ -21,4 +21,8 @@ mkDerivation {
phonon solid
];
outputs = [ "out" "dev" ];
+ # We need the RPATH for linking, because the `libkdeinit5_dolphin.so` links
+ # private against its dependencies and without the correct RPATH, these
+ # dependencies are not found.
+ cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ];
}
diff --git a/pkgs/applications/kde/eventviews.nix b/pkgs/applications/kde/eventviews.nix
index cc1e83f6581d6d580bb0d778ac5b8302caa7576d..495491f6d3c1ae14e330da675cc26f8421c2d5a8 100644
--- a/pkgs/applications/kde/eventviews.nix
+++ b/pkgs/applications/kde/eventviews.nix
@@ -1,7 +1,8 @@
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
- akonadi, calendarsupport, kcalutils, kdiagram, libkdepim, qtbase, qttools,
+ akonadi, calendarsupport, kcalutils,
+ kdiagram, libkdepim, qtbase, qttools, kholidays
}:
mkDerivation {
@@ -12,7 +13,8 @@ mkDerivation {
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
- akonadi calendarsupport kcalutils kdiagram libkdepim qtbase qttools
+ akonadi calendarsupport kcalutils kdiagram
+ libkdepim qtbase qttools kholidays
];
outputs = [ "out" "dev" ];
}
diff --git a/pkgs/applications/kde/fetch.sh b/pkgs/applications/kde/fetch.sh
index 181bf54ce8cf8dea991b0b4be65cd13c862c87a3..c7cc617f163cb4bab0d5631f2cce92c744b3e9b3 100644
--- a/pkgs/applications/kde/fetch.sh
+++ b/pkgs/applications/kde/fetch.sh
@@ -1 +1 @@
-WGET_ARGS=( https://download.kde.org/stable/applications/18.04.3/ -A '*.tar.xz' )
+WGET_ARGS=( https://download.kde.org/stable/applications/18.08.0/ -A '*.tar.xz' )
diff --git a/pkgs/applications/kde/grantleetheme/grantlee-merge-theme-dirs.patch b/pkgs/applications/kde/grantleetheme/grantlee-merge-theme-dirs.patch
index fe8b15febf2eb5022f6a5de79df924446d682daa..ebb81248475fac7c897bc103d31a12dd3195705d 100644
--- a/pkgs/applications/kde/grantleetheme/grantlee-merge-theme-dirs.patch
+++ b/pkgs/applications/kde/grantleetheme/grantlee-merge-theme-dirs.patch
@@ -1,82 +1,8 @@
-Index: grantleetheme-17.04.0/src/grantleetheme_p.h
-===================================================================
---- grantleetheme-17.04.0.orig/src/grantleetheme_p.h
-+++ grantleetheme-17.04.0/src/grantleetheme_p.h
-@@ -47,7 +47,7 @@ public:
- QString description;
- QString name;
- QString dirName;
-- QString absolutePath;
-+ QStringList absolutePaths;
- QString author;
- QString email;
-
-Index: grantleetheme-17.04.0/src/grantleetheme.h
-===================================================================
---- grantleetheme-17.04.0.orig/src/grantleetheme.h
-+++ grantleetheme-17.04.0/src/grantleetheme.h
-@@ -50,11 +50,14 @@ public:
- QStringList displayExtraVariables() const;
- QString dirName() const;
- QString absolutePath() const;
-+ QStringList absolutePaths() const;
- QString author() const;
- QString authorEmail() const;
-
- QString render(const QString &templateName, const QVariantHash &data, const QByteArray &applicationDomain = QByteArray());
-
-+ void addThemeDir(const QString&);
-+
- static void addPluginPath(const QString &path);
-
- private:
-Index: grantleetheme-17.04.0/src/grantleethememanager.cpp
-===================================================================
---- grantleetheme-17.04.0.orig/src/grantleethememanager.cpp
-+++ grantleetheme-17.04.0/src/grantleethememanager.cpp
-@@ -142,25 +142,18 @@ public:
-
- for (const QString &directory : qAsConst(themesDirectories)) {
- QDirIterator dirIt(directory, QStringList(), QDir::AllDirs | QDir::NoDotAndDotDot);
-- QStringList alreadyLoadedThemeName;
- while (dirIt.hasNext()) {
- dirIt.next();
- const QString dirName = dirIt.fileName();
- GrantleeTheme::Theme theme = q->loadTheme(dirIt.filePath(), dirName, defaultDesktopFileName);
- if (theme.isValid()) {
- QString themeName = theme.name();
-- if (alreadyLoadedThemeName.contains(themeName)) {
-- int i = 2;
-- const QString originalName(theme.name());
-- while (alreadyLoadedThemeName.contains(themeName)) {
-- themeName = originalName + QStringLiteral(" (%1)").arg(i);
-- ++i;
-- }
-- theme.d->name = themeName;
-+ QMap::iterator i = themes.find(dirName);
-+ if (i != themes.end()) {
-+ i.value().addThemeDir(dirIt.filePath());
-+ } else {
-+ themes.insert(dirName, theme);
- }
-- alreadyLoadedThemeName << themeName;
-- themes.insert(dirName, theme);
-- //qDebug()<<" theme.name()"<addDir(directory);
-@@ -374,7 +367,7 @@ QString ThemeManager::pathFromThemes(con
- GrantleeTheme::Theme theme = loadTheme(dirIt.filePath(), dirName, defaultDesktopFileName);
- if (theme.isValid()) {
- if (dirName == themeName) {
-- return theme.absolutePath();
-+ return theme.absolutePaths().first();
- }
- }
- }
---- src/grantleetheme.cpp.orig 2017-12-22 16:11:39.863598126 +0300
-+++ ./src/grantleetheme.cpp 2017-12-22 16:16:14.045664607 +0300
-@@ -46,7 +46,7 @@ ThemePrivate::ThemePrivate(const ThemePr
+diff --git a/src/grantleetheme.cpp b/src/grantleetheme.cpp
+index 27d5bc8..8d43140 100644
+--- a/src/grantleetheme.cpp
++++ b/src/grantleetheme.cpp
+@@ -46,7 +46,7 @@ ThemePrivate::ThemePrivate(const ThemePrivate &other)
, description(other.description)
, name(other.name)
, dirName(other.dirName)
@@ -105,7 +31,7 @@ Index: grantleetheme-17.04.0/src/grantleethememanager.cpp
loader->setTheme(dirName);
if (!sEngine) {
-@@ -121,7 +124,7 @@ Theme::Theme(const QString &themePath, c
+@@ -121,7 +124,7 @@ Theme::Theme(const QString &themePath, const QString &dirName, const QString &de
KConfigGroup group(&config, QStringLiteral("Desktop Entry"));
if (group.isValid()) {
d->dirName = dirName;
@@ -137,7 +63,7 @@ Index: grantleetheme-17.04.0/src/grantleethememanager.cpp
}
QString Theme::author() const
-@@ -223,6 +231,13 @@ QString Theme::render(const QString &tem
+@@ -223,6 +231,13 @@ QString Theme::render(const QString &templateName, const QVariantHash &data, con
return result;
}
@@ -151,3 +77,79 @@ Index: grantleetheme-17.04.0/src/grantleethememanager.cpp
void Theme::addPluginPath(const QString &path)
{
if (!ThemePrivate::sEngine) {
+diff --git a/src/grantleetheme.h b/src/grantleetheme.h
+index a25c27b..be38299 100644
+--- a/src/grantleetheme.h
++++ b/src/grantleetheme.h
+@@ -48,11 +48,14 @@ public:
+ Q_REQUIRED_RESULT QStringList displayExtraVariables() const;
+ Q_REQUIRED_RESULT QString dirName() const;
+ Q_REQUIRED_RESULT QString absolutePath() const;
++ Q_REQUIRED_RESULT QStringList absolutePaths() const;
+ Q_REQUIRED_RESULT QString author() const;
+ Q_REQUIRED_RESULT QString authorEmail() const;
+
+ Q_REQUIRED_RESULT QString render(const QString &templateName, const QVariantHash &data, const QByteArray &applicationDomain = QByteArray());
+
++ void addThemeDir(const QString&);
++
+ static void addPluginPath(const QString &path);
+
+ private:
+diff --git a/src/grantleetheme_p.h b/src/grantleetheme_p.h
+index eb73dcb..00510e9 100644
+--- a/src/grantleetheme_p.h
++++ b/src/grantleetheme_p.h
+@@ -43,7 +43,7 @@ public:
+ QString description;
+ QString name;
+ QString dirName;
+- QString absolutePath;
++ QStringList absolutePaths;
+ QString author;
+ QString email;
+
+diff --git a/src/grantleethememanager.cpp b/src/grantleethememanager.cpp
+index 606d717..dc99041 100644
+--- a/src/grantleethememanager.cpp
++++ b/src/grantleethememanager.cpp
+@@ -125,25 +125,18 @@ public:
+
+ for (const QString &directory : qAsConst(themesDirectories)) {
+ QDirIterator dirIt(directory, QStringList(), QDir::AllDirs | QDir::NoDotAndDotDot);
+- QStringList alreadyLoadedThemeName;
+ while (dirIt.hasNext()) {
+ dirIt.next();
+ const QString dirName = dirIt.fileName();
+ GrantleeTheme::Theme theme = q->loadTheme(dirIt.filePath(), dirName, defaultDesktopFileName);
+ if (theme.isValid()) {
+ QString themeName = theme.name();
+- if (alreadyLoadedThemeName.contains(themeName)) {
+- int i = 2;
+- const QString originalName(theme.name());
+- while (alreadyLoadedThemeName.contains(themeName)) {
+- themeName = originalName + QStringLiteral(" (%1)").arg(i);
+- ++i;
+- }
+- theme.d->name = themeName;
++ QMap::iterator i = themes.find(dirName);
++ if (i != themes.end()) {
++ i.value().addThemeDir(dirIt.filePath());
++ } else {
++ themes.insert(dirName, theme);
+ }
+- alreadyLoadedThemeName << themeName;
+- themes.insert(dirName, theme);
+- //qDebug()<<" theme.name()"<addDir(directory);
+@@ -366,7 +359,7 @@ QString ThemeManager::pathFromThemes(const QString &themesRelativePath, const QS
+ GrantleeTheme::Theme theme = loadTheme(dirIt.filePath(), dirName, defaultDesktopFileName);
+ if (theme.isValid()) {
+ if (dirName == themeName) {
+- return theme.absolutePath();
++ return theme.absolutePaths().first();
+ }
+ }
+ }
diff --git a/pkgs/applications/kde/kdepim-addons.nix b/pkgs/applications/kde/kdepim-addons.nix
index 5be3d881b0c594220bf6181b2144baf5cf8307dd..75c1bf5be8bf569e8ec314adcc0ae5e69bcf7333 100644
--- a/pkgs/applications/kde/kdepim-addons.nix
+++ b/pkgs/applications/kde/kdepim-addons.nix
@@ -4,7 +4,8 @@
akonadi-import-wizard, akonadi-notes, calendarsupport, eventviews,
incidenceeditor, kcalcore, kcalutils, kconfig, kdbusaddons, kdeclarative,
kdepim-apps-libs, kholidays, ki18n, kmime, ktexteditor, ktnef, libgravatar,
- libksieve, mailcommon, mailimporter, messagelib, poppler, prison
+ libksieve, mailcommon, mailimporter, messagelib, poppler, prison, kpkpass,
+ kitinerary
}:
mkDerivation {
@@ -18,6 +19,7 @@ mkDerivation {
akonadi-import-wizard akonadi-notes calendarsupport eventviews
incidenceeditor kcalcore kcalutils kconfig kdbusaddons kdeclarative
kdepim-apps-libs kholidays ki18n kmime ktexteditor ktnef libgravatar
- libksieve mailcommon mailimporter messagelib poppler prison
+ libksieve mailcommon mailimporter messagelib poppler prison kpkpass
+ kitinerary
];
}
diff --git a/pkgs/applications/kde/kitinerary.nix b/pkgs/applications/kde/kitinerary.nix
new file mode 100644
index 0000000000000000000000000000000000000000..8112460549b4582a6c17c77a4a34bc3abe763857
--- /dev/null
+++ b/pkgs/applications/kde/kitinerary.nix
@@ -0,0 +1,19 @@
+{
+ mkDerivation, lib, extra-cmake-modules
+, qtbase, qtdeclarative, ki18n, kmime, kpkpass
+, poppler, kcontacts, kcalcore
+}:
+
+mkDerivation {
+ name = "kitinerary";
+ meta = {
+ license = with lib.licenses; [ lgpl21 ];
+ maintainers = [ lib.maintainers.bkchr ];
+ };
+ nativeBuildInputs = [ extra-cmake-modules ];
+ buildInputs = [
+ qtbase qtdeclarative ki18n kmime kpkpass poppler
+ kcontacts kcalcore
+ ];
+ outputs = [ "out" "dev" ];
+}
diff --git a/pkgs/applications/kde/kleopatra.nix b/pkgs/applications/kde/kleopatra.nix
index a19fef9c9edb7fdd5eaca93b6229d08a0179821e..c15c6eb78d69242556b0eadbb426962d5d94c2e6 100644
--- a/pkgs/applications/kde/kleopatra.nix
+++ b/pkgs/applications/kde/kleopatra.nix
@@ -2,7 +2,7 @@
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
boost, gpgme, kcmutils, kdbusaddons, kiconthemes, kitemmodels, kmime,
- knotifications, kwindowsystem, kxmlgui, libkleo
+ knotifications, kwindowsystem, kxmlgui, libkleo, kcrash
}:
mkDerivation {
@@ -14,6 +14,6 @@ mkDerivation {
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
boost gpgme kcmutils kdbusaddons kiconthemes kitemmodels kmime
- knotifications kwindowsystem kxmlgui libkleo
+ knotifications kwindowsystem kxmlgui libkleo kcrash
];
}
diff --git a/pkgs/applications/kde/kmailtransport.nix b/pkgs/applications/kde/kmailtransport.nix
index c4b7c0ab4327a545900c28c4584961cec32184dc..703f62aa72c021c079b8a56dae88b7b61c45e1a7 100644
--- a/pkgs/applications/kde/kmailtransport.nix
+++ b/pkgs/applications/kde/kmailtransport.nix
@@ -1,7 +1,9 @@
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
- akonadi, akonadi-mime, cyrus_sasl, kcmutils, ki18n, kio, kmime, kwallet, ksmtp
+ akonadi, akonadi-mime, cyrus_sasl, kcmutils,
+ ki18n, kio, kmime, kwallet, ksmtp, libkgapi,
+ kcalcore, kcontacts
}:
mkDerivation {
@@ -11,7 +13,7 @@ mkDerivation {
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
- buildInputs = [ akonadi kcmutils ki18n kio ksmtp ];
+ buildInputs = [ akonadi kcmutils ki18n kio ksmtp libkgapi kcalcore kcontacts ];
propagatedBuildInputs = [ akonadi-mime cyrus_sasl kmime kwallet ];
outputs = [ "out" "dev" ];
}
diff --git a/pkgs/applications/kde/kpkpass.nix b/pkgs/applications/kde/kpkpass.nix
new file mode 100644
index 0000000000000000000000000000000000000000..e9505a72e85e1cbaa5ae13e19ec1aefb74df7f92
--- /dev/null
+++ b/pkgs/applications/kde/kpkpass.nix
@@ -0,0 +1,15 @@
+{
+ mkDerivation, lib, extra-cmake-modules
+, qtbase, karchive, shared-mime-info
+}:
+
+mkDerivation {
+ name = "kpkpass";
+ meta = {
+ license = with lib.licenses; [ lgpl21 ];
+ maintainers = [ lib.maintainers.bkchr ];
+ };
+ nativeBuildInputs = [ extra-cmake-modules shared-mime-info ];
+ buildInputs = [ qtbase karchive ];
+ outputs = [ "out" "dev" ];
+}
diff --git a/pkgs/applications/kde/libkgapi.nix b/pkgs/applications/kde/libkgapi.nix
index 7ff3a1f04b09931902e376d6c41ecf31ece2bf47..998e65f28347fd8243e7d9b857ea0a7b7f2762a9 100644
--- a/pkgs/applications/kde/libkgapi.nix
+++ b/pkgs/applications/kde/libkgapi.nix
@@ -1,7 +1,8 @@
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
- qtwebengine, kio, kcalcore, kcontacts
+ qtwebengine, kio, kcalcore, kcontacts,
+ cyrus_sasl
}:
mkDerivation {
@@ -11,5 +12,5 @@ mkDerivation {
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
- buildInputs = [ qtwebengine kio kcalcore kcontacts ];
+ buildInputs = [ qtwebengine kio kcalcore kcontacts cyrus_sasl ];
}
diff --git a/pkgs/applications/kde/srcs.nix b/pkgs/applications/kde/srcs.nix
index f50afbcc371eb3247f1a0aae5fd1fd2baf298aa0..decf0f4a314f570cf312d743c2dd67aa07434b3d 100644
--- a/pkgs/applications/kde/srcs.nix
+++ b/pkgs/applications/kde/srcs.nix
@@ -3,1699 +3,1715 @@
{
akonadi = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akonadi-18.04.3.tar.xz";
- sha256 = "0x232a4rm8vz0vqs1v08p77zmcdjhjn9aicb3pvn4mqlgzz2q8x5";
- name = "akonadi-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akonadi-18.08.0.tar.xz";
+ sha256 = "06a1n84w4bfljyariyajzpn1sajkn4dwpsrr47pz38vf1m6dp7mz";
+ name = "akonadi-18.08.0.tar.xz";
};
};
akonadi-calendar = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akonadi-calendar-18.04.3.tar.xz";
- sha256 = "1jaigydsk1albvgqblrj0chxqzgpg3nmxihy7yf5wdmnkrkzpqlm";
- name = "akonadi-calendar-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akonadi-calendar-18.08.0.tar.xz";
+ sha256 = "1qlqvsv4gs50v9dd3nbw8wyq0vgvxvslhnk1hnqpyvh0skcwslh5";
+ name = "akonadi-calendar-18.08.0.tar.xz";
};
};
akonadi-calendar-tools = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akonadi-calendar-tools-18.04.3.tar.xz";
- sha256 = "06azzv80gisiiq1g8a1lm0hmadck38zsvylz8mwwir5s8nah9v09";
- name = "akonadi-calendar-tools-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akonadi-calendar-tools-18.08.0.tar.xz";
+ sha256 = "1d5kr7nxfy7y9ybi4qnfbfci5kc44ya916j9wgb18r6rfdhdwsxr";
+ name = "akonadi-calendar-tools-18.08.0.tar.xz";
};
};
akonadiconsole = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akonadiconsole-18.04.3.tar.xz";
- sha256 = "12yl23hdyyj3k5b59nkmj1ykr79srx901x16jakwqzx4n07nc30x";
- name = "akonadiconsole-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akonadiconsole-18.08.0.tar.xz";
+ sha256 = "0qrwgjdmqa5jj8vcbs6n733v462sxnf4jcmh2khjddf2h5na6q86";
+ name = "akonadiconsole-18.08.0.tar.xz";
};
};
akonadi-contacts = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akonadi-contacts-18.04.3.tar.xz";
- sha256 = "0g6vq1k95lvzljl54zafgcg3wmjayn49ihzpyyyxv1dxn7nfdngq";
- name = "akonadi-contacts-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akonadi-contacts-18.08.0.tar.xz";
+ sha256 = "0jqs0llpxq34j4glgzsfifk5yd24x6smky550s66bjzkyg3j2s2m";
+ name = "akonadi-contacts-18.08.0.tar.xz";
};
};
akonadi-import-wizard = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akonadi-import-wizard-18.04.3.tar.xz";
- sha256 = "0by9h35gag4ygxna661gg72hmnng235dhc2q1pl6x5mb5gkpnwmp";
- name = "akonadi-import-wizard-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akonadi-import-wizard-18.08.0.tar.xz";
+ sha256 = "00my9ja8clz758s3x2jjlsxlpc8zfs8vlq4vh9i2vmsacqwrfy24";
+ name = "akonadi-import-wizard-18.08.0.tar.xz";
};
};
akonadi-mime = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akonadi-mime-18.04.3.tar.xz";
- sha256 = "1kk5nxh0dn1rmi1qasqf6kpa9ihg0lkajkj6r7widkh14ssz8sn0";
- name = "akonadi-mime-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akonadi-mime-18.08.0.tar.xz";
+ sha256 = "0jj9l1zjh72crj8gfifpn73c5xiyycjgv0cm1qalf370cd1sdx80";
+ name = "akonadi-mime-18.08.0.tar.xz";
};
};
akonadi-notes = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akonadi-notes-18.04.3.tar.xz";
- sha256 = "0dir0mlch002l9wx6cgzkywh9nkjgvwm09gzpiz9h9d62q8a5wzc";
- name = "akonadi-notes-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akonadi-notes-18.08.0.tar.xz";
+ sha256 = "0x2v8ylnli29ld6y9vqj18a4bph4zm34zymdmrp3swll1j6xib7q";
+ name = "akonadi-notes-18.08.0.tar.xz";
};
};
akonadi-search = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akonadi-search-18.04.3.tar.xz";
- sha256 = "15a94g4zrq021zaabsi97lcb5lrm9nar9wjakga8xgy9jf48fq23";
- name = "akonadi-search-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akonadi-search-18.08.0.tar.xz";
+ sha256 = "0fsn7mm1h9m9h3zm2z2fdghbw7m6wdbgfhg7b4iish2br375qh1s";
+ name = "akonadi-search-18.08.0.tar.xz";
};
};
akregator = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/akregator-18.04.3.tar.xz";
- sha256 = "0xhsrx0yf4kggi4cjrg5g3if5n1m3injqfy9zyy891kzgfsybnaj";
- name = "akregator-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/akregator-18.08.0.tar.xz";
+ sha256 = "1s044m9l8z6safqcarjplmlksappjkx7iry3k8s2p6ld4w377w3c";
+ name = "akregator-18.08.0.tar.xz";
};
};
analitza = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/analitza-18.04.3.tar.xz";
- sha256 = "1yva0j9c8wagzp68qi4hg7lniigz1b61jr6jayw98lnkdvsg7y5f";
- name = "analitza-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/analitza-18.08.0.tar.xz";
+ sha256 = "1sqr94mbblqry9a1nkmg6py2w0p1wlnbim99kadmp56ypf483rw7";
+ name = "analitza-18.08.0.tar.xz";
};
};
ark = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ark-18.04.3.tar.xz";
- sha256 = "02dv1mv8sim2qb1xm7nni5z6nx4jsdihagmj2y5v48nlvf229k75";
- name = "ark-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ark-18.08.0.tar.xz";
+ sha256 = "0dp7lrc0nqwwshcsi1408lqyycqhxgx18bmnf1sq7ysh6d1w6i75";
+ name = "ark-18.08.0.tar.xz";
};
};
artikulate = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/artikulate-18.04.3.tar.xz";
- sha256 = "1dvinnbcm6lgjsjjsv9gl1s99xgcgpld10v3nn32ak8h7v89in9m";
- name = "artikulate-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/artikulate-18.08.0.tar.xz";
+ sha256 = "12bkfxpaz352823c639q3bal9j6fcaamypv2ql08rn44h9zdjvk8";
+ name = "artikulate-18.08.0.tar.xz";
};
};
audiocd-kio = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/audiocd-kio-18.04.3.tar.xz";
- sha256 = "08kzy6nj14qwm3gd7m6idn3s34i7bx5galhbish0xqmg6wnfxpzl";
- name = "audiocd-kio-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/audiocd-kio-18.08.0.tar.xz";
+ sha256 = "0mh1cfz0dn28i9hqyjmz2cm50qkxzj0qkrvar59p03i2r8vqybf8";
+ name = "audiocd-kio-18.08.0.tar.xz";
};
};
baloo-widgets = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/baloo-widgets-18.04.3.tar.xz";
- sha256 = "01qx2wyiaa00ixyfy0mak8xz7cnpqrxnxn5hzhrf8v9zar1d04ap";
- name = "baloo-widgets-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/baloo-widgets-18.08.0.tar.xz";
+ sha256 = "026lm8m7bp8q1akwgfvzsyyam7jknndif3vmij4x5ra7yy5xa0s9";
+ name = "baloo-widgets-18.08.0.tar.xz";
};
};
blinken = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/blinken-18.04.3.tar.xz";
- sha256 = "0rv9v678cqhnamz46996pwgw9d4nwa2kg92d2mpvyd790ax5fdrz";
- name = "blinken-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/blinken-18.08.0.tar.xz";
+ sha256 = "0ivpv27vgzchm0r8zlb02w6l0a8xsi7q173660bjv1ynwalgn3bm";
+ name = "blinken-18.08.0.tar.xz";
};
};
bomber = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/bomber-18.04.3.tar.xz";
- sha256 = "0a7l103ddgn648ijlwf1fgvvma7mg0vz7pqdy50k1vm3gkkvqh03";
- name = "bomber-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/bomber-18.08.0.tar.xz";
+ sha256 = "0z83hkvs7h0pg91sczmvkkn7yc8xfch5hl7l25b7kac4c9qznzix";
+ name = "bomber-18.08.0.tar.xz";
};
};
bovo = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/bovo-18.04.3.tar.xz";
- sha256 = "047f4k6h3z7yl4f5ggs3jlrcpgp5li4kgkssa2vcy93jsgb4a8wz";
- name = "bovo-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/bovo-18.08.0.tar.xz";
+ sha256 = "0bbkm0c801rcvk8z0idbasn1m7cdd2mpbpb1ap9ghgv2vjbln7va";
+ name = "bovo-18.08.0.tar.xz";
};
};
calendarsupport = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/calendarsupport-18.04.3.tar.xz";
- sha256 = "14rasrmxsx4d3ap4ifihfd8nm9bydng753xi59xkx86fvxb3qg5r";
- name = "calendarsupport-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/calendarsupport-18.08.0.tar.xz";
+ sha256 = "0ps4963c2wbmlwp7aks16jw2pz74fqlxarhsnjj3r339575inzw2";
+ name = "calendarsupport-18.08.0.tar.xz";
};
};
cantor = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/cantor-18.04.3.tar.xz";
- sha256 = "0ix8vcjrdw1bssmhhc5a0vp8ywfrznhqpfcxvs9d1p4bxl48bblc";
- name = "cantor-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/cantor-18.08.0.tar.xz";
+ sha256 = "08sqr1nxn9a24z4jicmjn9zn64xv3yyy054rzblr2h2hi3n6fqdy";
+ name = "cantor-18.08.0.tar.xz";
};
};
cervisia = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/cervisia-18.04.3.tar.xz";
- sha256 = "0lbcdjjpr56vq14m8zk3fzna6mcz74dqzlkmc1zxn6gijjv89zqf";
- name = "cervisia-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/cervisia-18.08.0.tar.xz";
+ sha256 = "1avc18vv2lb27w5ybiajsr65c65zpvbv43ihz4gcjv7awqf754w7";
+ name = "cervisia-18.08.0.tar.xz";
};
};
dolphin = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/dolphin-18.04.3.tar.xz";
- sha256 = "1im39knramhxdpw7bsnm2f533iz81fb47lac99vq9jc3c9zn7za1";
- name = "dolphin-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/dolphin-18.08.0.tar.xz";
+ sha256 = "1r3g3qssawhav3dx9a9qdd7dqcjj1ynm6ravj5wx39h4qdflrysy";
+ name = "dolphin-18.08.0.tar.xz";
};
};
dolphin-plugins = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/dolphin-plugins-18.04.3.tar.xz";
- sha256 = "1fccbnr1b05sbqmfz6v09sq1v8dvbkw2jzyk8nqd9cmc2zbymwga";
- name = "dolphin-plugins-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/dolphin-plugins-18.08.0.tar.xz";
+ sha256 = "1j96bkc3xah4ca3a9asplpf152dp234r2bzs5wg25b3aw7zp5siv";
+ name = "dolphin-plugins-18.08.0.tar.xz";
};
};
dragon = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/dragon-18.04.3.tar.xz";
- sha256 = "1dhzbyk87xd0bm89b1rs540rrixh16z9pm26003xl640imwbwy57";
- name = "dragon-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/dragon-18.08.0.tar.xz";
+ sha256 = "020vnnzd7crvrv8dbcf41h04hpr2ayrfk6ayxhxpazrzic1sxxx6";
+ name = "dragon-18.08.0.tar.xz";
};
};
eventviews = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/eventviews-18.04.3.tar.xz";
- sha256 = "02v57ini7qi9y5ijljhxfsq2b5hqg9jdbgihdkq8vy2dlcg30mfd";
- name = "eventviews-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/eventviews-18.08.0.tar.xz";
+ sha256 = "1ca499dzqsy2n6c0s0vrwvjykc4vd5s4m2bkn0vdg2dbyyx9fncj";
+ name = "eventviews-18.08.0.tar.xz";
};
};
ffmpegthumbs = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ffmpegthumbs-18.04.3.tar.xz";
- sha256 = "0wj403wahlirr2nv380z2s4fcgny446frv5xdxlqgg3b176ydcp6";
- name = "ffmpegthumbs-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ffmpegthumbs-18.08.0.tar.xz";
+ sha256 = "1rbfbwnyync4j15qzdhn47gksr6jm97pgkld2x3p564gi98w0vrn";
+ name = "ffmpegthumbs-18.08.0.tar.xz";
};
};
filelight = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/filelight-18.04.3.tar.xz";
- sha256 = "1m02si6pz6rb8arjd50s277xnj5f8alkl8r3p8f4cgmx2gs3rymn";
- name = "filelight-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/filelight-18.08.0.tar.xz";
+ sha256 = "1wx6q0gq4zlg95a93sg7zqkbaka1pcn99jsjkdncq1z4lfphppk9";
+ name = "filelight-18.08.0.tar.xz";
};
};
granatier = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/granatier-18.04.3.tar.xz";
- sha256 = "0i7f4pbj43vcav9ncxznddhvy0fph0z8xv3hb1wf5rncfxbc0kh0";
- name = "granatier-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/granatier-18.08.0.tar.xz";
+ sha256 = "06nzgpwvgvbh6hf5yxmcxigh3n72qa0mbiv7k56157yyvxigk62q";
+ name = "granatier-18.08.0.tar.xz";
};
};
grantlee-editor = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/grantlee-editor-18.04.3.tar.xz";
- sha256 = "0796ihix37igawic7bpva1ca3hzhcz89k7aqd3pwcz220ky6y0fy";
- name = "grantlee-editor-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/grantlee-editor-18.08.0.tar.xz";
+ sha256 = "06m2n5rcgp63xgnr5jdzly7fda8zx5r3ki07ldxz1xivd985zmfp";
+ name = "grantlee-editor-18.08.0.tar.xz";
};
};
grantleetheme = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/grantleetheme-18.04.3.tar.xz";
- sha256 = "1n69wmxs9bsa37swxv8gl1ji6w696mxpg9g5z945il7ai6zwi8av";
- name = "grantleetheme-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/grantleetheme-18.08.0.tar.xz";
+ sha256 = "1mk80hfra4nmrcb0ff3n7l33pbw6j5lypb3ip7g4c1p8qik6imfv";
+ name = "grantleetheme-18.08.0.tar.xz";
};
};
gwenview = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/gwenview-18.04.3.tar.xz";
- sha256 = "187l75ppnsnl7bi9p6zyxg95qm3syhpmga6zl22ky0g9mqz6s3nx";
- name = "gwenview-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/gwenview-18.08.0.tar.xz";
+ sha256 = "1nv9a7pj0h2m3wxzy03jw3pi5ps3xqvq9sx7mblq8p4klga2pcnl";
+ name = "gwenview-18.08.0.tar.xz";
};
};
incidenceeditor = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/incidenceeditor-18.04.3.tar.xz";
- sha256 = "0zwrr6rgvardpxr5czh1jwrb2wvnxyfk3psgk6marr2sg5nm10km";
- name = "incidenceeditor-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/incidenceeditor-18.08.0.tar.xz";
+ sha256 = "1s88i1l30b30an8lwc8sdlzfm1cvmb9n5786bs9y0jfgw01wdl7j";
+ name = "incidenceeditor-18.08.0.tar.xz";
};
};
juk = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/juk-18.04.3.tar.xz";
- sha256 = "1zbh03mckj32003padxzlghpc6dqry8z72aflv873if986wzw0dk";
- name = "juk-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/juk-18.08.0.tar.xz";
+ sha256 = "1lzw9ih4771vdxqngc0ja57v9y6wlgf8dbmnjax74ryi232py1d9";
+ name = "juk-18.08.0.tar.xz";
};
};
k3b = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/k3b-18.04.3.tar.xz";
- sha256 = "0wh0l7f9ngyq40p506pmnb3a8irb7wzz8pcncy6br3lcgg9yx0wx";
- name = "k3b-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/k3b-18.08.0.tar.xz";
+ sha256 = "1lm9140xc5mq1szyc4vkms6b3qhl4b3yn74kqp942b8k9djn17md";
+ name = "k3b-18.08.0.tar.xz";
};
};
kaccounts-integration = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kaccounts-integration-18.04.3.tar.xz";
- sha256 = "0883l8dzs21h8y2xw8vxnln3m4fwp01ifncmwb7vil9yllf6c6jw";
- name = "kaccounts-integration-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kaccounts-integration-18.08.0.tar.xz";
+ sha256 = "0wvqhf9br8nqqacyn6j4k2323w6nixkfzlajkmx872d31d7aqf11";
+ name = "kaccounts-integration-18.08.0.tar.xz";
};
};
kaccounts-providers = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kaccounts-providers-18.04.3.tar.xz";
- sha256 = "0nvwdmmz3lajaj0p624mqi0mpnqv23npk2sbcxhc504gp25bki9i";
- name = "kaccounts-providers-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kaccounts-providers-18.08.0.tar.xz";
+ sha256 = "1zxyqwdrf9pp5b1vnd8p4wz21ciavffjxd68vcjjyj8bba30c51l";
+ name = "kaccounts-providers-18.08.0.tar.xz";
};
};
kaddressbook = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kaddressbook-18.04.3.tar.xz";
- sha256 = "02rqcmbcvl4brzy33vljppad3k50hxsm7g0j96wjrlaj06p2rmfl";
- name = "kaddressbook-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kaddressbook-18.08.0.tar.xz";
+ sha256 = "1wgqqnikv9qyrb4nvkm7h91r1iqfkmbpdp67lcw4jkglqghnn2qc";
+ name = "kaddressbook-18.08.0.tar.xz";
};
};
kajongg = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kajongg-18.04.3.tar.xz";
- sha256 = "1f16w02sqzsmjcfvqijgrvgpjmym7nf9hgc1rxldc1hwi772kcgq";
- name = "kajongg-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kajongg-18.08.0.tar.xz";
+ sha256 = "0dfrwzq1p9ikff52qi50ckb769pfij7gzn61r6pdkkfjgy86364y";
+ name = "kajongg-18.08.0.tar.xz";
};
};
kalarm = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kalarm-18.04.3.tar.xz";
- sha256 = "1dlf25p66kcw55vk0xmrcd900ar2wxn9416qqji711n6wnx3xqrf";
- name = "kalarm-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kalarm-18.08.0.tar.xz";
+ sha256 = "0415yq61q700slmm6vskd92pc2sp1027flghgans80i29617zgaq";
+ name = "kalarm-18.08.0.tar.xz";
};
};
kalarmcal = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kalarmcal-18.04.3.tar.xz";
- sha256 = "1blzbccdk3zf5fgy4n5l59c5cagy1v7rjs53npjxgmdng7lxb8kl";
- name = "kalarmcal-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kalarmcal-18.08.0.tar.xz";
+ sha256 = "0ss56dy451lbbq872sarqcyapf4g6kgw78s88hgs7z5mlyj8xnll";
+ name = "kalarmcal-18.08.0.tar.xz";
};
};
kalgebra = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kalgebra-18.04.3.tar.xz";
- sha256 = "0x1a24k2p02s755kmpv0zanfv7ys50kkwyvc68g76b9z1yjb02dc";
- name = "kalgebra-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kalgebra-18.08.0.tar.xz";
+ sha256 = "0fv4v7xnspqjbc7x6n2gcyjssm15apszbvj4gs1w2lwlbbr3i224";
+ name = "kalgebra-18.08.0.tar.xz";
};
};
kalzium = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kalzium-18.04.3.tar.xz";
- sha256 = "1lqw77xcxjkc3a1g046i1rdb0bk29p0kcnqfyjkm03kp8819gbgg";
- name = "kalzium-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kalzium-18.08.0.tar.xz";
+ sha256 = "0bjpiir1xxwvhs4xgnvbhphw24iif9g4kj9zg61bqcvq5zxf821x";
+ name = "kalzium-18.08.0.tar.xz";
};
};
kamera = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kamera-18.04.3.tar.xz";
- sha256 = "11b2b3fgi73f2vw97qdvh8kk92bcn7h513plcvpiv2vw1qh6bwm7";
- name = "kamera-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kamera-18.08.0.tar.xz";
+ sha256 = "169vsxnpcgxws27hcap2l5wjbfyxxi30321c8r3p8fm2klvbc8nw";
+ name = "kamera-18.08.0.tar.xz";
};
};
kamoso = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kamoso-18.04.3.tar.xz";
- sha256 = "0vjhdkx874v9gzm7yla7pxwiphdrf8aj21641xslf5qn4kcx55p1";
- name = "kamoso-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kamoso-18.08.0.tar.xz";
+ sha256 = "1a8azx7rdbzznh9qwzg0x6w50vb5bc6cmd442j2hhdwkl15dqpwd";
+ name = "kamoso-18.08.0.tar.xz";
};
};
kanagram = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kanagram-18.04.3.tar.xz";
- sha256 = "033mzwirfc7p7xphvyh9h135pq17rqnz5vw8d7rn893z1lwzm8xj";
- name = "kanagram-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kanagram-18.08.0.tar.xz";
+ sha256 = "02v3xlkfphkk86y8yrw10lq7f4wc7gmh02ms2w00aqrllkpja4vn";
+ name = "kanagram-18.08.0.tar.xz";
};
};
kapman = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kapman-18.04.3.tar.xz";
- sha256 = "0w6xcp5lqzlcmgyvr76mgnbnvhabzhmjmlkab6zfgrrph0w4lnba";
- name = "kapman-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kapman-18.08.0.tar.xz";
+ sha256 = "03fhxn8zckidkab56fzgwai0d1ac5k3il32w881gq5z012ms013h";
+ name = "kapman-18.08.0.tar.xz";
};
};
kapptemplate = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kapptemplate-18.04.3.tar.xz";
- sha256 = "0gsv6mam7jmix7wx7rq3xyqs1c0c15kcpbcj1ps6qzbf33w73crl";
- name = "kapptemplate-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kapptemplate-18.08.0.tar.xz";
+ sha256 = "10fyvwxf6xmn8jdc4p3m3jpb8ykaga1jmwx2hzhf8c6a3rrcxvvb";
+ name = "kapptemplate-18.08.0.tar.xz";
};
};
kate = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kate-18.04.3.tar.xz";
- sha256 = "1w1bn0qbj8hxkh9cn6zx2h6hm82y07czzzvjm6gak90wi23lbb74";
- name = "kate-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kate-18.08.0.tar.xz";
+ sha256 = "1licprflzcsrfap7klr1ia2kl2z2cp16zgznphrqkkn9n6x7xz67";
+ name = "kate-18.08.0.tar.xz";
};
};
katomic = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/katomic-18.04.3.tar.xz";
- sha256 = "0928xwbm7c3d0jc5zg5nkdkl7kfrsn441i40b7z2np4v13y7bf1i";
- name = "katomic-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/katomic-18.08.0.tar.xz";
+ sha256 = "07d9irgqrawll18fi3b2mrjj416gpkn43bsriifkraqf8yrn3m4s";
+ name = "katomic-18.08.0.tar.xz";
};
};
kbackup = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kbackup-18.04.3.tar.xz";
- sha256 = "0m4dxrlm5807azm7bvy06r0nj1pfbfy31gkl37m7pg4z9svx5hp9";
- name = "kbackup-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kbackup-18.08.0.tar.xz";
+ sha256 = "14nmk7dwrmkfv7kz4r64vzy46n48g3l1iqj0937qnpbqk12yvak9";
+ name = "kbackup-18.08.0.tar.xz";
};
};
kblackbox = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kblackbox-18.04.3.tar.xz";
- sha256 = "08sm7h7d16l79isqi2hwr54dsnv3lbikj1zcyq0bwngkyqr49cmh";
- name = "kblackbox-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kblackbox-18.08.0.tar.xz";
+ sha256 = "0nd4nsx7yyiy1g1g4v0gaw0m6r3kb07gnn8236bch6xxy9xcdzhb";
+ name = "kblackbox-18.08.0.tar.xz";
};
};
kblocks = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kblocks-18.04.3.tar.xz";
- sha256 = "1bf4d8s9xm28qn4qv2i18gwh25fi0f06h03blk7bjw9hvr7wfaja";
- name = "kblocks-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kblocks-18.08.0.tar.xz";
+ sha256 = "1pnxzfp3bd089bjbdsi0iwjpw60p36lb110yb61cv0vb54g1sia1";
+ name = "kblocks-18.08.0.tar.xz";
};
};
kblog = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kblog-18.04.3.tar.xz";
- sha256 = "1fh96i9y45abp4cp2bjhkldxax9qjgsxb14ahqivp2qam41rpnnz";
- name = "kblog-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kblog-18.08.0.tar.xz";
+ sha256 = "00q7266lx29bfgzhfmb192l8h3qwgpj3yyfc0lykkbhjf6d9w783";
+ name = "kblog-18.08.0.tar.xz";
};
};
kbounce = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kbounce-18.04.3.tar.xz";
- sha256 = "025nfdnv8ssmln0q6lwkd8ppflv2cimd1x8yf6kqh5jd5ynx73vh";
- name = "kbounce-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kbounce-18.08.0.tar.xz";
+ sha256 = "0x07lxqip9l2k9mdpan03yh17ammkd1f242l2p3qq3j1s71bpznm";
+ name = "kbounce-18.08.0.tar.xz";
};
};
kbreakout = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kbreakout-18.04.3.tar.xz";
- sha256 = "11pbd76h5cll7kcb7dcnhckmknj5gm0igq0w1dx2pxdpna1i4p6z";
- name = "kbreakout-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kbreakout-18.08.0.tar.xz";
+ sha256 = "1jrix92p48zcpgwvfxn484bw1k8ynfacm4iww14splx2d9skj489";
+ name = "kbreakout-18.08.0.tar.xz";
};
};
kbruch = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kbruch-18.04.3.tar.xz";
- sha256 = "0d888539cmhxrcyy90iqw83aa8x1w2v5r351xncqw34gfq1k1nj3";
- name = "kbruch-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kbruch-18.08.0.tar.xz";
+ sha256 = "1gkij27hl847bc2jdnjqvigncdmb11spj2rsy825rsnpiqxbqv8f";
+ name = "kbruch-18.08.0.tar.xz";
};
};
kcachegrind = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kcachegrind-18.04.3.tar.xz";
- sha256 = "1zdcarqgb1yxql6z3hmnmam2abg44r3z7sy33y9yqa9wimzq4w13";
- name = "kcachegrind-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kcachegrind-18.08.0.tar.xz";
+ sha256 = "13nqcxh21apxpzg51alsgn34hps21nr7aqyh60kd4fbmmsxrqll0";
+ name = "kcachegrind-18.08.0.tar.xz";
};
};
kcalc = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kcalc-18.04.3.tar.xz";
- sha256 = "02kadbv874azlqm1i52y680iyp29jg683cjnjw3bgh1p6la7ssrx";
- name = "kcalc-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kcalc-18.08.0.tar.xz";
+ sha256 = "04bdbdyc9lky6i0dkm6w9f2k3gvr9zq5b9yc6qhl4smdiivlqjb6";
+ name = "kcalc-18.08.0.tar.xz";
};
};
kcalcore = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kcalcore-18.04.3.tar.xz";
- sha256 = "1l2g8m35dahmpwnrhmq1dr7iqcdw9pg51v4q5a39ashcsvv1bpzj";
- name = "kcalcore-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kcalcore-18.08.0.tar.xz";
+ sha256 = "0sdzx0ygq89np2cj22v06m9j00nwbqn97rm43nffgixwvrlf1wy5";
+ name = "kcalcore-18.08.0.tar.xz";
};
};
kcalutils = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kcalutils-18.04.3.tar.xz";
- sha256 = "1mycr1nhy2b2nk2izka8ck3sfyblfjqqjqn40g3lhssn4ps2z2jb";
- name = "kcalutils-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kcalutils-18.08.0.tar.xz";
+ sha256 = "12s2anmwi3q95kjl197jis90vi5gzpxs0b4xj4m6n4lzmnyjvfxl";
+ name = "kcalutils-18.08.0.tar.xz";
};
};
kcharselect = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kcharselect-18.04.3.tar.xz";
- sha256 = "1yqrsiq68kzx4incb5imra7s49byln85bq047w6r7fmp2ypyxklm";
- name = "kcharselect-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kcharselect-18.08.0.tar.xz";
+ sha256 = "1gfzzzk5admdclw75qhnsf3271p2lr0fgqzxvclcxppwmv5j56aq";
+ name = "kcharselect-18.08.0.tar.xz";
};
};
kcolorchooser = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kcolorchooser-18.04.3.tar.xz";
- sha256 = "1ilgsgy5zdfmx8bgdsf9s9wxpl3pmgjb6jh96sy1gca0d4kbkrnv";
- name = "kcolorchooser-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kcolorchooser-18.08.0.tar.xz";
+ sha256 = "1sxlx6cnpm0yfbrbk1pqaf0lsf1mgzdnkszr30hwz6z5lvvzj73l";
+ name = "kcolorchooser-18.08.0.tar.xz";
};
};
kcontacts = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kcontacts-18.04.3.tar.xz";
- sha256 = "0rwh1p98hx3ybf4gxxp1dkgkrhmzli23fi9hk8m9k2mgr97yiqni";
- name = "kcontacts-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kcontacts-18.08.0.tar.xz";
+ sha256 = "0cil96cd383gvqa2dw1lhaw3vi3m04y4rpjqmiapzwnn4ck0v1ii";
+ name = "kcontacts-18.08.0.tar.xz";
};
};
kcron = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kcron-18.04.3.tar.xz";
- sha256 = "0m0pna8hqkk2ab78yxchyc3pjzgrb37ldkhwa5r2zwg2n9y4k0xq";
- name = "kcron-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kcron-18.08.0.tar.xz";
+ sha256 = "14lkaz1b6hnpwvxnnx3mgv3fg86vm1g45fggfx25x6x72kiihhzq";
+ name = "kcron-18.08.0.tar.xz";
};
};
kdav = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdav-18.04.3.tar.xz";
- sha256 = "0m987fbbnm6xwagsmsn4x6v5zm4b7d0jzab5gi5vw97qkx9rs82h";
- name = "kdav-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdav-18.08.0.tar.xz";
+ sha256 = "13jwc4623f9mx64i7fb3ha5gwbqgfd54dirbvcyyglrzipxmgja1";
+ name = "kdav-18.08.0.tar.xz";
};
};
kdebugsettings = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdebugsettings-18.04.3.tar.xz";
- sha256 = "0c7fgfp31kj5mar2pmjnfhxb16f33xhp22iwk1vkagy07bl145r9";
- name = "kdebugsettings-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdebugsettings-18.08.0.tar.xz";
+ sha256 = "1ddqcfq2icsk2xmfr02jawdgxyydhx4yyhrfd7pk8cfw66rm23br";
+ name = "kdebugsettings-18.08.0.tar.xz";
};
};
kde-dev-scripts = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kde-dev-scripts-18.04.3.tar.xz";
- sha256 = "0azf5xcnwzyqc5bwxwjnakf7vln74faxq40myhj12hhhg5vckz06";
- name = "kde-dev-scripts-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kde-dev-scripts-18.08.0.tar.xz";
+ sha256 = "1glnm91wn3xdd6zqqy2p178f05z5wn3gr1i6jyqb0zkl8ansy3yi";
+ name = "kde-dev-scripts-18.08.0.tar.xz";
};
};
kde-dev-utils = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kde-dev-utils-18.04.3.tar.xz";
- sha256 = "172479qp82vrlnlqnbbl01xkap6v0gva78qcbzmizww0b085q4vk";
- name = "kde-dev-utils-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kde-dev-utils-18.08.0.tar.xz";
+ sha256 = "1dk510kgjgvycdyzr5mwq9z1b3xr8hlpm4ahfwlfn299gl563fwf";
+ name = "kde-dev-utils-18.08.0.tar.xz";
};
};
kdeedu-data = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdeedu-data-18.04.3.tar.xz";
- sha256 = "0qg79cv5lkpswhywcgixbmyqfbviwb3yj3nc1iwsrwn4gqff082g";
- name = "kdeedu-data-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdeedu-data-18.08.0.tar.xz";
+ sha256 = "1ph3bw4xgmgh28j9vnj9v1amgisy3f44whpwwhzin9zgzz0cw3gw";
+ name = "kdeedu-data-18.08.0.tar.xz";
};
};
kdegraphics-mobipocket = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdegraphics-mobipocket-18.04.3.tar.xz";
- sha256 = "06c8vn5ga7xkxzsashri86ic14dcpa15c79kb57p4qm168afm8vi";
- name = "kdegraphics-mobipocket-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdegraphics-mobipocket-18.08.0.tar.xz";
+ sha256 = "0p3bci612qbqnbps4g4yb2kd1rs6kx2ppcls6vpfb035c28ygf7a";
+ name = "kdegraphics-mobipocket-18.08.0.tar.xz";
};
};
kdegraphics-thumbnailers = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdegraphics-thumbnailers-18.04.3.tar.xz";
- sha256 = "1p8dfmh7hi3sxlqpahkcpl06x0flf94jam85l3n8r8f00kb9rq5a";
- name = "kdegraphics-thumbnailers-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdegraphics-thumbnailers-18.08.0.tar.xz";
+ sha256 = "0dwfphz70y0g43a9nxfda78qwsv7y4llx1f51x6n8jl64kpxnijw";
+ name = "kdegraphics-thumbnailers-18.08.0.tar.xz";
};
};
kdenetwork-filesharing = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdenetwork-filesharing-18.04.3.tar.xz";
- sha256 = "1wg2c4a4p3h3i6pqisrjhicllzm3vxd3qp1sxvny54algywqyz66";
- name = "kdenetwork-filesharing-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdenetwork-filesharing-18.08.0.tar.xz";
+ sha256 = "0l5f9ffwsk0s9r87kid9k1a7j2v4lcdzbn2w4qb2pg22k92k8p67";
+ name = "kdenetwork-filesharing-18.08.0.tar.xz";
};
};
kdenlive = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdenlive-18.04.3.tar.xz";
- sha256 = "0ps33l6wq594p7x82c03hd959bmifhfwq34ghqmr6629bwpaq1cm";
- name = "kdenlive-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdenlive-18.08.0.tar.xz";
+ sha256 = "06d0viqma7kivzv3hbsiirkfhbj28mdr2nr3f5ic56381q3ps923";
+ name = "kdenlive-18.08.0.tar.xz";
};
};
kdepim-addons = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdepim-addons-18.04.3.tar.xz";
- sha256 = "04cjwql3mc1arm55v8h8r3fwrq42sa5cpfqqwwyhlpcbbh917hvv";
- name = "kdepim-addons-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdepim-addons-18.08.0.tar.xz";
+ sha256 = "05141013jdaascsb7ihbmd4f1lh1r6ah5w39wp5vky6ma35zv2l1";
+ name = "kdepim-addons-18.08.0.tar.xz";
};
};
kdepim-apps-libs = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdepim-apps-libs-18.04.3.tar.xz";
- sha256 = "1lizw9x5z9byg88s3dpj6hbx89sn8sjaywa3l79h03v5hc5wxi7l";
- name = "kdepim-apps-libs-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdepim-apps-libs-18.08.0.tar.xz";
+ sha256 = "0zpx3nilrsvgmgx5visppyx3kn2g5k8fnhfy649k6wa35p846495";
+ name = "kdepim-apps-libs-18.08.0.tar.xz";
};
};
kdepim-runtime = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdepim-runtime-18.04.3.tar.xz";
- sha256 = "16xi4i7f9hh9wgbqi4dp6vha278mhkgmxr884d0p9bpa7rcriwb5";
- name = "kdepim-runtime-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdepim-runtime-18.08.0.tar.xz";
+ sha256 = "0b1jbksxks32s8gjzrjhh4nja089j5dq75yaiil99w11f7nfpkar";
+ name = "kdepim-runtime-18.08.0.tar.xz";
};
};
kdesdk-kioslaves = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdesdk-kioslaves-18.04.3.tar.xz";
- sha256 = "0f3xjklc4h3ly6lcvaywh3gi8mlyffbhknpqn1b4g0arvvnymlsl";
- name = "kdesdk-kioslaves-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdesdk-kioslaves-18.08.0.tar.xz";
+ sha256 = "1fpg4sdbgzvlc9z7wwxxbp466fhybphvmcdpplbr7ws3588792cb";
+ name = "kdesdk-kioslaves-18.08.0.tar.xz";
};
};
kdesdk-thumbnailers = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdesdk-thumbnailers-18.04.3.tar.xz";
- sha256 = "1rq1g0wwnmp1hzid4g8b36liyl7nd8qp85cmikli6x1ph5g93zi6";
- name = "kdesdk-thumbnailers-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdesdk-thumbnailers-18.08.0.tar.xz";
+ sha256 = "047rnzn2lsbhfll0fp4vdf4jsyixg7vmpl2xyvi1y85df5nvv2pc";
+ name = "kdesdk-thumbnailers-18.08.0.tar.xz";
};
};
kdf = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdf-18.04.3.tar.xz";
- sha256 = "0nqw3ahhigsyp15r7blm3nijn6dil1awqi7y11sszl1kr3wln1nz";
- name = "kdf-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdf-18.08.0.tar.xz";
+ sha256 = "1flv6qjb936fcj5crshy26qy9y2p7j9i3hlidr9lsk81wsyjkqqg";
+ name = "kdf-18.08.0.tar.xz";
};
};
kdialog = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdialog-18.04.3.tar.xz";
- sha256 = "178xp72yd5wm5aanvkv2mxqzcganxw2z9q0aribs2x54z3ccj27c";
- name = "kdialog-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdialog-18.08.0.tar.xz";
+ sha256 = "04xhp4pdn7gv69gwydz9afml27qj9mrqz2hnrhcsf29pw3vq0hli";
+ name = "kdialog-18.08.0.tar.xz";
};
};
kdiamond = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kdiamond-18.04.3.tar.xz";
- sha256 = "1ikha8fpxmcbm3kncv0jb6hzm0413w3v0yrk0y7866xdaanb5491";
- name = "kdiamond-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kdiamond-18.08.0.tar.xz";
+ sha256 = "14c5i2fj9scvkqffz95lrqj49vfg7yh7gfc4s3zzg2sl91j7hwzq";
+ name = "kdiamond-18.08.0.tar.xz";
};
};
keditbookmarks = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/keditbookmarks-18.04.3.tar.xz";
- sha256 = "1y0y668ablpp596x77rxblw89pfx2ak533yhdj8khlj1mhzkagiq";
- name = "keditbookmarks-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/keditbookmarks-18.08.0.tar.xz";
+ sha256 = "1zsfmcyb9s782k6knlv56mrssazdid6i70g74is46s59sgfdd9fl";
+ name = "keditbookmarks-18.08.0.tar.xz";
};
};
kfind = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kfind-18.04.3.tar.xz";
- sha256 = "1f0civprab0y5f76kn1zs1g9iz0xhs4p633x2jh0s2nhb79m5p4a";
- name = "kfind-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kfind-18.08.0.tar.xz";
+ sha256 = "1bvln7iq2ikcrzaa53wskpqwzmndjvc84a2jdjqzirmh6pqzlf3h";
+ name = "kfind-18.08.0.tar.xz";
};
};
kfloppy = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kfloppy-18.04.3.tar.xz";
- sha256 = "0q6z0ppxmllzcwz6fsjfz8qq1a12ya62j526pnfy22fvqw4qwyjw";
- name = "kfloppy-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kfloppy-18.08.0.tar.xz";
+ sha256 = "1clz5651d11pm77mi57nzr274zwshx2qhglfn6jxiif9yz6s9dfp";
+ name = "kfloppy-18.08.0.tar.xz";
};
};
kfourinline = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kfourinline-18.04.3.tar.xz";
- sha256 = "1img467nzvpzqr0piji76ykvz2r0ji05gp3cfpxp7vjn8mbzwc00";
- name = "kfourinline-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kfourinline-18.08.0.tar.xz";
+ sha256 = "1agmzlwy4izrmi58cf08cg34h155inmws3ghp524jz1li6rqvzfr";
+ name = "kfourinline-18.08.0.tar.xz";
};
};
kgeography = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kgeography-18.04.3.tar.xz";
- sha256 = "1vkyghvibnslp45pabld063f762g4g9y0l7kxs287c3fblwpj23m";
- name = "kgeography-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kgeography-18.08.0.tar.xz";
+ sha256 = "0nj3lg8q84wvh1pypix619bdr9xm6s9s5vywciq8ggskqa2qrdc5";
+ name = "kgeography-18.08.0.tar.xz";
};
};
kget = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kget-18.04.3.tar.xz";
- sha256 = "1j6p8rwjsb34919rlf1i236xc2r0yf5pl432bkpxrcavxvp3f565";
- name = "kget-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kget-18.08.0.tar.xz";
+ sha256 = "0vpphsfgqa4h1bsj0k6lz591ymd5zy3ng86fl4l1qv36kh5b3sr4";
+ name = "kget-18.08.0.tar.xz";
};
};
kgoldrunner = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kgoldrunner-18.04.3.tar.xz";
- sha256 = "1xj0269qk2pdxah5lk6cp0lgssi6qlczgsxcm97idyp3knrmnxr0";
- name = "kgoldrunner-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kgoldrunner-18.08.0.tar.xz";
+ sha256 = "13i3b8z2pbvh90ykv365s30az9r33is8wp8ys33kz88z26260rsv";
+ name = "kgoldrunner-18.08.0.tar.xz";
};
};
kgpg = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kgpg-18.04.3.tar.xz";
- sha256 = "1a1kc1nin0agrrqh4wysm019p02gcyj75xw0rx53db96xim1iczx";
- name = "kgpg-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kgpg-18.08.0.tar.xz";
+ sha256 = "12d6vqfcrgmqajk383p9gx9l49digm51km00slwkb15yjzgsjckx";
+ name = "kgpg-18.08.0.tar.xz";
};
};
khangman = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/khangman-18.04.3.tar.xz";
- sha256 = "1yi1b15kh5z24bp10af2pgl029bbbgkn8gyzh3p5jy7qrykxqxj1";
- name = "khangman-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/khangman-18.08.0.tar.xz";
+ sha256 = "0vcyak1pqq894d10jn4s8948fz8py6kjhgrbvjk2ksp28fzsb1q2";
+ name = "khangman-18.08.0.tar.xz";
};
};
khelpcenter = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/khelpcenter-18.04.3.tar.xz";
- sha256 = "079yjhsi9nihn792ab03rg4far8l66v6ky7dhfrvrk78rv974ww6";
- name = "khelpcenter-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/khelpcenter-18.08.0.tar.xz";
+ sha256 = "1ykw91s1w5953646ylxm49bq0bjgxd8yp29r09644q12qmi1w9ay";
+ name = "khelpcenter-18.08.0.tar.xz";
};
};
kidentitymanagement = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kidentitymanagement-18.04.3.tar.xz";
- sha256 = "0yz435r86vm2w3b6bwdwxn7shwafpam0fh7qs3slmdlli60wgw8z";
- name = "kidentitymanagement-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kidentitymanagement-18.08.0.tar.xz";
+ sha256 = "1rrdxbil0z0vmv0h0d6jdlwa3sfs3nncq39wmydhwx09phk7db85";
+ name = "kidentitymanagement-18.08.0.tar.xz";
};
};
kig = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kig-18.04.3.tar.xz";
- sha256 = "0d459jkpc5x54w4gsrny7sx2103y5kpx6hm0zfyq7fiq1vsy57r4";
- name = "kig-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kig-18.08.0.tar.xz";
+ sha256 = "0kgsar7sp3a7x72gnagi2hwajbl1yaaj493qjnwzlwidjjrlzmhb";
+ name = "kig-18.08.0.tar.xz";
};
};
kigo = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kigo-18.04.3.tar.xz";
- sha256 = "1w4z04h072c7kf190r8h50rv3q7h6fwqcmckn83mfi9z0lbr9mqc";
- name = "kigo-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kigo-18.08.0.tar.xz";
+ sha256 = "1ws0diq3kb8f15v30cj0hc0ii4d14dca7fb3p8vvm8r4ly7gqbdr";
+ name = "kigo-18.08.0.tar.xz";
};
};
killbots = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/killbots-18.04.3.tar.xz";
- sha256 = "0vi2i1zaqfnni6608j46ppxsmzi44wcawbpp0l8cdb8bgbjbd1xd";
- name = "killbots-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/killbots-18.08.0.tar.xz";
+ sha256 = "165g1zll7wq6gyz1lzaf1x17j2nagd66lj015qxifjpn9fd475mm";
+ name = "killbots-18.08.0.tar.xz";
};
};
kimagemapeditor = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kimagemapeditor-18.04.3.tar.xz";
- sha256 = "1cdgfb4r4r3xpyw1dbk1alfyzgqdi718c2nrg30a1g8f450zh2zb";
- name = "kimagemapeditor-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kimagemapeditor-18.08.0.tar.xz";
+ sha256 = "1r3hngzvidv1yz7kd7l8l78gqdhjvw9smciv1vkzf7dk9qarlyfq";
+ name = "kimagemapeditor-18.08.0.tar.xz";
};
};
kimap = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kimap-18.04.3.tar.xz";
- sha256 = "13k46xna99gg5h445xxkipv3dhyi8d1daj6c6kf28x8lvwrxpf1c";
- name = "kimap-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kimap-18.08.0.tar.xz";
+ sha256 = "12lslmprwmibijlpwng4acmmhdfhm1dgvqsazbyvsr8jagkryxmq";
+ name = "kimap-18.08.0.tar.xz";
};
};
kio-extras = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kio-extras-18.04.3.tar.xz";
- sha256 = "0k034a684wajs7b0j9vhkhd6aabn5b34y050m0s9xlnmi6xk2agj";
- name = "kio-extras-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kio-extras-18.08.0.tar.xz";
+ sha256 = "1k5azz26zwsflnsgv4r0i8z8jph060wpksyqfpkz0vfsf3lv0k3n";
+ name = "kio-extras-18.08.0.tar.xz";
};
};
kiriki = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kiriki-18.04.3.tar.xz";
- sha256 = "1vz9br7qi4amcpp1g0lxn90822n4da9n4svxm2inj70p0mr59bpf";
- name = "kiriki-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kiriki-18.08.0.tar.xz";
+ sha256 = "1fciiq490iwcz86g9pqp8g0s40zf7a3zan132iqmscpl71hsv01b";
+ name = "kiriki-18.08.0.tar.xz";
};
};
kiten = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kiten-18.04.3.tar.xz";
- sha256 = "1k21pwxg4wb6jph9a6srgas55xxfkix66qqz4hrpnapc7c18qh6p";
- name = "kiten-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kiten-18.08.0.tar.xz";
+ sha256 = "1gzgfj0p0s5yjhwx6hldc8s0cs6p2bn5gd8sy29sicg13wjvhkmj";
+ name = "kiten-18.08.0.tar.xz";
+ };
+ };
+ kitinerary = {
+ version = "18.08.0";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/18.08.0/src/kitinerary-18.08.0.tar.xz";
+ sha256 = "14jwlkfy9z6q2pnjmlcy5gihc75n6qnsck05zycs4qsxa4srpn0l";
+ name = "kitinerary-18.08.0.tar.xz";
};
};
kjumpingcube = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kjumpingcube-18.04.3.tar.xz";
- sha256 = "0927j5k4pk03j2a7zf07w0594g5dagcb2hraf7b8dpjpzqxrjpv9";
- name = "kjumpingcube-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kjumpingcube-18.08.0.tar.xz";
+ sha256 = "001a2ayl74hi89j8i3553qx0cs8w7f4myskq3qa01rg3w4pb3wl2";
+ name = "kjumpingcube-18.08.0.tar.xz";
};
};
kldap = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kldap-18.04.3.tar.xz";
- sha256 = "1vjwial1v15f30bsjsi9z6hyr7a833z5hi6d2wim1cc7h1cl1p2v";
- name = "kldap-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kldap-18.08.0.tar.xz";
+ sha256 = "1825146vi1lq1383qmn8ix70d2rc2cfwp95vpn4divf9aqwmc4x0";
+ name = "kldap-18.08.0.tar.xz";
};
};
kleopatra = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kleopatra-18.04.3.tar.xz";
- sha256 = "0v70rqag7ljgcmny1fa6hlhmsc1g6965gh39gmcz1li61k6hb1ib";
- name = "kleopatra-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kleopatra-18.08.0.tar.xz";
+ sha256 = "1wwjn2p2vblr6fdfcy1s5gf3h5cnclc4lj5vsi5cxyp7d86ij49c";
+ name = "kleopatra-18.08.0.tar.xz";
};
};
klettres = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/klettres-18.04.3.tar.xz";
- sha256 = "0hky4wallpi2a8klwrmc2ln9lh5d3cnvdrn7kmw6prb7j7pwnm6g";
- name = "klettres-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/klettres-18.08.0.tar.xz";
+ sha256 = "1g84swzlynyl7r2ln52n7w9q0yf6540dd9hj3j0zsp1y2hb9fns8";
+ name = "klettres-18.08.0.tar.xz";
};
};
klickety = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/klickety-18.04.3.tar.xz";
- sha256 = "0d53d4ajh1lpban2jp06bjhrvrmg2fl7jg40mdga9wwrv8g01bs1";
- name = "klickety-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/klickety-18.08.0.tar.xz";
+ sha256 = "1jrxabmnv0s38i255x7xycn12fgpkmr4p1y0ydk5x98zrv4vn8y0";
+ name = "klickety-18.08.0.tar.xz";
};
};
klines = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/klines-18.04.3.tar.xz";
- sha256 = "0hz3id6sf85cdram42niqzrpynnx8xc4bj7imnl5dylhwdbxphhw";
- name = "klines-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/klines-18.08.0.tar.xz";
+ sha256 = "14ks53xh6hhlrmiqa7a1f7z42i035qw3v72dpbc8bw20vg53bzpy";
+ name = "klines-18.08.0.tar.xz";
};
};
kmag = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmag-18.04.3.tar.xz";
- sha256 = "00rs414p40002y68py1bdf08xcdib3x9zsinkv1iq07mbmr6smb1";
- name = "kmag-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmag-18.08.0.tar.xz";
+ sha256 = "00ni6clpgwcr6b2yanmgplsb5jqmqxjiymd3572fkj7q8m17ak7f";
+ name = "kmag-18.08.0.tar.xz";
};
};
kmahjongg = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmahjongg-18.04.3.tar.xz";
- sha256 = "05bzk6rsfvpis0gqrxqhlwc77jclk6xhljlzyhs07qbm3ii7jmpc";
- name = "kmahjongg-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmahjongg-18.08.0.tar.xz";
+ sha256 = "0lflx8jxk2yv7bsywwmbk5l54gyhbyv65996fg82z6lw9hrr5wrb";
+ name = "kmahjongg-18.08.0.tar.xz";
};
};
kmail = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmail-18.04.3.tar.xz";
- sha256 = "09a2s8w5i80x7h1rigl5a642fqp2xsmv53qm4hfajawn66mqfyz5";
- name = "kmail-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmail-18.08.0.tar.xz";
+ sha256 = "1xj2z4ix9zba6k3cdnakr7f0nfij1z925j3vp0gimkgyvbcb28vr";
+ name = "kmail-18.08.0.tar.xz";
};
};
kmail-account-wizard = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmail-account-wizard-18.04.3.tar.xz";
- sha256 = "09g4r10vbkzz9gab4ihz95bah7qba10zbm57m8wdjbfr4nxm09sc";
- name = "kmail-account-wizard-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmail-account-wizard-18.08.0.tar.xz";
+ sha256 = "1hc6zqys2qncljvsl9j48ns77kkq5zabj5a2kzg953dgcdv5x25r";
+ name = "kmail-account-wizard-18.08.0.tar.xz";
};
};
kmailtransport = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmailtransport-18.04.3.tar.xz";
- sha256 = "0anmzg87amrxig58ax4jqv7m976cm5x8dr3cwcxwv5mwgp9zczz2";
- name = "kmailtransport-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmailtransport-18.08.0.tar.xz";
+ sha256 = "0dfws0pzq3jf1h6j5qzjm96fz1ci4v57j4s9fbry10vyn4racpq8";
+ name = "kmailtransport-18.08.0.tar.xz";
};
};
kmbox = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmbox-18.04.3.tar.xz";
- sha256 = "1mdshr9xll1sw5dr99jl4rfcwvghj4c2f39fs4x4c72dnkrijrw5";
- name = "kmbox-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmbox-18.08.0.tar.xz";
+ sha256 = "11dh1lgjhiy4bvpvrk1rw23fgjil45ch3lazqc4jp21d1skrr1v4";
+ name = "kmbox-18.08.0.tar.xz";
};
};
kmime = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmime-18.04.3.tar.xz";
- sha256 = "1gf6a9kn88jnqrj7kj556yjk25anlaqcz8xrlffvg7b1y813wpcq";
- name = "kmime-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmime-18.08.0.tar.xz";
+ sha256 = "0kci9b2c67hzbl4hjwkkzk9j7g1l5wy1d8qrm1jwk8s7ccndindw";
+ name = "kmime-18.08.0.tar.xz";
};
};
kmines = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmines-18.04.3.tar.xz";
- sha256 = "0659cxj89mb1gd7ikxqrghb3ylp8wsp07jcp2hbj842zmgy0wl65";
- name = "kmines-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmines-18.08.0.tar.xz";
+ sha256 = "0z0fidlcp0kf9vmdgfyzrwi9yk5mfwhkzlqlbfy1631xisz158yn";
+ name = "kmines-18.08.0.tar.xz";
};
};
kmix = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmix-18.04.3.tar.xz";
- sha256 = "0gcfy4p4csxdqscyclm3z5ahbrlpyrlbw8p7kci6h0gjpv605fv1";
- name = "kmix-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmix-18.08.0.tar.xz";
+ sha256 = "084l5dpms26jwd894xnqr054hxjzlxcp2wm2rq37y3cbriia2xgh";
+ name = "kmix-18.08.0.tar.xz";
};
};
kmousetool = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmousetool-18.04.3.tar.xz";
- sha256 = "106hqam2fhnhdzvsb79171v3fjw8rlcb04j9w5xs7q3j9avwk044";
- name = "kmousetool-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmousetool-18.08.0.tar.xz";
+ sha256 = "0lcr8hpflaw5lrfydwi5sf069hfb19qifb7wh7qxh7j1b2z8w4gf";
+ name = "kmousetool-18.08.0.tar.xz";
};
};
kmouth = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmouth-18.04.3.tar.xz";
- sha256 = "0hffqqcz4j3mp4vp5kc280ywq36r3y80q24i37swiqdd3fzyrlzq";
- name = "kmouth-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmouth-18.08.0.tar.xz";
+ sha256 = "0naqn9pl7jldfna9l3i3kdv8rkw0nky4ppsvqghlrb9jf4dy8lfm";
+ name = "kmouth-18.08.0.tar.xz";
};
};
kmplot = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kmplot-18.04.3.tar.xz";
- sha256 = "0j9ax6b2v0w7crjy8c9a84a2zcph7zx0ap0wwq7lnw45xwhynllv";
- name = "kmplot-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kmplot-18.08.0.tar.xz";
+ sha256 = "0lvw351iz2gdzkphrf8hxgqbjqi4pqvxqk2zjbly4fzwbgk261bd";
+ name = "kmplot-18.08.0.tar.xz";
};
};
knavalbattle = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/knavalbattle-18.04.3.tar.xz";
- sha256 = "1i6c5i0r2icpbn010k5jc6cb45ha7dgqhhvbbcgcsdqjcq042czx";
- name = "knavalbattle-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/knavalbattle-18.08.0.tar.xz";
+ sha256 = "0b21z3qqhsyafsa6rx9mc560hrw0046npqjmi5jpmczl6y9mr78q";
+ name = "knavalbattle-18.08.0.tar.xz";
};
};
knetwalk = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/knetwalk-18.04.3.tar.xz";
- sha256 = "1r17c8hfj6qh1rx7apmpmb0cca0gsnq7jvjhz98if3kyy9m1fk50";
- name = "knetwalk-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/knetwalk-18.08.0.tar.xz";
+ sha256 = "04yfxxihfdqhrs126796k498v8valhd73q2bagcx59lj7iymxszj";
+ name = "knetwalk-18.08.0.tar.xz";
};
};
knotes = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/knotes-18.04.3.tar.xz";
- sha256 = "02lx0vm34kcr6mix5d1i0dcaf229yafx58b915y3vjwml8n5v17w";
- name = "knotes-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/knotes-18.08.0.tar.xz";
+ sha256 = "0dvjafmf57z10lx8fb4y4na73qq3dfmqfa2w01b3sdzns0nzaqig";
+ name = "knotes-18.08.0.tar.xz";
};
};
kolf = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kolf-18.04.3.tar.xz";
- sha256 = "1k3z3nk6bgl9rlwjvc9jxwpyhd88amc2l1yg8f4rs6w0pbaldmwb";
- name = "kolf-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kolf-18.08.0.tar.xz";
+ sha256 = "0bcd4k7v5sid98h95xbqm5l0dcjkv367mdgzhr6yizlqpyg6c132";
+ name = "kolf-18.08.0.tar.xz";
};
};
kollision = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kollision-18.04.3.tar.xz";
- sha256 = "11czb7j0dzla5c9c4nk1qb5ljgci7x6ggyn6ffm2wvff4lm880m8";
- name = "kollision-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kollision-18.08.0.tar.xz";
+ sha256 = "029pwgwmsm9m284m1sbi2zzhhwbz6rlq68jd783ir6cq2z3llvjp";
+ name = "kollision-18.08.0.tar.xz";
};
};
kolourpaint = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kolourpaint-18.04.3.tar.xz";
- sha256 = "17jkyih99pqs2nqsf0rq35iks3y2kmnya71ihnw8930qgjakggxp";
- name = "kolourpaint-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kolourpaint-18.08.0.tar.xz";
+ sha256 = "0p08xc8ai1cllbdwmv46xzcpv70mn6zwd4f62xsh71hhpg8fbqpi";
+ name = "kolourpaint-18.08.0.tar.xz";
};
};
kompare = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kompare-18.04.3.tar.xz";
- sha256 = "1csjhnsic7h943kjrzixc0k79kn6w9ck29kw9qaz29khpi5bmn6v";
- name = "kompare-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kompare-18.08.0.tar.xz";
+ sha256 = "0md4qw29q5mnsz0k4a3dl6fdgff33w4kg59qy02kp3pvqav9r1zx";
+ name = "kompare-18.08.0.tar.xz";
};
};
konqueror = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/konqueror-18.04.3.tar.xz";
- sha256 = "08sw3vz57klr6wp1k2kjfj8hj02k4si39ncngvy005x2dkprkgc2";
- name = "konqueror-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/konqueror-18.08.0.tar.xz";
+ sha256 = "12zw4bgmmc35vghi8phm93x9lmhfgpxxfvz0grxa4gxcxqjyzzcq";
+ name = "konqueror-18.08.0.tar.xz";
};
};
konquest = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/konquest-18.04.3.tar.xz";
- sha256 = "0pd3yxj3fmjp9p4gm4a3r107cx0rwgqg2pnwyfrdlrvppcc4is0g";
- name = "konquest-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/konquest-18.08.0.tar.xz";
+ sha256 = "0pvx4ss8dpxd6q4jnxim3pwyxjvhcy1xihn7s3513hy0h4wabv6s";
+ name = "konquest-18.08.0.tar.xz";
};
};
konsole = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/konsole-18.04.3.tar.xz";
- sha256 = "00m0z9fjprnnnp7blr9nyz8s8xb781ry7qxd68c261ar5fajys1p";
- name = "konsole-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/konsole-18.08.0.tar.xz";
+ sha256 = "1p119ky78zxi8l08xnfklrg21c6124q1fbjvbybf6l0qq3mzwy77";
+ name = "konsole-18.08.0.tar.xz";
};
};
kontact = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kontact-18.04.3.tar.xz";
- sha256 = "1h8a9mdldq8hai3f2al56rs063s46lnsnmgbvd8dyk51si084aab";
- name = "kontact-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kontact-18.08.0.tar.xz";
+ sha256 = "0027zinl9s92vxhlzv9mak9fgzygqw5ml6i6x659pl3mc889fr7j";
+ name = "kontact-18.08.0.tar.xz";
};
};
kontactinterface = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kontactinterface-18.04.3.tar.xz";
- sha256 = "194g0y5kkax4c9ivc5yll5rqzpvd97s897agkzmr05wvk82gjrz6";
- name = "kontactinterface-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kontactinterface-18.08.0.tar.xz";
+ sha256 = "0mcvpmvczqpsqj83vqfv9zwz7jj3az65nq45xg1l476j8sva278n";
+ name = "kontactinterface-18.08.0.tar.xz";
};
};
kopete = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kopete-18.04.3.tar.xz";
- sha256 = "0c2s3qq9k4654q38q4gy6j3mkj1nnrc6jb4sk04hz3w5d9i6c82b";
- name = "kopete-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kopete-18.08.0.tar.xz";
+ sha256 = "0g79zv187pj7c2p33qsnkpmvrxpcx1iiy9lcrdz3acgzgvpfh5dk";
+ name = "kopete-18.08.0.tar.xz";
};
};
korganizer = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/korganizer-18.04.3.tar.xz";
- sha256 = "1bcmqki7491g8q9gaif346afrsn5k2zxp6xzwllaifxrbckzqaj1";
- name = "korganizer-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/korganizer-18.08.0.tar.xz";
+ sha256 = "0qifd6l93jjj7sxf3kllm3dq13p738zlvbpxg24wzc3gllyq4ip1";
+ name = "korganizer-18.08.0.tar.xz";
};
};
kpat = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kpat-18.04.3.tar.xz";
- sha256 = "0adx0720k296k0fzzsv4k32i0yii9snczsiir8gl3jj5ngk5hias";
- name = "kpat-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kpat-18.08.0.tar.xz";
+ sha256 = "0dm9alimp2ibf5fpgbafiaz3lh9irvq2539jp6l61jqcv7801fml";
+ name = "kpat-18.08.0.tar.xz";
};
};
kpimtextedit = {
- version = "18.04.3";
+ version = "18.08.0";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/18.08.0/src/kpimtextedit-18.08.0.tar.xz";
+ sha256 = "0ciivvpfcsjzpc620zalx7k5ybh6bf53y19lvr1dgad29j6j871q";
+ name = "kpimtextedit-18.08.0.tar.xz";
+ };
+ };
+ kpkpass = {
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kpimtextedit-18.04.3.tar.xz";
- sha256 = "0fqlf4l05iybdnrzpp48wrg7qj9x303cfq2105d3p2zvwwkyrr41";
- name = "kpimtextedit-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kpkpass-18.08.0.tar.xz";
+ sha256 = "1wgycyx8nn9kaqbxvlps44g1nzr2qpr6mb7m22q5qcykly0i5wzl";
+ name = "kpkpass-18.08.0.tar.xz";
};
};
kqtquickcharts = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kqtquickcharts-18.04.3.tar.xz";
- sha256 = "0zjy05kvl30j8nlwfpqyf4qqimbfagk9s3f92b9bxk7njnxjzhd9";
- name = "kqtquickcharts-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kqtquickcharts-18.08.0.tar.xz";
+ sha256 = "0ykf5xfzjsanj5rmn5qrhhqfb93i19mrwzsqq8pngaimcqb70cdk";
+ name = "kqtquickcharts-18.08.0.tar.xz";
};
};
krdc = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/krdc-18.04.3.tar.xz";
- sha256 = "0r57nfskwn1gwm4ig7z6cv04y4rhy5mq9bdd4ci8d9gq0s1rc13x";
- name = "krdc-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/krdc-18.08.0.tar.xz";
+ sha256 = "03j3cn088mr8cd6vjkv19k5ayrhgh9mbyr0lkj9rr16z6861avmr";
+ name = "krdc-18.08.0.tar.xz";
};
};
kreversi = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kreversi-18.04.3.tar.xz";
- sha256 = "09zcl0vzzwc4crzlrrvi7kmbk9xh0h5hy9yyv9bk661pw66nv980";
- name = "kreversi-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kreversi-18.08.0.tar.xz";
+ sha256 = "18qqfaxb34b0z6cdz9h2z0hkmr1vv85j7ra8gzhy35k40dgvhgqm";
+ name = "kreversi-18.08.0.tar.xz";
};
};
krfb = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/krfb-18.04.3.tar.xz";
- sha256 = "0i36lj7lggl83khds009wp12d21rin60ai2a24isyplvcq8p2slk";
- name = "krfb-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/krfb-18.08.0.tar.xz";
+ sha256 = "1zaran8lbhrnlr2nz12xis4b7q0krynzqyix14diiiysrfsmnwqm";
+ name = "krfb-18.08.0.tar.xz";
};
};
kross-interpreters = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kross-interpreters-18.04.3.tar.xz";
- sha256 = "04wrary04sznjaw2n3d2fjnnhzf1fykj9l3r9dry1irj9ysx45yd";
- name = "kross-interpreters-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kross-interpreters-18.08.0.tar.xz";
+ sha256 = "1g3fgva8h0s1ld38m38iawjr04bsh572lazizr9a460nwk60nmsi";
+ name = "kross-interpreters-18.08.0.tar.xz";
};
};
kruler = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kruler-18.04.3.tar.xz";
- sha256 = "014c0m388kjfpynvh14m463jl3vj288lcdiz3xfphlmxqlhhvhcd";
- name = "kruler-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kruler-18.08.0.tar.xz";
+ sha256 = "0fv3186xhyvfi9zz48r4facy9x8m8y53qfl7x1rs0y1hq2d2k3nh";
+ name = "kruler-18.08.0.tar.xz";
};
};
kshisen = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kshisen-18.04.3.tar.xz";
- sha256 = "04xzg2v957wx68wmf1ri30vajd5pr9xz2fh7f5xg394m134cxc9r";
- name = "kshisen-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kshisen-18.08.0.tar.xz";
+ sha256 = "11q717m7m37902bchbgpdgsward4w2c9bwjns3xs4c3pyx1w7mg4";
+ name = "kshisen-18.08.0.tar.xz";
};
};
ksirk = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ksirk-18.04.3.tar.xz";
- sha256 = "1p08f9w3vi1z31fydnvp9d069z82kv8fn9lwlw1mxkqaggv54jhs";
- name = "ksirk-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ksirk-18.08.0.tar.xz";
+ sha256 = "1wxf1g5vfcnvz9n28ja17iawc1997vhz6p75bq84jmls51pxjkzn";
+ name = "ksirk-18.08.0.tar.xz";
};
};
ksmtp = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ksmtp-18.04.3.tar.xz";
- sha256 = "0p8rnqpb0q26iwjk4k9pj4krfqipijg90bv0hd4wa3d2plkvzmcy";
- name = "ksmtp-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ksmtp-18.08.0.tar.xz";
+ sha256 = "13jkxrlycgk9qqw5v16i1rax8lwany7fd1n6m2875saxmjm9qi0s";
+ name = "ksmtp-18.08.0.tar.xz";
};
};
ksnakeduel = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ksnakeduel-18.04.3.tar.xz";
- sha256 = "1mhgdd0hnv0y36af3rikdibc0hgp1sjdxbx543vlxi25l8dfsw6q";
- name = "ksnakeduel-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ksnakeduel-18.08.0.tar.xz";
+ sha256 = "0ixbv4b9ngb82f4s58hzjvmmifkjy5v59g76kpb5dv9nqb9x8833";
+ name = "ksnakeduel-18.08.0.tar.xz";
};
};
kspaceduel = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kspaceduel-18.04.3.tar.xz";
- sha256 = "06mzg1hmhwisd0vc99qdrxp7jgay4cqda2x142i2a1v5qs48ilk4";
- name = "kspaceduel-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kspaceduel-18.08.0.tar.xz";
+ sha256 = "0qw3lkiwwrzicyqqr6fs78ljhn5z4vsvcvcn9l5j18qkmi2fd2dk";
+ name = "kspaceduel-18.08.0.tar.xz";
};
};
ksquares = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ksquares-18.04.3.tar.xz";
- sha256 = "1w4x8br9g5dlw7mc8n118lqq0g5p4n2lqijp17xcgznbllivf79g";
- name = "ksquares-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ksquares-18.08.0.tar.xz";
+ sha256 = "01g9jkd5cq1ga9k9brr8yiny3idmj88c4n1cm2qi10d9n1vd4fja";
+ name = "ksquares-18.08.0.tar.xz";
};
};
ksudoku = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ksudoku-18.04.3.tar.xz";
- sha256 = "095i8s3ggl51xncra66vhdrz494r5q55d57j53pqnc4cwnfl5glj";
- name = "ksudoku-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ksudoku-18.08.0.tar.xz";
+ sha256 = "0fc7d6bs0ba51nypx4bn5hylfx9h6xlam7wjw1i7fr2yr8fdv9id";
+ name = "ksudoku-18.08.0.tar.xz";
};
};
ksystemlog = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ksystemlog-18.04.3.tar.xz";
- sha256 = "117gxwlimqp7sslrkaf6jazhprplqqkbqrfrjdwm54l84dldfi34";
- name = "ksystemlog-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ksystemlog-18.08.0.tar.xz";
+ sha256 = "1m5y8rawhi03vnpdw75npdd7hc830a5b2kkrz1112g959psv00ah";
+ name = "ksystemlog-18.08.0.tar.xz";
};
};
kteatime = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kteatime-18.04.3.tar.xz";
- sha256 = "12fikkj87yz8xj8l3girsfqkbngvg0jjw661hihgnjz6jg7jdq0k";
- name = "kteatime-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kteatime-18.08.0.tar.xz";
+ sha256 = "18pm15s7q4xwzi61m2l8k6qplf948lq36iv9nh5sf4p6vp6syay2";
+ name = "kteatime-18.08.0.tar.xz";
};
};
ktimer = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktimer-18.04.3.tar.xz";
- sha256 = "1bf3r4kfg85hgmsszpz57fhws7mw79wxkb6qigfcq4vv165axjd2";
- name = "ktimer-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktimer-18.08.0.tar.xz";
+ sha256 = "0g81daqdmfsmbnzjq74zxrbnjxjbi6nd6kl0acmjg7832l30m4js";
+ name = "ktimer-18.08.0.tar.xz";
};
};
ktnef = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktnef-18.04.3.tar.xz";
- sha256 = "08zdl982gkk619gi05xvs28q26xjsrvawgpbmrmkwikj5m80asf4";
- name = "ktnef-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktnef-18.08.0.tar.xz";
+ sha256 = "007gjmjyi5r8110w4fv7n5gl67ddn1dg0pb119qr3r82iba8qiqi";
+ name = "ktnef-18.08.0.tar.xz";
};
};
ktouch = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktouch-18.04.3.tar.xz";
- sha256 = "1j6byxhprwrsd4bb3g3mwps5v1cc73h447dxzrd84ghk3jv687jl";
- name = "ktouch-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktouch-18.08.0.tar.xz";
+ sha256 = "0pgckza5cn52aapa39d12dighx698jzb877iiml2n9870whifkms";
+ name = "ktouch-18.08.0.tar.xz";
};
};
ktp-accounts-kcm = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-accounts-kcm-18.04.3.tar.xz";
- sha256 = "0dlgammp5j1idlmv69dq54fyc2dm6cd2gv5spimydznxp5bcfl3v";
- name = "ktp-accounts-kcm-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-accounts-kcm-18.08.0.tar.xz";
+ sha256 = "16k7dprj75g2lgsmnnmn9n6zgwnp64zsjci5y2vk0cp8ndlr1j54";
+ name = "ktp-accounts-kcm-18.08.0.tar.xz";
};
};
ktp-approver = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-approver-18.04.3.tar.xz";
- sha256 = "0f2y86khv4ps2xnh8aizf3q52s0c1nxnvkrpii5qm9vk8agp8yfz";
- name = "ktp-approver-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-approver-18.08.0.tar.xz";
+ sha256 = "1nh75yzprhbn0af33qsrs81vxk1brlxjf1jal7p8fpr47qdwhzvd";
+ name = "ktp-approver-18.08.0.tar.xz";
};
};
ktp-auth-handler = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-auth-handler-18.04.3.tar.xz";
- sha256 = "07apdk2zf0mqii8khphf6whblwals8p1yqjs6vxry89mmr5znni7";
- name = "ktp-auth-handler-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-auth-handler-18.08.0.tar.xz";
+ sha256 = "0akmbrn9z0ind3jmz2azixyvr9glai66j6dynszn59svvjxp0fiz";
+ name = "ktp-auth-handler-18.08.0.tar.xz";
};
};
ktp-call-ui = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-call-ui-18.04.3.tar.xz";
- sha256 = "1zkvkskfparc1bfvn1xhymz2pm50iws6k098bxrz86a6cgrqxw75";
- name = "ktp-call-ui-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-call-ui-18.08.0.tar.xz";
+ sha256 = "0z23vcvz6nyc6klqqys4ivh33j21kww4fgcm5dvvlf940cc9gr3h";
+ name = "ktp-call-ui-18.08.0.tar.xz";
};
};
ktp-common-internals = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-common-internals-18.04.3.tar.xz";
- sha256 = "1j5avk09xakh0g84lnxz3p11fhjb5lf1sxic423hamwgwlr181nl";
- name = "ktp-common-internals-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-common-internals-18.08.0.tar.xz";
+ sha256 = "1sj1k8x8d2lk8xsqckjzg6zz01gqh3yj52yar56lngn1cjnnf6ak";
+ name = "ktp-common-internals-18.08.0.tar.xz";
};
};
ktp-contact-list = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-contact-list-18.04.3.tar.xz";
- sha256 = "0zyl1d4k74lrdx3hsib7miijjk2zj3x1yakryrym4lk3pmllrd78";
- name = "ktp-contact-list-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-contact-list-18.08.0.tar.xz";
+ sha256 = "0yx64rz6k5dv6s4wsadjqc0fcx6j7blhy15cbnh8r2pbwf0ilk2w";
+ name = "ktp-contact-list-18.08.0.tar.xz";
};
};
ktp-contact-runner = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-contact-runner-18.04.3.tar.xz";
- sha256 = "1nzz88m8mb2xwpl5fzh7srslzrci2265n759kczjlzj7w1wym504";
- name = "ktp-contact-runner-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-contact-runner-18.08.0.tar.xz";
+ sha256 = "0i4zc6bksnb4iajz91wbw140dh7p0rg3hzhi563pn3siy9id442s";
+ name = "ktp-contact-runner-18.08.0.tar.xz";
};
};
ktp-desktop-applets = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-desktop-applets-18.04.3.tar.xz";
- sha256 = "1y0g3922km9a71splnx91nhvpwi2gj1jqxbzzsqsckblh2gzf0m3";
- name = "ktp-desktop-applets-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-desktop-applets-18.08.0.tar.xz";
+ sha256 = "0i5sniidcgkvq2scf76pkshrj89gvkzjjslgqaxvqrgvyagsaski";
+ name = "ktp-desktop-applets-18.08.0.tar.xz";
};
};
ktp-filetransfer-handler = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-filetransfer-handler-18.04.3.tar.xz";
- sha256 = "165mfk1ld1py2rp3j0xah1zi2f5b73ic53a043mmhs4lws5fw3f9";
- name = "ktp-filetransfer-handler-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-filetransfer-handler-18.08.0.tar.xz";
+ sha256 = "15mifrbxxr8lvq7nflxwsz46ywnqmjv1d3irzq1xfcpl47907qhg";
+ name = "ktp-filetransfer-handler-18.08.0.tar.xz";
};
};
ktp-kded-module = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-kded-module-18.04.3.tar.xz";
- sha256 = "1z2103q6lx4f51ipm2kmla5h8civhf0wy0yk0zg4akynshqjhr6n";
- name = "ktp-kded-module-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-kded-module-18.08.0.tar.xz";
+ sha256 = "12rnnf2nm2kn2904b475qh9ql50yx583jga31389l012whm4gqqf";
+ name = "ktp-kded-module-18.08.0.tar.xz";
};
};
ktp-send-file = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-send-file-18.04.3.tar.xz";
- sha256 = "1d1ha9nigipr7khaymp7jiixj27d18qk7ghf1zaywyrrf2sav286";
- name = "ktp-send-file-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-send-file-18.08.0.tar.xz";
+ sha256 = "0m8p8w4hqanccf7g0za5yh30z2nxv8dxi09mg1fniypqaw4cp2n7";
+ name = "ktp-send-file-18.08.0.tar.xz";
};
};
ktp-text-ui = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktp-text-ui-18.04.3.tar.xz";
- sha256 = "0xglzifmqcrjxd3iz0v8a0rv2kaldsz12rn0hjh905j53s69xqic";
- name = "ktp-text-ui-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktp-text-ui-18.08.0.tar.xz";
+ sha256 = "04ygny9m823h30hi5qgjz1nk7dj44hdqa9ga0ai9cazxnavvsx57";
+ name = "ktp-text-ui-18.08.0.tar.xz";
};
};
ktuberling = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/ktuberling-18.04.3.tar.xz";
- sha256 = "0a7i3k386nr5gmmgpqp2gjpca8qh6w30x69w2w46mcw9qffm3s4b";
- name = "ktuberling-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/ktuberling-18.08.0.tar.xz";
+ sha256 = "1m9mdv7hdsrnzjcdnmqrl82mafa9psbr5k7b6m3llh95f61b4jpn";
+ name = "ktuberling-18.08.0.tar.xz";
};
};
kturtle = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kturtle-18.04.3.tar.xz";
- sha256 = "1iaklkzfcrqhxh7jwgxg8kvpcxhia8l0hm6q14wc4nf3k72cgz8l";
- name = "kturtle-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kturtle-18.08.0.tar.xz";
+ sha256 = "0mwhnsbwj92zrgyjdfi18pxsfyaxa8pzdmh5k20m0jrh76gkhjr0";
+ name = "kturtle-18.08.0.tar.xz";
};
};
kubrick = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kubrick-18.04.3.tar.xz";
- sha256 = "1da3n4sgpx1k90cn90558yjfqp8wyirvmi1dzicy8l0jfl4rwr1d";
- name = "kubrick-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kubrick-18.08.0.tar.xz";
+ sha256 = "1affzpwq45r1cqb9ra8w24rrszvvzxiik4ng6jf54dik8sk7wrnn";
+ name = "kubrick-18.08.0.tar.xz";
};
};
kwalletmanager = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kwalletmanager-18.04.3.tar.xz";
- sha256 = "1n5f150mxx4i3aq62xi67c99p68nwwsiih3i36i1rrmy87w44iyi";
- name = "kwalletmanager-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kwalletmanager-18.08.0.tar.xz";
+ sha256 = "10yri44d68n6hc4dn78wgqzw394krwjqr6azwd6qgxjp6asc8n69";
+ name = "kwalletmanager-18.08.0.tar.xz";
};
};
kwave = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kwave-18.04.3.tar.xz";
- sha256 = "1h6lqyxzccbsprap2lypan2bs451vyp1z0d4ipbim1ayqyqi5zw9";
- name = "kwave-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kwave-18.08.0.tar.xz";
+ sha256 = "0aimhn8hgjnwhv0j2hiyiqgh5bslm7rs13yc8sk0kh1vix6909mp";
+ name = "kwave-18.08.0.tar.xz";
};
};
kwordquiz = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/kwordquiz-18.04.3.tar.xz";
- sha256 = "0vl8afd3186w51p3bhlqzi0wipm0p6bl40vm298473ixgpbxbaj6";
- name = "kwordquiz-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/kwordquiz-18.08.0.tar.xz";
+ sha256 = "1aghybg72anwj6vz3s3zr5i5wflackvfwl9n39mvxddm4ajnw1km";
+ name = "kwordquiz-18.08.0.tar.xz";
};
};
libgravatar = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libgravatar-18.04.3.tar.xz";
- sha256 = "0s8y6v5b6b5lmyjxwhwl3fnn94z8v17q765xiq0g73i7lp5jz0bq";
- name = "libgravatar-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libgravatar-18.08.0.tar.xz";
+ sha256 = "0yqd99lax1w5r1fy4rmbv9lk988zvq2yydkrdgh8vymxjljg5xa4";
+ name = "libgravatar-18.08.0.tar.xz";
};
};
libkcddb = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkcddb-18.04.3.tar.xz";
- sha256 = "0nk7d6apl57rdnfma525yn3xrgw01hhj08gb3cylvysl5nf8nn0m";
- name = "libkcddb-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkcddb-18.08.0.tar.xz";
+ sha256 = "1ns90vcbp21mwsbvndmk97fpd8n7152iw783q7bqfy1n3ggzkz5x";
+ name = "libkcddb-18.08.0.tar.xz";
};
};
libkcompactdisc = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkcompactdisc-18.04.3.tar.xz";
- sha256 = "00xw6ggc4lgyw88jv52wxw2kig7ass1f7fbdd644cbhq2dvx7khd";
- name = "libkcompactdisc-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkcompactdisc-18.08.0.tar.xz";
+ sha256 = "0pgn65knay7fgk2zdgqd29wfhqk9x4zlpp4ywjwb2zsvzz51j9f8";
+ name = "libkcompactdisc-18.08.0.tar.xz";
};
};
libkdcraw = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkdcraw-18.04.3.tar.xz";
- sha256 = "1mkrr0bb89k13chy1y9r6aqsjrdvm125k0ms3pjf7gc3xa6g7vk7";
- name = "libkdcraw-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkdcraw-18.08.0.tar.xz";
+ sha256 = "0xpkkgxsmvrldnprzqrxaz67jb5cv6vndg8flbkagvp0s7mnw56x";
+ name = "libkdcraw-18.08.0.tar.xz";
};
};
libkdegames = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkdegames-18.04.3.tar.xz";
- sha256 = "0nnr9rnsgpc13hj4ii126lpss8d7d18wnrr9n85yf6ngcg9h3gk7";
- name = "libkdegames-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkdegames-18.08.0.tar.xz";
+ sha256 = "1jl3snqyg3p3l4hddg7ag2mkgi49qvzml8p82zdn3sf5fhka1g70";
+ name = "libkdegames-18.08.0.tar.xz";
};
};
libkdepim = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkdepim-18.04.3.tar.xz";
- sha256 = "0mqrjhmv1g2ch4jgihcg1d8fn7qxjkxnw2fh6a2cnn4b827n3v2l";
- name = "libkdepim-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkdepim-18.08.0.tar.xz";
+ sha256 = "1gfwfmr5iqkwb490d3mm32892q47pc73b6c8zygm7mn5cjb5376l";
+ name = "libkdepim-18.08.0.tar.xz";
};
};
libkeduvocdocument = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkeduvocdocument-18.04.3.tar.xz";
- sha256 = "1x2dpbpd7f71ws11zrrinyydg25728niglypa4dwvl09d5v0lhwz";
- name = "libkeduvocdocument-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkeduvocdocument-18.08.0.tar.xz";
+ sha256 = "1i5vmjfczd71654cpxd11djwk852aqg5lkn98pa8qvjy7v85jynn";
+ name = "libkeduvocdocument-18.08.0.tar.xz";
};
};
libkexiv2 = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkexiv2-18.04.3.tar.xz";
- sha256 = "095ijxk55zw07j5y678dz1pipd0va4p57r9zvkqlfzd41bsi0a3c";
- name = "libkexiv2-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkexiv2-18.08.0.tar.xz";
+ sha256 = "0cdh5wd2lvm9m4nyz2yv5ksszk1pc8ajzwq9c467m74lvb1p2had";
+ name = "libkexiv2-18.08.0.tar.xz";
};
};
libkgapi = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkgapi-18.04.3.tar.xz";
- sha256 = "0ixpnmli4z8qahw9br931b6py3wybqzlrnm3n7gms287phc11yjc";
- name = "libkgapi-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkgapi-18.08.0.tar.xz";
+ sha256 = "1aax7djyp1104b8sbrpfhf5c8j30g3hac973lpblfqg0yhkd9lw0";
+ name = "libkgapi-18.08.0.tar.xz";
};
};
libkgeomap = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkgeomap-18.04.3.tar.xz";
- sha256 = "0kicd6s6gfz3q1q45adnp6ri03sd69phs7ag3pnssyagk0y51igl";
- name = "libkgeomap-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkgeomap-18.08.0.tar.xz";
+ sha256 = "00hjz7amg2rf5s74465s44ac6kd33q4mvsa9ynpljisll5avlhan";
+ name = "libkgeomap-18.08.0.tar.xz";
};
};
libkipi = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkipi-18.04.3.tar.xz";
- sha256 = "1lyh9kg9s17nrc61bv6xzal5fd5y2shwn2d69xrlxh17akajbi7i";
- name = "libkipi-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkipi-18.08.0.tar.xz";
+ sha256 = "1g34ryzr4vx5657c4j4w3b57n5ir6miwp1k60qk7av73qsik7a7d";
+ name = "libkipi-18.08.0.tar.xz";
};
};
libkleo = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkleo-18.04.3.tar.xz";
- sha256 = "0m9sgksxr47lhh7810n3fprj08vk62cradl5zwf0c89dsbicap5a";
- name = "libkleo-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkleo-18.08.0.tar.xz";
+ sha256 = "0vscfz794yp9hnrn4r4phbip2mqi3jvi41m5mpjd5pw11644d66c";
+ name = "libkleo-18.08.0.tar.xz";
};
};
libkmahjongg = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkmahjongg-18.04.3.tar.xz";
- sha256 = "16m1jid7d920bn1s1zbd44mhl07db4n921fcxv95j5rswndb7lwn";
- name = "libkmahjongg-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkmahjongg-18.08.0.tar.xz";
+ sha256 = "0xzv7vawwq0gm10h9mfrsy5m5zpk1n3s338al0h9vskvhznphy83";
+ name = "libkmahjongg-18.08.0.tar.xz";
};
};
libkomparediff2 = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libkomparediff2-18.04.3.tar.xz";
- sha256 = "1ks9cajyvwnfxr829arkz8ajf3j2vw2rqfj2mfha6l0hap6ha6p1";
- name = "libkomparediff2-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libkomparediff2-18.08.0.tar.xz";
+ sha256 = "0nx66198vn6zrv012i4p2ghc2slxqccfb3fhd9zszzpnyd08zs27";
+ name = "libkomparediff2-18.08.0.tar.xz";
};
};
libksane = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libksane-18.04.3.tar.xz";
- sha256 = "0qfal3d8bbq61v7zfcb8hqiki6z6qx7p59xnkbgqfaif77nhnwwj";
- name = "libksane-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libksane-18.08.0.tar.xz";
+ sha256 = "09wx6haaw0rjcjdh2c05b2zrpz57zlhx9x9jy9hw28byrf71i0k0";
+ name = "libksane-18.08.0.tar.xz";
};
};
libksieve = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/libksieve-18.04.3.tar.xz";
- sha256 = "0ckncvccf02agvs0m7s9xxjmcjwh3fpywig25pk2ji8va1y5z5yl";
- name = "libksieve-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/libksieve-18.08.0.tar.xz";
+ sha256 = "0xnjw2q1hlmrlzdi776459v5w3l88bxpzzpqc93xmq39xh7xqq7b";
+ name = "libksieve-18.08.0.tar.xz";
};
};
lokalize = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/lokalize-18.04.3.tar.xz";
- sha256 = "052aqw0z3ap34c9r7r0imidn9iqn0fd2vg7yjpqvi4yy3zv8wjc4";
- name = "lokalize-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/lokalize-18.08.0.tar.xz";
+ sha256 = "17h634abxzg3kx182qxdx6gyz0knl61yn32nlf76l0cv0bqc2xz5";
+ name = "lokalize-18.08.0.tar.xz";
};
};
lskat = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/lskat-18.04.3.tar.xz";
- sha256 = "1qi8d06qjjz16ra6svmcl6dfvknls0r42man20nm439nchk4m58y";
- name = "lskat-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/lskat-18.08.0.tar.xz";
+ sha256 = "05ckhh8270hjj94ks9zg6pypa2dm1d2r4l219gq456rrhyj9zv13";
+ name = "lskat-18.08.0.tar.xz";
};
};
mailcommon = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/mailcommon-18.04.3.tar.xz";
- sha256 = "0g2skri3kajyb5hh0c6qakhbqapnd1zh5labrpi38cygq8b6pnfh";
- name = "mailcommon-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/mailcommon-18.08.0.tar.xz";
+ sha256 = "06j66326wbvgnmacmbhvszbhdcw6h3pzxwcnbbz66n0zz2y4m5gd";
+ name = "mailcommon-18.08.0.tar.xz";
};
};
mailimporter = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/mailimporter-18.04.3.tar.xz";
- sha256 = "1pzib2m8048x174wzf1r67x0mjqwhpkv2jsbirlvwiwsyvvia7ix";
- name = "mailimporter-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/mailimporter-18.08.0.tar.xz";
+ sha256 = "0gywzd882mkjf9q07wg2hi4js4gqvyjxf3y0lgq22k5bd5gpfxbs";
+ name = "mailimporter-18.08.0.tar.xz";
};
};
marble = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/marble-18.04.3.tar.xz";
- sha256 = "1psg2qyzmqg1yvxn33rb10ybby0fs3njmrcjbjw58yvqv9q78lkz";
- name = "marble-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/marble-18.08.0.tar.xz";
+ sha256 = "1ylcdnf0rw0a51jcy183p9xcir4j7jlm6dmhk4k13zvzv16pcwvf";
+ name = "marble-18.08.0.tar.xz";
};
};
mbox-importer = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/mbox-importer-18.04.3.tar.xz";
- sha256 = "0jjdrl5a1jp3al2vqilaba5239vi3l3s5f0rwk853k0c2gqsm79j";
- name = "mbox-importer-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/mbox-importer-18.08.0.tar.xz";
+ sha256 = "08n46q2xxvjbbcr4754x7qw4p3yffmrpvzxi7k2i48ifxhs2awqj";
+ name = "mbox-importer-18.08.0.tar.xz";
};
};
messagelib = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/messagelib-18.04.3.tar.xz";
- sha256 = "025b2ldpayasa6hyfd0zy5hca1cq6xs3pc7j992rv9xwkgmb47wn";
- name = "messagelib-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/messagelib-18.08.0.tar.xz";
+ sha256 = "0d1bb0n9izwlk9fbwyf1hvwkrng1b6im574fxpkgk73ivb72ppfx";
+ name = "messagelib-18.08.0.tar.xz";
};
};
minuet = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/minuet-18.04.3.tar.xz";
- sha256 = "1r4ipkda2jibs0p1xq1s8aggzr5fz0sll94dqrqb7hgfihhmz052";
- name = "minuet-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/minuet-18.08.0.tar.xz";
+ sha256 = "0gvla9ig912wrg6vvdmqv2hyybr08a45crx69l31hcd13h9pmyg6";
+ name = "minuet-18.08.0.tar.xz";
};
};
okular = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/okular-18.04.3.tar.xz";
- sha256 = "0jjmqbwwbrg2svy487dln1lgc0ch80qpnsx8z1ksai3i015ns7f5";
- name = "okular-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/okular-18.08.0.tar.xz";
+ sha256 = "11wwh0vb1l2dw2zhcg6f92y7vb5i5kaqwi8kszz8sd874ydpp8pn";
+ name = "okular-18.08.0.tar.xz";
};
};
palapeli = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/palapeli-18.04.3.tar.xz";
- sha256 = "08llmn4g119fr0ar733xsjwfznk62qz0d0cxjz5h06nz4l06rzzz";
- name = "palapeli-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/palapeli-18.08.0.tar.xz";
+ sha256 = "1a1k44q62raw1kxkyg8cspvwxzr1islbwzcb7sj63cmzsmwfhkg1";
+ name = "palapeli-18.08.0.tar.xz";
};
};
parley = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/parley-18.04.3.tar.xz";
- sha256 = "1ynwlzj20vybzmgxb50v7dxkm7hjjc58lw82lvwhh94igklq6mjv";
- name = "parley-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/parley-18.08.0.tar.xz";
+ sha256 = "1cy58fs1jaz1zga4dwfr80m0p6cgzc5ip26ds2x2lpygx7pbjcc6";
+ name = "parley-18.08.0.tar.xz";
};
};
picmi = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/picmi-18.04.3.tar.xz";
- sha256 = "0x3mg8s0dm0p2vzqvcc9ini7af8pdg3y28y02bqs7v2z9gml0hfl";
- name = "picmi-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/picmi-18.08.0.tar.xz";
+ sha256 = "1x2ya0vwxwc56rfskl3l83nw0vpdh1lzshh0sdal3rfw0s8w895x";
+ name = "picmi-18.08.0.tar.xz";
};
};
pimcommon = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/pimcommon-18.04.3.tar.xz";
- sha256 = "0v3glgpvymddmdkfs1gcqmlh4ifk9kyhsqz2nyvyr7b8f38drjdj";
- name = "pimcommon-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/pimcommon-18.08.0.tar.xz";
+ sha256 = "1j6pj7f52ya0jgzq97g65zl3mpv7hn002flv35qlg5srzdllm3pd";
+ name = "pimcommon-18.08.0.tar.xz";
};
};
pim-data-exporter = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/pim-data-exporter-18.04.3.tar.xz";
- sha256 = "1ky6igdfr15vhfpjg1nv60zbc4fwi8b5vwkign911qimk9alga7j";
- name = "pim-data-exporter-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/pim-data-exporter-18.08.0.tar.xz";
+ sha256 = "1spbkwv9kqzky958nymr5plz8rgzxbn6xzgy7k9pkpvynd1a54hz";
+ name = "pim-data-exporter-18.08.0.tar.xz";
};
};
pim-sieve-editor = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/pim-sieve-editor-18.04.3.tar.xz";
- sha256 = "1pa4z67chyacds6adi53ccdfmr5jhsd3vgpgk0wdmkn82353nvzn";
- name = "pim-sieve-editor-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/pim-sieve-editor-18.08.0.tar.xz";
+ sha256 = "0nqv530rlamlngxwy3cpbyjj75akx3k9lcifgymlbm4ipp9k125c";
+ name = "pim-sieve-editor-18.08.0.tar.xz";
};
};
poxml = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/poxml-18.04.3.tar.xz";
- sha256 = "0wi7m1021vj2lama6iqkpsdzx5d4s5h0sbwnf7y5p5k59g7la7rf";
- name = "poxml-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/poxml-18.08.0.tar.xz";
+ sha256 = "04sy8v3n12asz8hfh107y5irhxzlpkzgc3zjw8qfygflzg9a48cz";
+ name = "poxml-18.08.0.tar.xz";
};
};
print-manager = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/print-manager-18.04.3.tar.xz";
- sha256 = "1ml3jdpz60dhgrcpd05bzs736a65mqkglvvzikkaai0r9wwv4n3k";
- name = "print-manager-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/print-manager-18.08.0.tar.xz";
+ sha256 = "1mi2aqsh5irlnlgkajkkxhazyafhpndrxckcc2kmrh00d4cxhivn";
+ name = "print-manager-18.08.0.tar.xz";
};
};
rocs = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/rocs-18.04.3.tar.xz";
- sha256 = "1wx5h09vkpkyg4h3wcnkq8ks6mg9f1h7l5dzv1dpq8shyr9bnnr8";
- name = "rocs-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/rocs-18.08.0.tar.xz";
+ sha256 = "1c3i11mg6xs64wjyph51hqr6j428hh71ljdq4ajhysql7l5kbhhx";
+ name = "rocs-18.08.0.tar.xz";
};
};
signon-kwallet-extension = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/signon-kwallet-extension-18.04.3.tar.xz";
- sha256 = "1f8x0lf0zy18mxkjc11k1j0llqnc3mrn0fnd4ag6qfvx7bhz16fd";
- name = "signon-kwallet-extension-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/signon-kwallet-extension-18.08.0.tar.xz";
+ sha256 = "024ay0z9inbf7k54iq5v78cxh4q8x1ypvd8r3w80dyygjw2dw743";
+ name = "signon-kwallet-extension-18.08.0.tar.xz";
};
};
spectacle = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/spectacle-18.04.3.tar.xz";
- sha256 = "1qjvq5df0syl7syqdwfl3xh38gz1fysib2a0mnigv1hnln1w0p2b";
- name = "spectacle-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/spectacle-18.08.0.tar.xz";
+ sha256 = "1gc2qza529jld1zngzs98zmd3734h13phviswqpg93qnbr9hxskr";
+ name = "spectacle-18.08.0.tar.xz";
};
};
step = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/step-18.04.3.tar.xz";
- sha256 = "0a370sp71xk8s091qsal3jg4f23wydfy4fccf38craz0wdy6km4q";
- name = "step-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/step-18.08.0.tar.xz";
+ sha256 = "15hjbisv3adsn0vavlcl3iy3vz6mf1fv0qj4ykmxckblcyhm1mgg";
+ name = "step-18.08.0.tar.xz";
};
};
svgpart = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/svgpart-18.04.3.tar.xz";
- sha256 = "1c2j3p2blvzwlaipgjby7pzaflpzp0pbnnda81lgwbh7blin9k0k";
- name = "svgpart-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/svgpart-18.08.0.tar.xz";
+ sha256 = "0q71nn1xsdh7ag60szl836lif9ywnv3dlv8w0sn3zfa7yv0cbraa";
+ name = "svgpart-18.08.0.tar.xz";
};
};
sweeper = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/sweeper-18.04.3.tar.xz";
- sha256 = "0v86pil9krziz2wbvzj6x7ivq505iy4lx4zjrgpxw2dxmyyp338c";
- name = "sweeper-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/sweeper-18.08.0.tar.xz";
+ sha256 = "1j87cb9bbfn42f2xn9k6j8ailgn18b5ribjf4sgglx2h1l3vpq51";
+ name = "sweeper-18.08.0.tar.xz";
};
};
syndication = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/syndication-18.04.3.tar.xz";
- sha256 = "1gfimm9x1j079j4q4d51z9nz4x3khlwzjywrip2paxmfrsjcca0g";
- name = "syndication-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/syndication-18.08.0.tar.xz";
+ sha256 = "17j3ks7bmr3p71lvrm8bzbfai5sw3frwrwl0ckbg1rwhkbsi3d71";
+ name = "syndication-18.08.0.tar.xz";
};
};
umbrello = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/umbrello-18.04.3.tar.xz";
- sha256 = "1w46dys13cl29xh3d1fjp2xh09vmsq45bdifwsa1zjlqi0iiw0h1";
- name = "umbrello-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/umbrello-18.08.0.tar.xz";
+ sha256 = "0rs92l6disjha8w5nx05qjbidib4a9yyab7f4cd4sjnjfcw3i1px";
+ name = "umbrello-18.08.0.tar.xz";
};
};
zeroconf-ioslave = {
- version = "18.04.3";
+ version = "18.08.0";
src = fetchurl {
- url = "${mirror}/stable/applications/18.04.3/src/zeroconf-ioslave-18.04.3.tar.xz";
- sha256 = "0mi0kx6gklddj37qzz04n399ijqpzl536z9x1al427mxi53h1xbw";
- name = "zeroconf-ioslave-18.04.3.tar.xz";
+ url = "${mirror}/stable/applications/18.08.0/src/zeroconf-ioslave-18.08.0.tar.xz";
+ sha256 = "05j8k8la4gcydazzhhxq8700w1l4q57yylcar1wzs108icp03rkm";
+ name = "zeroconf-ioslave-18.08.0.tar.xz";
};
};
}
diff --git a/pkgs/applications/misc/1password/default.nix b/pkgs/applications/misc/1password/default.nix
index 94dfc68fb59b20b59bf2f2f83945d5ba0dea9940..331f516c88ceb00a3f2b39c607fcd03a95486251 100644
--- a/pkgs/applications/misc/1password/default.nix
+++ b/pkgs/applications/misc/1password/default.nix
@@ -4,19 +4,19 @@ stdenv.mkDerivation rec {
name = "1password-${version}";
version = "0.5.3";
src =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
fetchzip {
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_386_v${version}.zip";
sha256 = "05s223h1yps4k9kmignl0r5sbh6w7m1hnlmafnf1kiwv7gacvxjc";
stripRoot = false;
}
- else if stdenv.system == "x86_64-linux" then
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
fetchzip {
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_amd64_v${version}.zip";
sha256 = "0p9x1fx0309v8dxxaf88m8x8q15zzqywfmjn6v5wb9v3scp9396v";
stripRoot = false;
}
- else if stdenv.system == "x86_64-darwin" then
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then
fetchzip {
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_darwin_amd64_v${version}.zip";
sha256 = "1z2xp9bn93gr4ha6zx65va1fb58a2xlnnmpv583y96gq3vbnqdcj";
diff --git a/pkgs/applications/misc/adobe-reader/default.nix b/pkgs/applications/misc/adobe-reader/default.nix
index 88bf87b0a84fd8d4d84e1ff2f63f3125b16cfe4c..0ca12a0096edda1703d2ae53880256c56b3a3362 100644
--- a/pkgs/applications/misc/adobe-reader/default.nix
+++ b/pkgs/applications/misc/adobe-reader/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, libX11, cups, zlib, libxml2, pango, atk, gtk2, glib
, gdk_pixbuf }:
-assert stdenv.system == "i686-linux";
+assert stdenv.hostPlatform.system == "i686-linux";
let version = "9.5.5"; in
diff --git a/pkgs/applications/misc/alacritty/default.nix b/pkgs/applications/misc/alacritty/default.nix
index 089db8e73cb53f358474410d79d54ee931d71c1b..4544ed1fba3bef4d92b1784ac1c12e59aa4d9cdc 100644
--- a/pkgs/applications/misc/alacritty/default.nix
+++ b/pkgs/applications/misc/alacritty/default.nix
@@ -51,18 +51,18 @@ let
];
in buildRustPackage rec {
name = "alacritty-unstable-${version}";
- version = "2018-07-20";
+ version = "2018-08-30";
# At the moment we cannot handle git dependencies in buildRustPackage.
# This fork only replaces rust-fontconfig/libfontconfig with a git submodules.
src = fetchgit {
url = https://github.com/Mic92/alacritty.git;
rev = "rev-${version}";
- sha256 = "1vhjmysfra6dsbv35qbvsf76rhkj990lgns0k0gpbcrf47gsvx1n";
+ sha256 = "0izvg7dwwb763jc6gnmn47i5zrkxvmh3vssn6vzrrmqhd4j3msmf";
fetchSubmodules = true;
};
- cargoSha256 = "0rs2p4sik25ynx6ri2wlg8v6vrdmf10xxnw9f2aqyps9m038i9di";
+ cargoSha256 = "1ijgkwv9ij4haig1h6n2b9xbhp5vahy9vp1sx72wxaaj9476msjx";
nativeBuildInputs = [
cmake
diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix
index 15d894b0413dba4858f28486d39eae1157b72975..d66a778c1cd9003ce5e441217462cb5af442c747 100644
--- a/pkgs/applications/misc/calibre/default.nix
+++ b/pkgs/applications/misc/calibre/default.nix
@@ -5,12 +5,12 @@
}:
stdenv.mkDerivation rec {
- version = "3.29.0";
+ version = "3.30.0";
name = "calibre-${version}";
src = fetchurl {
url = "https://download.calibre-ebook.com/${version}/${name}.tar.xz";
- sha256 = "1r29vi8j51r0nnzpjbg34ryvizzkn31sq1iz7z748wjfgr87wmyh";
+ sha256 = "0j7w63kniqnpr8v1aldzbim2dyrk79n23mzw9y56jqd0k47m8zfz";
};
patches = [
diff --git a/pkgs/applications/misc/cura/lulzbot.nix b/pkgs/applications/misc/cura/lulzbot.nix
index 6a36e42eaa3d182f60ba384d2488109f8a144472..f3f1972f6e6ec49b17ad95ab08a5379069b2d826 100644
--- a/pkgs/applications/misc/cura/lulzbot.nix
+++ b/pkgs/applications/misc/cura/lulzbot.nix
@@ -8,17 +8,17 @@ stdenv.mkDerivation rec {
version = "15.02.1-1.03-5064";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://download.alephobjects.com/ao/aodeb/dists/jessie/main/binary-amd64/cura_${version}_amd64.deb";
sha256 = "1gsfidg3gim5pjbl82vkh0cw4ya253m4p7nirm8nr6yjrsirkzxg";
}
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "http://download.alephobjects.com/ao/aodeb/dists/jessie/main/binary-i386/cura_${version}_i386.deb";
sha256 = "0xd3df6bxq4rijgvsqvps454jkc1nzhxbdzzj6j2w317ppsbhyc1";
}
- else throw "${name} is not supported on ${stdenv.system}";
+ else throw "${name} is not supported on ${stdenv.hostPlatform.system}";
python_deps = with py; [ pyopengl pyserial numpy wxPython30 power setuptools ];
pythonPath = python_deps;
diff --git a/pkgs/applications/misc/curaengine/default.nix b/pkgs/applications/misc/curaengine/default.nix
index ba9a98c616b34190a0016d47b36c14f2ad9c8c44..75d1936ba857b60dd7f25648f26920118fe1f9d5 100644
--- a/pkgs/applications/misc/curaengine/default.nix
+++ b/pkgs/applications/misc/curaengine/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, libarcus, stb }:
+{ stdenv, fetchFromGitHub, fetchpatch, cmake, libarcus, stb }:
stdenv.mkDerivation rec {
name = "curaengine-${version}";
@@ -11,6 +11,14 @@ stdenv.mkDerivation rec {
sha256 = "083jmhzmb60rmqw0fhbnlxyblzkmpn3k6zc75xq90x5g3h60wib4";
};
+ patches = [
+ # Fixed upstream, but not yet released
+ (fetchpatch {
+ url = "https://github.com/Ultimaker/CuraEngine/commit/5aad55bf67e52ce5bdb27a3925af8a4cab441b38.patch";
+ sha256 = "1hxbslzhkvdg8p33mvlbrpw62gwfqpsdbfca6yhdng9hifl86j3f";
+ })
+ ];
+
nativeBuildInputs = [ cmake ];
buildInputs = [ libarcus stb ];
diff --git a/pkgs/applications/misc/dbeaver/default.nix b/pkgs/applications/misc/dbeaver/default.nix
index b8eff972ebdd6c3ee7eca5950cb6f522a8f8e2d9..35698a32331900c335946890219b5395da392486 100644
--- a/pkgs/applications/misc/dbeaver/default.nix
+++ b/pkgs/applications/misc/dbeaver/default.nix
@@ -7,7 +7,7 @@
stdenv.mkDerivation rec {
name = "dbeaver-ce-${version}";
- version = "5.1.5";
+ version = "5.1.6";
desktopItem = makeDesktopItem {
name = "dbeaver";
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://dbeaver.io/files/${version}/dbeaver-ce-${version}-linux.gtk.x86_64.tar.gz";
- sha256 = "17ai2gxnz1wj5m282sib9qhvy3665km2ig1ixxdklmk8apgdl1xr";
+ sha256 = "1zypadnyhinm6mfv91s7zs2s55bhzgkqhl6ai6x3yqwhvayc02nn";
};
installPhase = ''
diff --git a/pkgs/applications/misc/extract_url/default.nix b/pkgs/applications/misc/extract_url/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..389ac7dfb1fc8267f42ac1b5c7fb9db2b736ab66
--- /dev/null
+++ b/pkgs/applications/misc/extract_url/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, lib, fetchFromGitHub, makeWrapper, perl
+, MIMEtools, HTMLParser
+, cursesSupport ? true, CursesUI
+, uriFindSupport ? true, URIFind
+}:
+
+let
+ perlDeps =
+ [ MIMEtools HTMLParser ]
+ ++ lib.optional cursesSupport CursesUI
+ ++ lib.optional uriFindSupport URIFind;
+
+in stdenv.mkDerivation rec {
+ name = "extract_url-${version}";
+ version = "1.6.2";
+
+ src = fetchFromGitHub {
+ owner = "m3m0ryh0l3";
+ repo = "extracturl";
+ rev = "v${version}";
+ sha256 = "05589lp15jmcpbj4y9a3hmf6n2gsqrm4ybcyh3hd4j6pc7hmnhny";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+ buildInputs = [ perl ] ++ perlDeps;
+
+ makeFlags = [ "prefix=$(out)" ];
+ installFlags = [ "INSTALL=install" ];
+
+ postFixup = ''
+ wrapProgram "$out/bin/extract_url" \
+ --set PERL5LIB "${lib.makeFullPerlPath perlDeps}"
+ '';
+
+ meta = with lib; {
+ homepage = https://www.memoryhole.net/~kyle/extract_url/;
+ description = "Extracts URLs from MIME messages or plain text";
+ license = licenses.bsd2;
+ maintainers = [ maintainers.qyliss ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/applications/misc/fbreader/default.nix b/pkgs/applications/misc/fbreader/default.nix
index 6fa34a008e770f9f118fc98f632ca04a25fa47b9..548966764fe64999cb25da5de187ef4f1d86a8dc 100644
--- a/pkgs/applications/misc/fbreader/default.nix
+++ b/pkgs/applications/misc/fbreader/default.nix
@@ -1,38 +1,68 @@
-{ stdenv, fetchurl, pkgconfig, bzip2, curl, expat, fribidi
-, libunibreak, qt4, sqlite, zlib }:
+{ stdenv, fetchFromGitHub, pkgconfig
+, bzip2, curl, expat, fribidi, libunibreak, sqlite, zlib
+, uiTarget ? if !stdenv.isDarwin then "desktop" else "macosx"
+, uiType ? if !stdenv.isDarwin then "qt4" else "cocoa"
+, qt4, gtk2
+, AppKit, Cocoa
+}:
+
+with stdenv.lib;
+
+assert elem uiTarget [ "desktop" "macosx" ];
+assert elem uiType [ "qt4" "gtk" "cocoa" ];
+assert uiTarget == "macosx" -> uiType == "cocoa";
+
+# Note: "qt" uiType option mentioned in ${src}/README.build is qt3,
+# which is way to old and no longer in nixpkgs.
stdenv.mkDerivation {
- name = "fbreader-0.99.4";
+ name = "fbreader-${uiType}-0.99.6";
- src = fetchurl {
- url = https://fbreader.org/files/desktop/fbreader-sources-0.99.4.tgz;
- sha256 = "1sdq3vvwkq4bkyrvh0p884d66gaddz8hlab3m798ji9ixbak2z1x";
+ src = fetchFromGitHub {
+ owner = "geometer";
+ repo = "FBReader";
+ rev = "9e608db14372ae580beae4976eec7241fa069e75";
+ sha256 = "0lzafk02mv0cf2l2a61q5y4743zi913byik4bw1ix0gr1drnsa7y";
};
+ patches = [ ./typecheck.patch ];
+
+ postPatch = ''
+ cat << EOF > makefiles/target.mk
+ TARGET_ARCH = ${uiTarget}
+ TARGET_STATUS = release
+ UI_TYPE = ${uiType}
+ EOF
+
+ substituteInPlace makefiles/arch/desktop.mk \
+ --replace ccache "" \
+ --replace moc-qt4 moc
+
+ # libunibreak supersedes liblinebreak
+ substituteInPlace zlibrary/text/Makefile \
+ --replace -llinebreak -lunibreak
+ '';
+
nativeBuildInputs = [ pkgconfig ];
+
buildInputs = [
- bzip2 curl expat fribidi libunibreak
- qt4 sqlite zlib
- ];
+ bzip2 curl expat fribidi libunibreak sqlite zlib
+ ]
+ ++ optional (uiType == "qt4") qt4
+ ++ optional (uiType == "gtk") gtk2
+ ++ optionals (uiType == "cocoa") [ AppKit Cocoa ];
makeFlags = "INSTALLDIR=$(out)";
NIX_CFLAGS_COMPILE = [ "-Wno-error=narrowing" ]; # since gcc-6
- patchPhase = ''
- # don't try to use ccache
- substituteInPlace makefiles/arch/desktop.mk \
- --replace "CCACHE = " "# CCACHE = "
-
- substituteInPlace fbreader/desktop/Makefile \
- --replace "/usr/share" "$out/share"
- '';
-
meta = with stdenv.lib; {
description = "An e-book reader for Linux";
homepage = http://www.fbreader.org/;
license = licenses.gpl3;
- platforms = platforms.linux; # possibly also on unix general
+ broken = stdenv.isDarwin # untested, might work
+ || uiType == "gtk"; # builds, but the result is unusable, hangs a lot
+ platforms = platforms.unix;
maintainers = [ maintainers.coroa ];
- };
+ };
}
diff --git a/pkgs/applications/misc/fbreader/typecheck.patch b/pkgs/applications/misc/fbreader/typecheck.patch
new file mode 100644
index 0000000000000000000000000000000000000000..cbac290e69c25b5a80a365a4c463eb2520210ed2
--- /dev/null
+++ b/pkgs/applications/misc/fbreader/typecheck.patch
@@ -0,0 +1,11 @@
+diff --git a/fbreader/src/database/booksdb/BooksDB.cpp b/fbreader/src/database/booksdb/BooksDB.cpp
+index e33a22e76..1b6092800 100644
+--- a/fbreader/src/database/booksdb/BooksDB.cpp
++++ b/fbreader/src/database/booksdb/BooksDB.cpp
+@@ -146,5 +146,5 @@ shared_ptr BooksDB::loadBook(const std::string &fileName) {
+ myFindFileId->setFileName(fileName);
+ if (!myFindFileId->run()) {
+- return false;
++ return 0;
+ }
+ ((DBIntValue&)*myLoadBook->parameter("@file_id").value()) = myFindFileId->fileId();
diff --git a/pkgs/applications/misc/finalterm/default.nix b/pkgs/applications/misc/finalterm/default.nix
deleted file mode 100644
index 2c024b9fe0edb527dd3065c1cedfdcd00635c4c0..0000000000000000000000000000000000000000
--- a/pkgs/applications/misc/finalterm/default.nix
+++ /dev/null
@@ -1,65 +0,0 @@
-{ stdenv, fetchFromGitHub, makeWrapper
-, pkgconfig, cmake, libxml2, vala_0_26, intltool, libmx, gnome3, gtk3, gtk-doc
-, keybinder3, clutter-gtk, libnotify
-, libxkbcommon, xorg, udev
-, bashInteractive
-}:
-
-with stdenv.lib;
-
-stdenv.mkDerivation {
- name = "finalterm-git-2014-11-15";
-
- src = fetchFromGitHub {
- owner = "p-e-w";
- repo = "finalterm";
- rev = "39b078b2a96a5c3c9e74f92b1929f383d220ca8b";
- sha256 = "14viln5nabr39lafg1lzf6ydibz1h5d9346drp435ljxc6wsh21i";
- };
-
- nativeBuildInputs = [ pkgconfig cmake intltool makeWrapper ];
- buildInputs = [
- vala_0_26 gtk3 gnome3.gnome-common gnome3.libgee
- gtk-doc clutter-gtk libmx keybinder3 libxml2 libnotify
- xorg.libpthreadstubs xorg.libXdmcp xorg.libxshmfence
- libxkbcommon
- ] ++ optionals stdenv.isLinux [ udev ];
-
- preConfigure = ''
- substituteInPlace data/org.gnome.finalterm.gschema.xml \
- --replace "/bin/bash" "${bashInteractive}/bin/bash"
-
- cmakeFlagsArray=(
- -DMINIMAL_FLAGS=ON
- )
- '';
-
- postInstall = ''
- mkdir -p $out/share/gsettings-schemas/$name
- mv $out/share/glib-2.0 $out/share/gsettings-schemas/$name/
- '';
-
- postFixup = ''
- wrapProgram "$out/bin/finalterm" \
- --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
- --prefix GIO_EXTRA_MODULES : "${getLib gnome3.dconf}/lib/gio/modules" \
- --prefix XDG_DATA_DIRS : "${gnome3.defaultIconTheme}/share:${gnome3.gtk.out}/share:$out/share:$GSETTINGS_SCHEMAS_PATH"
- '';
-
- meta = {
- homepage = http://finalterm.org;
- description = "A new breed of terminal emulator";
- longDescription = ''
- Final Term is a new breed of terminal emulator.
-
- It goes beyond mere emulation and understands what is happening inside the shell it is hosting. This allows it to offer features no other terminal can, including:
-
- - Semantic text menus
- - Smart command completion
- - GUI terminal controls
- '';
- license = licenses.gpl3Plus;
- maintainers = [ maintainers.cstrahan ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/applications/misc/font-manager/default.nix b/pkgs/applications/misc/font-manager/default.nix
index 1fad5333a144bd6b75d873d4014d08bc5c82e94f..54392b03bfbfa86092fc3e75c5e7cce9590ad12a 100644
--- a/pkgs/applications/misc/font-manager/default.nix
+++ b/pkgs/applications/misc/font-manager/default.nix
@@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, automake, autoconf, libtool,
pkgconfig, file, intltool, libxml2, json-glib , sqlite, itstool,
- librsvg, vala_0_34, gnome3, wrapGAppsHook, gobjectIntrospection
+ librsvg, vala, gnome3, wrapGAppsHook, gobjectIntrospection
}:
stdenv.mkDerivation rec {
name = "font-manager-${version}";
- version = "0.7.3";
+ version = "0.7.3.1";
src = fetchFromGitHub {
- owner = "FontManager";
- repo = "master";
- rev = version;
- sha256 = "0qwi1mn2sc2q5cs28rga8i3cn34ylybs949vjnh97dl2rvlc0x06";
+ owner = "FontManager";
+ repo = "master";
+ rev = version;
+ sha256 = "0i65br0bk3r6x8wcl8jhc0v0agl0k6fy5g60ss1bnw4md7ldpgyi";
};
nativeBuildInputs = [
@@ -19,7 +19,8 @@ stdenv.mkDerivation rec {
automake autoconf libtool
file
intltool
- vala_0_34
+ itstool
+ vala
gnome3.yelp-tools
wrapGAppsHook
# For setup hook
@@ -30,12 +31,9 @@ stdenv.mkDerivation rec {
libxml2
json-glib
sqlite
- itstool
librsvg
gnome3.gtk
- gnome3.gucharmap
gnome3.libgee
- gnome3.file-roller
gnome3.defaultIconTheme
];
@@ -46,7 +44,10 @@ stdenv.mkDerivation rec {
substituteInPlace configure --replace "/usr/bin/file" "${file}/bin/file"
'';
- configureFlags = [ "--disable-pycompile" ];
+ configureFlags = [
+ "--with-file-roller"
+ "--disable-pycompile"
+ ];
meta = {
homepage = https://fontmanager.github.io/;
diff --git a/pkgs/applications/misc/golden-cheetah/default.nix b/pkgs/applications/misc/golden-cheetah/default.nix
index f62eb92ac04a59676c9fc80a8d73a2b7ad10ca06..eecc34b3d94f9543cb61af8bc4adc8231531dc7a 100644
--- a/pkgs/applications/misc/golden-cheetah/default.nix
+++ b/pkgs/applications/misc/golden-cheetah/default.nix
@@ -34,9 +34,10 @@ stdenv.mkDerivation rec {
# RCC: Error in 'Resources/application.qrc': Cannot find file 'translations/gc_fr.qm'
enableParallelBuilding = false;
- meta = {
+ meta = with stdenv.lib; {
description = "Performance software for cyclists, runners and triathletes";
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.ocharles ];
+ platforms = platforms.linux;
+ maintainers = [ maintainers.ocharles ];
+ license = licenses.gpl3;
};
}
diff --git a/pkgs/applications/misc/goldendict/default.nix b/pkgs/applications/misc/goldendict/default.nix
index 5cb51eefe5d7e630777ad5443b8920e3cee7c394..42d5d83f7bdbdc09300ae5fb195fae1417598598 100644
--- a/pkgs/applications/misc/goldendict/default.nix
+++ b/pkgs/applications/misc/goldendict/default.nix
@@ -19,11 +19,11 @@ stdenv.mkDerivation rec {
qmakeFlags = [ "CONFIG+=zim_support" ];
- meta = {
+ meta = with stdenv.lib; {
homepage = http://goldendict.org/;
description = "A feature-rich dictionary lookup program";
-
- platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ gebner astsmtl ];
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ gebner astsmtl ];
+ license = licenses.gpl3Plus;
};
}
diff --git a/pkgs/applications/misc/googleearth/default.nix b/pkgs/applications/misc/googleearth/default.nix
index 9c1b457c299da0087faa730ca9f1276c9fa1625e..96f8cb1161433bf4a11a37813537ea32f59f82da 100644
--- a/pkgs/applications/misc/googleearth/default.nix
+++ b/pkgs/applications/misc/googleearth/default.nix
@@ -4,9 +4,9 @@
let
arch =
- if stdenv.system == "x86_64-linux" then "amd64"
- else if stdenv.system == "i686-linux" then "i386"
- else throw "Unsupported system ${stdenv.system}";
+ if stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
+ else if stdenv.hostPlatform.system == "i686-linux" then "i386"
+ else throw "Unsupported system ${stdenv.hostPlatform.system}";
sha256 =
if arch == "amd64"
then "0dwnppn5snl5bwkdrgj4cyylnhngi0g66fn2k41j3dvis83x24k6"
diff --git a/pkgs/applications/misc/gphoto2/gphotofs.nix b/pkgs/applications/misc/gphoto2/gphotofs.nix
index 6fa11667cf333eaa1fb390eee752eabecf5d4067..7b23fca2121e8e317f356e591c0233834dafc840 100644
--- a/pkgs/applications/misc/gphoto2/gphotofs.nix
+++ b/pkgs/applications/misc/gphoto2/gphotofs.nix
@@ -13,11 +13,11 @@ stdenv.mkDerivation rec {
libgphoto2 fuse glib libtool
];
- meta = {
+ meta = with stdenv.lib; {
description = "Fuse FS to mount a digital camera";
- maintainers = [
- stdenv.lib.maintainers.raskin
- ];
- platforms = stdenv.lib.platforms.linux;
+ homepage = http://www.gphoto.org/;
+ maintainers = [ maintainers.raskin ];
+ platforms = platforms.linux;
+ license = with licenses; [ lgpl2 gpl2 ];
};
}
diff --git a/pkgs/applications/misc/gpsprune/default.nix b/pkgs/applications/misc/gpsprune/default.nix
index 6689a3cae102696db1c0a0b8a7287b16373b5103..1979d290c8258c72471f1731fdc5054797afaa68 100644
--- a/pkgs/applications/misc/gpsprune/default.nix
+++ b/pkgs/applications/misc/gpsprune/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "gpsprune-${version}";
- version = "19";
+ version = "19.1";
src = fetchurl {
url = "https://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
- sha256 = "0n08fg55zgpfg1f6lq0n3ngi0n8af1r0rhmbnpik5mjng4m9g3x5";
+ sha256 = "1drw30z21sdzjc2mcm13yqb5aipvcxmslb2yn6xs3b6b2mx3h2zy";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/applications/misc/gpxsee/default.nix b/pkgs/applications/misc/gpxsee/default.nix
index ed0dd3ba5be33b58c87834275e7cc581192aeba4..33ffb6b5acb37fb15582ac55f5d852f94ff45ab4 100644
--- a/pkgs/applications/misc/gpxsee/default.nix
+++ b/pkgs/applications/misc/gpxsee/default.nix
@@ -2,29 +2,34 @@
stdenv.mkDerivation rec {
name = "gpxsee-${version}";
- version = "4.19";
+ version = "5.17";
src = fetchFromGitHub {
owner = "tumic0";
repo = "GPXSee";
rev = version;
- sha256 = "1xjf2aawf633c1ydhpcsjhdlfkjkfsjbcgjd737xpfv1wjz99l4l";
+ sha256 = "0fr835glvwnpq6sy181z0gskvwfrmvh7115r3d92xy71v8b1l5ib";
};
- nativeBuildInputs = [ qmake qttools ];
+ nativeBuildInputs = [ qmake ];
+ buildInputs = [ qttools ];
preConfigure = ''
substituteInPlace src/config.h --replace /usr/share/gpxsee $out/share/gpxsee
lrelease lang/*.ts
'';
- preFixup = ''
+ installPhase = ''
install -Dm755 GPXSee $out/bin/GPXSee
-
mkdir -p $out/share/gpxsee
- cp pkg/maps.txt $out/share/gpxsee
+ cp -r pkg/csv $out/share/gpxsee/
+ cp -r pkg/maps $out/share/gpxsee/
+ mkdir -p $out/share/gpxsee/translations
+ cp -r lang/*.qm $out/share/gpxsee/translations
'';
+ enableParallelBuilding = true;
+
meta = with stdenv.lib; {
homepage = http://www.gpxsee.org/;
description = "GPX viewer and analyzer";
diff --git a/pkgs/applications/misc/gxneur/default.nix b/pkgs/applications/misc/gxneur/default.nix
index ec041902b256f57122baed57e944bd1e8299afa6..9def56aa98c197201ce8283c7ca3352546ef3594 100644
--- a/pkgs/applications/misc/gxneur/default.nix
+++ b/pkgs/applications/misc/gxneur/default.nix
@@ -14,8 +14,9 @@ stdenv.mkDerivation {
libglade GConf pcre libappindicator-gtk2
];
- meta = {
+ meta = with stdenv.lib; {
description = "GUI for XNEUR keyboard layout switcher";
- platforms = stdenv.lib.platforms.linux;
+ platforms = platforms.linux;
+ license = with licenses; [ gpl2 gpl3 ];
};
}
diff --git a/pkgs/applications/misc/icesl/default.nix b/pkgs/applications/misc/icesl/default.nix
index 49b1741fd5af564427698b47137a4852b77f80ff..c0c1faef09d24da853fc1f0efbeed7a58260d4d4 100644
--- a/pkgs/applications/misc/icesl/default.nix
+++ b/pkgs/applications/misc/icesl/default.nix
@@ -6,10 +6,10 @@ stdenv.mkDerivation rec {
name = "iceSL-${version}";
version = "2.1.10";
- src = if stdenv.system == "x86_64-linux" then fetchzip {
+ src = if stdenv.hostPlatform.system == "x86_64-linux" then fetchzip {
url = "https://gforge.inria.fr/frs/download.php/file/37268/icesl${version}-amd64.zip";
sha256 = "0dv3mq6wy46xk9blzzmgbdxpsjdaxid3zadfrysxlhmgl7zb2cn2";
- } else if stdenv.system == "i686-linux" then fetchzip {
+ } else if stdenv.hostPlatform.system == "i686-linux" then fetchzip {
url = "https://gforge.inria.fr/frs/download.php/file/37267/icesl${version}-i386.zip";
sha256 = "0sl54fsb2gz6dy0bwdscpdq1ab6ph5b7zald3bwzgkqsvna7p1jr";
} else throw "Unsupported architecture";
diff --git a/pkgs/applications/misc/kdbplus/default.nix b/pkgs/applications/misc/kdbplus/default.nix
index ba048761367cdd5bc8963f47b979ff6b29a8f102..b518481e29addcb1a02b60a096babb6ae4b0df14 100644
--- a/pkgs/applications/misc/kdbplus/default.nix
+++ b/pkgs/applications/misc/kdbplus/default.nix
@@ -1,6 +1,6 @@
{ stdenv, requireFile, unzip, rlwrap, bash }:
-assert (stdenv.system == "i686-linux");
+assert (stdenv.hostPlatform.system == "i686-linux");
let
libPath = stdenv.lib.makeLibraryPath
diff --git a/pkgs/applications/misc/kitty/default.nix b/pkgs/applications/misc/kitty/default.nix
index d3fff65a39950d5fdbb4757a006ec21d502b180e..c34167b4ddb83bd9aad1f5d92263ca0de0fa3ce6 100644
--- a/pkgs/applications/misc/kitty/default.nix
+++ b/pkgs/applications/misc/kitty/default.nix
@@ -26,6 +26,8 @@ buildPythonApplication rec {
nativeBuildInputs = [ pkgconfig which sphinx ];
+ outputs = [ "out" "terminfo" ];
+
postPatch = ''
substituteInPlace kitty/utils.py \
--replace "find_library('startup-notification-1')" "'${libstartup_notification}/lib/libstartup-notification-1.so'"
@@ -47,11 +49,19 @@ buildPythonApplication rec {
runHook postInstall
'';
+ postInstall = ''
+ mkdir -p $terminfo/share
+ mv $out/share/terminfo $terminfo/share/terminfo
+
+ mkdir -p $out/nix-support
+ echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
+ '';
+
meta = with stdenv.lib; {
homepage = https://github.com/kovidgoyal/kitty;
description = "A modern, hackable, featureful, OpenGL based terminal emulator";
license = licenses.gpl3;
platforms = platforms.linux;
- maintainers = with maintainers; [ tex ];
+ maintainers = with maintainers; [ tex rvolosatovs ];
};
}
diff --git a/pkgs/applications/misc/kiwix/default.nix b/pkgs/applications/misc/kiwix/default.nix
index c37d26f3dbcce97ae4c45bf06cd540d85fe8c466..8d095b78cdbf9f3f28a5930b8bbaae0240481d58 100644
--- a/pkgs/applications/misc/kiwix/default.nix
+++ b/pkgs/applications/misc/kiwix/default.nix
@@ -25,7 +25,7 @@ let
sha256 = "1h9vcbvf8wgds6i2z20y7krpys0mqsqhv1ijyfljanp6vyll9fvi";
};
- xulrunner = if stdenv.system == "x86_64-linux"
+ xulrunner = if stdenv.hostPlatform.system == "x86_64-linux"
then { tar = xulrunner64_tar; sdk = xulrunnersdk64_tar; }
else { tar = xulrunner32_tar; sdk = xulrunnersdk32_tar; };
diff --git a/pkgs/applications/misc/krename/default.nix b/pkgs/applications/misc/krename/default.nix
index a0a2776ae36049edce5ad12f2d90975765592dbc..52233ad2f2f46570057ee9cf88d600b6bb18b431 100644
--- a/pkgs/applications/misc/krename/default.nix
+++ b/pkgs/applications/misc/krename/default.nix
@@ -20,6 +20,7 @@ in mkDerivation rec {
meta = with lib; {
homepage = http://www.krename.net;
description = "A powerful batch renamer for KDE";
+ license = licenses.gpl2;
inherit (kconfig.meta) platforms;
maintainers = with maintainers; [ peterhoeg ];
};
diff --git a/pkgs/applications/misc/mdp/default.nix b/pkgs/applications/misc/mdp/default.nix
index 5af524a456babca892ef66388d98be2061284d9d..f5950b8770359483ec451ceb7f8abac70c1ec700 100644
--- a/pkgs/applications/misc/mdp/default.nix
+++ b/pkgs/applications/misc/mdp/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
- version = "1.0.13";
+ version = "1.0.14";
name = "mdp-${version}";
src = fetchFromGitHub {
owner = "visit1985";
repo = "mdp";
rev = version;
- sha256 = "0snmglsmgfavgv6cnlb0j54sr0paf570ajpwk1b3g81v078hz2aq";
+ sha256 = "1nljb2bkk7kswywvvn3b2k6q14bh2jnwm8cypax3mwssjmid78af";
};
makeFlags = [ "PREFIX=$(out)" ];
diff --git a/pkgs/applications/misc/mop/default.nix b/pkgs/applications/misc/mop/default.nix
index 8c6bd92d5362e9c0a2f84c481c9cdeef181e853d..b9179bbe5463e07836cf0fa4b6dbd3783a28e1f1 100644
--- a/pkgs/applications/misc/mop/default.nix
+++ b/pkgs/applications/misc/mop/default.nix
@@ -22,9 +22,10 @@ buildGoPackage rec {
sha256 = "0zp51g9i8rw6acs4vnrxclbxa5z1v0a0m1xx27szszp0rphcczkx";
};
- meta = {
+ meta = with stdenv.lib; {
description = "Simple stock tracker implemented in go";
homepage = https://github.com/mop-tracker/mop;
- platforms = stdenv.lib.platforms.all;
+ license = licenses.mit;
+ platforms = platforms.all;
};
}
diff --git a/pkgs/applications/misc/navit/CMakeLists.txt.patch b/pkgs/applications/misc/navit/CMakeLists.txt.patch
new file mode 100644
index 0000000000000000000000000000000000000000..7f8a75f319be2124f743706dbc3444828f15ee37
--- /dev/null
+++ b/pkgs/applications/misc/navit/CMakeLists.txt.patch
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 763f75b..defa74a 100755
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -212,7 +212,7 @@ CHECK_INCLUDE_FILES(endian.h HAVE_ENDIAN_H)
+ CHECK_INCLUDE_FILES(stdint.h HAVE_STDINT_H)
+ CHECK_INCLUDE_FILES(byteswap.h HAVE_BYTESWAP_H)
+ CHECK_LIBRARY_EXISTS(gypsy gypsy_control_get_default "" GYPSY_FOUND)
+-CHECK_INCLUDE_FILES(libspeechd.h HAVE_LIBSPEECHD)
++CHECK_INCLUDE_FILES(speech-dispatcher/libspeechd.h HAVE_LIBSPEECHD)
+ CHECK_INCLUDE_FILES(sys/socket.h HAVE_SOCKET)
+ CHECK_INCLUDE_FILES(sys/shm.h HAVE_SHMEM)
+ CHECK_FUNCTION_EXISTS(snprintf HAVE_SNPRINTF)
diff --git a/pkgs/applications/misc/navit/default.nix b/pkgs/applications/misc/navit/default.nix
index 4db5ed4f8eb66335632597d5d717515e5e7d212a..3e763f157985097f6871f3b20b555cdcdb982960 100644
--- a/pkgs/applications/misc/navit/default.nix
+++ b/pkgs/applications/misc/navit/default.nix
@@ -1,18 +1,30 @@
-{ stdenv, fetchFromGitHub, pkgconfig, gtk2, SDL, fontconfig, freetype, imlib2, SDL_image, libGLU_combined,
-libXmu, freeglut, pcre, dbus-glib, glib, librsvg, freeimage, libxslt,
-qtbase, qtquickcontrols, qtsvg, qtdeclarative, qtlocation, qtsensors, qtmultimedia, qtspeech, espeak,
-cairo, gdk_pixbuf, pango, atk, patchelf, fetchurl, bzip2,
-python, gettext, quesoglc, gd, postgresql, cmake, shapelib, SDL_ttf, fribidi}:
+{ stdenv, fetchFromGitHub, pkgconfig, gtk2, fontconfig, freetype, imlib2
+, SDL_image, libGLU_combined, libXmu, freeglut, pcre, dbus, dbus-glib, glib
+, librsvg, freeimage, libxslt, cairo, gdk_pixbuf, pango
+, atk, patchelf, fetchurl, bzip2, python, gettext, quesoglc
+, gd, cmake, shapelib, SDL_ttf, fribidi, makeWrapper
+, qtquickcontrols, qtmultimedia, qtspeech, qtsensors
+, qtlocation, qtdeclarative, qtsvg
+, qtSupport ? false, qtbase #need to fix qt_qpainter
+, sdlSupport ? true, SDL
+, xkbdSupport ? true, xkbd
+, espeakSupport ? true, espeak
+, postgresqlSupport ? false, postgresql
+, speechdSupport ? false, speechd ? null
+}:
+assert speechdSupport -> speechd != null;
+
+with stdenv.lib;
stdenv.mkDerivation rec {
name = "navit-${version}";
- version = "0.5.1";
+ version = "0.5.3";
src = fetchFromGitHub {
owner = "navit-gps";
repo = "navit";
rev = "v${version}";
- sha256 = "0jf2gjh2sszr5y5c2wvamfj2qggi2y5k3ynb32pak9vhf5xyl5xj";
+ sha256 = "071drvqzxpxbfh0lf0lra5a97rv8ny40l96n9xl0dx0s8w30j61i";
};
sample_map = fetchurl {
@@ -21,34 +33,54 @@ stdenv.mkDerivation rec {
sha256 = "0vg6b6rhsa2cxqj4rbhfhhfss71syhnfa6f1jg2i2d7l88dm5x7d";
};
- #hardeningDisable = [ "format" ];
- NIX_CFLAGS_COMPILE = [ "-I${SDL.dev}/include/SDL" ];
+ patches = [ ./CMakeLists.txt.patch ];
+
+ NIX_CFLAGS_COMPILE = optional sdlSupport "-I${SDL.dev}/include/SDL"
+ ++ optional speechdSupport "-I${speechd}/include/speech-dispatcher";
- # TODO: fix speech options.
- cmakeFlags = [ "-DSAMPLE_MAP=n " "-DCMAKE_BUILD_TYPE=RelWithDebInfo" "-Dsupport/espeak=FALSE" "-Dspeech/qt5_espeak=FALSE" ];
+ # we choose only cmdline and speech-dispatcher speech options.
+ # espeak builtins is made for non-cmdline OS as winCE
+ cmakeFlags = [
+ "-DSAMPLE_MAP=n " "-DCMAKE_BUILD_TYPE=Release"
+ "-Dspeech/qt5_espeak=FALSE" "-Dsupport/espeak=FALSE"
+ ];
- buildInputs = [ gtk2 SDL fontconfig freetype imlib2 SDL_image libGLU_combined freeimage libxslt
- libXmu freeglut python gettext quesoglc gd postgresql qtbase SDL_ttf fribidi pcre qtquickcontrols
- espeak qtmultimedia qtspeech qtsensors qtlocation qtdeclarative qtsvg dbus-glib librsvg shapelib glib
- cairo gdk_pixbuf pango atk ];
+ buildInputs = [
+ gtk2 fontconfig freetype imlib2 libGLU_combined freeimage
+ libxslt libXmu freeglut python gettext quesoglc gd
+ fribidi pcre dbus dbus-glib librsvg shapelib glib
+ cairo gdk_pixbuf pango atk
+ ] ++ optionals sdlSupport [ SDL SDL_ttf SDL_image ]
+ ++ optional postgresqlSupport postgresql
+ ++ optional speechdSupport speechd
+ ++ optionals qtSupport [
+ qtquickcontrols qtmultimedia qtspeech qtsensors
+ qtbase qtlocation qtdeclarative qtsvg
+ ];
- nativeBuildInputs = [ pkgconfig cmake patchelf bzip2 ];
+ nativeBuildInputs = [ makeWrapper pkgconfig cmake patchelf bzip2 ];
# we dont want blank screen by defaut
postInstall = ''
# emulate DSAMPLE_MAP
- mkdir -p $out/share/navit/maps/maps
+ mkdir -p $out/share/navit/maps/
bzcat "${sample_map}" | $out/bin/maptool "$out/share/navit/maps/osm_bbox_11.3,47.9,11.7,48.2.bin"
'';
# TODO: fix upstream?
- postFixup = ''
- for lib in $(find "$out/lib/navit/" -iname "*.so" ); do
- patchelf --set-rpath ${stdenv.lib.makeLibraryPath buildInputs} $lib
- done
+ libPath = stdenv.lib.makeLibraryPath ([ stdenv.cc.libc ] ++ buildInputs );
+ postFixup =
+ ''
+ find "$out/lib" -type f -name "*.so" -exec patchelf --set-rpath $libPath {} \;
+
+ wrapProgram $out/bin/navit \
+ --prefix PATH : ${makeBinPath (
+ optional xkbdSupport xkbd
+ ++ optional espeakSupport espeak
+ ++ optional speechdSupport speechd ) }
'';
- meta = with stdenv.lib; {
+ meta = {
homepage = http://www.navit-project.org;
description = "Car navigation system with routing engine using OSM maps";
license = licenses.gpl2;
diff --git a/pkgs/applications/misc/notify-osd-customizable/default.nix b/pkgs/applications/misc/notify-osd-customizable/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..828c39d5ed87572a545c9b40bd77a03746355eca
--- /dev/null
+++ b/pkgs/applications/misc/notify-osd-customizable/default.nix
@@ -0,0 +1,47 @@
+{ stdenv
+, dbus-glib
+, fetchurl
+, glib
+, gnome3
+, libnotify
+, libtool
+, libwnck3
+, makeWrapper
+, pkgconfig
+}:
+
+let baseURI = "https://launchpad.net/~leolik/+archive/leolik";
+in stdenv.mkDerivation rec {
+ name = "notify-osd-${version}";
+ version = "0.9.35+16.04.20160415";
+
+ src = fetchurl {
+ url = "${baseURI}/+files/notify-osd_${version}-0ubuntu1-leolik~ppa0.tar.gz";
+ sha256 = "026dr46jh3xc4103wnslzy7pxbxkkpflh52c59j8vzwaa7bvvzkv";
+ name = "notify-osd-customizable.tar.gz";
+ };
+
+ preConfigure = "./autogen.sh --libexecdir=$(out)/bin";
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [
+ glib libwnck3 libnotify dbus-glib makeWrapper
+ gnome3.gsettings-desktop-schemas gnome3.gnome-common
+ libtool
+ ];
+
+ configureFlags = "--libexecdir=$(out)/bin";
+
+ preFixup = ''
+ wrapProgram "$out/bin/notify-osd" \
+ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Daemon that displays passive pop-up notifications";
+ homepage = https://launchpad.net/notify-osd;
+ license = licenses.gpl3;
+ maintainers = [ maintainers.imalison ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/nut/default.nix b/pkgs/applications/misc/nut/default.nix
index 4d53203ccd4d270137d428d2937554c17c067e77..816918ca0638159761c08b7b4d1ef19d546d493f 100644
--- a/pkgs/applications/misc/nut/default.nix
+++ b/pkgs/applications/misc/nut/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
"$out/lib:${neon}/lib:${libusb.out}/lib:${avahi}/lib:${freeipmi}/lib"
'';
- meta = {
+ meta = with stdenv.lib; {
description = "Network UPS Tools";
longDescription = ''
Network UPS Tools is a collection of programs which provide a common
@@ -41,8 +41,9 @@ stdenv.mkDerivation rec {
'';
homepage = http://www.networkupstools.org/;
repositories.git = https://github.com/networkupstools/nut.git;
- platforms = with stdenv.lib.platforms; linux;
- maintainers = with stdenv.lib.maintainers; [ pierron ];
+ platforms = platforms.linux;
+ maintainers = [ maintainers.pierron ];
+ license = with licenses; [ gpl1Plus gpl2Plus gpl3Plus ];
priority = 10;
};
}
diff --git a/pkgs/applications/misc/octoprint/default.nix b/pkgs/applications/misc/octoprint/default.nix
index 99d23b0eb7cf2d146cbcf999cdad4480bac1849b..41bc94a51300c12a1b71a03cf519e790d6f6ff83 100644
--- a/pkgs/applications/misc/octoprint/default.nix
+++ b/pkgs/applications/misc/octoprint/default.nix
@@ -62,6 +62,14 @@ let
# No tests included
doCheck = false;
};
+
+ pylru = super.pylru.overridePythonAttrs (oldAttrs: rec {
+ version = "1.0.9";
+ src = oldAttrs.src.override {
+ inherit version;
+ sha256 = "71376192671f0ad1690b2a7427d39a29b1df994c8469a9b46b03ed7e28c0172c";
+ };
+ });
};
};
diff --git a/pkgs/applications/misc/orpie/default.nix b/pkgs/applications/misc/orpie/default.nix
index b1df6378f1e9b3ac75ce1864b7ad531d8e5ccfa6..bc6aa242f33807837285854c3ace45cf8a676a9c 100644
--- a/pkgs/applications/misc/orpie/default.nix
+++ b/pkgs/applications/misc/orpie/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses gsl ] ++ (with ocamlPackages; [ ocaml camlp4 ]);
meta = {
- homepage = http://pessimization.com/software/orpie/;
+ homepage = https://github.com/pelzlpj/orpie;
description = "A fullscreen RPN calculator for the console";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
diff --git a/pkgs/applications/misc/pdf-quench/default.nix b/pkgs/applications/misc/pdf-quench/default.nix
index c567a7903b81372f818cc411c14eff8fb91e3761..0829c4f91ccc074d47b45347ab5007b101c756be 100644
--- a/pkgs/applications/misc/pdf-quench/default.nix
+++ b/pkgs/applications/misc/pdf-quench/default.nix
@@ -31,6 +31,7 @@ pythonPackages.buildPythonApplication rec {
homepage = https://github.com/linuxerwang/pdf-quench;
description = "A visual tool for cropping pdf files";
platforms = platforms.linux;
+ license = licenses.gpl2;
maintainers = with maintainers; [ flokli ];
};
}
diff --git a/pkgs/applications/misc/pdfshuffler/default.nix b/pkgs/applications/misc/pdfshuffler/default.nix
index 025ad9cd30a1b33e7ae4e1ddeeb10c51945476c9..35e52f7b977e8c8339841844378b1b6f6a43bf23 100644
--- a/pkgs/applications/misc/pdfshuffler/default.nix
+++ b/pkgs/applications/misc/pdfshuffler/default.nix
@@ -32,7 +32,7 @@ python3Packages.buildPythonApplication rec {
doCheck = false; # no tests
meta = with stdenv.lib; {
- homepage = https://gna.org/projects/pdfshuffler/;
+ homepage = https://sourceforge.net/p/pdfshuffler/wiki/Home;
description = "Merge or split pdf documents and rotate, crop and rearrange their pages";
platforms = platforms.linux;
maintainers = with maintainers; [ mic92 ];
diff --git a/pkgs/applications/misc/pinfo/default.nix b/pkgs/applications/misc/pinfo/default.nix
index 1085fed0956531fadc236f5bcfffdb8b0e77614b..04d8c2d2ff08e3a0cdd07d0fd84d16192b0bbc0d 100644
--- a/pkgs/applications/misc/pinfo/default.nix
+++ b/pkgs/applications/misc/pinfo/default.nix
@@ -17,7 +17,6 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "A viewer for info files";
- homepage = https://alioth.debian.org/projects/pinfo/;
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
diff --git a/pkgs/applications/misc/playonlinux/default.nix b/pkgs/applications/misc/playonlinux/default.nix
index 2ad6321d51911087c386740bfc7dfda084c3667c..8c9f13ce92c78c914208f3cb146f631f04ef81ad 100644
--- a/pkgs/applications/misc/playonlinux/default.nix
+++ b/pkgs/applications/misc/playonlinux/default.nix
@@ -44,9 +44,9 @@ let
];
ld32 =
- if stdenv.system == "x86_64-linux" then "${stdenv.cc}/nix-support/dynamic-linker-m32"
- else if stdenv.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker"
- else throw "Unsupported platform for PlayOnLinux: ${stdenv.system}";
+ if stdenv.hostPlatform.system == "x86_64-linux" then "${stdenv.cc}/nix-support/dynamic-linker-m32"
+ else if stdenv.hostPlatform.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker"
+ else throw "Unsupported platform for PlayOnLinux: ${stdenv.hostPlatform.system}";
ld64 = "${stdenv.cc}/nix-support/dynamic-linker";
libs = pkgs: stdenv.lib.makeLibraryPath [ pkgs.xorg.libX11 ];
@@ -83,7 +83,7 @@ in stdenv.mkDerivation {
bunzip2 $out/share/playonlinux/bin/check_dd_x86.bz2
patchelf --set-interpreter $(cat ${ld32}) --set-rpath ${libs pkgsi686Linux} $out/share/playonlinux/bin/check_dd_x86
- ${if stdenv.system == "x86_64-linux" then ''
+ ${if stdenv.hostPlatform.system == "x86_64-linux" then ''
bunzip2 $out/share/playonlinux/bin/check_dd_amd64.bz2
patchelf --set-interpreter $(cat ${ld64}) --set-rpath ${libs pkgs} $out/share/playonlinux/bin/check_dd_amd64
'' else ''
diff --git a/pkgs/applications/misc/posterazor/default.nix b/pkgs/applications/misc/posterazor/default.nix
index 6cb00fb1525c91b2d6a18932fb10a9bd370799d4..45db856dbb9e6427f61a5e236c5f8766dc137745 100644
--- a/pkgs/applications/misc/posterazor/default.nix
+++ b/pkgs/applications/misc/posterazor/default.nix
@@ -28,10 +28,11 @@ stdenv.mkDerivation rec {
cp PosteRazor $out/bin
'';
- meta = {
+ meta = with stdenv.lib; {
homepage = http://posterazor.sourceforge.net/;
description = "Cuts a raster image into pieces which can afterwards be printed out and assembled to a poster";
- maintainers = [ stdenv.lib.maintainers.madjar ];
- platforms = stdenv.lib.platforms.linux;
+ maintainers = [ maintainers.madjar ];
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/misc/qpdfview/default.nix b/pkgs/applications/misc/qpdfview/default.nix
index dfaa90d43adf8e7d56372d4a7f99989f53001f6b..263bc37660c9506b5ffe0a19a261dbb50889f77f 100644
--- a/pkgs/applications/misc/qpdfview/default.nix
+++ b/pkgs/applications/misc/qpdfview/default.nix
@@ -21,11 +21,16 @@ stdenv.mkDerivation {
src = fetchurl {
inherit (s) url sha256;
};
-
- # TODO: revert this once placeholder is supported
- preConfigure = ''
- qmakeFlags="$qmakeFlags *.pro TARGET_INSTALL_PATH=$out/bin PLUGIN_INSTALL_PATH=$out/lib/qpdfview DATA_INSTALL_PATH=$out/share/qpdfview MANUAL_INSTALL_PATH=$out/share/man/man1 ICON_INSTALL_PATH=$out/share/icons/hicolor/scalable/apps LAUNCHER_INSTALL_PATH=$out/share/applications APPDATA_INSTALL_PATH=$out/share/appdata"
- '';
+ qmakeFlags = [
+ "*.pro"
+ "TARGET_INSTALL_PATH=${placeholder "out"}/bin"
+ "PLUGIN_INSTALL_PATH=${placeholder "out"}/lib/qpdfview"
+ "DATA_INSTALL_PATH=${placeholder "out"}/share/qpdfview"
+ "MANUAL_INSTALL_PATH=${placeholder "out"}/share/man/man1"
+ "ICON_INSTALL_PATH=${placeholder "out"}/share/icons/hicolor/scalable/apps"
+ "LAUNCHER_INSTALL_PATH=${placeholder "out"}/share/applications"
+ "APPDATA_INSTALL_PATH=${placeholder "out"}/share/appdata"
+ ];
meta = {
inherit (s) version;
diff --git a/pkgs/applications/misc/rescuetime/default.nix b/pkgs/applications/misc/rescuetime/default.nix
index 57cdfd08d5b024b5faddd34322d4431950d14e93..d9cd85d5098a8094dd5b708e98cae0c575c15bf6 100644
--- a/pkgs/applications/misc/rescuetime/default.nix
+++ b/pkgs/applications/misc/rescuetime/default.nix
@@ -2,7 +2,7 @@
let
src =
- if stdenv.system == "i686-linux" then fetchurl {
+ if stdenv.hostPlatform.system == "i686-linux" then fetchurl {
name = "rescuetime-installer.deb";
url = "https://www.rescuetime.com/installers/rescuetime_current_i386.deb";
sha256 = "06q1jwqsrjvlj820dd4vl80jznwafsqshsg0p6si8qx4721blryz";
diff --git a/pkgs/applications/misc/sequeler/default.nix b/pkgs/applications/misc/sequeler/default.nix
index be4a0388daa526c6155621125a48adffd45b7e99..cc676bb28e2e08ec91ff34a28f508797d5c55d06 100644
--- a/pkgs/applications/misc/sequeler/default.nix
+++ b/pkgs/applications/misc/sequeler/default.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchFromGitHub
-, meson, ninja, pkgconfig, vala, gobjectIntrospection, gettext, wrapGAppsHook, desktop-file-utils
+, meson, ninja, pkgconfig, vala, gobjectIntrospection, gettext, wrapGAppsHook, python3, desktop-file-utils
, gtk3, glib, granite, libgee, libgda, gtksourceview, libxml2, libsecret }:
let
- version = "0.5.9";
+ version = "0.6.0";
sqlGda = libgda.override {
mysqlSupport = true;
postgresSupport = true;
@@ -17,10 +17,10 @@ in stdenv.mkDerivation rec {
owner = "Alecaddd";
repo = "sequeler";
rev = "v${version}";
- sha256 = "08dgir1prjfh7kxdxksabia5093gcjyy2yy7s57yizszplw2v07v";
+ sha256 = "04x3fg665201g3zy66sicfna4vac4n1pmrahbra90gvfzaia1cai";
};
- nativeBuildInputs = [ meson ninja pkgconfig vala gobjectIntrospection gettext wrapGAppsHook desktop-file-utils ];
+ nativeBuildInputs = [ meson ninja pkgconfig vala gobjectIntrospection gettext wrapGAppsHook python3 desktop-file-utils ];
buildInputs = [ gtk3 glib granite libgee sqlGda gtksourceview libxml2 libsecret ];
diff --git a/pkgs/applications/misc/subsurface/default.nix b/pkgs/applications/misc/subsurface/default.nix
index 5e1e7bf32258eed1bef3743700282d9c9c905c1e..1b998c48580e615e69cac03eb5a3e5b5333c1235 100644
--- a/pkgs/applications/misc/subsurface/default.nix
+++ b/pkgs/applications/misc/subsurface/default.nix
@@ -4,14 +4,14 @@
}:
let
- version = "4.7.5";
+ version = "4.8.1";
libdc = stdenv.mkDerivation rec {
name = "libdivecomputer-ssrf-${version}";
src = fetchurl {
url = "https://subsurface-divelog.org/downloads/libdivecomputer-subsurface-branch-${version}.tgz";
- sha256 = "1xsgnmgc7yb46lflx8ynkbdxg2f6sny6xg6caqgx7rf0x1jmjj4x";
+ sha256 = "1x6z08gfp9jldv7vcsdasjcarns43qns9cm8s9w27n0c2lvchjvy";
};
nativeBuildInputs = [ autoreconfHook ];
@@ -70,7 +70,7 @@ in stdenv.mkDerivation rec {
src = fetchurl {
url = "https://subsurface-divelog.org/downloads/Subsurface-${version}.tgz";
- sha256 = "0qqmnrmj2alr4rc2nqkv8sbdp92xb6j4j468wn6yqvgb23n77b82";
+ sha256 = "0758sw05gjy8sckvaqc0hmbh2kibmzapgp0hlk8rsp1vsldq4vd2";
};
buildInputs = [
diff --git a/pkgs/applications/misc/sweethome3d/default.nix b/pkgs/applications/misc/sweethome3d/default.nix
index 68a192d78b8400a2589554f3813a596d77c0e84f..3c56a6a046fbd851d5f8dfd5c5eede2402596df9 100644
--- a/pkgs/applications/misc/sweethome3d/default.nix
+++ b/pkgs/applications/misc/sweethome3d/default.nix
@@ -55,7 +55,7 @@ let
makeWrapper ${jre}/bin/java $out/bin/$exec \
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3.out}/share:${gsettings-desktop-schemas}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \
- --add-flags "-jar $out/share/java/${module}-${version}.jar -cp $out/share/java/Furniture.jar:$out/share/java/Textures.jar:$out/share/java/Help.jar ${if stdenv.system == "x86_64-linux" then "-d64" else "-d32"}"
+ --add-flags "-jar $out/share/java/${module}-${version}.jar -cp $out/share/java/Furniture.jar:$out/share/java/Textures.jar:$out/share/java/Help.jar -d${toString stdenv.hostPlatform.parsed.cpu.bits}"
'';
dontStrip = true;
diff --git a/pkgs/applications/misc/sweethome3d/editors.nix b/pkgs/applications/misc/sweethome3d/editors.nix
index 14285a52e27c7e13be2969c097e038891fbf2242..eef5185aaeedb3a3544e1e3e9d60e780df88f4ae 100644
--- a/pkgs/applications/misc/sweethome3d/editors.nix
+++ b/pkgs/applications/misc/sweethome3d/editors.nix
@@ -44,7 +44,7 @@ let
cp "${editorItem}/share/applications/"* $out/share/applications
makeWrapper ${jre}/bin/java $out/bin/$exec \
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3.out}/share:${gsettings-desktop-schemas}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \
- --add-flags "-jar $out/share/java/${module}-${version}.jar ${if stdenv.system == "x86_64-linux" then "-d64" else "-d32"}"
+ --add-flags "-jar $out/share/java/${module}-${version}.jar -d${toString stdenv.hostPlatform.parsed.cpu.bits}"
'';
dontStrip = true;
diff --git a/pkgs/applications/misc/terminal-notifier/default.nix b/pkgs/applications/misc/terminal-notifier/default.nix
index c838eca50659eb33ca829cce0e6d2719eab621fd..b05c8a8039966444e85c4d687d0e64d159e99e37 100644
--- a/pkgs/applications/misc/terminal-notifier/default.nix
+++ b/pkgs/applications/misc/terminal-notifier/default.nix
@@ -27,6 +27,8 @@ stdenv.mkDerivation rec {
meta = with lib; {
maintainers = with maintainers; [ cstrahan ];
- platforms = platforms.darwin;
+ homepage = https://github.com/julienXX/terminal-notifier;
+ license = licenses.mit;
+ platforms = platforms.darwin;
};
}
diff --git a/pkgs/applications/misc/timewarrior/default.nix b/pkgs/applications/misc/timewarrior/default.nix
index ff3caec29644918ffcd1ca6f0bf12fb585365c1a..4ca7a86e6f7f9f620313bc96cedcd1c746c3fe67 100644
--- a/pkgs/applications/misc/timewarrior/default.nix
+++ b/pkgs/applications/misc/timewarrior/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A command-line time tracker";
- homepage = https://tasktools.org/projects/timewarrior.html;
+ homepage = https://taskwarrior.org/docs/timewarrior;
license = licenses.mit;
maintainers = with maintainers; [ mrVanDalo ];
platforms = platforms.linux ++ platforms.darwin;
diff --git a/pkgs/applications/misc/tootle/default.nix b/pkgs/applications/misc/tootle/default.nix
index b2aab54c104768e40017b2536005eb20c1addc5c..d15b8111fb0b92a50b21fda223f93f5446efde44 100644
--- a/pkgs/applications/misc/tootle/default.nix
+++ b/pkgs/applications/misc/tootle/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub
-, meson, ninja, pkgconfig
+, meson, ninja, pkgconfig, python3
, gnome3, vala, gobjectIntrospection, wrapGAppsHook
, gtk3, granite
, json-glib, glib, glib-networking
@@ -18,7 +18,7 @@ in stdenv.mkDerivation rec {
sha256 = "022h1rh1jk3m1f9al0s1rylmnqnkydyc81idfc8jf1g0frnvn5i6";
};
- nativeBuildInputs = [ meson ninja pkgconfig vala gobjectIntrospection wrapGAppsHook ];
+ nativeBuildInputs = [ meson ninja pkgconfig python3 vala gobjectIntrospection wrapGAppsHook ];
buildInputs = [
gtk3 granite json-glib glib glib-networking
gnome3.libgee gnome3.libsoup gnome3.gsettings-desktop-schemas
diff --git a/pkgs/applications/misc/urh/default.nix b/pkgs/applications/misc/urh/default.nix
index 56da0cf22efea57c3a0c445b35260c88d34d2b36..c5e8d1e245609cf37721678627cc476042d5f022 100644
--- a/pkgs/applications/misc/urh/default.nix
+++ b/pkgs/applications/misc/urh/default.nix
@@ -2,13 +2,13 @@
python3Packages.buildPythonApplication rec {
name = "urh-${version}";
- version = "2.2.3";
+ version = "2.2.4";
src = fetchFromGitHub {
owner = "jopohl";
repo = "urh";
rev = "v${version}";
- sha256 = "1iq84590cjpf2rlxb60fy4hxi7vir27bbb10axbwrqwnp5cc4bql";
+ sha256 = "1afmja4cffyw0ipx7zm93wvjmz0v5ccl7vcw2r18kdzrs1mr99zl";
};
buildInputs = [ hackrf rtl-sdr ];
diff --git a/pkgs/applications/misc/urlscan/default.nix b/pkgs/applications/misc/urlscan/default.nix
index 5f5754a6605300ab3156f87ed5f96ff2db3ee9bc..6b0c4670544fa1e4359636812de1988a4628c251 100644
--- a/pkgs/applications/misc/urlscan/default.nix
+++ b/pkgs/applications/misc/urlscan/default.nix
@@ -2,13 +2,13 @@
python3Packages.buildPythonApplication rec {
pname = "urlscan";
- version = "0.8.9";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "firecat53";
repo = pname;
rev = version;
- sha256 = "18wvfayib79lylv3g9ay3f85qanhrljvnfarwl9snfzklj4gkf2v";
+ sha256 = "0vad1g234r9agvkdsry9xb6hmn6lg4mygfcy0mg68gibmrg7h1ji";
};
propagatedBuildInputs = [ python3Packages.urwid ];
diff --git a/pkgs/applications/misc/wordnet/default.nix b/pkgs/applications/misc/wordnet/default.nix
index a2e3fa13fc6a5ebb29300c58786c5a1312e8c32b..5d153a0e417fd71c33996ed80c6b875076162135 100644
--- a/pkgs/applications/misc/wordnet/default.nix
+++ b/pkgs/applications/misc/wordnet/default.nix
@@ -42,7 +42,10 @@ stdenv.mkDerivation rec {
'';
homepage = https://wordnet.princeton.edu/;
-
+ license = {
+ fullName = "WordNet 3.0 license";
+ url = https://wordnet.princeton.edu/license-and-commercial-use;
+ };
maintainers = [ ];
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
diff --git a/pkgs/applications/misc/xautoclick/default.nix b/pkgs/applications/misc/xautoclick/default.nix
index bb18da4d4ada3897b520a079b97eb873f326dc4b..045354da3d604249bbdf993dd62375ec8f701154 100644
--- a/pkgs/applications/misc/xautoclick/default.nix
+++ b/pkgs/applications/misc/xautoclick/default.nix
@@ -23,7 +23,10 @@ stdenv.mkDerivation rec {
addToSearchPath PATH .bin
'';
- meta = {
- platforms = stdenv.lib.platforms.linux;
+ meta = with stdenv.lib; {
+ description = "Autoclicker application, which enables you to automatically click the left mousebutton";
+ homepage = http://xautoclick.sourceforge.net;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/misc/xchm/default.nix b/pkgs/applications/misc/xchm/default.nix
index 74c9c807b81e4ad1c3da9ee2e28393b862d52d16..a7a6500fd22afea7afdfe74630db53eb0f52cd27 100644
--- a/pkgs/applications/misc/xchm/default.nix
+++ b/pkgs/applications/misc/xchm/default.nix
@@ -13,9 +13,10 @@ stdenv.mkDerivation {
echo $NIX_LDFLAGS
'';
- meta = {
+ meta = with stdenv.lib; {
description = "A viewer for Microsoft HTML Help files";
homepage = http://xchm.sourceforge.net;
- platforms = stdenv.lib.platforms.linux;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/misc/xkbd/default.nix b/pkgs/applications/misc/xkbd/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..ccbb88bd1a8e84768d65e65e4a23c1160b3c95a3
--- /dev/null
+++ b/pkgs/applications/misc/xkbd/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, freetype, libXrender, libXft, xextproto
+, xinput, libXi, libXext, libXtst, libXpm, libX11, xproto, autoreconfHook
+}:
+
+stdenv.mkDerivation rec {
+ name = "xkbd-${version}";
+ version = "0.8.18";
+
+ src = fetchFromGitHub {
+ owner = "mahatma-kaganovich";
+ repo = "xkbd";
+ rev = name;
+ sha256 = "05ry6q75jq545kf6p20nhfywaqf2wdkfiyp6iwdpv9jh238hf7m9";
+ };
+
+ buildInputs = [
+ freetype libXrender libXft libXext libXtst libXpm libX11
+ libXi xextproto xinput xproto
+ ];
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/mahatma-kaganovich/xkbd;
+ description = "onscreen soft keyboard for X11";
+ license = licenses.gpl2Plus;
+ maintainers = [ maintainers.genesis ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/xmind/default.nix b/pkgs/applications/misc/xmind/default.nix
index a578c53f0e7c1373b55f3c9b6fba8d13343346d7..a12f3dc304ba4c64ef28f7736c4a4944200845e4 100644
--- a/pkgs/applications/misc/xmind/default.nix
+++ b/pkgs/applications/misc/xmind/default.nix
@@ -4,13 +4,13 @@ stdenv.mkDerivation rec {
name = "xmind-${version}";
version = "7.5-update1";
- src = if stdenv.system == "i686-linux" then fetchurl {
+ src = if stdenv.hostPlatform.system == "i686-linux" then fetchurl {
url = "http://dl2.xmind.net/xmind-downloads/${name}-linux_i386.deb";
sha256 = "04kr6pw0kwy715bp9wcnqnw1k5wl65xa87lhljrskm291p402jy1";
- } else if stdenv.system == "x86_64-linux" then fetchurl {
+ } else if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl {
url = "http://dl2.xmind.net/xmind-downloads/${name}-linux_amd64.deb";
sha256 = "1j2ynhk7p3m3vd6c4mjwpnlzqgfj5c4q3zydab3nfwncwx6gaqj9";
- } else throw "platform ${stdenv.system} not supported!";
+ } else throw "platform ${stdenv.hostPlatform.system} not supported!";
nativeBuildInputs = [ dpkg makeWrapper ];
diff --git a/pkgs/applications/misc/xpdf/default.nix b/pkgs/applications/misc/xpdf/default.nix
index 3cb416a5f7cb7bfb418cf6db96040c0fd51524a1..7e0369b277d34ca0ce991dbc58fd4dc95bf92faa 100644
--- a/pkgs/applications/misc/xpdf/default.nix
+++ b/pkgs/applications/misc/xpdf/default.nix
@@ -41,11 +41,11 @@ stdenv.mkDerivation {
--set QT_PLUGIN_PATH ${qtbase.bin}/${qtbase.qtPluginPrefix}:${qtsvg.bin}/${qtbase.qtPluginPrefix}
'';
- meta = {
- homepage = http://www.foolabs.com/xpdf/;
+ meta = with stdenv.lib; {
+ homepage = https://www.xpdfreader.com;
description = "Viewer for Portable Document Format (PDF) files";
-
- platforms = stdenv.lib.platforms.unix;
- maintainers = [ stdenv.lib.maintainers.peti ];
+ license = with licenses; [ gpl2 gpl3 ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.peti ];
};
}
diff --git a/pkgs/applications/networking/apache-directory-studio/default.nix b/pkgs/applications/networking/apache-directory-studio/default.nix
index d593947f3e624d4bad29dc846c517f4580a61c55..05dee5b6154cde983ba5f91abc96d801d8908020 100644
--- a/pkgs/applications/networking/apache-directory-studio/default.nix
+++ b/pkgs/applications/networking/apache-directory-studio/default.nix
@@ -21,17 +21,17 @@ stdenv.mkDerivation rec {
version = "2.0.0.v20170904-M13";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "mirror://apache/directory/studio/${version}/ApacheDirectoryStudio-${version}-linux.gtk.x86_64.tar.gz";
sha256 = "1jfnm6m0ijk31r30hhrxxnizk742dm317iny041p29v897rma7aq";
}
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "mirror://apache/directory/studio/${version}/ApacheDirectoryStudio-${version}-linux.gtk.x86.tar.gz";
sha256 = "1bxmgram42qyhrqkgp5k8770f5mjjdd4c6xl4gj09smiycm1qa4n";
}
- else throw "Unsupported system: ${stdenv.system}";
+ else throw "Unsupported system: ${stdenv.hostPlatform.system}";
buildInputs = [ makeWrapper ];
diff --git a/pkgs/applications/networking/bittorrentsync/generic.nix b/pkgs/applications/networking/bittorrentsync/generic.nix
index dae540ba4260f27a972f414c999b9175ca5e7b6d..1075aea8db3a859e859a9dced663e91769c5550f 100644
--- a/pkgs/applications/networking/bittorrentsync/generic.nix
+++ b/pkgs/applications/networking/bittorrentsync/generic.nix
@@ -4,9 +4,9 @@ let
arch = {
"x86_64-linux" = "x64";
"i686-linux" = "i386";
- }.${stdenv.system} or throwSystem;
+ }.${stdenv.hostPlatform.system} or throwSystem;
libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ];
- throwSystem = throw "Unsupported system: ${stdenv.system}";
+ throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
in
stdenv.mkDerivation rec {
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
"https://download-cdn.getsync.com/${version}/linux-${arch}/BitTorrent-Sync_${arch}.tar.gz"
"http://syncapp.bittorrent.com/${version}/btsync_${arch}-${version}.tar.gz"
];
- sha256 = sha256s.${stdenv.system} or throwSystem;
+ sha256 = sha256s.${stdenv.hostPlatform.system} or throwSystem;
};
dontStrip = true; # Don't strip, otherwise patching the rpaths breaks
diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
index 331dbc543acb56063d210992350c3e3284c6b0a3..f3a8ca6f289ca97c1f48b8c28c3694cff9c51c8a 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
@@ -1,995 +1,995 @@
{
- version = "62.0b19";
+ version = "62.0b20";
sources = [
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ach/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ach/firefox-62.0b20.tar.bz2";
locale = "ach";
arch = "linux-x86_64";
- sha512 = "559274af510eaebab2cdd9cba8cb668bcf926fa5cdc583b1e26bcb4a50307cb318839038314ae17e0cd793e7c2173de5d69e606d90ae32f256d24714dfc26d7b";
+ sha512 = "bcc42abc76f41f5fe32a1bf1e824be451d15686c05adfb58b85df6eeff39e29aac3aa18878023469e85bcd8e9d4f55cea9cd96d7b40a5b6918ec2fa572e32b7c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/af/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/af/firefox-62.0b20.tar.bz2";
locale = "af";
arch = "linux-x86_64";
- sha512 = "ee291b325468c3d31ae0e97984da5a32c552050a8a9da8a075f5925b0fa54975066bd3bbcc57a15e0bab219e2b45a9fcba6b6e831109dc80a4f16728b4f19a7d";
+ sha512 = "f371acf6a9435d6c673768270be5a950ac369cb04e91b77f8422feb77cb09e65731c6842e933aa5012402a69bfa4c01373419caf029e133408105b71d218a3f9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/an/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/an/firefox-62.0b20.tar.bz2";
locale = "an";
arch = "linux-x86_64";
- sha512 = "49e63e03482753bcc1163229b6c7b00334255c11359482805eb26bb3ae30dfd407d9b667dd2c043019b5910b47d62d14c89b2330795c655778e6617ec1f8706f";
+ sha512 = "79fa43b710bb99cb94ed463b845d7eaa993a2d35b27eecafac0e387f5781b77415375fb3d19256d3097f314d0891020ac929877635d3f26ab3fd808bd105cf1e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ar/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ar/firefox-62.0b20.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha512 = "2acc91e3a22550e851714b4b1e45dc36f2bb61d79484f9a9eb2266fd0d75c356c461ad04af818458344c6bc6983ab2b92d84ddbe73acc39f29836aff36dd7bef";
+ sha512 = "66b40adacfa9e36e61d9f4f77fb85db08cbce2eb162201fd65db48bee54c38f4749c7375d893727796c8954a71004e4f163fde8a3f701dec712d271f808c40fc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/as/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/as/firefox-62.0b20.tar.bz2";
locale = "as";
arch = "linux-x86_64";
- sha512 = "1fe5e5fd3bf2ec8d077937e24c1175487853467037cb10c22bd2022bbeb454dd860f3c1356a88e1d4fa9ed6b7f0539917b0af858bd6aa6b2be7bf77a82fc05e0";
+ sha512 = "090f4b517d242f67b43bdce75e586cfd0eb58abb076cccae9c5cffc74d14b04ba06018764bb7696f2b43049ff8311f3a6b6d7207d3ac0f3432904f4ecf39e96a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ast/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ast/firefox-62.0b20.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha512 = "0a7680fab1b7de375462e35e1fca3b07c2f75f4a8526c3a7f76a213b14d5089c00165c84fb76b701ff4a8efef16eea067f5dfff53653cae6f996cdd9ba1a0d43";
+ sha512 = "309b5feeffbe980b06bd04b4a6db6f4677d131c7ccdd138cb8d43eebfec61b423e30d5f7d5776827f973f6c7fd995f091263839e811e1496b7d4def2f97ea922";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/az/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/az/firefox-62.0b20.tar.bz2";
locale = "az";
arch = "linux-x86_64";
- sha512 = "afbb90dd5be84771a417e3557e155b0927bc78210e22375b38a9aea4d41ea6d815ef46f2db90f7efb403b01c7f2b98b17ebed4c04d7011cbc20c12899562ac2e";
+ sha512 = "6b64a0346ce7a5854c878317a34dd91c044456f823fc5e55e8dcfea55663600a2bd1c9471f01732426397674303919125f69ef0d61d77fddcaca0d462cd8e084";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/be/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/be/firefox-62.0b20.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha512 = "d6ed275a8b3610df1ce7aed24d8a7dc196ec50f0b57944ec7096a04b14993161f50f55d7aa5ed266aefeb042591a3f883548d1c59568cfdb62aa9cf68033641e";
+ sha512 = "9553685556a1def24354972fafe785ca9ad180b0cda48a928b39a47011fae41660a4d046f6a38c11c148ac2b6a883c1f8a56d6aa4b6ada75365df2b985cbe473";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/bg/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/bg/firefox-62.0b20.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha512 = "e8e60dae4bfab73e41749eb4378bbdd2d16b7fa4e6c6e31816a1019361c09eee12b48ea60f1690e5e29b11ef69a22aa6b09e10a718cd1452ce966f4183692007";
+ sha512 = "531e0f09ba97828a039f796b6166753a9e35ee902258b9318fb91838b956d92de6d0f86168f2945eb2ed6352307f60bcfb81740dbe3e3ebd0988c9a8fa59ff18";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/bn-BD/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/bn-BD/firefox-62.0b20.tar.bz2";
locale = "bn-BD";
arch = "linux-x86_64";
- sha512 = "cd4630ecda7a4b7bc83470ce1ba0bbe6914e98fdd4a8fd39221f777c220e5950093207625b4d5059a9a7b8cb0bc8f6dbc8363152b7f8998a21417bd555f29453";
+ sha512 = "545525b698e0bd93f6036b92e3723a452e8083cfb0cf7462c8c077ddcbc0210d25ab53d3b41b67dcc1dbaa14d1923fd0b56b3097b98bf84164ca367f1c07413a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/bn-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/bn-IN/firefox-62.0b20.tar.bz2";
locale = "bn-IN";
arch = "linux-x86_64";
- sha512 = "762336bb75dca428e918c08a23d85fa0193357f5b38bba355c977d0723b54c17252e18ea016f7def876841a76ba920c8e731e64376fbb941a565ac88d82c090d";
+ sha512 = "95ceade2812bd3ffc084167280d4154331fe5239f167f79b9c29a43646c2c9f5c7a4e22cf6d814985dd01e8d60661007c66ebec27bae9e19a85895ae9610f9dc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/br/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/br/firefox-62.0b20.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha512 = "5c3c1d88f8d133abecbe67122dd19501e06cbe87a6166733fda64e740406ea30b8a2d5efce0215c1572de4416f8405db4750b8315d50f5c1e1038848ba857053";
+ sha512 = "15153f5e0222d3d0bd716e7595e2d5ad7b84595bd14971153ca809fd62955c55ef99b01b8687e32e3e3ba65b030f4e93beae90938efeda3b5bdedc9a2a012c1c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/bs/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/bs/firefox-62.0b20.tar.bz2";
locale = "bs";
arch = "linux-x86_64";
- sha512 = "71c23e6794978a9750460e107ca173f1755987215023a6399010405940de741ef8e1731b6c23bd2ce62b39d74442824530b7812b2e5da52ee9f5b6810d249166";
+ sha512 = "6f7b1f882ae6b9d95fccee972962e98c9c722194bb08c466071333cbcf5ff56b149c07daf1d6abf808fe0e07e22af78a915c94268fa356412c88a9f35fe5364b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ca/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ca/firefox-62.0b20.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha512 = "1c3c9bf9cb9f18e5cc0851c7b98c9975e4f961e38de03c40044db3cb9473976f68d76afeb1a4d3481a0e5814662a327b7b42f07db98c6cbaf54acf914fea5420";
+ sha512 = "dfc0cfb8f95421e8b60b91716a68c6a5db1c0630c298c2b76c80b3a24308d852e056e552530b034f9889b87c72e581590ad018ef0b0657baf14895f383a594ef";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/cak/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/cak/firefox-62.0b20.tar.bz2";
locale = "cak";
arch = "linux-x86_64";
- sha512 = "f24816ae06ca74cedea0e19d43fdea38d79598f9416f3fcc8bb23cca9ca6c1a662d2fb631cef9e3290a5f819b5c634f639e671a81825cadf703bc977e929132b";
+ sha512 = "7561a94f9bf8edd5693c9e961aabc316056a76f19c8b3d0490f94d74ee1bd8cd0b49aecf71b48c7e90435a2ea2efd716cde53303c73a68a1a6230e51445f719a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/cs/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/cs/firefox-62.0b20.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha512 = "73c65012f8a01f798a5bf3f77b336b811ba90a0d339880484db7b95565c74beef2be731d396491dd8cd79f7cc3256f5731ffbbd3876b15eb0f5c6452341207f3";
+ sha512 = "cf2f2b8cff2951cb71454f3d0351e157606af1bb306b65f0fb8930a9257e16ed5f7704be09114bbeb37c5c92d12feec1371339b2fb126c8766aa8bc8034d07c8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/cy/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/cy/firefox-62.0b20.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha512 = "62b170155a39e292363307ab969da2ff9c2e82798aea7eb2d04670d5326d6d7d101b2cc935eb920e6c617ff1ad9b6935607adb5897061f9dddc108c5b322ba87";
+ sha512 = "05e3f84109a47790bd88cdf248c32eddece4c95ef9c5cc46cf67b013063441106eb0b4022cfaf8501593c6c4e13f84684ae1b8f48ddd3704ea52d520d1f9a185";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/da/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/da/firefox-62.0b20.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha512 = "eed60cf7ac7ab8497204b322d416c783aaa7300f607dcefa2bcfeb92d0ed7a9368379dda2ff72b309ea39a68dd02d5888a67acbd2b524e3785ea9ebbf18a4540";
+ sha512 = "cc8dbabf299e1009b180ed8201699ebc773351e4969587df146b977da3a7a1bedadd0366e765488d2e16aa81e768c3fb0892972346d6611c29a1d6eda921e672";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/de/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/de/firefox-62.0b20.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha512 = "58176c23d3b413c3da7f019ab36b9e2f79c9f97e08b3bfdf6316ff3b657d3c12d0146618520fa02d7378e9e36cc519e14e78239d7f94a6c1c6925d3bc79d45b7";
+ sha512 = "a69c1786b2b5455fece6d49ae0a8408cbb448c4b6c3f394401c2eee20a5f7d80db09d982ac50e4893877d876123586b1e1cf844e72495d5b1a5ed2349300adbd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/dsb/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/dsb/firefox-62.0b20.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha512 = "c3f4a4406b3dbd466f26dfd239b5e8eda062718fb4683925471980ad403d7569aede2d20cf1bb74569c911253d2aa372d21bfa2842988a4652e6a09672a0fa24";
+ sha512 = "b464c71a4dddb8fd864f1a4c7ab2ed6e870e0cbbf3213255965f3534b2b776d7da03e997d78c9f4e794da7201c92f0e9f85bf5b5631131a2355224452112ab0a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/el/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/el/firefox-62.0b20.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha512 = "03633de8e557ead1b1efb62862f55e306fdceae37cc963a2af28b6dfaaa685d2d05b550d25f62188e6f5b1550b8a2daead2a62710b8080d7b7394baad075a82e";
+ sha512 = "9578203045825c12c8efba6f3488771efb52452f3a1f57b8a3084fd0c83998f0733520f1d646b1b847ffb76cbcd4d3e184cc0fee0ca01684429396dadd09757f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/en-CA/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/en-CA/firefox-62.0b20.tar.bz2";
locale = "en-CA";
arch = "linux-x86_64";
- sha512 = "eb6ca404f0d09af7785f9ec9d069fbf69169bb219733e7220bf9b93d9825158ead1709d8e15e50f9ebf1442e9cd1024c6f1fc02bd0a1e0c71c8b110acb92b414";
+ sha512 = "d316262b3c08730782a741177224e3aa269843e1d65ba7f1487e947be73ebbd4fb88f0734bc98e840951d89ecca8ef0a62cb5b8c456e4203da1d11a8a4a1451c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/en-GB/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/en-GB/firefox-62.0b20.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha512 = "bfd59902d24778e770731c22137f7932531a340c99d4fb8e9461b68795a50a41a3214213eb234bc32750b0ef28f6f9804314f6d0660e209104d8f659dc3ab176";
+ sha512 = "fd43c18250362b0f18140d123eec2d87578e29acb864ea1513498ec47b7696f0138424e8be33f8af2b77cefa11d7a5ba368b3fbfc85205272d9ed848ce2a9f1f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/en-US/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/en-US/firefox-62.0b20.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha512 = "6221bd0514aa1a634d2bb0f62d970f4bf5cbfa71544c9b5468f04440ddb98580ee43c4f270f947da838bfb984cfd01b4a4a85a6690810a96ce42fe1356bff4bb";
+ sha512 = "f5c6b847ea22bed95aec68a6e4316e0217fab7a4d7426d4b6b57ec0f7f4a6fb3b07e9aa330ce41f0a2c24d500425696bd475583c849556a6011b2b9169581f29";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/en-ZA/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/en-ZA/firefox-62.0b20.tar.bz2";
locale = "en-ZA";
arch = "linux-x86_64";
- sha512 = "6b5b135061467e3d24f9c01e8b01c56ac1fd4b9109e0c4e36852e5a9cc693611e54c8a4df06eefada33ba3fbc7d9cfc88b167905a0ccbc32582ab8bf6ac24cb6";
+ sha512 = "5bed0853937d3777307f2a432e8b05f7fd919ee0f781fd88381e6cb81c43711c2c12b9fe05d85c22eeb70b217710ea3d44e1f599e447c2212209135f796eccdf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/eo/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/eo/firefox-62.0b20.tar.bz2";
locale = "eo";
arch = "linux-x86_64";
- sha512 = "1ef1e7e13d70cf874c4d49e3be56a02628ccd8839e55eac5ca1ea8174cdc321b3397ab1771dbc343fd24652c96eaadc2f15c45d17f3232d8b9f0644764487576";
+ sha512 = "3881270a0874ca0094b27361cdf228e50c01c326f931062a54b5ff774e0c88e36b3df7087f11faa3f7f6add2d4156d385fbf30be4ce30f73102b47e280b3f006";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/es-AR/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/es-AR/firefox-62.0b20.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha512 = "f5aa44b03039562332b3b7074fb1605e4b48b8422ec17321ee22f85a8e02c844b58b05f8b776282855a33bf6bcf79731b33ef8a0594cd8f437f52dce5a3e7958";
+ sha512 = "44191518ade9f6c7c5f72296886d90b2c649d59a0f64ce7e7b23896f858b95ca12f3d1c91e4dfabe94bfe1dfb91dbeaac536cb121d7e497efc77f1316c323385";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/es-CL/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/es-CL/firefox-62.0b20.tar.bz2";
locale = "es-CL";
arch = "linux-x86_64";
- sha512 = "b79887f5d70338a35703afe3115f8a86dd2d094657020924e3344a1de83055c200e090d639ca25f32916da352a08bba9971ee3f7c4ca1a038b5e05845c0fe3f8";
+ sha512 = "628e49819bb7e98f685412ed024e980a7934c1dcd3968709b8a1f23f449c493a0c8a0edd646f80e131d49d0b22e87a93c6671f892684e677e77207085cc84b79";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/es-ES/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/es-ES/firefox-62.0b20.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha512 = "3c0a0d67c7705236fbf4f5f5714af97c9dd94325cb8c391b3c660d027fb536112d1d82f26a78ac660d46c226404672cf89b1ca7c762a32cdcbbe844cead1fa54";
+ sha512 = "ca0edb153550ffa62cb56686bca81970a6e15ed0f982db35f82e69068e1c28452f69ea09df674aa26171e05832dfe39b47d48d0b25205b689455b282b679c6bc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/es-MX/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/es-MX/firefox-62.0b20.tar.bz2";
locale = "es-MX";
arch = "linux-x86_64";
- sha512 = "0d951f4918505bf3d8b996cd036a69b7fdac7ed9b85f38dfb0a056bf23bb8b4bd2ba3609100e510034bfe02849701e24559fb7f42dcea27f34ce7354199085b3";
+ sha512 = "28c26551beb43276c8bcab443e88d52921a6861796bf2c0fe5519bc2e26cb6fdd28e3be54575e300a53186e96238749c61394aeb7a71f6c196ea6e4f51cb73de";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/et/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/et/firefox-62.0b20.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha512 = "819640d6696d631b08043b88aead8491951005149a06e40cc8345c10fb2098cd5ff94360e33fb85ea5fd9e1f93c35aa2831d863bccf26af456c219f5f9468189";
+ sha512 = "f26a59f6b75d1b85da6e13d02a206a41754e7e8214b41240839f0852b3fb4d38aa75a22556239262ec5551f551582ee7a374121dc57ef32fbb466a089e8bf98c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/eu/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/eu/firefox-62.0b20.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha512 = "12346ca24daa896c6eda4bbe5cd337894b043150ec6dbcf912a5faba3f8efd3f9c74d70694a799701631ae543607a1042cb7f2274df1188eb77c45a55298373d";
+ sha512 = "60ea439cb2d5ec6dad00e6ea597d5ca78e0f56001703e4f4e8099f695b5e557ff945cd83e48356fd7e78c7a054030d0f23fd85ebc15fd72030e32db1d78b7b5c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/fa/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/fa/firefox-62.0b20.tar.bz2";
locale = "fa";
arch = "linux-x86_64";
- sha512 = "1b526ca30f5d92a7fda1d91efb4818d21820ab459c347747060881d7871e8cd2be5504c960659c142a629faf8a267642f4318a504c65a48ecd4b6db484814d82";
+ sha512 = "7d0454ecb645438b79137acfba79d8d03cc9d44a3a70edcbf72b628f430b83d5eaaf7bf6d5a5f04f2f592cf6750dfd7667a39907a29de398a926e40b2a36b31b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ff/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ff/firefox-62.0b20.tar.bz2";
locale = "ff";
arch = "linux-x86_64";
- sha512 = "e8e364711585c47ac2bfd8ec4bd3aa26faefa51ffce918d6b89c2fe62dc21984bd85401b524c150b5a8930cbf5ac9a7c85c6ce12c98c561ea4fad34e0ae4471a";
+ sha512 = "c1f5e4d7df8590fc18844e5bc67e28bb2d5e88c3eca8b1dc8d3103d49f333ce9dfca7bdee432e190d01688ce7b8c58fb1a2a3fea0cc71e5a007d11e411611d53";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/fi/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/fi/firefox-62.0b20.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha512 = "e8d7b39b9fd73d398e69eef421e62aa61251d53e60c9d08f78fb318fda82704417676195a73724f8ed118461836f4c934b201fff1f4eb3fa4b070c068b2f70b0";
+ sha512 = "a848315e5f0b259e6770fff8e275f29946a0daa8f432135ae2d7d94ebaaf0f7bbbae7566c87f20cca78ae0fb512c7c4434dffb322df78e568095ef3b166f7f37";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/fr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/fr/firefox-62.0b20.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha512 = "5f06105264875d98108b4261824f4f6385615f56079fe2ef08b8e6aa6991fde738cd7e1d45b582ba025ca6308e706dc4d487ac2128909a419bf47d9ec09f3f71";
+ sha512 = "1a65ba7d442436ef0a8de3c7ea18b765eb933c59a211652a4a472f10e73db987aa2888a9e0b33f69586c6152da5213f1ea1d9a0bf6919a3a5a4b0a352f35e421";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/fy-NL/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/fy-NL/firefox-62.0b20.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha512 = "0a4fe4a1cf40247399c9d5b4d8cf275f122f19d37ad8e2c8807c28a7b3eb752ae6a6dd01e8901c2f6feafed32367eee4f25d0d21b65d1b8196b971cea1292f4b";
+ sha512 = "0871b3adc369c1125e3b4532122610de49a9a4a8a309eed73e4b76a86e4c0f25510c6ab5b37e87090e68d6d72c07519f1044403fea7144c84b6e003294f86e64";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ga-IE/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ga-IE/firefox-62.0b20.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha512 = "d9f9dea5bb8c1e854ef359e5978fbafbd8c07a2fc1eb3238a3ae22dffcb88cdde0c4189c1f60bbc50be58f16447478a3adac9c6d6c60d629cd2a2e66b94627aa";
+ sha512 = "c99aa21fe8e3f835047c3d9caa167401f7b692ba4be1b7c43a4b22d61eeac1a2e2e5a8ad2567730f310ebff73dbd5cbcf1032a13ff454477a80b30421e1b4abc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/gd/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/gd/firefox-62.0b20.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha512 = "cb5ea6d8af9ce3653ce73b0bb12c6f78c3ca26d49e88f076dbd1fe1e9a667c091657d4749594566b2cdb9e488792e7b653e20307334bb1c25661a125fe15bc9b";
+ sha512 = "8906f71ad07f89647eb43940da7ffcaf97d10845d7ff0a9a89e60601004aba148a5f49d8343190f9b559741213cfbfd840d17e68c3b67a61183647b8caa7d6ab";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/gl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/gl/firefox-62.0b20.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha512 = "252c3a82913578e069a76331c95db4335040b8f2fe194bea259d74b05804b65f94a7ac878c9c822790d00e1c1fb7df80904328acd45fa5f2b4534d42f3a8c00b";
+ sha512 = "8865ea0724ea9359e07f59ce65c0a9953710ef963a440ca86e0fb2bd612b0129c86436f1c53b803ae0eb87ea4a710cd49f8fce9ba128dfa36b2af703c274bf33";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/gn/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/gn/firefox-62.0b20.tar.bz2";
locale = "gn";
arch = "linux-x86_64";
- sha512 = "7dd1adf33f8add5a2996edf1f674b502813fe4ad069eae5e520f413f069ea37ba1fa9dbf3f9957229824f0215db312075c5867a6d98ebd92cdec8dd49aecc816";
+ sha512 = "dd9e201889a78f8c779aab5da5112c11bb57fcc2e1294bfb078c90ce7f4b81010fe014d5af3ad4a3ae9ae3af7260c1d33a19f5c9282577e5ac562e4493102fd4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/gu-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/gu-IN/firefox-62.0b20.tar.bz2";
locale = "gu-IN";
arch = "linux-x86_64";
- sha512 = "41a28b5deee2a2b2b57734269d14d124e0d9300415478a21ebeb04a94ff50645bcfc0632368f8a93cef1b1936de9fcf34e76da2e8ded871b79094b050f2bdec2";
+ sha512 = "53a97afb17c1a64248c7c0fda8f2a412fac892b075d9b956fc92974dcb6fb2f5fc25377d215cc565d10e353b2e34554a0d4cebe73ce45780e2d5bc93a0af4451";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/he/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/he/firefox-62.0b20.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha512 = "ad4fb9b564fa24151212447e4a7dcfb9da9e074155651d5b7473184206c4682be451fc808e27866861bbf1a79bdfbbe22cc0561611f1e9c5f8511fc5b7dfed38";
+ sha512 = "084ac6281fc2bae1efca509e3f1c2306640c54ae976cb747b6a8bbf6c9f5a962e9a37a3e1219df29acb8f25436782f72e2b388b4d1eac69dccbd628bd4304956";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/hi-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/hi-IN/firefox-62.0b20.tar.bz2";
locale = "hi-IN";
arch = "linux-x86_64";
- sha512 = "deb7ac4c0bcf397366c05fbc1e5d0e77de4abcb48034db982d3380133b8309d4b2fc3609e782310e2b1b10c04669ed8d40182c983e0cbb155d8300a5449d7f64";
+ sha512 = "05d91b4e6b8411e9a979222d42c82b7772a39653e621339c30698fc5a41d58696614c5677cb41c20b9224d3fcb77501ac436b1681b38c104ff505b1d1ed95945";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/hr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/hr/firefox-62.0b20.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha512 = "e7b086a0f1a1ca666ed28b772d77590b564bffa1c5857c1f4b2a10a0a20fa22d2902a91477f9a881461795108b2cef0ed36feff8c9d891cde3c413d7b514b01a";
+ sha512 = "6b497998cd3d038cddf0b1bb3e940da7993b95c711bcc369a0aef7f4e8b757a3c606fd5c0f109adf4f0648acd770327a5c4550338afe065ba6f85f18aecdc62c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/hsb/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/hsb/firefox-62.0b20.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha512 = "de55608a2937abd2ea8cb3d01cae7d6fa1a0be8d2c8bbd9629a15b5957da76c43e078fb0a3f7b8826a1070b43c93724a7111583d427303f962dd73d1d3bed778";
+ sha512 = "6a06093a377b8ec417edb4183bd19707971d35bd1792ba83cbf7ed801f4ab050f7859f4e47278d39340c25b15ca2506594ab70210d62905f45a764e28adf81d2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/hu/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/hu/firefox-62.0b20.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha512 = "7e99bde3de39561d63ef5d1a41142c94c39fb2a7d8d7755cc41bdd641733dbf7a4ec672a80d2ef55cf2626ae515def5d87f53eb75188c9e640285802aecdb300";
+ sha512 = "2fb808e6938b525e5c5af4fdbc4da7a4191ad8bb5f488d50245662427e4295898a7495b4e94066ea04e4f68a4fca8b09b621b5503d4e51949dcfd682f7bce1b6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/hy-AM/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/hy-AM/firefox-62.0b20.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha512 = "03d2beef09a95715f257c6ee252aa9f5997196e5a07c10233e885916a3ce916498c28a2febb0422316fbe437699371ff2402de163c4038bc5d4c28fe8aa9c783";
+ sha512 = "b17e2ae6e42676ee01016f2e90d73d4e43968224669b1a9c63aef86ebab479bf7d10ba29d6102e38db7317ad4befa3d66eff472905a9372aaa7b1519e2c71189";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ia/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ia/firefox-62.0b20.tar.bz2";
locale = "ia";
arch = "linux-x86_64";
- sha512 = "bbe947e8b37dfa3786f7cb7418a0c10d0ac53f3dc4a3556d8122f8b0a4a174c9c192d6ceb66eb004114c205e131ea0d20691861a80a5f339d76077ba99255d42";
+ sha512 = "8cbf136b34e180efc01d2dd21bbec2a5802ed0fe3cfe742a3f4760668cb165bfbba009eef26944a186b1ca8b3bd7b2a4d467eb0665be8a5ea0bf7e57bf9c97c0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/id/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/id/firefox-62.0b20.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha512 = "e7b52633455b8b198a43d869ce853e4b389d6a5c01d2b76b4f1b7b0e1504201cee008e226efe2be952169cf28ecc56ef16fa167de0106e15a590a5b27928d5c3";
+ sha512 = "ef9a54d8895242d75b6f0346df227ae3b819a85de4a4c6fd658533fb2e5f32a465374a80e70ab0614c9e833cefebefe44413767ce0295982c062633dda81b466";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/is/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/is/firefox-62.0b20.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha512 = "d5f838c5e11e92fe217cb0307df38cadfa2a88a06c8e17f40df6b421fa111733ec4d647d0b51b5e2f5beaad53db7a9eb9cec2c44cd10e47c8453afa69e5e8d54";
+ sha512 = "ec2e9056cecc69516637d8a8d5da90a199dd4f287f85af19dd6fd8cb4d29cd85802b5c578c44a9fb1aae8f7f3e742ca071a2f09354b41e113f64dcbdf78cd82f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/it/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/it/firefox-62.0b20.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha512 = "fe08835cd8f14cc2fc5f2be5b06ce031fbc0e2b5c72554e499f60de1856eb7111338159fcf9b89ae2b3d5366ed69b9f650b4fbad220b397e14d21627b3d0f489";
+ sha512 = "1e70e9bfdd3b9346fb8815b1457ae89466c97b22150afd32d60a92c2c51e72ec7e151780398399d4d3a410a3e7d0871b6107018e8ed629476bb6fa23e2cb0c61";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ja/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ja/firefox-62.0b20.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha512 = "c65c8f19f2fda8ffe69f1d0fb0435202f2ae90aa52a9a2d7f6f1d48a3e5d5f2553746c58dad462aad3141f91e60f1b176e25d63eb00305f6f6022f7c3b30d784";
+ sha512 = "83e5d827c447081e073daf51a1c842c42a86ed984dc0961548b04b4353e1384b6bf6dd75f60b0058a31281b51401441bc79c0d0acbac9407af6fd6fb62b08752";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ka/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ka/firefox-62.0b20.tar.bz2";
locale = "ka";
arch = "linux-x86_64";
- sha512 = "b3be04d82c5005bae51643fb2974d34e2c89194730c2c35cec6c1f8aa093e2372f72ef9b8819b014141722a94b6851e5986e47958871b4d72acf0e4c5326cda7";
+ sha512 = "036c2a3ce2342ec50c3c2227f49c4708785ca4b7afaa9324d2708b1653ff09cf97b08be9c7e8ec5cf9713badb0db9ac3b2b1f36fd5e941cc5cff8c8ec9a72f4c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/kab/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/kab/firefox-62.0b20.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha512 = "717e6f91898b75ec0c549a750707d2ef7f637128bf3bb5697a90a7728879843a11d66cb28afb7b06abd71bc49d990505ac4f41d64208a081b17d2f06791cdb16";
+ sha512 = "fced42ab596fa0eed255e895a115fc117acaeed0c32204c9625ad37fba62b64f9199a97bd0794d5d91c432776abbf533cac651ab6156c5e7d1d34998ed97d760";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/kk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/kk/firefox-62.0b20.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha512 = "bc686871cb2105172700cd94c2c7804a1737e2ea7dbc951ace99e202785b28e952600a3ec73b3319562ce3975c3c9ce24535a6501107ca87fd4cd7347d681eb1";
+ sha512 = "89c23113f22f4a16977c91bd5728514b31bdc5ef8c75c7946caba06c7db64a7c1dcbbaea194addccc203365b91d284066f5a68be585873a1d05aad176cd9f3db";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/km/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/km/firefox-62.0b20.tar.bz2";
locale = "km";
arch = "linux-x86_64";
- sha512 = "59b63ffea55056ab7b6b4aee8b394c3ffcd00ab9bbbc46167378da2de8abe81c4890d6ceb8f7317c9a4bbd7c81a644e21cfa3f0641acc0895a8e04c027e1f1cd";
+ sha512 = "2b97795dd8ca4ce7d934df392c6863ae7a1824b63e8c8a97ea923d0b7324a1feb42c39cf259b83302240e7ab2f0fc84ec65aa5b72ef36ff98e9316a85eeb348c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/kn/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/kn/firefox-62.0b20.tar.bz2";
locale = "kn";
arch = "linux-x86_64";
- sha512 = "97430540beb955cd74b0e47c1c0279f0cbda9543e8b20f1864adb569147fa2bdf52f8b09bad64d7d3f441915197c75817cf54ffee8f8efbc75cd7a19a0189628";
+ sha512 = "b53454c825088debd764988e3217052039ebb516b1e9df4a06d411d4b69270303a8617fc83eddfd48064dd35f9712369f5cef2e12e4c01e35da20aaa9f53ab5e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ko/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ko/firefox-62.0b20.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha512 = "5f50c47d091e096e0f493710726c6b38c5a0abbb819c90487127a58362de97014704feae87bdae27772a2cfc8dd2ca67b91421fb420b23ed89fedbe0d96d8243";
+ sha512 = "5f40c6f0cab40af75c473e4579510847ffc69b1364af264ab90c9cab97872d685dd62d57839ded440dd34fc6b431c668fdb927d9a58c76f2540239c490bbf465";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/lij/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/lij/firefox-62.0b20.tar.bz2";
locale = "lij";
arch = "linux-x86_64";
- sha512 = "eebfda03bb276f2b0b35081f45c9d5a8de533ad38f76767225af6aabb4b5324ddf8713e82e5085bbd1a70ad39099cddfb6e33d06e26d0357cd73154e0bc557ca";
+ sha512 = "772d20d98fe64cae50ac856e2a0d085cc823cd90e8d4824ba51106d473ee3eb530cc49e8e77960ab5585439b9d82bb809ff1c899b3984274525d0cf0f07c6769";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/lt/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/lt/firefox-62.0b20.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha512 = "e16d392173019779498a44831d8aa9cd0170953592e225233104f5296f6189892692ede6b72511ec256a6254f4a6fd6e5b2f609f16fe64e6ac812ac4e37f4906";
+ sha512 = "62c55ce5dfbfb14124b24e7462b18e61a7a4e6b5afb2d5da3c79ea9069b3875cbf71c2d9d28f499630ab4c1603bdb0d71a90d30c39beee17c70f4de5931324df";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/lv/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/lv/firefox-62.0b20.tar.bz2";
locale = "lv";
arch = "linux-x86_64";
- sha512 = "08554205118cc0aab0c353fb332b9c9e3708be8839ad89fd643af34a036904b43d5dedf9739e560f7497d0db133f09301562d15fbb49b59cd86ad6b9795658ae";
+ sha512 = "d01e28e410b7325b2710c04127666fd69e047ff78046b518d3000271a89d9536ece6ec365248bd3a925e13078ba0b750b469a082b7273bbb02356c3318c46c6d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/mai/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/mai/firefox-62.0b20.tar.bz2";
locale = "mai";
arch = "linux-x86_64";
- sha512 = "e0bbeb51d8f2d5ba1ee8385ba8445c1a3608f635b916fb8619151a9fbb12b0132a805a2de39c4eebd4ad217c150ef4382e049f4af903ca2c5ea05cb45112059a";
+ sha512 = "501a76a99b28dd3d33c1023c95dd1203f321e9ea82a789f56c27fb63ac2b0dc1c4a758535b81cd38fa2a6f9234f5a854899c5c9af70b6afe0db0011d1ed144f6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/mk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/mk/firefox-62.0b20.tar.bz2";
locale = "mk";
arch = "linux-x86_64";
- sha512 = "e12cd61155b9bffa83b30c3d26606b4b9731a51ef24a50388bc8893595a31f7fee1f8cb0d3d4b5d41568825413e8a8a72fae474936e053776b3820a1b7ba24e2";
+ sha512 = "734804d2b15cdb34bfb1e3e51d3b4475d0b23ddcb0bc7e5de536c6098e9f5c2debcc53bcaf9ac76bfe49522ceb345c44d45721d4440b3763054c2e0e195ce68b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ml/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ml/firefox-62.0b20.tar.bz2";
locale = "ml";
arch = "linux-x86_64";
- sha512 = "019a00e838f66e2d2171be66c48bba8e3fedbc6b1f0ab71d5fee7657213b1042cc3160619e997334275aa77625a7cb47a8d10448401ef5023752f6d4904d06eb";
+ sha512 = "97eaeb4382199859ee8c8d5f92322bc30eac9aecbea4a00fdebb63ec93172be9225d7269b99d7284edb93bd2b98ed6542cda6e5d65b45f97044c1a117cba53ab";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/mr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/mr/firefox-62.0b20.tar.bz2";
locale = "mr";
arch = "linux-x86_64";
- sha512 = "f68f2c27e8140742a7630b1b45634877e54cb44f72f7b6e3db596583b89669b98cf9196ca7b9e50b37f6e44b5ac59112b568020a700f7bed3b98684e47c913b8";
+ sha512 = "1d1677c48b3d829673fb5140891d1b52ac9b9f075b2348c527c5e364d0a3fcb6eb5cae2c0fb255a834e7d94bcb7af03b928151ad397a1fec13d629a2cf37d44a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ms/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ms/firefox-62.0b20.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha512 = "d03a130089b7e07e6e793b9da023a3917b6766d8b6a60176c9dc78752fd0c7d6dc655bfca770a624d4554ab472a321f124239dc160b40c7f6909fb78b580275c";
+ sha512 = "70524b569d00964c9773560996972a6f96079e749389849ae6615a90f55ebe458d0d857a1ea7df89b51d39b5cd8e0bfd65bec6b98ba5500419c8e17e269713fa";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/my/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/my/firefox-62.0b20.tar.bz2";
locale = "my";
arch = "linux-x86_64";
- sha512 = "6fa7d8c3f771b84607b84c6cca74264d1bd7ffdf504fc8e1d58806f964d604de3782244281f18d6ec7a1a90555b195319dd42a9782273d3dde633dd405298a9d";
+ sha512 = "19fb98e2f9622ee33d828df12b2f2ed035abc7c66b8d8c4cc5bcb5d985ebc0a7a42d5d793b102e247da395d8257f9070f3896531e507d50c21575b3287792f80";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/nb-NO/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/nb-NO/firefox-62.0b20.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha512 = "c7b21db1bfe32285bdd51af80b48b6b96da5066f65c0417470f091a26916512b0312b7d7924f84f29b06184de974cf485a10565f9556f872f7abea02b59e35d5";
+ sha512 = "a5073203319b7e778975c86dda8930fc5f7676b1cd124d461ae0d01d9fd7290a8a87f2303bdb2ceac78eb562955b06eaa86a4111098a241513023cd005cc450c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ne-NP/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ne-NP/firefox-62.0b20.tar.bz2";
locale = "ne-NP";
arch = "linux-x86_64";
- sha512 = "b1a3a6c26ae756c422d3f09eebd243a228c03690e5eb2316dec4c90b9e08d444ceed95bb39e794a0aa9ec038f2d6c5fefa5b11a4e1f3c12ad558624c4074f68c";
+ sha512 = "432b527c41424d34b61bc9ea3c691349397efbf26fd5b9ff85b1e1701d768be7f5f61f621d1f920a696579f5e4d0dacc0e3f91642e2c24b725cb0be16e0f4283";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/nl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/nl/firefox-62.0b20.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha512 = "3fb56ee294992191b4fd1a09e2bc4e8905708f7402f25a8fcc6321b2d3771ec3e46344610e51faa7ebfcc127d3ae92937fb01184b596f46bdc1b9d32be190f85";
+ sha512 = "27bf6e9aa084cf7ff041c0d4d9e380f9becf909309317bfc2fb8f99af81a849975575f8e12c83b4abcf0b1706987f29ad313b352f5bee7a73d76b3c8ce5eb95c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/nn-NO/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/nn-NO/firefox-62.0b20.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha512 = "4ea0e6a353deec6cdc17331d8f4a7291fe189bb6e1623c1e11e59d0e4590b7cc6d29e289249acaa43b5e7fd2613de2441b69bf94a957400623ecc4b876cbefb9";
+ sha512 = "62a187309f01f6d0d7c2b89ae77fac381d14d91ebc864990f897ffdc45d068a7d51a5af3371e4319c0719dbf126f25ee4445a8cf30badf02c89a8a756c44f83f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/oc/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/oc/firefox-62.0b20.tar.bz2";
locale = "oc";
arch = "linux-x86_64";
- sha512 = "6b3803eb5fc2c73093457fe2626baae476cb5af514d4f3ae7fd640ff70e5c1deb7c25a54994afe0bd07041d39f397875ef772927035c907c171e3d70f0c20d33";
+ sha512 = "a5d2fa30167f19b9a7d6f05ddc2e374cbf9918da0eb2d12a121c442f48106ac369133d42bf9ad4de83379c315d0e4ee4820365d43191563da07e3908937bee01";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/or/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/or/firefox-62.0b20.tar.bz2";
locale = "or";
arch = "linux-x86_64";
- sha512 = "720e95e295d1c9238308bdb75f06470ec82538a0396eb8be3949ea6421502b17837501266c729655ddc884f56688423890db504f809c207501c60ec31a3fa7cf";
+ sha512 = "9aa6f12da9a63cd135b7196fcd579b2115a6a3d0fd7dbcd3896d5c76caa021f64e5622ccc298bada1bbf1eeb78dd5905efc79e779c4e46ce96acda18b0f54576";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/pa-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/pa-IN/firefox-62.0b20.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha512 = "7caf36cf6ffc5106762607b4d8f37e911af9d1f98de6e32adaf84888696c4836a3f812c0c74dd89f1a1badbc0a74e1d723a82c9459ac5e360626f01a0b65b0c7";
+ sha512 = "c90b483004ea2ebd3da65f4b8832990894cd20230aba256ce01b38148378831a7950ad9366ce420d961a72c4bca682bbb5f9ceb027021cb7527530d7260a7e75";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/pl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/pl/firefox-62.0b20.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha512 = "81d5e92eb1f04df384a79a31bbbcd3fdd3f950547d3560bfabd2f98646de7626a94d9edd6a7286cb339cb08e88f4f03826695153c9b97f8778080a4d12148d07";
+ sha512 = "35b67fe4b6a526256e0c7b0669a99409064dc7e2f8a1e7d46cf71751b6c2074207a592e8fe263ec3634601a793f56d76b09de8233b94fa410ea391d72db5174f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/pt-BR/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/pt-BR/firefox-62.0b20.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha512 = "b368920ef21571a92b72c6d79cd5d8feb263eef62d73d18ea57d40ed654d03c4d3a45e8e9b966f4962be840b97016813f503873653620ff829c21e312ed9f2a2";
+ sha512 = "ef30ece766447105ac86da1e324c7a9818ebf7c0a5ea93a31f20ee0e22e3663593824be9db040f02f424cdb6e9ff4e4bb121a57505b0019a0d7579a12ef7fc0b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/pt-PT/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/pt-PT/firefox-62.0b20.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha512 = "5ea7f257217d1c5566013c867e6f405dd9d2f407ed1e770d228108df9e21b1895865dd8a92e39d1dec402369e13373d812bc0a37af85014c55a2742e2e6402a8";
+ sha512 = "b6a571f6c019522d49824554881684f38fdd5df7c518daa35950fdfb7f481ab8ac03d90ce89909e4c6a9112c8b965ce321ece7e317d176394f700c4e0d24adc2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/rm/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/rm/firefox-62.0b20.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha512 = "188cc208d61eabb29e5251c3c4f4684887efe9a3ac87a76f3107cf2059fe9b0e9525dfe4526793741bffc3f9a584fdc1953310d53acaeb3e2529d0e462cd7393";
+ sha512 = "d72c24d58c415f02b85b9312709050cdbd975f0febae57e39db118d88741c5691f82412e6607cf8c440295ef2c55805512d60a05013ba3020afb4c6723c9419b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ro/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ro/firefox-62.0b20.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha512 = "c8213f5c7afd67bc29d549767dbce002becc99e24e4ce0752efd1134e5a217d819a72d00c5b2ff83726e2a31defce2ef9218cc7e4d8e0d7472e898670cc4bb64";
+ sha512 = "e881440fceaabe3bac8b038e3bd4569019c1f85a27586f4b4e16a7b2d2f55f47f520b317ab5e1df238ad41529f00b004b65b104ffdd4ca6055cb07e2de439801";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ru/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ru/firefox-62.0b20.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha512 = "071ae0f78c8b8ee711183fbfbaa1d30e085006533d5ed29ed5fdbfd3ff3ec828d5203da0e1b0ee5246ab1ae7810e7ceb68d1431ede48c885e8cbba8fbd4e9b46";
+ sha512 = "777d3c168580d3686f9b58fa6ce83b3941c3fcfd17eaa84ec31193192019c76345ffa2b416d081e974f050c14d485eaa5862245bb4464c239290c27bf9cf8299";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/si/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/si/firefox-62.0b20.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha512 = "1ff0dee05b433548db1b894fc8aa83864139dbe82576cbdd97340500270465a29c35c76fa5e757e1b9ddb4cb79bed51db31897970d3206f945d43a6053a7e761";
+ sha512 = "aee6dc0e73a06f3aa2cc7ede2890cee4a72d3711510eef89420cc6cdc09380e30706ca3706b14823fa7c7b53d57f7257aa5f5692bf49834178322015b828a969";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/sk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/sk/firefox-62.0b20.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha512 = "37e18481fe4963ebb4beaa8d5c7826440df005661e59e4f7ef54ce93d50021e6c76d31a3d7e7d7e28c7802fda00d36b4db3913f925413ac5e3515eacefa330b8";
+ sha512 = "6063a5ef564f2cc7b54f89002a67a2e8488a6b62051a61e545c43ea123c95d3a51fde6eef2165a983266423af421d1c915bcb5a80c63aa4bd16a27eb59c27245";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/sl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/sl/firefox-62.0b20.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha512 = "cdc077256eadff717b81b554a58795b8f86fdec1401003d8d18f33dfdbe7f9f8b7feab2e1c2c6ce0864ffa53f0090639201d1982cb14b278b7133552a5664ca2";
+ sha512 = "76fe24bb152e4d89e9d4a4409bee5c2555e42ef2dc49beae13cf9f26b4ab5c3ac2d7d8bea9d1d257f2a7ac4e68e520f9e7c00529aef46dfc7436cc9de0b6eedf";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/son/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/son/firefox-62.0b20.tar.bz2";
locale = "son";
arch = "linux-x86_64";
- sha512 = "ed35fdf2e0a90a8fb8db4f6809f0460d8d7be384d0c67523ccce6d666f7c2bf94a44890a96922906a0c3743fa35e78ae04d811d8d50c559fff44ba7ea03bb5bb";
+ sha512 = "f641b6ac0915678b88e18d8a4d4ba49f9a303252024ffbc21641ca5c337c8d3d4317aefc889e9ee9c647fe51a10c3755146d1b859955efcce2ea2d2f5e9e4a11";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/sq/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/sq/firefox-62.0b20.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha512 = "265b3a88e73f4fdabc2bb1dd3c43d4430194a6238f3cc8e9da4726a916794b20a03f0af1d350a3c74e1befd33a28f2b93eb2bc2c4dc8ccaf5759b7ed77012ba0";
+ sha512 = "773904cae848afc33b0b88fa835db0e0ccb62476ae71628cf5edc1190b70edfb2e91fa6583ea473c6632b8809f485e34bc55a5a86f61380cdba5ea4e99880ce0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/sr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/sr/firefox-62.0b20.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha512 = "a2da5dd3bcec2df69585ea4d74a6149e1fc95a6d121f9fc4d32af8864c01aee120b2ed4b60babdcc97839a72703334e5f053b4eca1471f5cf068d7cc9c7e3f42";
+ sha512 = "dbc995e9a6c690d66e6cecea3012ba6c0825124bcd1f49073ad0c70e740c7bcf7b07a565360a881fa31d13988dc88a7e2038e13f229894d532ba44d0f7f36f82";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/sv-SE/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/sv-SE/firefox-62.0b20.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha512 = "33c9ce9ff4639c4fa6a13c14122b0c6fb028d7a63c217f63a8455a775b099318df8d938cd3a3f6f3b769f63a8c10163f98d9743706bb147ce0edc5d51f266e75";
+ sha512 = "94664f3b8a5090c71d7bf5d66534567af5e88aaefb1b96bfe68398c1726dfd3d139f1b106f1fe743d480c857828bba7877c0d77d3b1a582e9f39762e2f2600e3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ta/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ta/firefox-62.0b20.tar.bz2";
locale = "ta";
arch = "linux-x86_64";
- sha512 = "bcd817de0f734d5d493bee08e754b6caf9868a828627e18eed7ba933be54a339d9c819a107182f578c6449f6161805f98d50d14b4b6341a0868c3a7eb817bd17";
+ sha512 = "05f938e3f3d380e991ea61b774c0afa60681cd90e193dcf3ba99c2d8f783c265f6094b0a3f088639ab2b060b07a9d1f90396b65cd9bfa2480dcd366f3f05a2b0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/te/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/te/firefox-62.0b20.tar.bz2";
locale = "te";
arch = "linux-x86_64";
- sha512 = "b3018073b1432b3b4ace7ea0214a8a354104bd5567597743a9317d91ca77defb3b25ddaa46b7fcad81291b53165e3bb47a6e95cfbbf6bb9171da5e4bb0a9efd2";
+ sha512 = "48aab49101dceacc974792ba8b355bacd40569a6571c9e7fedb72574b09b019ae3e78fb8ffaf1f7809f121e7cad7ff581b5555847bfa8067cd7441f131d9b973";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/th/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/th/firefox-62.0b20.tar.bz2";
locale = "th";
arch = "linux-x86_64";
- sha512 = "2f8fd5f93e3e19495182d7490cdbed7999603205b6f0312ef387c27d735e1374dec9e3c947f30ce5a21a5223284f31b4ce7f2b69432456a7d029f4de59367b25";
+ sha512 = "1d6dac041ffabef622b1e71b1473a8acade169f567e98906795c14146f8ec800ae4ec5e5a4ef06a800dbc18a41400dbea6892a9a0cfc902d9d7348a201ae3548";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/tr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/tr/firefox-62.0b20.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha512 = "b3962d7eba1a25c150ab87d5278c4b7941e420c12e0ab252f0ea811d37575e16d6964bcc958d50a1b1b99f82cdf1c32bae015499e686bf8f04bac6b0323dabfc";
+ sha512 = "0f6e4854a5f6a9540d78e14090b4204bca5de037fa15077bc6417bc422f6f7cac6f0655b61f9062be6545515a1eb38a54ef5e7d0fe347426424b48686d6928bc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/uk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/uk/firefox-62.0b20.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha512 = "8eceb4fe4244e38ae3ffe4a42d5fd12c3d6c3ee654584013d1c903958a05d228f07d3fb83c601de4b9a701c6e9bfef2ae9cdccf7df753128afa9804840311461";
+ sha512 = "2288d8d209a6392646f10f0fdd2229b281eca6ed9e830ef4102127b74f9f314b9f3d67f03d68aea57c8c99814e46c87a2c27c6d1ce5b31e43e427ade1ea7535c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/ur/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/ur/firefox-62.0b20.tar.bz2";
locale = "ur";
arch = "linux-x86_64";
- sha512 = "5aba832961f49f96c5e3aa189d13f1cd4b5abb6aa0d253be110f0bab59ea1bd819a2e72528608f35f03f28437ba9423a12780b1da5af1aaaf7a752d04014a4da";
+ sha512 = "a1cdd10df63e2306a0907686de28066c7c5c6241dc594350eea456a9684a288be20bb1625aa7017e320d3f5bdc961d8f0945220126448c54ee57699e67f5aac0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/uz/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/uz/firefox-62.0b20.tar.bz2";
locale = "uz";
arch = "linux-x86_64";
- sha512 = "cd26c9e56f37be7c93f754aaf40ba3f29471a0017b52c422001d556710a011d84c67af411dafff61a26ba8b1388ba4811bd8954064df4331d55a1d7f775cb4ce";
+ sha512 = "70905785d613426e585ef75989f90d4ead06f267e49a668c986df0bca93ca5bc409cd1f62d1b4b23de0659c18155075e05aca5122fd2ca7d22c748f94b34dfc7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/vi/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/vi/firefox-62.0b20.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha512 = "4104e9b2ab3f4132834c9ca816ea9e2b4c7d08fa90efec940a1701358674919c700f6bc6862006b6b4d830bc086db0a4b1aef738801854c505f59ec9a10de38b";
+ sha512 = "9ff2e67f2be33356054615abe599acb7d192f6fa7525ff20307818c7cef25cef649ef7f26c231d75afcb7e0babdbf4df9ed4f56d5b749a884a0eb17335bc1919";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/xh/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/xh/firefox-62.0b20.tar.bz2";
locale = "xh";
arch = "linux-x86_64";
- sha512 = "7fe85c144626b904a0daebb6db79c2c2c66d11fec892de941584c6a93f8112673a6c448f4e77c215451332e31e78a9bedb4e83eaead4f34b7b2ab247662fd77c";
+ sha512 = "39b0d603092198f6b06fb0fceb9de7f5787bcb24d3f8129888b00ad5b22e171c396c679a945dae43e8088a662ef2abb2aa94c2cba0bd1037a7f4f5dd3ca2df1b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/zh-CN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/zh-CN/firefox-62.0b20.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha512 = "b669904183e607e4eef3cbaa96749924771d8e67ee142b5ce0d855c11a0e24921711ee42382993ae2b8dfc2978b7bdc84a4cb934122286e93b94f762cd888924";
+ sha512 = "f0ae1486ea7155521095dbb2ed764365cd01bca16e7a9520810950699e3a6d0b191488c929a2b9980783976b90e0df7c5999f1df8b67b8f851e133fb93dc600d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-x86_64/zh-TW/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-x86_64/zh-TW/firefox-62.0b20.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha512 = "111194874160ec7bf004dba3a74acd726aa3b0d464a1ecb2b031f1424a56d887c718739633e830a45f9f4c11be693ecbcb3b9fac716c1d78a09d83af32e09048";
+ sha512 = "7d970407678c320e731de0a4f00438ad7faad0dbc375e0eb12c3956a543279ef379b8f1e009b3f866680ee2122f6383da232f2bd1bf06ababed3ba04e453d065";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ach/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ach/firefox-62.0b20.tar.bz2";
locale = "ach";
arch = "linux-i686";
- sha512 = "42080230edb95635ee3261ea3776957dd5dc5ab9ad80146e4c5fe5f288aa1a7910747738900a067960bf10b1cb37f2150c4048540364bb3933d1f95478ffcf82";
+ sha512 = "04da51cb7580a716ce70f46ed48b6332342a7c54548280d2c2a82bcac01534bf6ec638bf6090f61794b78fc3a1445dec98fbb420103f2b942314d9aa3db85263";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/af/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/af/firefox-62.0b20.tar.bz2";
locale = "af";
arch = "linux-i686";
- sha512 = "ef31f65054f4e970217e2e6c7d507a74e94a44ebba7c11b43fb86ed0ef6b85589a7d4e5acbb186445c0bc1dff05d67b598de0edd06e0b80d263bdcd200992e9d";
+ sha512 = "1acf9dfca2cb878c4fc3ee1ca56a87daac9248a42295d0d0ae11e829768dc4dec8655fcaf4c0843fc916e58927a417b9ccca4ee8886ac5238c37cfdebf8d4608";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/an/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/an/firefox-62.0b20.tar.bz2";
locale = "an";
arch = "linux-i686";
- sha512 = "c4302fa1bc3b635a960d095eeff62055b1148b433cc9839b54daab9162e87a5f59ca47b091ef40ca6eeb78102e8e9df2e90b2157a05ae5819044640648b4421e";
+ sha512 = "81897f7babf614ce6951f402104bd829e770fe88f6f64335181fc4283e73c6c01c45d4078b70a933525a20d8ab1f4c3b3b23eb9fad5304f0b35513e43b79d15a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ar/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ar/firefox-62.0b20.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha512 = "fb98616ad769dbf08403007712b0230379159b0f2c23e6419597c5329aa856f04060f75fdf465ba4a9874d19c41305eb88acbc7381269c95bca33391754d4195";
+ sha512 = "67beeb695048bb70f2e613a4d08e00d2d5ea5d7748e6c8606ac7ead43a9d2f870e72c3ca1dbbc3c7244068ec29a916354ead91391d3cc77b1bee5184c25bd75b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/as/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/as/firefox-62.0b20.tar.bz2";
locale = "as";
arch = "linux-i686";
- sha512 = "628d9a2bed4f46e80e6347862730314a5e4e776d8a40835675435a5645f416b8efb05841a291d49392a75f93a27122448db5bb87e1e5f02ad7cef0ebbcb7f2dd";
+ sha512 = "6d39b86898ea8169d47f801058874a07a32c2da59d59c0f101fa020b4c118be720fc221cfb59fbe124aa278edd49c828142616b714be0053b1d74beb8dd88b33";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ast/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ast/firefox-62.0b20.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha512 = "c8d108583d9e5308d5ad351c2cb5db989d19a7386a2fc9c0ae334ca42c1254c1cd0770271c2eadb1dfbf8f2fa214e3d9a62ff48e1f02acbc10ce9b37120cc91b";
+ sha512 = "552d79448ad366770d1f759793f1f792265d1630ecadd87a011eae75f2a17243a1636ddf483afc10e1a59874f1466e8a9bcce5b2b8e31f2ec72be831c9e2d7b5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/az/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/az/firefox-62.0b20.tar.bz2";
locale = "az";
arch = "linux-i686";
- sha512 = "e2a5dea9e009fa90f5ff50ef32db243837df739a4adf4e91dbcff516011372d80c045e3c399f44cb155212d7221f1ae2c9dd8ce3633c62aa6b4756e6e2bcb32f";
+ sha512 = "16eaf530b848b2291fe2ee03489b9414d538693024ee12be223dfca2980ef3536d560b698ff8f99744bf6101138fd1303ffd42002d2272b2dc5fbc5f97dd4138";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/be/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/be/firefox-62.0b20.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha512 = "1c3f4a486b72382c23d3c515b2b0fc4cc61ae9567122d1346c4aa519cde4ddde7e0fe14f501f854b54731e78ed25de4860fef494932216c912a9e5ecfb9d45c1";
+ sha512 = "47565829a3f5859fe1e640263d4c46e2584666fd5e388c4e831b6411c5af0fadbf4e69c14c730ff2adeb14d732ad71031a2f903e86a1c0ebc26eee3126739ae5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/bg/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/bg/firefox-62.0b20.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha512 = "4f06b5db528b458fa7ec45220fec6304b52b2fd585f036c5f61a96bcc97d2d4974227c492c453e944a2e359dab438235122e2a9abfe6246d58fed2c253549807";
+ sha512 = "5ba29e660effe660301e9c9f009e3c88c12aca3b79553f8480dc01f99f5858cd838fa9a7fbd0105070f5186a10476719c753514f0005957fe774d845e182801a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/bn-BD/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/bn-BD/firefox-62.0b20.tar.bz2";
locale = "bn-BD";
arch = "linux-i686";
- sha512 = "afe70d03b7df384916aaa9e43f8d7776b04ed3e9af0ae5910ae476d10e340ed5a12c705048a17c428d6ee9b03bbd76e4f4aa6f8f0ee860742df50ef9f6668e2f";
+ sha512 = "ad81b92e79e754b1d88a2292643699d6b66c34259ba66f460017cdfd4739326ef97610ab2be3168d0db88cbd1885a2161f708e2c1b889e5b5f1680ab2ff4a1b8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/bn-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/bn-IN/firefox-62.0b20.tar.bz2";
locale = "bn-IN";
arch = "linux-i686";
- sha512 = "f22dd9777c64b8eea423bc3d2f44366493612f48b973f37d063259e2c06772fd3e8dfb72f78d96adcacf4865c86ba1b4a2600869517e62d20995c1ad19657819";
+ sha512 = "960b40181a3f4a31844a7b1d63b2211c296b1337d4c072f259e80a368fc5b6554808683eac530068e0b0a155f72292d6a4ebb717d3693e367142841fe325a827";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/br/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/br/firefox-62.0b20.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha512 = "8e917aad4e19c063f43e68d184bb55cf87cd076dc09a0df5339a8d917369e436474f773c5340684a8968a605beae3232efaf8a8bd7b9d22b19997f7c4e437395";
+ sha512 = "4e1fb7c0155bf06af57abf0dcd10989199063030378ef6864ff5f4cb7410fa1af780c038dabdf3ff6fee5a26aa27592dfb01911e353dd300faae04a8782e4408";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/bs/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/bs/firefox-62.0b20.tar.bz2";
locale = "bs";
arch = "linux-i686";
- sha512 = "e3c7de9f737959d8810f4dbd20739a253a020cc31e4cf8129652e6b7e592f3d20e0484d189e8422e8fcda934773391b2d4ed07d2aa9e041e0a93eaaef6c31b92";
+ sha512 = "7af74277d78647ff61ad05aaafd1d9cec295f63198bebab083c5bd8817f3c00de6f5ff49d7548fe8b6d2d7e06663255864e6bd6852ee769c465577217366d074";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ca/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ca/firefox-62.0b20.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha512 = "7d0756d779432b6e697d974fadf7a8dcfabcaae00381d032d815c05a04aae6d5bafecdb007772ee35eae9365664f11bc92aa67148e6c6e10e4c21c4f4a7e22a1";
+ sha512 = "fa050db4fea78126bab3c2ec2db4514f826a22a98e2986c8a779c933641bbb722b223e76b6d7b533cc43f5186a8c978af34603ae4ba1987ee1fe383004079232";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/cak/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/cak/firefox-62.0b20.tar.bz2";
locale = "cak";
arch = "linux-i686";
- sha512 = "63bc5677a50241ca97c81b4e899e71d7ac2f6045653d53fb245c676976dfa4b76898e362b10dd9a4ef1e688ac1c938cf822b1d8ae2df6849b607497f9001563f";
+ sha512 = "c69d394ef30975c4e546978dc9e64266236727bc1703c5224e721b12476d73e1455197380dca29e4d71b741116a29ecd441423422d398004cade9b009deecb7d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/cs/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/cs/firefox-62.0b20.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha512 = "2cb381c40cae5f09879f10a8482bc9c5cd9af07e2fe965638aed7bb4ba2ebbefc2fab97aee4504020647fb60f9468fb1a955bffce2baa0b9579970fca6c30d51";
+ sha512 = "b5d4a689fe6b475fc87083ef7be7a31bac3569063baa160b0c6ab8847a12807f8a1e9c3e6d0c2c3b49ba74f3b93514211c084a99b9406bee369d0bbb78678b71";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/cy/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/cy/firefox-62.0b20.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha512 = "091e659f18372351346a20eadd9368f63cbca0fc7ae3b235e924ebb9f3ff7616e8c3b2d89595101174c37ea0a4c1b6ea5279b300126981274524cd19695270f3";
+ sha512 = "baffd6932c5fef0b4e9a652ff4c892be693abecdaa0757d8ed1ebf5aaccfab34d0856a8a156db252892b8721093302a03dda65ec510837cb31713c3a803a11cc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/da/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/da/firefox-62.0b20.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha512 = "344bf81550e658e8ece8b915edc699ef9c59567f1bd202993c1a038c4e37c34b1029d399f1fe34d0bfdc333c464547f32c8fdfd90187c6c3f0e2ad25d3227446";
+ sha512 = "bc4a2a7eec60f6d4ef8436538ff4067a34fa6ead9d75b4f88b24ebb6d3e7712facad4386423b3c2dcef6ae183891bc71d0e9062421fe5ce7725ff564ac042b70";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/de/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/de/firefox-62.0b20.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha512 = "8d1e587498a304639ff876d764da49bae0d58746ccbc60964a708d6987381a4b6150ffb8526f6bc053b7a4fe5495cf0a898628bf6f45ed62f6360458a3ed462f";
+ sha512 = "470d8758e2407781308814bb581b68ef6d46bd918c2a7e2eb2cade73012c79ae01796fc2df8848ce92ffc3953d180a0d742d1da315025190d1795e450004cef5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/dsb/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/dsb/firefox-62.0b20.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha512 = "bea2f50bb8d6e2483710bea0746bb746c5c38fd43a48f33509a0ee1c823691d7aeb67f6f594dd3ba0ad3fc684fcc21a3ee375f6a9bdd7ee9d20e08d6f4ab5e17";
+ sha512 = "14f9beced9df9de025550b06a9a418e4d37b8978025068570b955ab80dc1a5a87e43f93b92e145287668082024eaef91916232ec1736070af6e415bfad9f6c56";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/el/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/el/firefox-62.0b20.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha512 = "bb9419efdcf6b7d7cf7a05c352ef386404dc1c1b096f9485d8b7f2ec9d2e893ef4250f01939423e4f69c2fb4a3b95abdeaa2072e2e73467cd6fb7f499bca5a85";
+ sha512 = "a52072b717f8d557fee3e4536cbfa436ccc87fa9568837b58494ffa6f2b3d153ee43378ac871f99b7afe62ec6adb831805ac7e1348b2b395360b79d94042b35e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/en-CA/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/en-CA/firefox-62.0b20.tar.bz2";
locale = "en-CA";
arch = "linux-i686";
- sha512 = "77f186155dcfe94ae672e48f5fa56e2fd96eab65af5ef745b68282aa03a399c038cd8f9f6d26f672e85a007c13c29258a10456203bc46a117188dc04e965be29";
+ sha512 = "71cadf96c97c236d0c9d4bc8886368ea5a9220f5fcd63a4e54ccea90de606391037bf87e4fb8deab4ff3043c2a0c8d641ade107f60ac5e7793ef1e85c031c525";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/en-GB/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/en-GB/firefox-62.0b20.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha512 = "7d6520ad23eaf42148d5fe297f4d59d88e33151cbc1395aa212b2486712e07b90c6662d530221537375421daac1392637b97a81726277687443fae41b07395cf";
+ sha512 = "0b7a55f1172239857ddc9d75a14061e7b5feb5855fe8d5e07088300f64a1e4c0c1521d1db5a8b7b05837223d1ab43ec5730d8e706953a14c9fd13ec3c73020a8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/en-US/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/en-US/firefox-62.0b20.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha512 = "bb8d7fb03a95d1eee6f7f1861014b727995ce4594095e0cfca224902645c2ac1acc853fb2844584745cb6aba60d7e9cc99073c8c365b0787059cd385c18b6b69";
+ sha512 = "1622748e3b656c8703ebb276f7a8bef4b2f6a593590eef50bf0e9722466d49a33ea31be107e3879073dd7b2c4e7ee3e2eedfa89b3e723108ced6a34ec3007868";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/en-ZA/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/en-ZA/firefox-62.0b20.tar.bz2";
locale = "en-ZA";
arch = "linux-i686";
- sha512 = "4696a33cf8a1de84da0df195b3b79bef21046fb3bcfab7a2fa6e6d30e047e6217f0375c4b4540f32815ac02feef89f5ecf4df87e0324b9fcd79817c8a4762325";
+ sha512 = "d5186d4172f636ecc4c39c60d32c80592deffbbcbdbe518e88eb67d3c56d8095ba440ee82af3efe138e78d3ae40b8367f5281fcf2900b913557734978f741354";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/eo/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/eo/firefox-62.0b20.tar.bz2";
locale = "eo";
arch = "linux-i686";
- sha512 = "3a37a36daef69c66927bfd572ff64943ed5c6eb0e76cedc730d408bafae22d118c60dc1132238f369363d7c3ca259f8421615f5596df1fc11a5fe08c447f04ea";
+ sha512 = "e0686beaaeb880be30604a8a5ab0acc541df1020dc2de3757d5fe5e43a1ad6a7de603d5c137569cb42f5dd1f2845c75392cd276815512231116991a5e54f1af7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/es-AR/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/es-AR/firefox-62.0b20.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha512 = "a5673b3d24446a486c1e301afb0138ce754aa56c28117cab53b21f70203f75880aa2e4e5f5e7dbe3d511f5f730a9c754556dcc657063fd762e8611439bc5e0d4";
+ sha512 = "5816049b91462845cbc4eed891aed168836e86ac2935bfb8d27485de30a7dacf83bd765016b528465b7aa559dda30034ef2195a98756aa5b17a25b96906b4573";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/es-CL/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/es-CL/firefox-62.0b20.tar.bz2";
locale = "es-CL";
arch = "linux-i686";
- sha512 = "a5e152cbee8a6c96e3c4926bcb62db406f1387b32a98987b2c7d94a56f044b0e453c956e4b6f5245221b2e4e7325fdc1521276112014d2022ebc574524cce597";
+ sha512 = "cf1b7bdb35d5bc8d30c805c98e3a0843f714cdc2f79ef8478277356032bf8eaa4c013901f46662712b4b628d62e2f6b1e9520e868f39badcb0dfa56581862699";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/es-ES/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/es-ES/firefox-62.0b20.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha512 = "02b8006faee84aef78de4c10d7ed66d949094a20ab1d6ed22ff6d305a9052dc47779dd8421ac414fa945d13bce1f2764a549fd2804c4069ec980e9b20dfa9c9e";
+ sha512 = "ff873d670ce9b20b8ff63bb8727a338b3bc0818f0568675f1a3fc6bda13e8f4097d1bdcf6cbaf651ca89163c8676f9492103bab682a8f9956b43c2686a51df13";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/es-MX/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/es-MX/firefox-62.0b20.tar.bz2";
locale = "es-MX";
arch = "linux-i686";
- sha512 = "16060be7efb5aa24fab444f5a0bf2e108af054e867cd1414e85519361046058d3054a353add6f28091ba1755e3fcad063cfef287cf199f4c9b7f0b4b56304848";
+ sha512 = "253c140c390c3107ce16a9c2f73c41a71e4b080eabd049a5c1f65c8fe895bd3ec669eb653c8bad55b00bd65e97108d85be18e1edd1ba7457374fdc0b9d82d616";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/et/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/et/firefox-62.0b20.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha512 = "d594fc3d2096ffe94c4688a9d987f47cb439c8c177155658eab4544b89b33f7408b4fef9eb47bed9de3df97fffe840f3db7f030cbe144aeddea3f13bafa06dfa";
+ sha512 = "cec92b0815fd530f3dbbf195104c6699e4d078a4a35353cfce2425050bf62811b093e4276052622eefb60d4f670fdef28919f8d83e273a27c7c9cd6b9725f064";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/eu/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/eu/firefox-62.0b20.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha512 = "10cf4c333b1abffcc213236440c498a06bfab334526b38476ec0ce98417ff31f1d1cc7ffcce292faf00a86d60fe17a8d1a09db9df3dc3158455e070efcca7ea4";
+ sha512 = "6cf19489fccc70da26bb2b28f8d036a402214ee785e082e2be7b065f8420fd1057e3caeacb42436955a84467228fbcf2cbc62f871fbec959a4461d9555ee4fc2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/fa/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/fa/firefox-62.0b20.tar.bz2";
locale = "fa";
arch = "linux-i686";
- sha512 = "1bda36454255375e2927596d9ba3f884728e3c47b51334f34e406ef28b15a799cb4bb86432c1e0d05fc4acb7cb8d812788a0b48cdc55d7513a7464daf2e3a6a5";
+ sha512 = "5d540a7f403ec92a884656279cd4e7bcf7bcca72f25246894295f2f0d7271b756b6851d68d925f1853e16be14c4f9607b2284a642f4438725384a2ed18e8def0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ff/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ff/firefox-62.0b20.tar.bz2";
locale = "ff";
arch = "linux-i686";
- sha512 = "763e2f24bfe6800eb35b27baa22a2827264b37fda2ed7274f488fb92d086f5f52f4978d958fc74f38dfae5e4ca2a269cbcdc42c96f59916f95423d63d2eabc84";
+ sha512 = "65b32a30ab5bbe626cbd1276eb0fe4bffb60ac5651ca6437b0887a0bcbbf5201aebc74c3a80c92baa1a56e60a6852b32fe7ec7228de99e9296deea976c6c238b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/fi/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/fi/firefox-62.0b20.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha512 = "96908ebb5053927f9cc032c673821d8d8f24968b26cde657fb0cac264835c66ff16417bd4149dff58e5ce577c57207f1fcb113d9e8a6495cfa1f0608a8cf7783";
+ sha512 = "00515a094f79ef0817bc3bc392ab9d4effabd68748d0de0f6c0cb14e7996b97fa48df200e1444ccfc2810c80252ceb22b6e87037efc476dc58330f9af712bb05";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/fr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/fr/firefox-62.0b20.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha512 = "43db8b673b6526e9178f5d50c641c9da5e7881ed6d3d181bc1440d314018afb9821c8149daf893ca7108724acf2405968309d2b91407adab87ad3968167a4e18";
+ sha512 = "2a1f2b26f3f8031e2da3778e375b889793bcd87cc2e21b3f26f16a3aa2f4043225472e9be3c8e914578a59277f7bf42c929a2f0d5475041eeebbd8d722a67c3e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/fy-NL/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/fy-NL/firefox-62.0b20.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha512 = "c79953daae0720d61be1a616ba72f70b38f772c45ff0ac8043c45dcc46bae939df0270534c394625eadf5834d9cbf5b80787cb3b6eeef227b8812eb6a303cee3";
+ sha512 = "669f1c45e9382b81aac5c612fc111c9be716e662f0a87c7b0c9f536277d010203438c09ecaeba58c87cb91f979427ce389c5de9d55adab8366d36273a4926ce1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ga-IE/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ga-IE/firefox-62.0b20.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha512 = "e7dbd35bcffcbfe39500fa583f1d3a80a51df1344c69086beee74aee9c1bc33c72c7667d550d0edfc190d96212511e95c17eb276aa29e28bbe9fff3cdd3cea90";
+ sha512 = "c6977760950f0121cfc61e7d130f89965df9cb6d319389811bfc08b6acbce34eb6d644b3926f4b2fe4fcc735aad1a1be447dad8a160a85bc543d95d2db3d2b36";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/gd/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/gd/firefox-62.0b20.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha512 = "4c11c6ccc84b3323f0c06e98ef16d0b7689b1032ab973ad9f9bc9ed7dfe8b295c0d1d9ea3ceeba5ef265ccfb84672b9f8603841563699639355508e222931bdc";
+ sha512 = "cd1d2369a9609969f52d08012bab63ff82a795438ddaeca2c17f0df69a713df209b455eba32112cd571769f0a7a8cf8f8eab718a597b5f795f05b6867e88a382";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/gl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/gl/firefox-62.0b20.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha512 = "b9168e7a2331d1ea1655822b2e52353f21ade6a51cbec4a174ea7e4bdc4082dda00a582152068ce89c4c15f71dcdc6c63d6bf2b0b777e0a645d1e80ad0d3bcaa";
+ sha512 = "a0a3bce700746a50651a982ac7dfbdbaf192f10f0e443974ae088c9bcf0e2fe6eb96d3c406138bb236512bd6b1460b0e9005ed370f38520d4f618d090e58201e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/gn/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/gn/firefox-62.0b20.tar.bz2";
locale = "gn";
arch = "linux-i686";
- sha512 = "5894625324cc483e1d258b35d95ea3d3edaf3a8fe3ac934ebcacfbf2dff5c133e25c1d65b603e8738138d982417414abf8abe465d8b393bc49f0f635aa7e59d3";
+ sha512 = "d609256292a297f959793c39da5d91ceab2a409abe9a560b47fa51e8856fdef2d1af2bfc6a4b2fe870f4fb8ca175c369e9ad9029df6070b7ca12205b712a6e21";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/gu-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/gu-IN/firefox-62.0b20.tar.bz2";
locale = "gu-IN";
arch = "linux-i686";
- sha512 = "605b74d8f95b3b1857e8c6860364d7446eafc1fb02477e4a6dbb47c6e911f0dec289c51015566be9af8856a5ffa966adf306e5190cbcdbbeb48e6a5d36026c18";
+ sha512 = "c014f45aa1a46558a67d80b177f8f22a01f250b5658149c64056ffcc2f1f7953f43a0e6eb21b7c8ec5d4e7ce677f6620fd87454a7d65d145a3609e29c7b2dfc1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/he/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/he/firefox-62.0b20.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha512 = "3adcbe0d6943922125a088dc4d92badbf674adcfde5a38346cf4a1eb45c415cb74612d070e68e7ff1ae35fc92774fdace05f7afd0d3fc49303ef4492dd1fee0a";
+ sha512 = "e65683aa8ffd57fe3563c8b7d13087fc473eaf240d1acad36a23be418cbf41a543ad4a2226df16ba65dd3bd6d309fd7cee162b60485c58ff5c4b61a1b2e25b5c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/hi-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/hi-IN/firefox-62.0b20.tar.bz2";
locale = "hi-IN";
arch = "linux-i686";
- sha512 = "34abb67fb1fa3a5913c6a278401678a9d735f18ac1f5264f1d31e5f3cfdee617fb9dc5db864f9c089f481aad890a2fc2b7f133ea563134a246cb40a70771ae28";
+ sha512 = "2125df51d6209b702c1445935ed44de5fc13b218e44f199300bbfd1efe51fcfa5123c47063f5e465a542f34f5a8f7643ace65aac433f76a2db9ce17a4a727c70";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/hr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/hr/firefox-62.0b20.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha512 = "e7a9e8e11c4a9b07f3206421386e53b906f21dbcebef342a7b76fc5f5c800cd0fd188cd5dbc5f0e1956329b749209b4ff268b913c87d79558df2c00726008c85";
+ sha512 = "85067ec21e29bf7a055c5a089c829412a703985e0fa699579edad4f4e01a2212d5068212b93455965f469d71b99e374aeb512cbb8f83228b5bf66e392a5c26e5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/hsb/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/hsb/firefox-62.0b20.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha512 = "56f23d54131204ad093d256dcd2a81affaec5e8159ecb7d9454b01475bcee32ddaea1951b97c1cf34505fb0d5e1eb36a3316e1171821b0a663aa422fb759612b";
+ sha512 = "5eacc1b187016d1d9202fc0755dc5eafded40552ceb34ba6391a15785a720bd13b01b5e451b5fa013d3047e572e460195236c6acd98c041c31e50b5f7ae1c0c0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/hu/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/hu/firefox-62.0b20.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha512 = "28b96bd1a025d886bcbac761410454c9a489c801dd11049f0a71e8754d6e7a5adb90046e9ee913356989d07b2c8d60657586259af2f6d6f175babb9e28fb56f5";
+ sha512 = "b820778f6ede465d2047c2a8ef6e509983647fc0ce8d829ac38a269fd0c7ce9eba0c9ea6f1ff53debfe934531794e78a71c3c212a716a85c6f3cd866f832a841";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/hy-AM/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/hy-AM/firefox-62.0b20.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha512 = "983a8fc5331a1f04ba31c9b6712d3c2678435fb6c219e47c370d5555988bbf5c07d8cb30c70c80ad47d429ce75894838fdca839750ffd71131b6fe4f88872182";
+ sha512 = "6859c52b6a7265a14feee8c41d969d79c9e347a297dae320e6fd7ed17e8d306dbb4775df49d907003ba2c506c00ce774239cf3afddaeec78bf8d4738af555fd7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ia/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ia/firefox-62.0b20.tar.bz2";
locale = "ia";
arch = "linux-i686";
- sha512 = "03700bb8ff07f85fc2c305104fce031dc0206f3ce771eaabaefa9ddd4e3354ed821a597b4fe7973a333c8fe4e7e90a0189428a8cf2300030a4404e827d0e8953";
+ sha512 = "20fcbce5d73e2cdc53f715876d5863725cd2645025ecc468f9b5a9c73aed58676965279834c2ac3daf9fd439fff6952ed398afb356ed210221e6c4cba0803601";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/id/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/id/firefox-62.0b20.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha512 = "052266a6047be98b1c7cc5425643677768f9eb50724e6da5fc2810688432641c10b4dc64012313f47ddab8074f40a05e0fb0af204098369f969d342a67f10bb5";
+ sha512 = "b7308aec549714ddd570fc0347db65ed8692df6c9ba8a98b01f51671976232c6ab6b3deadfe952a6371b05525a49e480fa34cefae6b11a11a81e0bd8c80e8563";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/is/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/is/firefox-62.0b20.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha512 = "fee6a7bc009b857766481d858990d1a454d325de9f70e4096c1f5b026db0e6f75a4c8a829e50499af909aa3a17731e995b2168a876bb197cfa219dae109c1bd2";
+ sha512 = "1a4b499fa6a14f2556456a2aca27a636a5396d01f5be9ffd324228c2f7c1a63e200320e33852436187cb3a301a0992b4d4ce52d40dd3b62360bf1aaa572007b3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/it/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/it/firefox-62.0b20.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha512 = "3cb3a1868f2702cd709f7e8a998b9e81a196bc2d83cce0874b1c32d4f8a0e0552d63141b65f10044ad8899b7892648cf92c0d68a40bcd72af792848bb4fdfb69";
+ sha512 = "86bcde5aa926466b1c49c3b0e1fe54b011816a08772582b35b7d35c091809c4db9b8d63630029949172709302e65b4a7ef50a8ef60dcc31fa97696b08d3e7b37";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ja/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ja/firefox-62.0b20.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha512 = "dd2112c69c33878acc315f12851e1b8db72d3a3edbd7aeb1ff5a5704b95f80a74098eaf54c4b902f4e46f91167a07526c89bbb27e0306599448d3c1e3602ecdc";
+ sha512 = "af6b46c0c452f38a66333b022191a37f25d24792bef794a34a1f3f5aeb9ec88aca4f7764e4221b4f05a7148b37214e1f8121058f30ce85ec639d56132e6f85c2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ka/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ka/firefox-62.0b20.tar.bz2";
locale = "ka";
arch = "linux-i686";
- sha512 = "98468aff4d6eaaef0c3e88a97d577615b6d7f6cf240f3affee71b1aa153873def2f425e120876e942a0d4e6e81a8feeb26316552757890ddf47ed3425309f73d";
+ sha512 = "3d7e18abd78e4525803ea45e7d47fd9157c1577179a449aa9224704a467afe4cea4b9c2c25117c05e91c8d4cdf096e5a3d9e478fe0b391695b535df74ad5dfa4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/kab/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/kab/firefox-62.0b20.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha512 = "713c9e9557086a6978882be7e966519bca6831748474d115208e5ce3fee9b1419beda7662a7e7b690c1ed65fc2bcd5063a95b27698d89fe3f81af7d1c8924424";
+ sha512 = "a8221b5079837075511af6e94a99a0bf3b30930683956ffc862966f4f3637afe11ad67ded04e98f609b885dee65c2f885daab91d4150585d0199ffc8cc5c9958";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/kk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/kk/firefox-62.0b20.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha512 = "6143fa689d862e5be7f7cfba54d1dbfb39b9d0866203811962100bf4e3d4430b0a6fbde27c474c39e0c1c4b95b3b68128f71a3b17171e1ee99b1df2eb6786512";
+ sha512 = "720813df718cb5a6a6fa464950857ca262ff6784d53c85debe1e172a992efc9d46092b55bda7a13df46ac453a4c65024c9fcb78d544ac19976afcd4169600e93";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/km/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/km/firefox-62.0b20.tar.bz2";
locale = "km";
arch = "linux-i686";
- sha512 = "18d64d90a0c7991124efa0d1003cd1e2081b2b0001fd96713221dca3a36ab06b222e4b62192952f15763180ac6b570e866af4fdd8993060e52eb5345f41297df";
+ sha512 = "1da32f65cb39f0289f3b68ed645dc6dba1604d0cdafcfbc41ee05af0d9468b49af8f0479d1391150284b0175bcdb5c0386137850afb7f026883597662f2c69d2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/kn/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/kn/firefox-62.0b20.tar.bz2";
locale = "kn";
arch = "linux-i686";
- sha512 = "946aa182fe0cb7c7a7337b75a922111deffcabefb02efc00c4e2131107f167983c4be80a16430dce07dfe8b9fc5ffa144cc12da52bcae7292e9af7b8536c714a";
+ sha512 = "997e6a75633829c6a981f647a550a716232f72e385bb02da03e52533a719bf702db2f4d5972237611ce0c6ea320dff071094e8b10f6bcfbf4bf17613257853d3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ko/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ko/firefox-62.0b20.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha512 = "849d6004429b3ad8dd767c3ed872e1d17f741f0aa472821f25954d54847ed14075ba54afb7b2e58c40d7f82ba2c83b35d4d57d7ee364002a6b3065cf8ef75f79";
+ sha512 = "28bac11d194b40f94ac2e951a5a96fe05d21624d72b1210669c8cf2ca094b3c017388205072b90a8bb94207f9fd9d8beee93b61ca557837ae96a4c567704083e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/lij/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/lij/firefox-62.0b20.tar.bz2";
locale = "lij";
arch = "linux-i686";
- sha512 = "6dab88f19c36e6f253b6db7acdc049810d4687b90df59d40cd0eedbbd24fcd5639682b665542bbdd63583ca56977f053b87473a86bdd9bb4c0d2b14ad1c35d74";
+ sha512 = "c3c3a6ae74919acad82a9c796c36bcda9c25627a173897f67f9270adfe2a6b44ce2f1c3dfe7dd76e05b9bd772df2f88b40c0d6794e4b355bea1e40b83b48688a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/lt/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/lt/firefox-62.0b20.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha512 = "b67e464e3556b1b9703dcaeefc66e0997e6f8758553f29307fbb56a074cd49717dd2badba8b3839a5504ec4d5f39cdb46f48d3916b20e656ffa03f9d0e72dd9a";
+ sha512 = "30d70a30c0140e89696e457ea799b5575e3be75ca02954c46158aac96f8b30e94180715608535c8e8c43f09506d218e253a5713463bceb03267004c5b82a6aa8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/lv/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/lv/firefox-62.0b20.tar.bz2";
locale = "lv";
arch = "linux-i686";
- sha512 = "b63d60992c4879f734075ad2bc149c898ce44dfe8d05fe02c302000694e89e0b195d30901403c618afc8ed842df5f2bdec967d946340176b65a4d79f60205e8a";
+ sha512 = "4c089810bef9c3ef475a178d9e64c379ebb2f120f336240e8d004586ddac300050dd46671ee4f3872e0e6ce84cea09438f7035685362f8f66b3c2748194fa61a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/mai/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/mai/firefox-62.0b20.tar.bz2";
locale = "mai";
arch = "linux-i686";
- sha512 = "cd5ecfe1ca8bfb49ba9f7b8686de18e0a9fe7a170dc59213b53748d937331bb4e718f70a45ce988c2b9a057c7d561bedf4e571cf7e45e782648ba7be7b1bb7d1";
+ sha512 = "cfe6c4676bbf009256c3cf9e7b4533236ef48404664a27f8767a37b40046eb3f418921f9c5c4789c8db5930dfd940628e026ce1dd8ba4ca245dfdd97fd5f564b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/mk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/mk/firefox-62.0b20.tar.bz2";
locale = "mk";
arch = "linux-i686";
- sha512 = "8a0cb09f5b360171fd1533a005837afde6418812511ec9d3a98f8f992b064b5b38c5016cc210ec48c570d777ea3de4476eb8017cc27fa1fe3162e2b226d7bc79";
+ sha512 = "bcfef6667c8e7a7fa8695483d8da79c2cee101c6001f24a10ae1d1558422d4f250ab1c1c55370daf5c913742e2655ab826e0302cc91117d134fd124c51b18a00";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ml/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ml/firefox-62.0b20.tar.bz2";
locale = "ml";
arch = "linux-i686";
- sha512 = "7034a93dbacf468c74e52c9d11117f88ceedb081d8d5fbaa75f7270db50ab2b0a27b423c7910c5d12e8c8e5458649048aec3775931edd2ccb40fe03305dfe097";
+ sha512 = "a199e177f361dacc07aebfcfa6ed5e28a07cbcafc766c7f7e86f83d42e33680d219ee79d3df3c55f0025aa3ee4ac2ef0ace1af1f83ee6ee536876aa9fa904015";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/mr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/mr/firefox-62.0b20.tar.bz2";
locale = "mr";
arch = "linux-i686";
- sha512 = "e075bbf14928fa722d0cbaf20dee7045380a2b1253c7c2f1691f8291da038ba82c4ec590151f0710515fd71d9d7beb606a2da357ca3cc140fcd51abb6660a382";
+ sha512 = "795079bc0cb4ed0d6ff7e4dbffd9ffc5cda8f5045402a22e10689f88a63e0684d99d74d896317dbaa7cf2f1b3c2a4701bbfef3fec1b5bb8f1e132b7848064a00";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ms/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ms/firefox-62.0b20.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha512 = "af676287595903e792b5289bde01885794d2a51b16cdeeaa479138af550f9f1e2c0a1531a509834935e3d26854b3e855d5e4d1670eff73599aa3fde43a5659dc";
+ sha512 = "919828730ee86c893563673c27cc81ff99a9831bcf20f5d12b630b89306f7bcec3395c289b39d9bc41804e45c66addf8307dc6de5777f0138f397d9cf4d01048";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/my/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/my/firefox-62.0b20.tar.bz2";
locale = "my";
arch = "linux-i686";
- sha512 = "5513f7ff66988b4c4404ac7efc52c9ac4ffe916cd5a196d5fb2418e832de975b07737f21a55bec5d6f9196fde04a9311f1d06fbc31a018bd192d0a9bf71e70bb";
+ sha512 = "9d0a31384a9cf43999b4edfe0904449e5c86c5f7a55f83403f5b612a3df260a24f78d8a077f27560d9c95a83680aa58fd1f0dc43b57de1f9f9eaf5d7125f1f0b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/nb-NO/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/nb-NO/firefox-62.0b20.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha512 = "4495a163636dc90e49cf6cd77e193b25d157bd0079b7521af4735f81efad9002adade8ae31b80af492ed6dac00174fcca3343bfa580113274f960ff152b51439";
+ sha512 = "0bf6caf24367e8a86692b3bab88a740f3aeeaaaddab7c9f475daae259c6348a6b61f20b01c2d8c611aa26ed61e87fb158bae8baeddf335849ec4168531306877";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ne-NP/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ne-NP/firefox-62.0b20.tar.bz2";
locale = "ne-NP";
arch = "linux-i686";
- sha512 = "761e123de862289aa25a95e8f527ea9f338d730ca50ac848c53abd4427a3bb6f49eaa0df16e4ff235bdd2680a9c0dda7bfce125f3470aaec0ea184ab1dda65da";
+ sha512 = "9a871db32e0ffc5126536b1de4647aac0e081126ca0c7a042188eac8ae3dc80d3912377714e42f2d5d851ccca3afa995249dbf58e9a4e2203dc228aab50f84de";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/nl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/nl/firefox-62.0b20.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha512 = "6a4405ac9cb88ce172b3c7525ca92aa8acd0bc30a2b41d6ac7f0cd27de26026ce203b256006d65b1793b165f3835c70f98b6716bbb5014a7f3b973ee602972db";
+ sha512 = "4a5e884f833ad8d7d66050f95fbf7f856513ed6d2fa3481df3b1ad71ba78c0711412890414dd8581a080156d05ef08118fde9ef2c13717cf4af4bfb67c7312d0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/nn-NO/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/nn-NO/firefox-62.0b20.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha512 = "f35f40bf4e1ad3706ef6b8088c94a2e33a5cc407e1609bf5540c0c62a4d3d4e7c48e126be1c6e716f91207532ce516379b07acdfd8ecc247a7a54c0faa84d5bc";
+ sha512 = "3f2b4e57ad161cdcf31512b0207c0c3d7ca810bf897be5d6b9fbf41f4f84898b960e61cf881f19e5ebd886bcaec95612e11aebf78d4894b6c6cb6c6c1c7651bb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/oc/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/oc/firefox-62.0b20.tar.bz2";
locale = "oc";
arch = "linux-i686";
- sha512 = "0321965a798a4e321913d75b633d9a9a8211a894a30bf35036ecc796dd0eaebe6395733dd009ade0fac730704aef5256e6836ff0415f44840de40c8af20628b5";
+ sha512 = "a4747101315a61f7b2f04b58ef36540adb1ec941eeee86ccdaa515f408b15b0f300f8edd3c7e81ac6845a80aeed596b0577c35d64e626f90c981002886747604";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/or/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/or/firefox-62.0b20.tar.bz2";
locale = "or";
arch = "linux-i686";
- sha512 = "2397be90b55b387ad5aa020b393dba5601127988b609929bfb1ec48d5097e4fa03f0757242bcf07a5a6ad21babe0162c8d7c20cdb59c55049a8608c042b9795a";
+ sha512 = "93e76f3f570bf6a053551bf24fc1dd04e13e3032271122ee159d1bc72828a932c0ba45d8dd7f80d5f0638f39d5966a836276b2655e3e33d1c141dd038fbb196f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/pa-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/pa-IN/firefox-62.0b20.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha512 = "ddd62ede6cbf7a20dc9dcfbb4a3821bcd662c1054a10a457c360ef560bf351bfecaaa2b0e71f703939d66a450bcaef2435d2222bd0aaf799b82db38b08028c16";
+ sha512 = "7fcbbd0526596f106f062cdc48ad61989074ca3357aa725df9e32254a74208f8b3604569c0ee66e1c9556fba19bc7c38958d1b779c1a2444527b92bafae0e021";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/pl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/pl/firefox-62.0b20.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha512 = "d6551c64a426f27f4c80508e3a358687fda88a886e7ff698c28eacd00022aedaffe809bda6985d1f52abdf2bf4fd10892366f4c31fcf0b95e78839fa09e05d35";
+ sha512 = "d8e86a809ad774eb43a20f2aaeafd35f0dfc0710716a41338bbb0e75cc9a2bef5dc92e671d1912a902d484a77a5d0f578633d180718653ac421d0b744c3db567";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/pt-BR/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/pt-BR/firefox-62.0b20.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha512 = "dc45d6aace4130a3b44e02d16e1dac88db0774309a6b014c8029a432fedf0912bfce23ba5a143c3908a2c30ba2d65939a207c6e7fb70cb46f731e8fe4b9eb7d6";
+ sha512 = "0b02882448b1c2c1b164ee5a8b79582e84e989aa42e03d127cde10087097db57887a31d7ffdf6960bbd29e8ab7316fad38dab61f7bca58893adac25e898f703d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/pt-PT/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/pt-PT/firefox-62.0b20.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha512 = "c90188b1f84d031787fc11900e66540d1c1b41e65af9eabae2f9abe1c662b934fda18775b8811e0578da57388944fa123cf28a8c73d49948cd2841f791234818";
+ sha512 = "82b714e304f0f358b66c2b8ec76d93aab65225c16afdeb2041e1eb6e2617e969dd7fb123158f186194a36c57a41eb9e7b25642cb60cd1ab6faa7c56f031736ee";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/rm/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/rm/firefox-62.0b20.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha512 = "30ee0faf69f1d376bba25e84248fdfeece44b0b3e2c56b755add262fd0794a59a2e2ab22c2bc9f2dc6d0f23aaad7aadaf5e3497de38ae5e64affb1fc0ebb15e2";
+ sha512 = "997e8d1311efce4fbe0b4ee9d76e7a9f6fb52eed6f64aa89928d62f251b38e4e7deee42312d6b06e417db7932b3990e9936f8ee2306e66d4bcc0200c747af2b7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ro/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ro/firefox-62.0b20.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha512 = "db4801605204fa133c58b2b79962a3d542f96060dd94a1213b12779bc84525072f71789f15d2fecc83285d0f3bba4d377ec7bf5361867fb794e2662f1f24e638";
+ sha512 = "9a658f5d770fa0192374e29b82a209895b7f684e61133d6c7f83347087d85de291f8566fa4597cede1a8f8a5bd90b491c7a87392578ade07da911ee9dc4bfc8f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ru/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ru/firefox-62.0b20.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha512 = "a5fa2dc6543112f133327373fc5f7fcf84eec595f38233f1390d70ac8e38e968e3b03c47de13edd91c9e7ceb6b29183b6687e3ffa8659ae4c58908f88f3f8244";
+ sha512 = "fae3452c17b0b7b4b309e1fc57c027b1c1ea24f3722c6e15bc3907d239891cef6f3696fbb901b76811cfafe566dd94b0f16c9f9335edeaf547caaa940f57c2b4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/si/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/si/firefox-62.0b20.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha512 = "48ff4167cf562c04d29316d877eb8855f02e48e2197705b3f924a8f627b85005b235294ff629afe56fcdac726a0e0b66fbded7090e29fa1997a94234cea8b944";
+ sha512 = "a2b5133a8f8efcbc5ab1a6c36b95afcd21a89e048c3f3782760ab9608ebdcb0afa72d8eaf451579c0bca196346d4642ae96b885d084921388240eafab580a80f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/sk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/sk/firefox-62.0b20.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha512 = "cc6d578518cb0de59880bab71c4888643cbc71f74fac7cc7a4cd1a61628fd6e1c775bbeeb9d5ba26756a0b6a5a1408723de5132c0d9013ec4e1157e0e91dca92";
+ sha512 = "ceec1a45af1c9e05f327acb520ba6df722e0fa416a98821350cbf71f73e2fc9ff3172edc472772441236bd66d9ba08918dbf76e864dd87c9a028eb3d274350d8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/sl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/sl/firefox-62.0b20.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha512 = "433a0fecf6eb3da12ea04e15eecf3ed825eacdbe329bcd522ba8a1505dc8eb81b78b7bfd84fceb029565dfc1b09fb1e38205291c700fbdc96589476c00a93178";
+ sha512 = "ba63d313cd3b75e341322ba40b38bf7da4b447f5e05c26a1ef6503ce8603ffc8a5c4b486d86a9061fd153f2997fc339241118344e54e75f6436dd8575bf4c191";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/son/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/son/firefox-62.0b20.tar.bz2";
locale = "son";
arch = "linux-i686";
- sha512 = "e8ba4761a776dc2686846ce2597ed9a15d61a1973a7c0d952a2de64ef922d4f322ce24891bfbbff80a1b9a07ca3cc1d777807badfed7f68f7b5a3c9ec5836048";
+ sha512 = "b938397f1825f9200c7dc490b59c6c649765c94a99670ca4604a0a1040bf307f259dd52235ae045ddc85fec1558dae1382858fd59a5b82c63b5a0e87a12233fb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/sq/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/sq/firefox-62.0b20.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha512 = "2fd023d89f493c42016f4ea3f3f16bb5879f2c1f6859cad728b6c649e7901dd6efd4f2f7ba5f161ed98e31d476d3f1faf7cb5fef7936bd88bc1ea283d144805d";
+ sha512 = "66d7582888e7b8c6d5322955558009d15d243c5feb14cbd36a6d76e2308ed229255bf19104381e284859a85272e901a6a3185988c97a28d3b9c2ece77c36fcda";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/sr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/sr/firefox-62.0b20.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha512 = "c107e8c8b2f9afd708a498b190e4044cde74bc81867e66d14c4cdb35b5d356e25d94e9816d2bb21eedab6283029ee4dc29ea04704eb0ebc6ead921ea374b3bd9";
+ sha512 = "ad28930d33084df204283f7ea1312510f02dfe4915018e7101873cd773291275de8e8307df6f099b9f6bbb946a49fe930a65bf6ed2791a4bae3477bd44da7809";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/sv-SE/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/sv-SE/firefox-62.0b20.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha512 = "debda5bf7f2a275cb0434fba6527f396fa55fd3f154333a688fa0187aabee78b881e0bb1704604ac4c58fe705e54ce5480488c38a85232746631fbfb389be646";
+ sha512 = "42a9f3612c5e2fcef7c67c04faf6279bd8d9de0144e03ea2325f2bb2b59d72dba78c69d3c3ea9768d2b7e8483c6a9676e53b6458e29ff05d215aa698d6df901b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ta/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ta/firefox-62.0b20.tar.bz2";
locale = "ta";
arch = "linux-i686";
- sha512 = "230f3253cac800fc268ca9c3507a2f4dcfcab220b719dfa20e1760be8a4e2f789ccf7a726832eef570afd7b3fc25b58a8d321ee15404252e48b49050bc86d851";
+ sha512 = "8e9c36dda61507c313396a70ac2959f500b761a51d2423956ec4343a79b688d8a845358f880443d123260134627ed08f280c422129c4c87196ce4111d64f7c3c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/te/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/te/firefox-62.0b20.tar.bz2";
locale = "te";
arch = "linux-i686";
- sha512 = "d88dcc1bce5f33ce14c6577005f4e70b803c67437dc1e33928483fbb88abb9dd175c81cbf0e22947ed8b319d1b02cbfcc1d1b73958f85845768cdcca5adeb52c";
+ sha512 = "1d97795b7b4e0a26f742db20de34a2551cfe9c0077560e4886e710d12fa9ed932e7bc532f66b9be9df438fdfb3d67b1a7dac481f66b778d32cb9772688048c12";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/th/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/th/firefox-62.0b20.tar.bz2";
locale = "th";
arch = "linux-i686";
- sha512 = "134f6cc7de767b25e07755cea23ae35641d09129835db4659d5ed92536231a8fd57e857cdcb4871285dec93b4af764264a4ea1c36c35bf636682275139edca38";
+ sha512 = "d9769f7a21189104cf53f6a837b3e30b8954b963c4d5b6751012ee1e0800de27321248a5c2d1b44bfc3fc28a2d7204659bf006b6681f8067799e94688e7777e9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/tr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/tr/firefox-62.0b20.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha512 = "d42b3867ebe0de0e9a6ba14adf2203ee96e2bca569bed2e55c2b46d8149f5babc6eae898a855745cd9fc2e6e016297b7357d25e5b413c786bbaa5607a3abaf05";
+ sha512 = "c12bd30cb85a2140c4e342e4996c8dc32c34cb14d64441901774313c3384aa1765fc9277f67bb2966f6509ed67fe5cab938eac18881f4ae003b354c381e146a4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/uk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/uk/firefox-62.0b20.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha512 = "634636013a50960aadf383aab9ba75c3bcc679dbe300ca3eb8b804e066c9c9a41cc5e2d4d321e18903ec41bb93ba084bafd8c3c61681da0a7e0388eb52f93a53";
+ sha512 = "5ae83fe9bc6e92d19048c6f3f4e9832d21be4ed4b648036a792f08af813e9dabfa48cb2450a3e49fd227bbf379784dd225b03a654fd54214a71ab9cfaff200b0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/ur/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/ur/firefox-62.0b20.tar.bz2";
locale = "ur";
arch = "linux-i686";
- sha512 = "d4cb618f46a45354bdc1abfe03ed3eadfaaabbbbd6e88e90b4617ae27887c3ead7e2e46248c845c3d026e14cbdbfa4bc7e332653c89c621dc5711cc5b7decc89";
+ sha512 = "bbd4e1ee235bb61dd7380e22818f692710d2354abc7d3b895ffd750bb5ead6d3e5127088c2dd11ee38f7f8ab4f89ef710eb1c84385b4e9fb4f7342ab333dd93e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/uz/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/uz/firefox-62.0b20.tar.bz2";
locale = "uz";
arch = "linux-i686";
- sha512 = "6aed20b40c85d9901484982c81506b9ff5eb8bb2a0747db65287b4486cb43feaeed884de23a6326bc45009ca598c732e503c30e2f269f840da3d7bca3b64bee6";
+ sha512 = "116a7914da2659bb40fcd8e06d12fc715d78bfe17fe8409756aae1d72010780f25d6b2234ab1e13a3fe69037b682b68e2cb9ccd5c156405426a959d9d3d954e1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/vi/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/vi/firefox-62.0b20.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha512 = "37c303611f1994dc3470f07fc95b53b1aae4586f36f616c24796fd25463900f85bfaf682397882be1cbda2703c1fc88e285875b6497d311ad1376dc869b6ddc4";
+ sha512 = "e661ae440c5e01e77110a0f5969df213d33236589c9d6a7e5be2da2e5b0efb6d67dddf9d6f209e0fb5d0ba99badadc3460f4ff61e58de1f0a2fb0fbca5c7c85a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/xh/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/xh/firefox-62.0b20.tar.bz2";
locale = "xh";
arch = "linux-i686";
- sha512 = "b881dff8d3cb79351329bee61960eed91a3959ca1c6592563d12b50ad58ddd5f38157b372c2aa2a605f93f1ada1dbb6ace65c668697dca24637447e4532b0a5e";
+ sha512 = "4c4841775946ddaebefeb930cb1277a800b814a6896d46b329c6550f5e1e9d1d1ec2041e7ec192f9053775bcda81f663e196968c6b916f1e5ffa962ba2935f10";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/zh-CN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/zh-CN/firefox-62.0b20.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha512 = "994caa136ab8c9470bad545b31c0e2bd738a006bd4340d5d1c03987e43e000b233388449221b681a57bc036f5395a647741d119d434d8cafdcdfc8bdfbf787ea";
+ sha512 = "d14b19d5566b7b2ff85c692091576d0e343fbb8aa2be3141693e8185ccf3e492cfde0e9eefe4aec1fc8773063438f1e65f6cb00486f7f95090df726563375ca4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b19/linux-i686/zh-TW/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b20/linux-i686/zh-TW/firefox-62.0b20.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha512 = "0fb7989cea38a7efd2c1575d891463d806ad7a6e5af9c91205bb527b587dddd2a769a49491c82687c31df96a10a4794e822eec4c16c10ac2d28b781483fe6c53";
+ sha512 = "71c96ebbb527ad8a83be94bc718d2eb928b78420335170e9f2dbdd3ed9de50b6229f27ce1d11131f4f35d931a95836c65b3a74c200f4c8f247df93027b6c6126";
}
];
}
diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix
index 1fbcb3d9714319f8c9ddd709a3df0cec46bd0e2c..7e92df163afcc6cc8ddbda2d99d47c5cdadab8af 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/default.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix
@@ -59,7 +59,7 @@ let
"x86_64-linux" = "linux-x86_64";
};
- arch = mozillaPlatforms.${stdenv.system};
+ arch = mozillaPlatforms.${stdenv.hostPlatform.system};
isPrefixOf = prefix: string:
builtins.substring 0 (builtins.stringLength prefix) string == prefix;
diff --git a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
index 40d9f07bda637fc5d0ca74693b98b38995021635..c0ba8e5e822becac1d0ab7c28cb1b028c5e9fef9 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
@@ -1,995 +1,995 @@
{
- version = "62.0b19";
+ version = "62.0b20";
sources = [
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ach/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ach/firefox-62.0b20.tar.bz2";
locale = "ach";
arch = "linux-x86_64";
- sha512 = "b50d4951fd847fad54ea876013352712e983732278ab383d252416fe3ff18f27e8f9d5e69ba3e641af0863ec4b1fd7ca7d1b3f83950d3f22a6cdcdccb537df89";
+ sha512 = "47f6ffba22960f16caa981e72d58c28f5308581c0740c15a6e2107431761e90f6751fbffbf79f2a03efbe7edc3e9f7078835d60a79de603aac1f06b09b0eee5e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/af/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/af/firefox-62.0b20.tar.bz2";
locale = "af";
arch = "linux-x86_64";
- sha512 = "db4e7f8b5731686452ca56247e989f986166f40d0f43f605cb2ac6eb40f2090ec4c49ee2377c3bcf00ffb6f89ffddb572244c3afec88faa9338ea53d6f5ba57c";
+ sha512 = "a7b1e73f5f6de78b73654a153a34648fc6c65559f7489b6fcb88f763f8aaa6ea0238dcf71a19f3f97c72c4cf16a919fd1b47bf4dfeab0cbc96db8b22ee4cb932";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/an/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/an/firefox-62.0b20.tar.bz2";
locale = "an";
arch = "linux-x86_64";
- sha512 = "24216d7e0d3fa99a0163eaece6ae0c73666f75ca145fdff1c52ba91661d0b14d5d02e89c6d48688d07b32fdc854fc6fd6589f879f23b32386d13359c214bae77";
+ sha512 = "626b63a3a550c92e6b8c8df8db925c3b0790cc835e7f76274bd8b2a12179d300fb2659fc47d394c8868c89f2291fdd7c865b034464a84fa454825d84e53f1fd5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ar/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ar/firefox-62.0b20.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha512 = "1f34a59c7713c0b4c828abd83e288a85980d89e8e3d1d2862b67ec415510b7018f3ea1d70cfd10ede968fb999e7e1de2f9178d1cf2424838d69fcd256349dbea";
+ sha512 = "14385896811e1b6e53d204caa9a3b8e56758c494376cf87309a25c4af795b34a906b959963fb96926143bc5bcd8c658e3558c5083642150fdfa3501feed67392";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/as/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/as/firefox-62.0b20.tar.bz2";
locale = "as";
arch = "linux-x86_64";
- sha512 = "d5df954a5fd33c895a255b74e0933fdc27df363dc11c54d29b56df0c23ec30b50de5a4d301ee0a07a5bd0b853bddadf0653e7c1ae8f767fb8ec9b6648a8e8b0c";
+ sha512 = "859413e14cdc432fb92e02d94212dea896c28a26d86972501aed1fee38610917ae70a0d2f749f4ef1432d543819f1b403d85ac3ba6563639bb1a6e6bbfb75978";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ast/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ast/firefox-62.0b20.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha512 = "3b77ac9c8bc2871365171b35967664aa48de7ec05daa4b3b5b27580279e278a84fae727a05f7cffb1453f525bf786a41c0a105c3d5a8c36aaae896872ec481d8";
+ sha512 = "139a2995639bc2fc6331f47cf1fc5d5e1df2c4f7c1d582c125c5320a54fa20f58bc0d8fcf94ef07eccb32cce6839b6e8ddc8044c2166242dddc40e861954df37";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/az/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/az/firefox-62.0b20.tar.bz2";
locale = "az";
arch = "linux-x86_64";
- sha512 = "212e319695696f777d41b9bd708401113e9acd9a6bcbd6bf671d5832642d3573198c4248c0b66444cd9ee0a8857698d1736a7f730fcc6ee679d36dfe147ebd45";
+ sha512 = "b7785f29b4b6dd0dfbd325e6c51c9ea66f6fc34a6151a991506863f9169d4051af6847dbeabe4db04a7db70049b0b964ce9038c363749c3c728144037d7ae821";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/be/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/be/firefox-62.0b20.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha512 = "d00441bf268981f4e6c7cb7ff3f402e2e25b05f9a40bf02498bdc04727cf999cca5a13cc549490682aeae2bdabcdef79dcee277f783df5f4b99b20cef4692ee2";
+ sha512 = "f246128a4473237afd5881eb088d334b086d2c49c79eeb051f9365f0f0bb5eefec7d0e06a67ad1d3771d81a3bffa7a665d270242155cad5b099b9d5890b7d71e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/bg/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/bg/firefox-62.0b20.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha512 = "b092569cf0ff4031900b272ddbababd921d0e870b17ef0e37f39adc024844f79d27304871a7aa410f2bf6442457655c1e94cdac19c852506a5a25582280536a2";
+ sha512 = "262eae9674709dba572674214ba2626c6e36b372c99ef8f278b1edd900c0a75854fce26f3cff80b669e56cb70b592d92b070582cb82ff47526c956d45f2f1936";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/bn-BD/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/bn-BD/firefox-62.0b20.tar.bz2";
locale = "bn-BD";
arch = "linux-x86_64";
- sha512 = "2657869292dcc8788a3d9639ca6b4a29ca798c07c49d8baec8f56a5425c24479061e63e49537398e621cf4078b49d1718440efdfb27c622905191de42ffd36ad";
+ sha512 = "69f03e13c99f621bd83061bf1cc8ddf9e761e05eb5a11c35e8a1e4a7d82cf258fa32292dde088ef5c383320ee59a05da8e46ddce6e6283aad3463a7ebfe68394";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/bn-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/bn-IN/firefox-62.0b20.tar.bz2";
locale = "bn-IN";
arch = "linux-x86_64";
- sha512 = "dd1f0055560511ff0bc4124b76aa133f113052a5a61ccd739c0bc013e13bf0a98fab82456158ca0bd2714bb7b5541eff56b80c7b9125e76982481645b3c66052";
+ sha512 = "1fc385ea3e38dee112329e72b7397c031b4bff02bd1e3e863d673f96c98366115d2112ee5364da93a34ce3de631e81b156e0f51895f64c1fe84bcf3724b744c8";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/br/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/br/firefox-62.0b20.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha512 = "45cabc8ca67cec48fa17a78fbbb2f6608e33d74a5ce67895cfab1503eed6d111bbce954d18ae4640e2f65eeed8ec3d1db363138574464bca29dddfbdd617f2eb";
+ sha512 = "45ee27e4889203ac4b6267388e5dc9a557713e044c5ede07dfe039358ddd9c91c4b79f5205f3b9c0f5c770232ac4ad16aa87c26d4a436a5f4e58f44c861649c4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/bs/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/bs/firefox-62.0b20.tar.bz2";
locale = "bs";
arch = "linux-x86_64";
- sha512 = "8c80bf7578ff9894fa4d9e4d324f8fd39520110c9a9740447981104833d59a6ff782da76ecc5f54ea30c9d59b53a06cbc82060a1fee78e4d71b93180017ba16a";
+ sha512 = "a190925733374f1abd35c974b2bf4ff091d208c274ae59f04f6efe2cd904e607829212d23efec2f6ed1c297b1ee8eedb797b460b815800f18b4a3969589b33c8";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ca/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ca/firefox-62.0b20.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha512 = "f1cf9a5917a7a2a79c6c50e3d66adf4c0c1ab82f7a27baeda58e8d068722a8ad7758eecc1f0d0f06b63c327fa4f3287c0b3f973c96ceefdcd9c9f92e8bd062a3";
+ sha512 = "35fd9322687c3a7bd4163f5b6493bf4385b4a08c8060ae4be47b9d1aef18b7847977d32bc67579f7543549cb803a1a3a06d655c9e02e9203860316c9364bb26b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/cak/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/cak/firefox-62.0b20.tar.bz2";
locale = "cak";
arch = "linux-x86_64";
- sha512 = "7db5cd08913b24a76885bde03d64a29b65b215ffe4e0d7293761617096f27c77b10a1da31e964d22e71104f23deb1e40b200be7aeb2850d9f6b0a53cfd181f6a";
+ sha512 = "ec3e12bc71fa7976dc4ed73eca01b4e38c3e4c69d257ed2a51c913ab1c7f24e14b1ab0cd6da90c76d432f2efda02c350f752293c41d62ca4fdac74ed7f94b179";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/cs/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/cs/firefox-62.0b20.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha512 = "bdc506d7c6426847b24eeb34ad2b25813c6093e6cc4b1f009f6516bba9a6845acad6bc658f28439c66807221e589b59434816d8fa3981d0a68e6e9aaa046fd2c";
+ sha512 = "73af384a8a5f0efd33954e6dcd4cf1043dd7fd4accca1aaa93f58bd3742488e01ed4c4911694c21f45cfd4d2b4e1b213d7d18b233360a1eafbdc14e63cf8d515";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/cy/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/cy/firefox-62.0b20.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha512 = "b66af4d78e65f4e19e0e4a4360448d978acbb7e4cb0707727ecf3bb9c1210f127563fdca8c4406987954ddbad4537fda14a967d316f1b697613ea80b4d6b68e1";
+ sha512 = "07c8c875b8c3b8b613d4405de0cbbbaa5b1a3808e754e6135bd2ed368f674bec3033e5cc069dee811cb4b57ba884437a1607c9d1c0277b2d8aae6904b0dca007";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/da/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/da/firefox-62.0b20.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha512 = "4bf65f71df3dd829316b998ddfd8491b409daae82f7f67592a557aa9a9726831d5f60bd4bc8a03f747f88410ae9f0947cbb111b079612b2a3bce03b64a44fe1a";
+ sha512 = "7c65fa62a1f0fd65da54f8ddbd33b4df1f375a567c7c5daed49d28be1ce738c9fa7689fc7302ed3ac865db53aee7a287702936a9db623815febb20b7c04a627d";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/de/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/de/firefox-62.0b20.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha512 = "3d287151bb8b9e8104245545c1d3fb3726c2452455f10be5b0237be9add9b8d831cdcb92c48108d1db7ce5d1d39cabc1dd1813d844107f6ce7b9f014e15f53af";
+ sha512 = "0fa1128a70b4658a7a32cdb0002ecd069486192b2fec14664da94333627028e08d9d942d1d04a14c672210da3612170d7122dd91744c18e41cc0a67f5e333071";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/dsb/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/dsb/firefox-62.0b20.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha512 = "c7e78c337fb10edc86e92cd8b1769ad1188004e269f382b0ff066bcd36609eb7040f37fe3c5a5f9132411eb8f622e2bc54db61c6270fdb5171767e6dae70c80c";
+ sha512 = "4b79c34b4a56033a885837a74c9a7bd10a6117f7f184a0b9b0801300ccda5cebe94b7f19eebbf17cd12c86406df2485340cfc30fbd1dbcd7e1ba7ec6c62b567f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/el/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/el/firefox-62.0b20.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha512 = "20ad1a00a48ba6bd127a95f3b80f8166d868dd20af677d65c7ff416c193532ff0650fbeeb28ca699bc23462c11dd4a47479093353edde68b30dd1865cb985c5f";
+ sha512 = "16695437f4a137f57c2ddd5b88cc0148737a419dedf09e16e0395a4595490bf4021f7c37726beda11b8144cc9b8ea194e82bfac379198f59b2f0e4097093fbd6";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/en-CA/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/en-CA/firefox-62.0b20.tar.bz2";
locale = "en-CA";
arch = "linux-x86_64";
- sha512 = "9650e47e17f0d30006738b5be3a2406464b2bd6e5245af45e5c4aea0465598cb90a40801c5dfe0d79859ba6f9b1bfb4e2881ef8aedcbb3e2f4ceb644de886e8b";
+ sha512 = "6ce532e57b68579117c41299fd0dfc08ddd5dc4ed963d4a70260d801e4a07553199d87cdbe5f2742d09153b18fdd5c1b06948a990e1793a32ec718e46a62f281";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/en-GB/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/en-GB/firefox-62.0b20.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha512 = "3cf3ffdcd06b6f13bae12e6529d849b4c76b3aea071df95375a4563e3810bf796c3bc7b77263f879e3b0d654831c0318dffd05a505c269c03f73c090e07383ec";
+ sha512 = "f830812530c75a6d916196c445f494c77bea33419abda526abdeb534c533553387e156a43c749bfa3425f1233235f96b174abb7fc2bfca75956325816a7714a0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/en-US/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/en-US/firefox-62.0b20.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha512 = "7c380d593521b6c4893f77f8edf5f5f67bbd5cdc2d3d7e30a54f65ac0b21bc6e7190aeee4ee3009473763442efb7e6cf61fd269aa698b064f5bc8d9ae672c235";
+ sha512 = "ba546c700ca987f07d05eb363e81c1a30ff31873643898f54a6dbe76647071dae4e0a189069066ad854383b39460f273358b2aac1d9c6b627eb89de089ca7bbe";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/en-ZA/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/en-ZA/firefox-62.0b20.tar.bz2";
locale = "en-ZA";
arch = "linux-x86_64";
- sha512 = "835d7d6ccbf0877a576872a250f5691a3d6ccb959d26c3c0035eae4bc475561d98e567ebafd091c9e21a4239883e0d0cf10961508eb6ec1ddd59de5fff958f2d";
+ sha512 = "ef5e08dc45f8f111a22753e52baa0c91991fe363ea774df0617afabf6805aae2d508d3d9c29afb0d30e8e81661ca283115b71155b5fac725fe85134813b06a2f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/eo/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/eo/firefox-62.0b20.tar.bz2";
locale = "eo";
arch = "linux-x86_64";
- sha512 = "19a3143c9426ca4ba8c49d3a5ae334f4cdf8d898c35d3f16b410a7d30775ce80d5e3a1672dc8a89bb69e8e83ae76f2f3740079f0981fe00864e2782dbe576d23";
+ sha512 = "7bc3e96d300ea64f6e871b04e980aee436451df9995c562fde3592c829b9f3824e534793d506bded7b7f82e7c6367ed4e09010d3b1bb845d5d3e0801230a7e6b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/es-AR/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/es-AR/firefox-62.0b20.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha512 = "48a1371bbfb6124f94aeab3b66bcfbd960e58532828894246b3e88c62968fffbb97aa6e4aae6970b892673a7e5b275d33c55fa5b05658c511494d4bf631355d4";
+ sha512 = "39a25d45317f7783b9f960c59435ac2c846142a272020dea9ad5c46a91dac8c4621b2d8b400b23d15bcc58673a1df9ec1129fc68fb06c39368a670705ce125fa";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/es-CL/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/es-CL/firefox-62.0b20.tar.bz2";
locale = "es-CL";
arch = "linux-x86_64";
- sha512 = "d6d82e0c5746583ffe56eb51d9911551d4925c2614cc563531422d5b892ef59fc43e3c27bd02dd94e638341fe268533ab022bf7eea769e02797ac3b02446ed4b";
+ sha512 = "fd2229ef1d2f64f2f602b15894322163cc4067a72d580c13eb8ac6113dbce4a2eb5e4a17a833ee13ac68e30bfefa24fe83739d7c820b48232af841b24e9c0c97";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/es-ES/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/es-ES/firefox-62.0b20.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha512 = "a1fe512fbd0da67ee43808b35c3098cd750eb9ed34ff9d168098208b87357f831569dced36a93bce17bc65045520fc40e703f527dcd640ce5aa6560567c11fc6";
+ sha512 = "c65a840ff3e3b5be0a3c74ba82f17d2a65f3071d91e71cfaa634bfdc92531fdbc7f6865aa8e3621d94eea626c4483736705ef7363907dccc3d7ee2ea643ff629";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/es-MX/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/es-MX/firefox-62.0b20.tar.bz2";
locale = "es-MX";
arch = "linux-x86_64";
- sha512 = "9d27baaf14441af81c3287d2433db9e270eaf3086655b6ddae6818fb6b62543b5f8bff3db69b9ffbf5d74c1737f21701206beb6ba908a133056f47e8890b945d";
+ sha512 = "8a964e8832a9fecb6124cb1453ebccb0b8064a6d9306a92a6646fccf8ca23a058e3e2d99d3e3e10bce4de9f2f75bd32ad94f3486d1cf9597c2bc93ed70ef4c9a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/et/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/et/firefox-62.0b20.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha512 = "2328f2b77326302af454dcd0d6a51e416d2f5a9a0ab0955dd7b827bae5ff7cc456ed8e1ee54e18beb38d5f4f8689360ecc3f99b2ea392c494447ee81c8599ad7";
+ sha512 = "13c7521af9e6ff3b6c1058c93ae84c3fa7e46482938a90f5aa489b3db99a87a6d25143d244c8c0e493a22e84cfbe831f5438f1537f78699a90aea476bba221a4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/eu/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/eu/firefox-62.0b20.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha512 = "15a1cc490283e13efe3149932d4dbcdc1f6790d153bb4ba4ba45a03104a076a75416392797fbe505ab5b7a4d34e4f601f835e20b5c0eb88e702dde12e8814c48";
+ sha512 = "b28e45e45a91c732db3fbef5ac249ecf6b6880d3f25d3151e9e0981556eefd4e98bb27b2312b9d4b0ec50e63ee8176401ceb6dbe36046b7ffb3ac80c3e09aa32";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/fa/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/fa/firefox-62.0b20.tar.bz2";
locale = "fa";
arch = "linux-x86_64";
- sha512 = "8e43aab77ec3383c045d4571abaab9a640247b03aa924ebbc1ccf2de045f8a48b00e3baaf7bb72443273eb8a87faa09ad71ab39370020c199ca73e5ec47075d7";
+ sha512 = "abde704eee0fdafa637ed4ac52f605c81cb6f4a4563ed4cd2cbbb7af31b40148ebb3614ffb6b3312f19eb05b026833f32485006e79ad577f4f1de3fa6ea83398";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ff/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ff/firefox-62.0b20.tar.bz2";
locale = "ff";
arch = "linux-x86_64";
- sha512 = "8b43ac14bfd02a9d1106c8df666b4cf9841e1dc76edc45253acc06fdb3128f7d20319b119ed2fe82ba1660ba184959afdcdd68faa526bd8acf8aa87501f89c92";
+ sha512 = "2a16ba87e145740d055df33201510cb33ff2dbd6faaa30b894f71b960ab5daf7a24f1c3ecfcb984a5e20d525a70c2e72f4ccbf32ceb66c7879c8a238f5618a82";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/fi/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/fi/firefox-62.0b20.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha512 = "4605739c04011c0154a9c09619f89bf24722100e16d1a14d20f165ac1a134ec5b411e535fd7f3719128515fcc0846da17567850cda429cff87fe86d6e14a47da";
+ sha512 = "06aafd066c312ec6d8163cb5cc773c0622432424516e70b84716c662e36ab68a2e4923b0a5ebd184a3ec50bc2db27a3eb98dce2a3d6046a929e1c499303b55e4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/fr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/fr/firefox-62.0b20.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha512 = "d519b3613a97de7045138966b61b1b7723aad482be3b9e6add48b283f9236829e6370a08590d07bc88db5176bd2be76afee9b76bc48d5d98404a13a8e3faa727";
+ sha512 = "044c2ec838104a7abdce0a9f4dbf3cdc0238505fb15ed7de36f197863afb606e4f1749df31bc1d2777acb7df874a8a1d4900b29a51877c53c5174608c330ed1b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/fy-NL/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/fy-NL/firefox-62.0b20.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha512 = "5501069a571efe740c77a632f7309fe1c82f00ab4b26628655b9f76137f95d9061e909075200e12189d1612f0307c11b366fd37e00d598091c7c73989d5c9fc2";
+ sha512 = "3023d86731d6a2174a638e3f20c4922447eb904e7b6350664eb6402724841197d19e1755c514710a46bf60b27ce107fd9f41bcff894a86918ab6bc3451f88e98";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ga-IE/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ga-IE/firefox-62.0b20.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha512 = "f4805258476063f905c481fd8c51ea4fa2dbadc62fb64aa91eafc94ff3c3cfeec736a2912d8db09d3e09d5624019df97d3fb538878b2f24178589afacff40349";
+ sha512 = "a901fd3e728500244de17055d7c9c543ce0899d3c8d0e6b0b16436d45c3a66db43c2b59368d23a1ad3681b365e07cb47e9414124cfcefa98251533e75789b7e5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/gd/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/gd/firefox-62.0b20.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha512 = "a8d9f97c92ecb74279fc4496f4d9b7a98d3587baa84f850c6d2a278cd47bf74ccebd9c35d5c9902568b6df4cd1385464687c5d175c2d96339bfb720b2a50b5b7";
+ sha512 = "d96c4f74fc2c76e1012b98a75bfd70c17fd22966c6d4e2ca0174fdfbeaeb5500f55637df7851d23b34b4e1330fd010bff0da0ede28029a3fc92714bb14eeb30e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/gl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/gl/firefox-62.0b20.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha512 = "bf407f24cec21bc1cc8cbe306442bf8d3bb01f1898b103967b67ed2c99fff01848febb28b860f8aa8bae050af9892b527f8e6db7006e14e496817c0db28d5753";
+ sha512 = "6f20c7966d71bda681412b3c9e3a782e3a6fe71e096759b8fcaf443f7671a94565de0fa8222fa8b2c430a1fbc28146567f47523e96e23a94c6ded0022d8b04e6";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/gn/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/gn/firefox-62.0b20.tar.bz2";
locale = "gn";
arch = "linux-x86_64";
- sha512 = "5e78995a672af6195e4195f4a01f5c0c9d3e699f3db88fbcd4a56608ae6e92496fd06d952216abda6aad908e64763b664c22e177ccf8053e9f1a99a3138cbffc";
+ sha512 = "bb5e2c63b2a48c3ec8746997a57d88b9a7f001e2b9b9f3c3e4d2913935cbe34931d9426d528d6336dc60ede140afb24487ecd3c93547113455e28928336169f5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/gu-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/gu-IN/firefox-62.0b20.tar.bz2";
locale = "gu-IN";
arch = "linux-x86_64";
- sha512 = "30bc61c0ea4dfa58de393031d7296fd2d813a0d9b23275c6c2542e4565b03a8e1e818cef893410373177d3880988f37f29a45695cfa466af3cbc80bd424d08b1";
+ sha512 = "8139f6f236b5ac5d082c2c01f3e7950d312e6e241f2a1bc29e22a71238056546dba1ae7d5dab494662d82ac53b7617ab1dfb50375cf77eb565cadb3f4b074280";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/he/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/he/firefox-62.0b20.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha512 = "8e6d00cad24e0250b4d8540f0f1ab01ebf1724228694652630be411474460db77cb737bbf104b1f75b1f40e0b79c69bcf7556e8b3269185032bb86d88c8d55c0";
+ sha512 = "a311fb555c096a5c69c174da176881d390dc187147c46722bb3ef073e4bac236e36e307c22d856036bf52bf87bddfd02ebf3f90dc3cb9b7c707ecf13fa27e251";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/hi-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/hi-IN/firefox-62.0b20.tar.bz2";
locale = "hi-IN";
arch = "linux-x86_64";
- sha512 = "c58dea84ad4d40de02a97a6e54defc84b709034220f90d176242d07ed412b7d0a9103e3574e91dbeb76fcd118e46bdbc3f8f6ffe520fbaeb26966323ce9d5c7c";
+ sha512 = "56758751511dbf42d04a772a6567fe436030d4a272123fa8da8aaa7e8ed26f06bea6a32b35cc195674eb93be9f7b46b280e140dbe906292dd346912b433a2867";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/hr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/hr/firefox-62.0b20.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha512 = "3dff0e8141c5d2a6c6d04c6213aa253be8016bf846c3944b97a3351576864544d130fcfecfb44c14b0e2a4e172fc7f200615a7596688d804a9cb6428ffe07b69";
+ sha512 = "da29589e3f62f2e2d4441059393e84f79cf973179db7bda8ca9e632d6c0e2d83e30a32f93f02fde21fa74a4899d89afd4871cd1d3341b2b8ddbde8a10743f755";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/hsb/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/hsb/firefox-62.0b20.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha512 = "c61286e752d0c24eeb96d3c3909141b5942f86aa28cc02519a96678568044cc32562f16bff0fea1d694f9254d4a05df8abcdb5bd6a29489a399207a593d83fc7";
+ sha512 = "9846523a1d026b04ecebcee3534bc17093ae8ab891e7090b45c397355506d41da1261e69073d7b1a9e228be0909bacd8f6aaeb877f23aba0d2c84ed8303c9aa0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/hu/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/hu/firefox-62.0b20.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha512 = "94abc44fa04d59d7f92a890bbc922655083c532c28193ca264e902a23235db9f4cfdc37a5e978753b1f8e65a93760d579696bd4ff314df8983924574947c1f8a";
+ sha512 = "1966565f1cb52a30aa941a28db6da2dd6232e8eda91d1f54d996da884dfe46b172a85606c3c33b8c5160667719d30fe710e9620b5332421742072debdd56e410";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/hy-AM/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/hy-AM/firefox-62.0b20.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha512 = "631bce404fc6d8a891f05e4354586805088967ea4929d1206faae7ea5c8939dfc1b38e920e5a81004bc0f8e75f9ec5cecb5f4c955418b8ce228019a46f567961";
+ sha512 = "367d11c62740213ad5161e708dd7a2cb3396a1f09e9e8b9426cc25ae3b32d70dc3ccf70b50542503818d50e62fbbe1f373f1328779f2be0d2ddfb143288187f4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ia/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ia/firefox-62.0b20.tar.bz2";
locale = "ia";
arch = "linux-x86_64";
- sha512 = "8009c1d134be35413f7100147cd532e46fe9b6858e7cd491f351f9927461cd7cee9461a3e6a03785317b94429ef382279f689b0313cb18199a65e1b2bf8f90a8";
+ sha512 = "6a0eaca21a2d110a12ac3e5ad8a453d8b07b122335da4ed7f33e5e20ccab69f01eb1b7365136de20aca83b670ecbd6b44dc3a750809cebdc2c9d9c76c9c55613";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/id/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/id/firefox-62.0b20.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha512 = "6abcf53d5cf46ef24a36f64a47952f623d8fa86271e913f3dc1948f16898d671976d57fde2ecc1d0de977442f3c7670534b6a6f4e20fbf46f0932bcf9155b64d";
+ sha512 = "d821c322c2f40fa726692d54d393a29569f38f66cdc0c9991d4800f7d2fc9366e9cff0123a47259274681b0a67b01501ae0dbaf9c7f96207170b92cdb91fe77d";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/is/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/is/firefox-62.0b20.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha512 = "f052a55b65ab5663218d51ee52537bdfd38e01bddecb5da18e3657465ece8735e8c96b4f74caf687f441e2150db49e271b06f7ac0bc58580cc67054ca3d6ed3c";
+ sha512 = "d5b2ab8bddac3fb0dc3351cd130c77249e4f5ca79815c96b41cce075298a181be79b27a1ea09bac48b79d8d35ddc710f3d7382ec036effafd974f17c7e44bd10";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/it/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/it/firefox-62.0b20.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha512 = "2f675645457fcc07813ee952b0bdc5963d9d8545e9e9c81b6387af9be106da1acc5bc71b1675ab1b1d896a94c510061ccca8ebc3f790194791255e7bbb792461";
+ sha512 = "aba0b87b3605077cbb7362c2dd23514f8a31a61a69d7a054753e2e89b5388541fa7d356a13e7fb3d21540381d5b244645d305c88932854ff91e45acc75bbfaca";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ja/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ja/firefox-62.0b20.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha512 = "ea5fdd68fdd4886a2fcd02a55c9c69397a52faee68eca7da784972d348477898b911a2740dd29791d81be87f654fba782cfd80cec756ddbba4548f7846ec868f";
+ sha512 = "ec5377009d64d2e2d625ba9f364e456c4a6d576cec8633164a3ea21a73cc643c31f74a27a64aa8cc9b2ec6313b6a5e25a78612566a11ad5833308eb69e5c4a2f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ka/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ka/firefox-62.0b20.tar.bz2";
locale = "ka";
arch = "linux-x86_64";
- sha512 = "269f521edee64aeeda6e87fe73a89f57fda2e91194e5eeb76798e2de87dc197de5cc29ffae074502e9a15fb6d2a0aa11aaff6413bdb93781b0c0f6ce3c9c445e";
+ sha512 = "7362eadc3fc6cb0ab78948474570641a8f78a6d311a8035211e08dcdef9d035177eb25f679d4ffa9b6411ae4e2a3fd389814b0ea724e05320762539761cf1cae";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/kab/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/kab/firefox-62.0b20.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha512 = "ca61c3c1f8e87a1ce02a3cf561ec1e6b7e8ced9a9ee5862a52a7cf12614adbad78a0150e0f0e2612911ac1f29862e7090fa2dfbbe8d7caeebc81e99a84b086d4";
+ sha512 = "b45027c2fe7eeefe582868ff307330e9691c9796a3fc792967399edce5d5cfc9387ca6e50c1d623743eff3350476eb2db7588eecaa00407a69fd5c5ec2aa3e81";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/kk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/kk/firefox-62.0b20.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha512 = "6eff5b246e9b629f78b6508fa2b819a1f8b6736fe14c9225950ba7025acd34447c6e9b62d014e491e58a3910ddc0af74d127408a3a5f2fb02b6efeab1c6d9cfa";
+ sha512 = "f2f79ea3415f8f9db46d7a4c86be44e5d055133f0eeb2231c8f15171aa27133aeb7d7aca5e475af839e68cb09218ca96e0176b19111589ae643353fa7bb08b38";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/km/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/km/firefox-62.0b20.tar.bz2";
locale = "km";
arch = "linux-x86_64";
- sha512 = "c73434d11ce098b13d9b1b909bbf02d36ce9e8b0edffbc5a28bfcb38b0a1272007f966dc317b4aa89cd09193c6f667ce36ae24bb3f6d4aa621d3d947160206b0";
+ sha512 = "fc573a0131b6e0ceb6e7d49347178aebcd902b61f870c8855e08eb7f4da29bacc9a22edaf612e4c00287415bcc18a8a8d5577e08ec324a68440f8f224819ae93";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/kn/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/kn/firefox-62.0b20.tar.bz2";
locale = "kn";
arch = "linux-x86_64";
- sha512 = "2efe0b4773421fc03eeb7968f1d0a9c8e502f5d7ed03d407346f4e69be59f00fbcec6e785bfea0fbd8523e54b1c8c8c55d1573172e74fc174efe3ff83810253f";
+ sha512 = "1fdb48b0e5a270182e337efb03819fec21f55f9542fbf6f9607d6b4f205742017d63531555244ab89b8171e141e600b6209508eb1b619062ea43c01719c28aa8";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ko/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ko/firefox-62.0b20.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha512 = "8a04c65eb29196ca0b0e1929d55777cbb45aca33811469362f8804b81e9ad00fde7aeaefe93ea5a7ed5b9195bcd4e3444b87097e43cdf50a2c50430d8353fc97";
+ sha512 = "6d101bb20570c5ec2229079982070da0338fb4b77694f3a6e75e0336cd645ec95eb085b9d0223e43ea14561c269b1c58d382a0128e4149bb6a04ad640d159845";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/lij/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/lij/firefox-62.0b20.tar.bz2";
locale = "lij";
arch = "linux-x86_64";
- sha512 = "58b6fb1fece6db701c1eb78982fed9f55fa8744aadbf606263752323a105ec76a8a453e2b0b8eee776a16b8240d8c2bfb6dd2d1b2415a019bfe727e6fde7cfb1";
+ sha512 = "970a52aef535b3ae87f295c3326d0217edef7c5e19fd8f155fac71d86b9eaa0c18c9f8f393ea4dae5811a6801caa38ba03cb432e690fc19d5ee559f576098540";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/lt/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/lt/firefox-62.0b20.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha512 = "0c53245b4c513da99ff118618bd8b7f1182a16a01e7b17a2c6cc194109ef1003aaa3b121ba1b6876c5dcb46036bbac759b2c814fbc18474543d8a181f993260f";
+ sha512 = "a9acdc7f4a94118f115d9cafcda0960adb82fef5fdbfb7916ae785cea3b541057052a027b0831bcedef43014a088b6ad3d3570bbcb467cb62411513f877a91f0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/lv/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/lv/firefox-62.0b20.tar.bz2";
locale = "lv";
arch = "linux-x86_64";
- sha512 = "b28415f184e2d47fc180da3c28d7a08b38eab0a6828fbcbf5368906fbaa5909752ea5bcf6cdc72c53b26215b050485286c79cc44fca49bac6e0ac3f46be9c5c7";
+ sha512 = "47d690d3e12c718d67877d4f37951a31114f6a3fe7bf49b0813ca0acc5d3c5c8f60b6c0b572e0e7e7e77c3d9e68f8d2f28d407ea62bf1976350ec4e05f05aeae";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/mai/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/mai/firefox-62.0b20.tar.bz2";
locale = "mai";
arch = "linux-x86_64";
- sha512 = "8a77764917f0c2e4bb0816b710b284907381e868d19b6f9211108e4e2f2b069f54b1cecfa34b1ffcc4f75e0f427999dafe6839c1df39bd86a08a21e6c13bacb1";
+ sha512 = "1fbbf72a08f98df105b47c21c07ad98270e9b4bca21bc5d9a940780db040c3d51b7531dd00aedfc8f7c946359749a5718f40744695086c25f9ba0d6641ca26b6";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/mk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/mk/firefox-62.0b20.tar.bz2";
locale = "mk";
arch = "linux-x86_64";
- sha512 = "7400c72c3eb7d293f7eac768720545c85799b1aa333b8380d3f582d122cee197d5d37e5057bdcc59a0e7f03fdf99ab68edd068d0ba4a25262440ed56b526b4c9";
+ sha512 = "64047802b567ad586cd3dac1a444f5fd510f9bf06a883cdd60d3bac9dee4fac12cced932d927b39fd579d60a256dd4a7c2cc52561edf477eb2d48f29a111f159";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ml/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ml/firefox-62.0b20.tar.bz2";
locale = "ml";
arch = "linux-x86_64";
- sha512 = "ae6c8b526108c6d4eeaf2c57b7ac005267ba4b0698277b707f965dca9e8f9b7f72d1c070ae05f45478590ce7710b127e0bd74503e5902df8c32b7ae236908c2f";
+ sha512 = "f98cf7854193dba3ea520eaf0e2c0c0f60f4965b3aa5d1ad442dae5aeb518d334ccf0edbefe9c4c1dfe2f7372188d64d17ba7cfdf41d7a1d715318a4aacf51d4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/mr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/mr/firefox-62.0b20.tar.bz2";
locale = "mr";
arch = "linux-x86_64";
- sha512 = "62738816529bd867a1a3237056a65a228c28f9060a8e6fd15793a2d5e97c966bfee6d6f10a4772ec16a9958333b90c457a5bf3c6b7075b503654acef19b33ecc";
+ sha512 = "abb1425003da6faea70157e01c733a757c8a46b1a22304f86ea93a84ad3fd5777754e44873b70668ff2baaaf0402631e5b9272bb0a0711c6c03fb46a3ac2b607";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ms/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ms/firefox-62.0b20.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha512 = "a81ac8315dd06e8a89870d1279d3b1d19f1751333688231637f85f8eae9a4aeeaa081aca467ee2fc568ec3a2baaeea61a4d11e282d7dc8682001d4c13d91cfff";
+ sha512 = "a96e18eef12d7067d4808e0b680773b192017dad2c95798c541ab2b97cb94990e010b227982b6bd83ea595ea5ee33fcb644fcce995131a5d7a46c880e27aa9ee";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/my/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/my/firefox-62.0b20.tar.bz2";
locale = "my";
arch = "linux-x86_64";
- sha512 = "fe5d3f320424f1f2d79690938743006621b1134295077471f8e72076fd10ae132ec07c46e9f5afc87b2b6801d6185359f72e1b62d880b12590e4780e408312a1";
+ sha512 = "53e6e08640443f40285f372b53cfb9dbd3c44757693a2a575479f71333951c5dcf9ef5f8b948fe493c40ad789233a17e89efe2d91a132b414e7809635a78311a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/nb-NO/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/nb-NO/firefox-62.0b20.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha512 = "fc58d444401d37108e0f28a212e690aee3ec6261642a85e34d8aecef757556c75a0b420c7222e260a63b6d8424f0f00655a08556425a1c92863fed127b73aab9";
+ sha512 = "fb3883a509ce36e8d24a0f0fc7aa9774c2ecad35d66d37f093cc20af8efa8516a8ff75c5f8fc410cc4c3e616757ff7136869b218735ecc7ea9ea20265331f491";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ne-NP/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ne-NP/firefox-62.0b20.tar.bz2";
locale = "ne-NP";
arch = "linux-x86_64";
- sha512 = "bf1b3242a1d6a9a6d83dd4e07e5a8b25d3a4ec5c2b0902781ffa2745e4c440e7201290366f8d3e291a7c7746431338b45a6cb7a2c72c3f0790d94bc9cc631ff5";
+ sha512 = "f12033fa6a5c2b18c2ceb96ca22cee6dd7842223c7baac09d235c8bbb75e638d38c6160750ae9a0cb9e5ecf04301c9da873dcea1891b436fea9ba0d9466faba3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/nl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/nl/firefox-62.0b20.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha512 = "ffe6d6454fe4598b1dafe1e167e50813a425180ed38c0e343c57b1366e99f1191eb45ae87b8a5a1c8c6d2314edf955d70a7d575a15f09e7c9d6e2b8ce41c9ce1";
+ sha512 = "37126248ec02b357837f22909b6dbcfa7979ca3b3907e339558d8f213f92c5a7c8b89a4e9d7d069a99dd494fbc41c52bf66a4b8c2910f48eced058098927c6c0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/nn-NO/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/nn-NO/firefox-62.0b20.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha512 = "be6c847d267c8fc281947f09e4a45ac4d4e462e625d18ac3df066d3e73e663ef94e4dc8861798533cfbee9429225017524242fb6a8bcdfd6e032f977946212c0";
+ sha512 = "746da9da5138c7c9d0c0252aa4a679a3d8ae2e3ae53695cdf59355c7e943a4d0598bd691cd55e580b01536ef6779dc86ef17b1a5481e0a8d8d551695fb5fea19";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/oc/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/oc/firefox-62.0b20.tar.bz2";
locale = "oc";
arch = "linux-x86_64";
- sha512 = "82e960f2a1ec8b989ace8b871143a43f00ab6d854927ccb2b7ecfa13259e519cfe90cbe4bb5578f66bee7e03c90d43ffd201e9ca81f1b3139c4f3b2d05231082";
+ sha512 = "ac454a4fd62dcc0c8436e691e103859bc5767e679d876c445ad3e553f5afb4741460dc80e647ef82f006b34aa44436469fe66978917a6cd852fb0a47ced85fff";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/or/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/or/firefox-62.0b20.tar.bz2";
locale = "or";
arch = "linux-x86_64";
- sha512 = "65cb8748b22aa245e4280dfa839ac94bfd3617cbb6fb17aec26b354cfeaa1b0f80a75839bffcffc3bf7802a8895953b937495da5f912ab9b865fb62085d8bc27";
+ sha512 = "ac11a4b4927eccbb5a3b0c823cba907dc32ad228e8f147d1d84f5670b1fb12638a1ce858ce628b486f41eb0e98ef8b7d8757facfa9d592c3edde03123a79a703";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/pa-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/pa-IN/firefox-62.0b20.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha512 = "5959240644293a8bd3f962ba6552a55aac24c4824fdd77827faaaf6821c80bc237297344c50bdc8ca918733c707502ea5998332e94394d4d26117301de88fc82";
+ sha512 = "396a14508013d7b6b8dd396d7d48fc26c68da3c1ad57952213a0e01a859445201dcef08d824ffeba6958f8a79b5c1af59b4f6c30e539f80ffe5568d6a09406e7";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/pl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/pl/firefox-62.0b20.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha512 = "cd1048f71e413e8e6ec673ffabf83fabfb2cdbd102c73b8c7e13cd1115e0540e5f6539949838a1026aef6f6a4ee0889858ddc2b3ac5f5b108d2a5fd12858df26";
+ sha512 = "67a17f065011d6a84cd455c614804351e1d9de4be361aab3bec5f34db43db378f1f594b4f76c35967181aa62f484aa84b49a05e129e6dc00b67caf68ececed60";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/pt-BR/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/pt-BR/firefox-62.0b20.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha512 = "36d97a9428348303e5a7fd464904dad502e7e064d42d0eaa512db58167400ed7a0a23bd5eb3aa9d3a91b07ae20b00c8bbe6423c91f1991f6a83d800d324e17b9";
+ sha512 = "caf1805b852a6f8b19251450d72701cacfd1f0c20ffe23cd65378fc2f99109246ff9f237c120f273902d6b9cb67d7db54a0bd5ebf4cbe0217ee13ee28a390136";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/pt-PT/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/pt-PT/firefox-62.0b20.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha512 = "5f716699dd0a14cdf9a5586e733ea513c30d58eba09b724907b2b968fa5105f45df8f38b88641bd395b1ee59132f74a946e31832a4a583964a45c113304df75b";
+ sha512 = "6119fd1ce5695c4c3aa8d61cbc6748d656a591ca7ba6e3aa8bf52fd7da68633155897fbb739568c816c78b1c7d291544d747dbfa70a346d93acac951f21c33da";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/rm/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/rm/firefox-62.0b20.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha512 = "08f99141e1eb015e356d5678e7b1127cc458ac1b69ddaefa3b100e89a38944d3ba3b47f17c782077dd0a0cc095919e4a95051f85fa1164684818a6f8fd2e3f0c";
+ sha512 = "04ce2405adb0be7f8a1c2fd9f5df38f648f704abf342ad7b7854cddda69b2ceb1d0f4925390f2a96d349c62af3f486cd587fabc5f42e555e83874d1b76b52922";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ro/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ro/firefox-62.0b20.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha512 = "250f4aabf38576ebc99eb5b46776b74bd4fae7fccc422e95d2aeec7e09c27ebc0c08246f875ccb1e3371d9ed74720fc14a6f89b68e3906ffb4247120947c3e33";
+ sha512 = "d4add282f611ca37aab7a43c9d5bc284b77384b87f941df77123a869ad1a9ac8a4de3db540167e1b67b61531441fe1ebe3bb01bab95abb60c483dc666365cdc1";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ru/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ru/firefox-62.0b20.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha512 = "70e2b7de93590ccb8a56b3647f1f74bdd1ed3c1ba5820c9277249799b6176dbd3cd70a1d3d76463254772197efd730f493435e265852fe4595c631dbc32a0b95";
+ sha512 = "0ddac21be61e70542bc94e3c2541b5ff91991bce26596d4c7330557353db6d9d0670ec394a88c49ddbe08f862e5c53d74ee3ba23a1ba0d6cce2500873fde4756";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/si/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/si/firefox-62.0b20.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha512 = "23fe7fa4d676e484533e726c73cfce2dc6dbbb14f13c78ace534940942f2f642c4d7ffdfbbb417efcd493cc6685d82b3f942d334d4447e42805a98886176b7a1";
+ sha512 = "f74c8063bac884db58ee847f2f9d2ee366d72e4335c07e268b3aa22d33bee4dfb1c8ead9a02592178924bbf056d75ba05b12b8e79f2b10b5cf91e55d1b08d15a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/sk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/sk/firefox-62.0b20.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha512 = "e8248e7a4645d0aa44709bcb9e7a62c235c1de4e0c86916b4c6f0454a77eb0c4f0ef9a15381b5d2163f5bca9b38e0cf60f7c4f709bf129c95204450d5005e8f5";
+ sha512 = "2020c4c9115ff890757620a2f3fd2da39ba989feeb2baf83af50627e9d22cc9f68a44f3f442d846910458f14523a59df78cccb238095feaea76bcee93fb066d9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/sl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/sl/firefox-62.0b20.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha512 = "a9f31b6ddbda5636fd0b8da9dbefe91ae953941487a6a58847b96e720392ba04efe20a7a7cc0200ac06100d2d766a7b0619b6e5dbb383c7b019b6c59851b2be0";
+ sha512 = "338b4ea7cb5c4ed7773eb7ed45c464da01e63768a9eba76b7c50ff2ca9a78c9580ad067f94e01b6e2d55f9b3dd76d7db9e8f0b5d3cdf023ba8e76a0a5060ab5d";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/son/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/son/firefox-62.0b20.tar.bz2";
locale = "son";
arch = "linux-x86_64";
- sha512 = "1f9711460d0c1d047b33ceac3c3a02a56c2da725a2bb7a4e5d7492e916eaee334e6e117a4c6658815185542fbf095512f2f3f5c5ec469518c12005e95f9bb2ed";
+ sha512 = "e2bc04b99f98b1c22e92bc326de8278dfa57d9b54be24d8b3f0efd27ad4cace395565816f7ba265409f66f06c0ca60fadf37acf4abe21729b68113206d389f9b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/sq/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/sq/firefox-62.0b20.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha512 = "9328ae5eddb1ca7257113a370a225911667b8ccc087a18751f471ad4a4f68317891c8ebfe13d4c841c0c094420c238697ef9911c2cbc87d50204bb4ae549a715";
+ sha512 = "e430eb8296d46986ea536ada48db5bc3444eb381d3caaa44b22e17be1a8b6f05c06df85a8c90827d0bb87cf4864d1ab3c20ba43de8ea0622d8c6753fdecd187e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/sr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/sr/firefox-62.0b20.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha512 = "ea4ab10db3eec1ee433b3e8c3ff2395174960a70c710a743bb5ed136c21480345ab8745c53a5c7159f5a7e324ff47d3a9c4fbef4db482a863ca98f1f7dc59ba1";
+ sha512 = "9a6558c6c21cf211b5d52c713a2136d55a39146954a580b6e9f304b63d28cd8c8fb9f88beab95998edf12cea87578ab6941a9e7b793d50eccb4678b57e283b21";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/sv-SE/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/sv-SE/firefox-62.0b20.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha512 = "aa0963e67ada3814d133c60f08b89d5527f0d108a2a0cdb68c78ce2609ecf228707c3f4ea770536e8830e6fccc574a43f63a77ee1518ec2cd80a494fa0302eed";
+ sha512 = "55aa7f899a770bcfe0690df0bf61a209a5f55a90524f6bbe7ead517947a3884a48ea19f887bc4ac227e0396f6704b15eae9ae992b3314899372f4e41d8ab8f43";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ta/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ta/firefox-62.0b20.tar.bz2";
locale = "ta";
arch = "linux-x86_64";
- sha512 = "b044bae66e79f58a01589790b1c14797574dcd86f0981cbd1d1e54d123c57b4111f9b39682b613c9d29718562d4c38577c712089ae77d14b6bdf2998dbb1835c";
+ sha512 = "61b6d93e433575fe3b5d2982cf558f165e11f02ea2009375b8da468efc641455ea028afb0c0c5e6e26048832fb9274344a607713350b6afdccc5b95cac3d318c";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/te/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/te/firefox-62.0b20.tar.bz2";
locale = "te";
arch = "linux-x86_64";
- sha512 = "a7025734fea2cc7e80cfacbf854b7ddeb265c314534aa7db4305047685a781282a7498886aa6195e6e7d6e7c39498ea35b902307a810b757d253199853175e75";
+ sha512 = "fd67b31ef7d18af1786c966cc011a909367b9700eb22130246f0bb66b3f3e2ee266612f1993e65b79bd8f9e7aa6e7daf7c50e678e0e7f0c67aa63adde0c155d9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/th/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/th/firefox-62.0b20.tar.bz2";
locale = "th";
arch = "linux-x86_64";
- sha512 = "155db0d35fe0e1c7c44748f3e0a9fdc62053692b4984b9dd743573e64e3c21c96944daeb09e7d86ee2cb910aa4379ddf46fc93b2f0afb0b254a3540e0636359f";
+ sha512 = "35d657b0e14853def56ca6c15331cc8aeba7ba1f230f8b8669b6466ae257c362a4a97a1853d9b32bdc62902f3de71001e17d2859cda77642283c6f8a41e7702b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/tr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/tr/firefox-62.0b20.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha512 = "bb272a6d2fd57059962d42b5c95d3d58dcd18fa0fac9638ecb392b56b23e94b1f8d55fad313af0815a8f01d8e9975b502c90cb9fdd080733eb5c3d19f036ef16";
+ sha512 = "1b562046ac23fd3a34b450042773afcaa255025972ae251855403865b4d2ce96e958f6a2de9d96267d17ecabea9a9e02d48314ffcd9986f1cc3f58f24fed310e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/uk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/uk/firefox-62.0b20.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha512 = "2dfeaabd2f679710c22c948945350dc04b029dba2c7932b4e80c5597a08b624a61674fa411a3b0a5cd9d5cae0a7bc2437b0e6c3115254e7b5f9dcce5ff3c2756";
+ sha512 = "7adca8260cfa16067d0df3270602d01b19df2bb9a7e5a373fc39a0ad846239ebf1ab868e13f3240381465ab7e950898f4664cefc7907af4d66698ea8eebcc4d9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/ur/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/ur/firefox-62.0b20.tar.bz2";
locale = "ur";
arch = "linux-x86_64";
- sha512 = "44f7c5dbc914e7ecb62c4e42298fa75ee0c426149f66d9e48ff567c8d3215cc8dd4cf11e288b05f1687b7b7bc494d7575e5cf70707b12dbc34414364f3a7415d";
+ sha512 = "b492ef2bc8447460f02db4646e8a489e9e0e880660fee94077306ed9de0642498c46a1a81681692a5cda8ceafbb1a5788dbfe7c46ae949d4a0b1d1e4be695576";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/uz/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/uz/firefox-62.0b20.tar.bz2";
locale = "uz";
arch = "linux-x86_64";
- sha512 = "15149fc5087348988aeff5ff0020d2a4c79f03d1c64670d4f082c00985cd7b4d2471c1a3d75e0b77c12e81ff6241c2403470cbf710ee964636178e0bc20eb990";
+ sha512 = "b45916a341b82f95e983bb796d2316b77480982e3158d07c05b87dd8096385a9e8100995fa4aaa9b8fe1feb140c672e87b01cadc7861c8a057ad5b01f23fd295";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/vi/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/vi/firefox-62.0b20.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha512 = "f8a95ada33cb201a73f79b6b53d4f5d6cbd2b42b35fecd09198715a29f8f6db6e1bb7cafe086bf4ccd62c2c17436ee266ee4f6a179ee3dc7f33b476a1547c9c1";
+ sha512 = "c04fdd2751851bfaa7d61a6dfa405820f422f456a6768feac95061e7fa24f05380c0808a7637b54a344fcc237cd135bf0a32e7d697d9252abea8bfe31e2659e9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/xh/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/xh/firefox-62.0b20.tar.bz2";
locale = "xh";
arch = "linux-x86_64";
- sha512 = "4fe10180109350eb7d437809ff1038add6bb5bf7d21bef768eec595956f017d5ac6a2c861566eeb6f9c9d433a0ec15be914a7e67de3c5dfdf0ed1130eaa2408b";
+ sha512 = "aa754dbf9f04586c60e6406b26649955a273395c130c5955e6b83c2a5d7714de1f0afcc0c6904f01bfa5acf50cb03e848244a62214d4db241eed18f049320f6d";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/zh-CN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/zh-CN/firefox-62.0b20.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha512 = "26e34ac878020371d5f7d53a177b094adb31633fbc7cae695767a49244b5c3f1c7d43eed48cd03165af94aef64ea0b8b3ed0650615933d1f5500af7a05fbc4e0";
+ sha512 = "2b58c6806c8ae4e476add919f5f4d5e380252cd2a822dc0ebcc5caaf20f1797430fc8ea4747f998953f41e612491e41c6c00a9eafa98299f4a10571a89d6128a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-x86_64/zh-TW/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-x86_64/zh-TW/firefox-62.0b20.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha512 = "9b92ffe5b6f493c8eae40601e5da651c89e47325467b60cf471a8ecd30c7c960c5b6020bd00867225f0a5839b49ceb6701bd38806847b4e25a7903588dc6ca3c";
+ sha512 = "8d744785056b3c423f42e337befec9983c1e914475eccef8ed43e8db87aa80514003fc20976a60fdeabae3ac95b8c1a4d8701e31158f2f811ecec1e003cb03c6";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ach/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ach/firefox-62.0b20.tar.bz2";
locale = "ach";
arch = "linux-i686";
- sha512 = "17ca79bd93f98e42c00382368b4574589f9d75775926191b7644fa2ecb5130e9ae484c98ea8c04433cdad4a7948af77d621f34f70fafb7df019e8e343792d69e";
+ sha512 = "b89b8af1e22c88e1e6140e46953e15f25673bf0f3645a8af40a9c1be3f44e621ab469fc171538cc2d009d50c3bb9fee9d1653ea9a3291f3c535e3918fe25ccc8";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/af/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/af/firefox-62.0b20.tar.bz2";
locale = "af";
arch = "linux-i686";
- sha512 = "2aeca38267ac03b36a749de71425f6252fea90fd372a7aae64b08fa816aef7f7f4b3926d67f1ecbc4cf2768ef5985e10b410f7b2acb8325ca2f9671fcb7707d2";
+ sha512 = "cb217f4fc3d817f25f76691abf459fde2b9d55e41318600ed822ead6ee1492396441bcecb898386fc5e6e6ed8a95736562d241b05b186dd0497bc0100cfec6ab";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/an/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/an/firefox-62.0b20.tar.bz2";
locale = "an";
arch = "linux-i686";
- sha512 = "af2fd8362ccb558fe78370a3bcaa9a6c07c416b5babc31efc1ce693da17b01b1241a4af97db335c273b7d7b9da0553d8e85d674a5635f3e57a405184112a74e7";
+ sha512 = "298f2737835faf98e688d2cca5c12f6c121e83ecad52f0fa6af06a1a0a823a5b1c9713742524b1495452bf099e82b3e1fc8faa30c9c8fc5221f11b514b165ab3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ar/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ar/firefox-62.0b20.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha512 = "926678df760eac0cb9ed6244a39cf5ac082ea31f1f19984c8a39739d8ae6cd3c7be6a45a7951612fde98b800b3b6d86c2a29ad9bd1be613c1a0d4a5112d0c7d3";
+ sha512 = "659908189fcefe7cb5c3a0dba1938d8dcd23336be2a728b0d96641a410fd9bf723e4ca4978649b5e01e13c3545ca3d8348a5a1451496c690efb663640961f6dc";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/as/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/as/firefox-62.0b20.tar.bz2";
locale = "as";
arch = "linux-i686";
- sha512 = "78bbbf24822ecfba8c944f56a86206016a4d6cf56a7bdbc75bb93a1d59e26944721f576dfb74bea48567de0d45cfc5a4f29fe62782d2a195ef50206e3fdef184";
+ sha512 = "e655389c4dea4d9db66549256ec05443a7bfedf508db46ab8943ad644229cabe2ec1edf8ab40b55bb2b53cdbc83832c3a39aa5c42950fe15fbce1152eb9ce8bd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ast/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ast/firefox-62.0b20.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha512 = "74273fa11ca2f076d4e75ba38d0d0e5290d37e1da6875aa73461d57c366180a1872c555e949aa55c720f3a56cef8e2397307f342ad618b92b1f7659b35c933b7";
+ sha512 = "7be4c535d4d63ae1c5f98e49b58c57af0adafc95553a505fb60d5a83523422e6b71054f1bbf02a060510d59a8f85f905830a02c2837fa3c3e5008494e3bbe74a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/az/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/az/firefox-62.0b20.tar.bz2";
locale = "az";
arch = "linux-i686";
- sha512 = "aa98d47926924881177ff380470b9fe92e0dd7af10b92a32122d50f7ac9fd2bc3a763283c70f6834f0fe416c69324458537bcd73975ecfb783f8ba0544c6e477";
+ sha512 = "2b13f55b90997e245c69b16f6c0fdc1df6f1f7cbeaf4af72cade86866aa7c4b1afdca46a705e5203b74b0db645a514995f6554c59094c2f21c13aef1f126b27e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/be/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/be/firefox-62.0b20.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha512 = "929ad032ff589a3c2e8d2c6fad331812cb8af22a8ff8c1fc2b681e01257358055ac8d677b976b8bf65c05da1b9780125d090b4e52d92a64c3954af248d166e91";
+ sha512 = "d7bf4a8aad2adb1dc5c9c0fe474aca23b8f3b3e66374ef36f28cb3818c74932aa4c5c92b8c06c384dd4f200fc1215a8a5fc7a2c22693224d5955965b239754a3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/bg/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/bg/firefox-62.0b20.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha512 = "679b340bef2041f7ee59d44dcd660ea8d515d864955fd629f311a8b017f5669ee5b5cdfb0052d97ecab8949f56ae1a4947eb4e0806271d1f543de2f14bb3e3ee";
+ sha512 = "f1d9bdff18573cc004b8172c96f2766b42b0f0759a756e7dbea0aa46fc8957675a556e6b952b3a7562421a6ebb33d825a886c1cc96ad627e806ad7f0a097799a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/bn-BD/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/bn-BD/firefox-62.0b20.tar.bz2";
locale = "bn-BD";
arch = "linux-i686";
- sha512 = "94ed76078be93a0b2ce9c8f0182f82ee1e30e996858b921b9c750634f3eb67ccefc6fc067c94f92aeb25dbe6f918f53bbf6781d9efc9ef341e51cde38c638e4a";
+ sha512 = "aa1509462dcf6c8f2718a85bc6fa00c572fa3f41856b50a7bc0e2fe1f50a7c6717c05ee674e7594c4d07ef0ff23395bf9cfb23caebf707e0d8b4112687caadfd";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/bn-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/bn-IN/firefox-62.0b20.tar.bz2";
locale = "bn-IN";
arch = "linux-i686";
- sha512 = "a46107010721b99967aa09ebd5d8f867ff54e10c48bbcb1827abd7673e2957f3ff3ec2e51cf92e1b334ee738423c125239e2136203bb16faa006c584dca48204";
+ sha512 = "e71b318b693a256dceecea4ea1ee494f5ffb9af08d72fb14a76c21a51b8f8796659a7f9a087e2b732f72cc8787217f14d17776c658c0affbcebd5e2208160a7e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/br/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/br/firefox-62.0b20.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha512 = "544a3896e39aa2ce5d0ded2310ad9b202f11acc3b5866bfd3ecb1dd2018704b0b1d58957e68543fbf8447b560082c8d4d37e16fd218c2ea482dd4c72204746e6";
+ sha512 = "1c33e290074d0dae9654d30b21592360f3f7199069b070a791974f665388ce290d36bc7cd9518d8bf855bdfac97acaa90430f4cc4627e9033c169dc75bd79700";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/bs/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/bs/firefox-62.0b20.tar.bz2";
locale = "bs";
arch = "linux-i686";
- sha512 = "8d023af96db42358d1d414a8eecdf95388010c2315e8419ca453b36f9f7209713fc3024fb45dc1fb180d2ba518472c45ede3930852f125d7c47dc34df095907a";
+ sha512 = "a92dcbdc514f3b593f5c222f093f88953558388e03e71f851cb2c242b67f3d51ce7c891a8f183fa554752d13ad93152171233b81aa727c9c20a341e558b39229";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ca/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ca/firefox-62.0b20.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha512 = "2fff607f25c1a8a251abd8c17063a03593cfa6f269728486d2a8083106b762f912c8bf3ff9fabe3ffd24c31cfa07089bb81e6abf6b8f2e7ce20a441914061785";
+ sha512 = "ecd961e322ba0b9b8477a52bcd1e31084a18109937ac50cac68d73333c3d62efeced2fb11ba63fa97e144c0b711f5e9e15ba346d957bdd4506dd9a7a85400e1e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/cak/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/cak/firefox-62.0b20.tar.bz2";
locale = "cak";
arch = "linux-i686";
- sha512 = "ff33295a3f83dfc435603bd8c66b5b8fdb0571733e32b5a7878a711fa27495714f5777a40bee1328341a35f1f96188157197bdd974d406df9173cd979942cfe7";
+ sha512 = "d49f167dfac2e4ce2a3f5cdfe7b5651347e90f7a04d52cea92c05ec0325f67993ec3ed97ecab501d973f16da856e474321307719842da958496e07d07dea2b64";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/cs/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/cs/firefox-62.0b20.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha512 = "5dd4ceccfdb400e97f7df2ac6f5a860d5a0a9f79f31670f2a8342f620b704a302a69a053081bc168067dcfed076da6a1eb73f7b1a651d3bea356a1bc4bc68ff1";
+ sha512 = "04829e46c4d84745abac063114ea1abeaea8ec7f596e7e3850ecb8702134aa2164ccd11c98da7a22adcccc9bc21fee5886bc7c80652f4ef3682ce907f7e5ccdc";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/cy/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/cy/firefox-62.0b20.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha512 = "82f3de3ad1ab8eadef4ee9e91da44aa82b998b2e0ca5192f376ab89d4a4d135462bcb917212e75a66590e2421f80ea3dbde9852f44c28acbf107cdebcb69f791";
+ sha512 = "b211eaee0ca7f2faf073762e9b0e47a6fb1249d20f0ec96345104b75367066c5b671d3fd16cd1387fc773152c1f22f26784df14146e5b3ef41db61810d6ce317";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/da/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/da/firefox-62.0b20.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha512 = "9386133830e6e4118fdf258ca500d5666e8cef193feedb2dfb89d7b024f394f119784832e63a1424c55c34fb7d359f7b43de305b6a5be6086eb7cffc216d4786";
+ sha512 = "46c7f949b5d306f1511ee68d624a276b4635edd21cbbc9f3b19dcb8f6fe7842acfbeb55307dbfb6bbe19461f093752d1d27abe908b394a013cdbbc68b36caa09";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/de/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/de/firefox-62.0b20.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha512 = "371e2be270761524365a5918d09149b6c0a4405bb6c68408561c6af811323557812ad762e8354b1c580c40cb462eeddeee3b40311cd1603f6783b7a4c95fc7e1";
+ sha512 = "d53f3ed49d59945ac711cca09a49460f82a74afeea3848605b0375778f3d94e2b0f8e473ca567a9a3326d847de97a83374b37c012b94d96bdff7482cadd45139";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/dsb/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/dsb/firefox-62.0b20.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha512 = "c70803c2c407f5370a05a120e150941643c5cccee44f9e5a1ffad8a48a68b396e9ac62c9d691b5ee4450f9679a63383c57026d73c3ed7b0b6f1c782b841b9b93";
+ sha512 = "e9274015c9a150ca2518358ed9847f060dce50f5aae902ba107eb07071b7be1255e3f034a8c3f8d9c29a4825d17d124da76b4072da20082364fca5ff874a9a19";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/el/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/el/firefox-62.0b20.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha512 = "d9df45941a626c742e79a7d8fb89505542c15fdb955d72f16988738fc8c33062d0f1ce1453b6226daf97c964071505b24a204968998e7f453bed7f55391ddb55";
+ sha512 = "8631f28be76ad3e16c521cbbc263f3c58df6e73cbcc9b4a5528934f9411faca0ed28f821004c901c97d925abb95fd597a34b901f97f33fdc508e99a3d8c4f689";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/en-CA/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/en-CA/firefox-62.0b20.tar.bz2";
locale = "en-CA";
arch = "linux-i686";
- sha512 = "0ca220f6d9e6ae8e4f4ea9258e32f108f3c64dccd222b8680ca1ca3be01c9e0ad0c8803f5614c520e605722f581ddf7023dee60785c1a0fc81d16afddf14c774";
+ sha512 = "1f70a550b4f7a6dd2578fd0a385a68b153954002d1a4d7e66ef58f86a1b5c9f33e153ce04a32737113f974e7caea5c2c6d338b69da94ced49a56dfbe61a99d68";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/en-GB/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/en-GB/firefox-62.0b20.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha512 = "191653ed0e193b61fbd65cd53ede35220f7d1f18447145f08034c935aca667a2adca43252d0f685c7ac1638995a0566de75899e41cb7fd1296db8800042ee887";
+ sha512 = "473dc2bfc05fa24f4a5c88321d087604b81245b08e3813dc45a2a7bd62e2c7012f0d2ca1dcbedeaceab7549ef5f53d47208c04b0bbc9f9267f4319b2720a14b9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/en-US/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/en-US/firefox-62.0b20.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha512 = "bc9c9ff41f54d40953c136515e1076553488b5b3c8aec781869ba5a37017e6dd2ed8acc32e728797bf80e24eaaace51b3399c3a6115cdaba48dbe4b4bae8a420";
+ sha512 = "317db45661d149e6ad123241b9b335f34a2852921a97ac0caddc7c49dbb1d105091990e99d538255359c42c5f12057fa728dd546019e710168f696b88ca202c2";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/en-ZA/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/en-ZA/firefox-62.0b20.tar.bz2";
locale = "en-ZA";
arch = "linux-i686";
- sha512 = "b0c3d3dadd8fbc3d132e308124c95225e3af3bf6263cac3fba6497654460bf08a38e064b4b57741046929480d2069fe6b13bc12657be1225340d8b35f3fefb0b";
+ sha512 = "dda42571be54e4955cad1db913579ae7e5b002dea09eef65c47da53adeff0631667d34339bf102d2c779d5601066b7d403da03349dffb60efb9205cbf92678b3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/eo/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/eo/firefox-62.0b20.tar.bz2";
locale = "eo";
arch = "linux-i686";
- sha512 = "6ef35dc9382048e7b5f30207e6be26ecd679d8650b2ac08818c61fda60bcfa1e9d77a2aaf0a89ef11e3ce58937bbb504abe58fe192a524baf71661b3b79001b3";
+ sha512 = "c52807336eb6a7acefd83053b13b9e5e6a8ce746466fc8a117e29b3293317d8d8aad86fa5f893b57713ae6e2d1a86e63ac3a8e00079542bb9d171d0297b46a39";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/es-AR/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/es-AR/firefox-62.0b20.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha512 = "8a01cedb4790d513b9ba19e1312e4e1b5e01c165539d45a7cb4f53c16d4b60e5e9d0047656bd6f2e4dc7464158db2584661874f9661c92583195c1ae16e057ad";
+ sha512 = "822524e73b1f49037b0e94b297fca1239dd8db130661bd791c1e5e213c9d3cc8f433af205b9cb3a2b3b983bc1470471f558d5e49e908ca582921b0f04d429472";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/es-CL/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/es-CL/firefox-62.0b20.tar.bz2";
locale = "es-CL";
arch = "linux-i686";
- sha512 = "ae7c1d179f3fd9873ec6f1ab75dc2e6b5e914ee5c316c54ea0e1d7affa5e1b3cc732db5a6e9438ea27df8856153835b509e8e29493df4b0f66951856e35f4a92";
+ sha512 = "24e6938f719b0f369db6d2277017e976e3db83ad342ebfe3caee1c266e4832c0fe306018746e3b45bcf6a7a430c9083fd56cd22e57945966ff4f2943b828299d";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/es-ES/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/es-ES/firefox-62.0b20.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha512 = "54dd008f4a6afdf20b863b52fa836bee881e0edb99cb984147acffaec7e4e49be3c9089cec01e2a676c72282937d20fa3ed5c1733db3818225ef19e56e42ec40";
+ sha512 = "7d97797796becc35a27bdcc461aed9f0165e49ff8010234ac9d2fa0274ce9270b2b69657d841545fd2b6b4cf7727ebea76ba3d5c2bab8c2f1a4612fa678828d0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/es-MX/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/es-MX/firefox-62.0b20.tar.bz2";
locale = "es-MX";
arch = "linux-i686";
- sha512 = "5a249832f559d45ccae4e7b797debcb3fe1e53d83c661563b49def547be4a223fd173c60dd534f04a43aa4dc03b01f33a18aaed871d3f2b39e1e37f32dc34d0e";
+ sha512 = "bcba9c47bf13b77679374f077024b62e6f4e6048980b71901f576492629ee4e6074f9e5f33b9260eb67476823a604803194f668c4ce1ad09bfe78aa5017ad9e3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/et/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/et/firefox-62.0b20.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha512 = "beea97c45552577feaad9922a59cb46777140727b6a29a97f4700bed7bc4401809f9dc27d78fe4676bb91018fcefd01825cda15d99d2294e9460a73f652e3a9c";
+ sha512 = "ef00d5c331d377d544c3f8acf87ed78c658a5e076db36a025a9c004366b27d95f2c82971ce45f2d48eda4cf34f57adb95c646ad21d2000e5d631aa2a8c2355ce";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/eu/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/eu/firefox-62.0b20.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha512 = "4c384cfed1fd41dae30526a0204bf6fc2cbdabc98539c2be868c3e05d4b432c4b8b1a696d7138f05d91e56c3091d957d219e7939fab1798035a26ef3b1e25a50";
+ sha512 = "7d83cca4b0f6de980d5e66b152bcbc72286cc7a241ac1869cc5999a7007f7b632d35b9319425fe1391cf0b16188709fc62c05e81fbf9d1bad0a338509cc7c529";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/fa/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/fa/firefox-62.0b20.tar.bz2";
locale = "fa";
arch = "linux-i686";
- sha512 = "ab331ff73db4406fcbb8a7a2fea04bbceb293d886b98af3813558c604972bda68be9d06d57b66b9dba4fb2f7d357e3aba9c901447c56c3723c7816ece8447df7";
+ sha512 = "aaf6b7583a9c9219c4967b34c2d89d58766261178efa2d89f4cb7c9bf8018d908887ec04bafaa0ec464c243d301cf09734cfe6150d40952df532579c35abd517";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ff/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ff/firefox-62.0b20.tar.bz2";
locale = "ff";
arch = "linux-i686";
- sha512 = "3d4c7866bdcfeb2670069e616fc87c99fb6a36777932bbc9c891ff9ea8815c4441a8bebee56971b9d96275c01360604652ad999f0e6782888c0e7776420dd5e0";
+ sha512 = "3cfb4321724a30c49e735b001dcc3b3b1fe2ea2872793b5287adaaf89b6821f8b81669761d8296111b574be14eb6bce7d0467a945dd22ed652f82d2ddc29a46a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/fi/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/fi/firefox-62.0b20.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha512 = "ba8fe71e3db9295c17985512834e40d81a8c78796612c3116a0faa8d60b9422f6d45f86cf7e4c737c4729e87a16d544230ef874d70d10c77bd1b711acbc7bc74";
+ sha512 = "2acdfd29ad1213c8fa5ffde258737ba2232ec1d2fbdd5285c913b7c383f4e30a2cda65a16e1f597c81f9ae0ea1b7fe492625eac48a92fc2f428d5fb0ecd5ef83";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/fr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/fr/firefox-62.0b20.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha512 = "c3eed53c00258b2fde094d4faf2fea78b31643738a27452cdb9a0fd381d91bb03591f034c9a654e15972b23858beb38710216275871e780b274597be15e76634";
+ sha512 = "4f18a80f38d2f8b2e828e58171a10bf0509275dcb5321867c52a818ce82b56ee564973f13fb222b049e0df3aad1d7b0f68a6ca24e88181553bd3ae125577eb04";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/fy-NL/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/fy-NL/firefox-62.0b20.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha512 = "a740cfde83de0fe696f49de31e9a49781a553fcf33924977663c087524934b03eda177b82d5be3ef8741b0c366cd8fdc296d1da544f0b1b52b50993924a9ab04";
+ sha512 = "c7b18de94816353897423bcb35b5f5d88e998c5dac3d37b417e2887f5fcc7ea2c4233a5e603596e742e2710e345edad14a48f45b74a91810e126a14be803b7f2";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ga-IE/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ga-IE/firefox-62.0b20.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha512 = "7b345ca7ee03c693d3eb8dd0d2177765a5771957ffb125192708f47d33720fe505244af85b11cc9c019c426a8b19cb0efcfdc4e8b8910f1eeafd1aa5ec046dcf";
+ sha512 = "e1b070d63012e494a0fb380d7e97f8ca32e93dc3e8df5e2f5347cf829b6a94fa886dabd46285110b4e83c807f49fbdc7f792061ca36246b1f7c1c4260dc3d927";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/gd/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/gd/firefox-62.0b20.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha512 = "bf36c77bb538e039f5a3301680e702d8253e98b3d9f41426986d4778237effa613c670a46db534d968bff21f047eb2d710f31c1f136640b70315b06c2058d9ec";
+ sha512 = "218450b49eafb3e13dee8d96cef0374423c0fd9ed9f3700428fdf0234a7f921138b4188dbdef60013062c6aa62fe2e13a6bbc219c756b8085e4b87f1a7400ab2";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/gl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/gl/firefox-62.0b20.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha512 = "9d475dfd45134dbb3478375e0ebf7853e3f12d073b5c2a6dba6163e0accf570aa954e8b6cf18927351d6086e0e0e07f6ffc0d88851ca294975cbad5e0d3c2ec2";
+ sha512 = "e841e13d8f9aff9c00e3d78f01c6a6145d87f9c6fa5fd6390080b1f0002cd6ae2e1d45a14624151f7d2a075a479281c534b06bea6f03d022dcdcf330858fb212";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/gn/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/gn/firefox-62.0b20.tar.bz2";
locale = "gn";
arch = "linux-i686";
- sha512 = "11d3dcdfad7b9786329ab9fc4800d32f92f1d390b332e6b0be3f293d11fe7b9e981196dbc2d48482dab9ccb8d6ddb4d3057abe83df565faa1a04f8b44e2512ce";
+ sha512 = "00b1242cd074fa385757a2059719fe680d52bed9ff74ba913f50fd3c7a6e2bdb16a2c0b63343bef47dd0fe2a7b55b5bb089e801feb3d4e537048840b453b9464";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/gu-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/gu-IN/firefox-62.0b20.tar.bz2";
locale = "gu-IN";
arch = "linux-i686";
- sha512 = "15af55c3d45a3c8d3334e4214870f38148762ce2401d0a10346a804c5bf361e7f785d21091f2828b0458bedb65277004f87c61c0dc87ff6e09f654d2ec1d72f6";
+ sha512 = "a1ba413e9f9f9167d15f37854d91620cee806edc1d3aef95fcc8b067384632d07789ed7fbb90255e572de0de73096fe08147082e24fbad9373717d1388f275dc";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/he/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/he/firefox-62.0b20.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha512 = "55c14b14d1254019d20a727f721c027d2c46b68eedb49ed848347c13f58577405f98d180b751df8b4ac17e7cc3f531c3ed8dcd9814cfd5b3e84085a33163f727";
+ sha512 = "6ee67f5d621666c3d1fe3bea325499f21be3c5b51b76dac0ce04986e4a780b2da6abfdd2ca2b0e135abbd5c085b6a58da3bdebd9aac2daac3921e36b5c823027";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/hi-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/hi-IN/firefox-62.0b20.tar.bz2";
locale = "hi-IN";
arch = "linux-i686";
- sha512 = "e68243a6011d6f5da237f0ae230cb23f02d91e32f3ec3943db83ec3db9280f4eb5f967e3cc6337569bbb5939c4a993ac7bb075b938470e2e5c3bf55d6158bf26";
+ sha512 = "a6c674a0303589372f0f065509977a7233a0a64ec3eae0d6c33321a3f8ef39e8bb0c06fab28114c620560a5dd7748801aa01c59feb785250455ea5d3683aa324";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/hr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/hr/firefox-62.0b20.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha512 = "b87d5e15e9a703f52676fe85ecbc24d8cf5969222c2ccd26899b105e92d93e95ff038b12053c837c0e32a83a6d1fb07f6697d85610052d1e6ac389797adffbda";
+ sha512 = "49491d5cfbdb63a0ce5dfeab0041f3ac188eea65d9804ad204eee826a745e7274b59119545278a76e1a69f239b2350835ce69aade82195f2c9e3d926849b0732";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/hsb/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/hsb/firefox-62.0b20.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha512 = "5511df205ea5143fcb5529840fb62ad66cd48fa4af473031b27ba85ae2bb8b98bd9bce0acdcd1ac5ed0f3aec71c11ee501ffcda2f136d67265d1f672163ea403";
+ sha512 = "94a1b14a0307be3946abf0291be752d90ffb004742e27ecabeaf340c8a291a203a71152dfefb0ac8614f029763d0f7748c20a9e254763745e74bba7e00dbb752";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/hu/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/hu/firefox-62.0b20.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha512 = "5cb02f6e0e3a6c4a0e115b882afdf376e9e322d954aa7241e98690838e4ebbf39edf8ee7c6546d6c4f9b98681d48a49d5031befdfaaea35c95c6e25b8877982c";
+ sha512 = "ad13f2c9b2e233b63685e5d259e189c42e03c20fa4635b1e3549bc993aa84b6b6f60db765d3d754d4077df71482db8a410b78255525a98484af90963d7bd46b8";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/hy-AM/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/hy-AM/firefox-62.0b20.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha512 = "da936656f0915a96364ff3db5ba69e8bd0918a201e1c9519bb1357ea7ea622300e3c09f35823ed15b82bf97d8f24f93116373e11753e5e83d36b8d0b9454819b";
+ sha512 = "af60b06dccac40856fd7553853ea27f084db076ab544e02bb85608f54b7fa91b05eafc878ff453f5392a2dc642e1f8bf7792ea2393233814e23e65f4eecd39e8";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ia/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ia/firefox-62.0b20.tar.bz2";
locale = "ia";
arch = "linux-i686";
- sha512 = "1551ef7edc2bd31ba37f937b9af0dfb011ffa51d61bfbfc9cb4375b1fa9d306c51ffc8bf7daa79455296d1f4085a131b73d575fec4ff2d08d2a8506912eb606d";
+ sha512 = "f1a8b6d609ffebb5152f0156ee2dda7452f56321852988ccc5f0f644c96477a0bdb8bf1645f5049bc404b0ebe17627b53db7467c208b7f2c8406f7742e90a9ca";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/id/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/id/firefox-62.0b20.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha512 = "7f370bc17574002f931e4b75befb3f6e343bcb32e142bb8eab8be419ee8a83eaadc2439f93ea75f742eb3a76a889870aeeb450e11685b39550cb0fcf77876922";
+ sha512 = "8b90571b48108e99021594d517e07cbbc897c96a84dbb8547c29a674f875fa7cdf01432af3a8133a524fe43640b7d6e6b6603627789b01b6cdcda0e3dc6be431";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/is/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/is/firefox-62.0b20.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha512 = "608c9f812c5836616f19bd751ac580a930475a0a9d567a349269f68eb56780e4c55162b18db851451e52aa96950d06988bd581027608d4e1209de7e05ac39c6a";
+ sha512 = "85f59ccc1812b98df3a7ade05998e997180ff5e1fff189dcc08a6ce65d5f020d3fa1a364e36d363d92bdd9cbd8c30af38a159b304c100f65fae619371ea817c9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/it/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/it/firefox-62.0b20.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha512 = "96dbaabcd0e07563f488fa6889950bd2a09c5ebf49898a04e0c77e303b0be97a26793db8cb500df2631cccf922b0f384f3871aa7a8d2b9854cb93a23405410e2";
+ sha512 = "c6ad61d891ea8d26a18da6d53d60216ad51fb236a4e011d99dccb06fbc79cbe983310c406dc9aedd1cb6b9c15212bafdc3db23f4b63a05343509cef1f5e309a4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ja/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ja/firefox-62.0b20.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha512 = "d1ea35ac65a52a7744048177efb6cfa826821b3145bb100cba03e98ec97ab268a88a24550d901631c6d8365999cce794509e1a20e8accff6ee5b301ac6ff4975";
+ sha512 = "0b802cbeba1f5ea66818f3eb4738e43f0c448bf7a33d02a656a1c5116b218c5e7ee915f788d8de19e9599a544ac335b2a2dd3734ceb1bf927517f55a331a9ff0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ka/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ka/firefox-62.0b20.tar.bz2";
locale = "ka";
arch = "linux-i686";
- sha512 = "1c78b10bcaf5d1c2b8164495b3e5ea535084922e20219b3f4f1fb41e4edf1c5ccd9a49dbc3a7e9fe9da7bb6e86488c54abc177cd4fd63679ff3082934d0274fa";
+ sha512 = "2b71658317f90bbb6beda188cb347e2ff413476e429709da08b094eb60363b658f3eb84dc58d96ccb2f16c9d7a692bbc0f282d28020dfe6de3ffdf554636f437";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/kab/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/kab/firefox-62.0b20.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha512 = "47ff7f5864d4ed04c94ef0442f90c373a5c6a1cb5ee0c1300bd1c3577f1f5845c5fed6d19eb590ec42e4b9fe75de44a3e737a8f915dfffffcb33273cf814b804";
+ sha512 = "129ff0155fea5269dc0d655633d6b807aef97a626e338b4d6a0accac675b0c7cda99a95a5989990ccc69cfd9137f4c2f907b833f650f4b789c7beb707a634f18";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/kk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/kk/firefox-62.0b20.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha512 = "4a4b9092af41e88faaee11586b6404bcfa1f31ce40b045415a1af8f6082158ca310b47f0613109600d53381a119fc695c746c1536599af4208e476afcabf09cb";
+ sha512 = "8cf6ec86d8c60fac299eaacc9f046beb497205f1414334980e0d6ef2576a043f731df5610c3ad918b5fce0993410ea5125efdb769300387ec0ee6fc5c5beab9a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/km/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/km/firefox-62.0b20.tar.bz2";
locale = "km";
arch = "linux-i686";
- sha512 = "c380f003bf7b71f60c83ede15c26018fa218469d98290107359c79bf4983ca0a7d82500bc90aab35513df7fb90060424aee055522d34f2f79832957eae763ed2";
+ sha512 = "2b5a8415796d16a386de7c82201449c2929b7f75e96ca84b5adc25bb52ed27e76fd5f510d6cba14b04be26866d17b0cad026bf9dfbe49094cae2fbed984873a6";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/kn/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/kn/firefox-62.0b20.tar.bz2";
locale = "kn";
arch = "linux-i686";
- sha512 = "905a0c92409bda30a52f68005d65702d01121156ed8c450897f2809416280c3b734ea31a5ae0301d613746162cd7f039026266f7adc43e15d62c7d6ac7731ee1";
+ sha512 = "2d6f3384708ac2275c5b372d33daa0e80b6b253d69e80e0f2ff755bac99dd8eb2dea9585e3aaf20c2efd6528f020089b0a29a1eb8fc9719958edec806557232b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ko/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ko/firefox-62.0b20.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha512 = "916ba0b88ebfb66da8407d1ede81d8a113fb2408a8fc1de885be541cd09db6a3ed65efb746e2946b862ce2fef235b4901ce1075c8f6bb9b1a47614d717797c42";
+ sha512 = "dcbfc97a8f6f5292e519995becb41065c561395b7cd24f76b6717e8c920c910a5456ba382e079641988de82871b7c4545cc1d9b044157222db780cdfeefd9949";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/lij/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/lij/firefox-62.0b20.tar.bz2";
locale = "lij";
arch = "linux-i686";
- sha512 = "2d614790ef2d050bbb6b2728170fd658327b28faf193e4e02616858165a9ada67825add643f58594c94f3a9465191d6cfa9dd597c55c8b1179766ab4ba4a3a81";
+ sha512 = "fddd4b5a341405ce2d7598768d53a51c37c54c6486286569d4ad06965f27b4c7249d769507b586f5c880ea994e67b0e51a2bca9746c54501939c4717dbbdcd80";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/lt/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/lt/firefox-62.0b20.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha512 = "9659f84976304b84ae0b51f10885bf6caee0c6567b58466f394c058d0e47cb4a38f22f92086235cfc0077a3eae10de18612f178b3bd59ae830e2ac93553e79de";
+ sha512 = "e6a11b4709c0578aea57330e43f9e7f15d7c1c9401a2fa04d909e373be7a6c80123f05ede39a9e72a33c8824b211e42483a96a9620de419b7748080cc9a7e998";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/lv/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/lv/firefox-62.0b20.tar.bz2";
locale = "lv";
arch = "linux-i686";
- sha512 = "425ebf254d41c868960cf90a015771cbdbdf2e0c33fd17f6b038fb2b63bae8491379e4cf4424fc55904560ad53dc05928911ac908ea5aaeafceb5409e337c04b";
+ sha512 = "f1c6e3422d6cbba13d9ad137523f06be5efbaefc60490f67456d5a604c4e9083a172c3299ab1d41efdd76884ebc1fafaed6a083493c00abe81888a23b2dc0c87";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/mai/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/mai/firefox-62.0b20.tar.bz2";
locale = "mai";
arch = "linux-i686";
- sha512 = "0d2204236c66f67297531c8602b5d27c86663ce47b37451d83a72e822571e6382ef5133c424b5cf0eb8a10a2e03e6779c605e735b0e548946fc51eda70b937bd";
+ sha512 = "5e7368d6a098f90c6b550e0700342c1e036f69c7d2a28edef7511ac88601b5befae37f2fd279c22e383050ec5fe0f5109f22309af34914c98e120144f94a0345";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/mk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/mk/firefox-62.0b20.tar.bz2";
locale = "mk";
arch = "linux-i686";
- sha512 = "54bcc2fdd892565306335c4bf15e75be16bee5856f6c618a9dacbe1f22a42c0fc635e2447700166dd1269459e6d063831c22abf1a51fbafa6200feb742867836";
+ sha512 = "4294fbcd18dc778ac641cb29c64d242570c018eeac33bf21445dbea4f9abcdbb31a384ab2a73817be265f6cbb6e509b86b9fd132b7cdf09258cee191821d1796";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ml/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ml/firefox-62.0b20.tar.bz2";
locale = "ml";
arch = "linux-i686";
- sha512 = "0f67cbd2ae4cd6c2e067c424247c95d6aa6260d762f3e96d6a9799cf8e8e0065b9d26c06716d62278940b271be822a94861553435d7b689bed9c61d7723688c7";
+ sha512 = "050f90fdb97edde5a75b798af02a10f7fc5bda28a07bf5f0b883c5039d855cabff160b0fb7411726c5852584f96ca4135878ba7ea8c3298de2fb3af85b7e99a4";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/mr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/mr/firefox-62.0b20.tar.bz2";
locale = "mr";
arch = "linux-i686";
- sha512 = "470213aa3e25a4c85ada8036ba9c7f81a4659a22022e67c887072a66c02a8ad1fc2cc42012f8a8ac75e54af5a173d6d80b2692c3cdb435bd934f18722a1b579c";
+ sha512 = "a005fa90f6d301d1dad2175d58bd9de698f061226a6776dd5da82195eba19b004252b02fb464f004b6aaeb13232e8d80d511bec3cf955911f087ee40cfcc0015";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ms/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ms/firefox-62.0b20.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha512 = "de30a81fab969e944de2336deef2bbde662561e1f8309a1befdf92bffadcc8f8b9544173301933dab54dd49993dfe252fb4dc6b29fc2dd383c944a6b7e5d8c8b";
+ sha512 = "4ddf2b483f24b16a08b293a3c76049e62fb7326d3da7287bf0493eb838220cac3ba5a81473a0278c72a5c5e5391edb17304c0140e81c43c1b943b9135ada3b9f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/my/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/my/firefox-62.0b20.tar.bz2";
locale = "my";
arch = "linux-i686";
- sha512 = "3753ff41f0f5626702d600a147246fd37c7ca724c457217b11930a8f9d64fa4f54cfc61428ac7900d9297f14d8348291d8cdef64f16b51258cc9e9a4736168ed";
+ sha512 = "23f2c208eca6472879e47a5bf3c4fbe04a2feaac0d220cdcd1985001665f65e8992a97998630e65cde02c6c87dee34fa10bb78b99beb5c8968c99b410b226a68";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/nb-NO/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/nb-NO/firefox-62.0b20.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha512 = "732fd39f7e9c6b56a1137025e9cbeadcf8f431a1c0b9d161ba1bc7679dfe4ac357abb8862ca58c681efbe8cc2434330bfff9fdbf3af5ea7bf03fd4ca0ec25b3c";
+ sha512 = "22461cd2fae62819fe9a44a1b947d63ccea61d5b5ccfbc949644518d3c65c242e91770a10405fbcde24b2f6eef794b3014e9b6396eb6a945c904e762792e2634";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ne-NP/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ne-NP/firefox-62.0b20.tar.bz2";
locale = "ne-NP";
arch = "linux-i686";
- sha512 = "7dda0f7e98d5b1c6296410f42025d51d58bbf17fddbaa0aaeec2ce87511e0e182d3374deb033b30edeb661ad477671c3457d36a5e2f075f7b44527ce6a5caae4";
+ sha512 = "b499cb8cc7d5486d368b381ac6c0416861846568fe6b8cf83dd2105427d87fe12a648da5b36c42a4a22b64db48c9016828c14f61d4c6ccfce347095ac275deb5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/nl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/nl/firefox-62.0b20.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha512 = "605d948f8d0ed5a2264a6e93bac89c857319617f65cac841652ecca3aaf88c283fd9ca4d3b9d63ce436ae993d7c8145be92e5e1aaee365f36be147275550cac2";
+ sha512 = "3107acdb8fcbba9629c0e3ba940de4df42d7b2d57328ae3b2b67cfba280ae2f97499d248c1c909630e795fe1f8b8c096a60e273dee3ba1bacecac8244612ecaa";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/nn-NO/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/nn-NO/firefox-62.0b20.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha512 = "4a679b681b01af5084265982d4cc89b435bd4bf4e58ec98bd1ad9fc7d134c6bff1841657cd9c327ac1cd42c2bc79fb99064e6c5aed70539b5b0d03051f753a57";
+ sha512 = "bb5f4ee13acbed4dabf349fe8373a6dd36df5980c6ce4c4d8a2f59cc2a7e53c0da33370ecdb394c80e3e0738d9330690664e4702776a3d5faccd6fb041fcebc2";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/oc/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/oc/firefox-62.0b20.tar.bz2";
locale = "oc";
arch = "linux-i686";
- sha512 = "ce9131685c56cdbafc920c0d88300f34bda4aaeb3478b9ca3c19363c9ee8eece740e083bb86a5938e9a5fc3fc54dba46523fae6b1b0de43c2d4e0221bce91d6a";
+ sha512 = "fb0ae7f6c96a5c3dab3c8b205532cf0963f58bdb6b5be335af6e04c583101d7e0769ebbe7af5a25eb8c8e0e52d29762660d1325bfb36f52ff118c3443b9c503a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/or/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/or/firefox-62.0b20.tar.bz2";
locale = "or";
arch = "linux-i686";
- sha512 = "3ab4cd737c0c1e75f68e4483f9a7ed0cb56633427eacb8796d391f2f49606ba3a7d926eddd9a49298b13d1d3c39e01e391b03d83db23c22f835dc865555a5a7e";
+ sha512 = "3a096af1920f5882a3c14623855a62bb21812a342ce8202dab99937c95bf2bb25ee95d6e8d8f83efb3a4a6576cbedc08fb1990f32aa2ff95e9db109b3e246a70";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/pa-IN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/pa-IN/firefox-62.0b20.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha512 = "d84a947386dba337c172d8bbbe904b4be579a5bf9b5ab6bd43c1cc8e0cabf01b72e7178d2321ee1665e64a4e38b34fb864a6aa53db06135de1da7fedd27751cd";
+ sha512 = "c078b293d2ed28fc1780ef5a245650e88f64f806b6beaf593da3f34e554e77e239626699e959c681f652a14143b46b13146a7d4fa04d3e71bbb9a55c0d487e0e";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/pl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/pl/firefox-62.0b20.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha512 = "cef8df7a206a26af3299b0f17fc1b8d8f95c7702952b4ef8a25b640bb398825434a6984aec21a29cc17c3e97b9d99fdee2617b8d06c1982c12c9f4732fa057b4";
+ sha512 = "6c528057f326285a7b41a12f5b60f6dc0c659d8475d1766b577bf3967bb0111bdbdc43a4c5dfdee20a215d12b9768cd080d33b7fde31633f41edb9019ff87a50";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/pt-BR/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/pt-BR/firefox-62.0b20.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha512 = "b3f31d6c46e83cf46ee97bbf3875730d152b4db30fa59c8099ec2c977debb214b933f944e33132afa685a2f3efa86c7276713666e6764d66781eb87f555659f2";
+ sha512 = "e8fc71862f83004c660168b0e955a1043384dbab038f3e959087c799088bb3307c102097f627925249a5ce3f316c102a0ccc871e313cf7efbd4d10c91b2eaea7";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/pt-PT/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/pt-PT/firefox-62.0b20.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha512 = "308948a335c4b3901c75e8ebe269844a6a75727213c4d08f00a5016407efdb0859d604c1d8d99200a4142291a18cded8bdc8b9a362ebce1964c19e0a7dfa3495";
+ sha512 = "6c7881edfe14ad6cce5241e4de562e137f44abf23bec6c49e801c1fce5f1c417f88939a97f4484c37061063f7b13d64eab55777c6852634d3bcfb69954ca3837";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/rm/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/rm/firefox-62.0b20.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha512 = "e115c4f369a9b668c0f5450ef3c28e3c5e66822686bfe5796a227459c5ce4329fb356bce408f906b11cc1e0dceaff6b941f12b0c041fd27b0f777f3eb4fe7718";
+ sha512 = "1516fe15becfeccdc63f3014fa1e776662777f303e66f1d7aa48a39905eeab20dd646832bbdbd1e3b61275f02dd338255e0e6db6b0fddb159d480be4c89dc1e8";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ro/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ro/firefox-62.0b20.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha512 = "bb26ebb73ea63c1cea9cbb2b62158236c98f0558ec953f7a5d9d17ee407dcfa2981b774eae319a825680b8092dd44fe6e9df796ac2982946f74c7ea5fd5df8eb";
+ sha512 = "ac6e751c4d2be30c6e918ccc1562a8aefd0e02ac672e2bd3a3f6b9bd2c153ecb172674aeb6ac9607210250e6b9058e007626bd541c4c164316c77d98e7e77c8f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ru/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ru/firefox-62.0b20.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha512 = "7e9f12559df60601676e76a38c0c99f0f155d7ef6e7a88f3086b048151c7fec56d3259bf34f37399b1c396def3ea4ac729c12b83792843063f645b13d94b8a95";
+ sha512 = "92a7cec3b0e4783cf2bd66a2afc0db069b9e26b0359bf376abc36db8c461b68690a789c06275d7cf3407802e961bbe6d6779497a158872f3676419cbcb1fa864";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/si/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/si/firefox-62.0b20.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha512 = "2785c0a12c4a09e7263085741f59dbfc9d8ceac93992a0d1f7181a34a09b44aac8a7baeb42cd047dce6301c1735bdc64f498c9895363527965a4efd500294c48";
+ sha512 = "d0cbce1d70714e8c4b5d61caf7f6e02b1caf43530b3a8d5db775bf164b74c273ab458262502cfcd6f0aa4a77a69b0fa3c6ec7bf9d3485c7ab447b07d8e534a28";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/sk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/sk/firefox-62.0b20.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha512 = "20e33d2a6ed8989a889e55f9439d5878d295f1b25e88ece5416b21902aae95a662b0b198d5a690067d04d83ba514bc944e8c4e5863dc0bca6fc2a6cf0be137b5";
+ sha512 = "89033347ffc61f42d9dd9a2b50a24623f7e8b96e58b8f6baffb9f751e3b6b64041ebf4080fa7fe872f72e65982e860b04004b42b5c51aeeffef4129a3a593c8f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/sl/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/sl/firefox-62.0b20.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha512 = "d67d23d6570bcd1d7914ff465aac68faec728d5afbfea2eecaf1faeb7165e5c270f5cde1acd2e0cfb8b00151039a1b92cd641d91332913c959a92cb5b7953cbb";
+ sha512 = "ee4ddbedb3c5b0b7c11d277f84028c867b17bf7a1559b276340312415105c80aaac8ce468cfaf99368d55ab4b9171e0555b5ff6949bce306ef72dd029464d479";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/son/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/son/firefox-62.0b20.tar.bz2";
locale = "son";
arch = "linux-i686";
- sha512 = "6baa5392250b8738d10f0af54327da729650727a5c7419283e33b468ff1bc550a73d588cacfad429c924c700e92f1bfd28ca89a8876408d56a9d8e6e3c1f14e4";
+ sha512 = "19a7e802542421b3147c2c0acf379d5bb8fe444b1dbf3ea41eac08065e11bbaf4467fd2bf0eec2fbcbcdeb8a24677b665035bc6c7e892bc762b5f8e01f9b9cf3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/sq/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/sq/firefox-62.0b20.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha512 = "205be0861e846aae214cc2fcc172a2bd77c9de6a7edec77e2bde2d420804982c817b608620c54179a10a753f10ead8069285559d8f613e340cb4d33414678ba8";
+ sha512 = "32baacb624f9060d34b76d8aece1c52bb4dcef3d99f01d5160878666bb0b7a79501fbbcac8db57a2be1f8bcb243f323b52510934dfed36a96efcf0a23664619d";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/sr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/sr/firefox-62.0b20.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha512 = "0428925e3e1afb69f3610d8992ec1380e55e6688c04aba3983feb404665c8d2ae05eb8d2cbf2eee446e9e9065de493a7ac71cabed764dbdd9bf0f01c2e5d476c";
+ sha512 = "307d847f3a8fa5dbf8ef3bf8fd4750b508fd0e01694d1b7312919335247274323806f70e7863a1cc66fd368192c8b7d3df53f5c0993fb7defa2723f50eb59ee2";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/sv-SE/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/sv-SE/firefox-62.0b20.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha512 = "39a750b9e9edf2648133792002cc4bc5f9a8fd62bb1580c0a8da02f31ae23d6a288140056e3465d18165dcdf22612dba3012e9843475811a30b68a865f16bc8f";
+ sha512 = "e7c257a6bfdf9d946174a274ff41fbb2043978f4263e78a7c4af67f030b70ac9fe3ff0944d71b002478c9fdf033ea4a252400819e425dcd707adb40d249a2df1";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ta/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ta/firefox-62.0b20.tar.bz2";
locale = "ta";
arch = "linux-i686";
- sha512 = "3adaf77a893327d0f7f3ada02d56e9d38c64ff81357418e72a728ca2abb7284973cff4016d72284568cefb265a00ee0a1bb58b71ef2189c8ad36d4c701fa9b43";
+ sha512 = "a47b5ba62065cfe25fb0bb650c46fe1b7f92b1c87ef99e9cec15cc9d46b7cd7eb33c74065a9becbc0555604020f7a3e61588e29f920c8a926fe90991260c4cc0";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/te/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/te/firefox-62.0b20.tar.bz2";
locale = "te";
arch = "linux-i686";
- sha512 = "e5392018f9e17d01623bd29ee28310764e93774d96fbfb73061d2c9281981c893e731bf3e4044514a4f05d81a4c03647f81c26ef4c89b32ec37ff71a0fc31958";
+ sha512 = "0e54ec5597f42d4e6b04841bb0bced5e6129c966ae917912d3b91dc0314fef006a1929af6a04b126564713ee2a810a4bb9c1957803519ff7a64a9a05512b737a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/th/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/th/firefox-62.0b20.tar.bz2";
locale = "th";
arch = "linux-i686";
- sha512 = "bfa74ea342566d589a7c1b52fa566f9ab7bdaac9662e5a3970c30eb7cf41fe6c99b3303992f160e79c441e7ca2c9582f71a84635f001c78d9638cddcf4b5d15a";
+ sha512 = "c8ab7bdb4b1a95f08620a2788ce00c3c4c054826026966a2fb6407035e26fcdb685337dbd5187235683e7ea08234d685540f541b6a1c52f3e9f2a1fb5d2a7db5";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/tr/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/tr/firefox-62.0b20.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha512 = "390244c6db478a32e58a8c4732b6035f955274f7b1d62545cc7eeac25ebc355eb701947c77f96e1f185ba843918e44d1b619ce9bd9acfd49b944890a973a8f47";
+ sha512 = "35a4b18c459898b470a35ecbdcfe863ea66755de4f51842f2a368300e542eedcf92914d9630b9bb32c2c0381406b3656ec1860d9eaafb2d2ca1f7e315593b17a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/uk/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/uk/firefox-62.0b20.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha512 = "2eb8b9b3648956d54fb465c1d783afe160c6e06186165546654ab63f9a557da9bdeab18e1c9453a8bc2d9082f45c067d2538828b455283f42bc2935ba77b6301";
+ sha512 = "854153f02ac9500858aa9da1f153b231ff71e372e2c9d2ad87282ac0fe981d959103847a5688be87b01b2c3032e486ecc39fc76d3e495c395c2cb88240b5d32f";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/ur/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/ur/firefox-62.0b20.tar.bz2";
locale = "ur";
arch = "linux-i686";
- sha512 = "f358018a9c2848930c70ccdaedb4088d829bdcd08a6e488e65d70b8ee878a477f80ea4736c55a61b3f58c0f7d5753bf73764985e84693a0e18804964f262644a";
+ sha512 = "0434852668d46ae5a85e9a1ec6a4db9ccb801b4d870b28e500690be33171b1596c7004f23ba643d88183edd524a6d558f0f105b65d1356147648003a0b6b9355";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/uz/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/uz/firefox-62.0b20.tar.bz2";
locale = "uz";
arch = "linux-i686";
- sha512 = "dca67812c686f46f74318802ce2ee334e5cbc38878e514631c55963607789673e1fa6d2bc4c45a130247f7bbe1373a27c70fc726a5338a51d391e40e040e213b";
+ sha512 = "51e106c354bf253319107ee772619139413b4ef569ef3c97abc0fd26a5cc1c0eeada6a2924c3838f320fab51225e05e7ec170d61151baf018f9ad39f3de83f5a";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/vi/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/vi/firefox-62.0b20.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha512 = "71dc5939c88a9bada577621ec8972a9c253d51cbda818df47fcaf068ad41f25f89efa0280ba269a057658510ca668480524fc45b354356230b1a87f415792ec6";
+ sha512 = "bd3d7a34c737e2b165de9bd893932e117d993c1ac396f7161221aa84c25e8f7bc5e528c0de710da46324bc05c18762994107b08291dec49e5d8fba58b4c10dd9";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/xh/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/xh/firefox-62.0b20.tar.bz2";
locale = "xh";
arch = "linux-i686";
- sha512 = "1880cf34fe3ee330c1da83fa78e56780e175408f5219bc5d8912f2bc8cf7ca3058e759c40cbd5dcd2248d0752c2f289ccbae348176d8e3cdfabfe845f2343d54";
+ sha512 = "3c339ca6230783dfec8df3b14709af1a849986fdcc05546447d698f84e3e8d1b006e0885ef90321cab8d44dfb0222e6ebf936d1f3934bd8b487ad941699392e3";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/zh-CN/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/zh-CN/firefox-62.0b20.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha512 = "53f4d16c2e5f9f924344e4dbfb57246ff9056f6d41a996a6308aa8fc36989148d87db22ed1f2f29870127d560b4a711313e6d99dde0276a81c9e338823001c80";
+ sha512 = "8c699af29bdcf3955c4570dbff4f3449b033360892cf8c1b86bb00fe6bbb778f6a80293627ddd0fdda8198e2f8cc89649e66f3f37bb0d2cc9a2730210ac0506b";
}
- { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b19/linux-i686/zh-TW/firefox-62.0b19.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b20/linux-i686/zh-TW/firefox-62.0b20.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha512 = "7f59f4de77dd5f6f0c31e9062c26206e62c8920f7e2abfe0f7da72de7ac8804bd0cb5591cf59e13c7c44869440d06a57b62297abb14e72646278e98c870cd2a4";
+ sha512 = "93ab2022e6fd50266e201352e37a158d2eb65c00ed76cbba5940d852af182e401a6ed85aff4b7e50ac62a461afe21654526b158787fef15f9ba4c71cae91a8a1";
}
];
}
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index b64a6cf7ad9868fba2cc89777103ee745920792c..8b06c35fe0050e6a608c7e92b5d7e2da8c25359b 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -36,10 +36,10 @@ let
jre = cfg.jre or false;
icedtea = cfg.icedtea or false;
supportsJDK =
- stdenv.system == "i686-linux" ||
- stdenv.system == "x86_64-linux" ||
- stdenv.system == "armv7l-linux" ||
- stdenv.system == "aarch64-linux";
+ stdenv.hostPlatform.system == "i686-linux" ||
+ stdenv.hostPlatform.system == "x86_64-linux" ||
+ stdenv.hostPlatform.system == "armv7l-linux" ||
+ stdenv.hostPlatform.system == "aarch64-linux";
plugins =
assert !(jre && icedtea);
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
index 94d0e9e5badd0037bed65d118f043525c0366bb9..72e1a08f40b305a14e8b5cced0c0d43a4b4ec980 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
@@ -60,13 +60,13 @@
let
arch =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
"x86_64"
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
"i386"
else throw "Flash Player is not supported on this platform";
lib_suffix =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
"64"
else
"";
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix
index a172e0e8d5d9cb234d3ff4ac6c872c7723728bec..71b5161c1e39d3884eccd507a0e63efc73a67e06 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix
@@ -54,12 +54,12 @@ stdenv.mkDerivation rec {
version = "5.41.3.0";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "${baseURL}/google-talkplugin_${version}-1_amd64.deb";
sha1 = "0bbc3d6997ba22ce712d93e5bc336c894b54fc81";
}
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "${baseURL}/google-talkplugin_${version}-1_i386.deb";
sha1 = "6eae0544858f85c68b0cc46d7786e990bd94f139";
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix
index 3d4e0fc002257fb2ba651d22fd30cc1f676d6d1d..5f7f601b35459be29a15b4330e0b6a73bad77540 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation {
};
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = https://mytrezor.com/data/plugin/1.0.5/browser-plugin-trezor_1.0.5_amd64.deb;
sha256 = "0097h4v88yca4aayzprrh4pk03xvvj7ncz2mi83chm81gsr2v67z";
diff --git a/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix b/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
index de6766709131a41a6ec32f6326c94c40907f9310..ffa5d4472527e04817483a70d8f874c2b7e22aca 100644
--- a/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
+++ b/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
@@ -51,6 +51,9 @@
# Extra preferences
, extraPrefs ? ""
+
+# For meta
+, tor-browser-bundle
}:
with stdenv.lib;
@@ -125,7 +128,7 @@ stdenv.mkDerivation rec {
name = "tor-browser-bundle-bin-${version}";
inherit version;
- src = srcs."${stdenv.system}" or (throw "unsupported system: ${stdenv.system}");
+ src = srcs."${stdenv.hostPlatform.system}" or (throw "unsupported system: ${stdenv.hostPlatform.system}");
preferLocalBuild = true;
allowSubstitutes = false;
@@ -397,7 +400,8 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
- description = "Tor Browser Bundle";
+ description = "Tor Browser Bundle built by torproject.org";
+ longDescription = tor-browser-bundle.meta.longDescription;
homepage = https://www.torproject.org/;
platforms = attrNames srcs;
maintainers = with maintainers; [ offline matejc doublec thoughtpolice joachifm ];
diff --git a/pkgs/applications/networking/browsers/tor-browser-bundle/default.nix b/pkgs/applications/networking/browsers/tor-browser-bundle/default.nix
index 50b992253ceafa1c749235dc3e906fba747e7d55..6ce22e1641557822f4471f32ac259ff56ebd0f5b 100644
--- a/pkgs/applications/networking/browsers/tor-browser-bundle/default.nix
+++ b/pkgs/applications/networking/browsers/tor-browser-bundle/default.nix
@@ -339,7 +339,29 @@ stdenv.mkDerivation rec {
passthru.execdir = "/bin";
meta = with stdenv.lib; {
- description = "An unofficial version of the tor browser bundle, built from source";
+ description = "An unofficial version of the Tor Browser Bundle, built from source";
+ longDescription = ''
+ Tor Browser Bundle is a bundle of the Tor daemon, Tor Browser (heavily patched version of
+ Firefox), several essential extensions for Tor Browser, and some tools that glue those
+ together with a convenient UI.
+
+ `tor-browser-bundle-bin` package is the official version built by torproject.org patched with
+ `patchelf` to work under nix and with bundled scripts adapted to the read-only nature of
+ the `/nix/store`.
+
+ `tor-browser-bundle` package is the version built completely from source. It reuses the `tor`
+ package for the tor daemon, `firefoxPackages.tor-browser` package for the tor-browser, and
+ builds all the extensions from source.
+
+ Note that `tor-browser-bundle` package is not only built from source, but also bundles Tor
+ Browser differently from the official `tor-browser-bundle-bin` implementation. The official
+ Tor Browser is not a normal UNIX program and is heavily patched for its use in the Tor Browser
+ Bundle (which `tor-browser-bundle-bin` package then has to work around for the read-only
+ /nix/store). Meanwhile, `firefoxPackages.tor-browser` reverts all those patches, allowing
+ `firefoxPackages.tor-browser` to be used independently of the bundle, and then implements what
+ `tor-browser-bundle` needs for the bundling using a much simpler patch. See the
+ longDescription and expression of the `firefoxPackages.tor-browser` package for more info.
+ '';
homepage = https://torproject.org/;
license = licenses.free;
platforms = [ "x86_64-linux" ];
diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix
index 6e2089f99352ae8db012dafed2e605712b1230f1..8cff2494bf8fe6ca5f2a02fee62afd699548d01d 100644
--- a/pkgs/applications/networking/cluster/mesos/default.nix
+++ b/pkgs/applications/networking/cluster/mesos/default.nix
@@ -4,6 +4,7 @@
, leveldb, glog, perf, utillinux, libnl, iproute, openssl, libevent
, ethtool, coreutils, which, iptables, maven
, bash, autoreconfHook
+, utf8proc, lz4
, withJava ? !stdenv.isDarwin
}:
@@ -50,6 +51,7 @@ in stdenv.mkDerivation rec {
makeWrapper curl sasl
python wrapPython boto setuptools leveldb
subversion apr glog openssl libevent
+ utf8proc lz4
] ++ lib.optionals stdenv.isLinux [
libnl
] ++ lib.optionals withJava [
diff --git a/pkgs/applications/networking/cluster/minikube/default.nix b/pkgs/applications/networking/cluster/minikube/default.nix
index b674f1f645808d766b544c6e0c47adac5a40c34e..37431b0fbc44038b44790773c8f75e01b08ee6b6 100644
--- a/pkgs/applications/networking/cluster/minikube/default.nix
+++ b/pkgs/applications/networking/cluster/minikube/default.nix
@@ -1,5 +1,5 @@
{ stdenv, buildGoPackage, fetchFromGitHub, go-bindata, libvirt, qemu
-, gpgme, makeWrapper, hostPlatform, vmnet, python
+, gpgme, makeWrapper, vmnet, python
, docker-machine-kvm, docker-machine-kvm2
, extraDrivers ? []
}:
@@ -25,8 +25,8 @@ in buildGoPackage rec {
sha256 = "0c36rzsdzxf9q6l4hl506bsd4qwmw033i0k1xhqszv9agg7qjlmm";
};
- buildInputs = [ go-bindata makeWrapper gpgme ] ++ stdenv.lib.optional hostPlatform.isDarwin vmnet;
- subPackages = [ "cmd/minikube" ] ++ stdenv.lib.optional hostPlatform.isDarwin "cmd/drivers/hyperkit";
+ buildInputs = [ go-bindata makeWrapper gpgme ] ++ stdenv.lib.optional stdenv.hostPlatform.isDarwin vmnet;
+ subPackages = [ "cmd/minikube" ] ++ stdenv.lib.optional stdenv.hostPlatform.isDarwin "cmd/drivers/hyperkit";
preBuild = ''
pushd go/src/${goPackagePath} >/dev/null
@@ -56,7 +56,7 @@ in buildGoPackage rec {
postFixup = ''
wrapProgram $bin/bin/${pname} --prefix PATH : $bin/bin:${stdenv.lib.makeBinPath binPath}
- '' + stdenv.lib.optionalString hostPlatform.isDarwin ''
+ '' + stdenv.lib.optionalString stdenv.hostPlatform.isDarwin ''
mv $bin/bin/hyperkit $bin/bin/docker-machine-driver-hyperkit
'';
diff --git a/pkgs/applications/networking/corebird/default.nix b/pkgs/applications/networking/corebird/default.nix
index 56947d6650e480bc9db450c52810ec590b30fe4f..5dd4cbb52c2a32601f75103d4530789e2fed25e8 100644
--- a/pkgs/applications/networking/corebird/default.nix
+++ b/pkgs/applications/networking/corebird/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, glib, gtk3, json-glib, sqlite, libsoup, gettext, vala_0_40
, meson, ninja, pkgconfig, gnome3, gst_all_1, wrapGAppsHook, gobjectIntrospection
-, glib-networking }:
+, glib-networking, python3 }:
stdenv.mkDerivation rec {
version = "1.7.4";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- meson ninja vala_0_40 pkgconfig wrapGAppsHook
+ meson ninja vala_0_40 pkgconfig wrapGAppsHook python3
gobjectIntrospection # for setup hook
];
diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix
index 3450ad720486c5fcb60f5601a6db055104cb470e..047ad734bd40b640f23aec5bd97ca494444c27da 100644
--- a/pkgs/applications/networking/dropbox/default.nix
+++ b/pkgs/applications/networking/dropbox/default.nix
@@ -2,7 +2,7 @@
let platforms = [ "i686-linux" "x86_64-linux" ]; in
-assert lib.elem stdenv.system platforms;
+assert lib.elem stdenv.hostPlatform.system platforms;
# Dropbox client to bootstrap installation.
# The client is self-updating, so the actual version may be newer.
@@ -12,7 +12,7 @@ let
arch = {
"x86_64-linux" = "x86_64";
"i686-linux" = "x86";
- }.${stdenv.system};
+ }.${stdenv.hostPlatform.system};
installer = "https://clientupdates.dropboxstatic.com/dbx-releng/client/dropbox-lnx.${arch}-${version}.tar.gz";
in
diff --git a/pkgs/applications/networking/esniper/default.nix b/pkgs/applications/networking/esniper/default.nix
index a7d10adc0a75d33d3da5836d600d8250fe28a37a..ca4d8f2f49fe8803c6ed35157cacf40dca4d6b67 100644
--- a/pkgs/applications/networking/esniper/default.nix
+++ b/pkgs/applications/networking/esniper/default.nix
@@ -1,14 +1,12 @@
-{ stdenv, fetchFromGitHub, openssl, curl, coreutils, gawk, bash, which }:
+{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
stdenv.mkDerivation rec {
name = "esniper-2.35.0";
- src = fetchFromGitHub {
- owner = "yhfudev";
- repo = "esniper";
- rev = "c95140d376db3c991300a7462e6c172b0ccf3eb5";
- sha256 = "1dfb5hmcrvm3yg9ask362c6s5ylxs21szw23dm737a94br37j890";
- };
+ src = fetchurl {
+ url = "mirror://sourceforge/esniper/${stdenv.lib.replaceStrings ["."] ["-"] name}.tgz";
+ sha256 = "04iwjb42lw90c03125bjdpnm0fp78dmwf2j35r7mah0nwcrlagd9";
+ };
buildInputs = [ openssl curl ];
diff --git a/pkgs/applications/networking/feedreaders/feedreader/default.nix b/pkgs/applications/networking/feedreaders/feedreader/default.nix
index d2991c3ba1c9e5c4c2942e7510455f09b0f27c86..158b02cff5b9837c1c70cbf74cd26e12629432e3 100644
--- a/pkgs/applications/networking/feedreaders/feedreader/default.nix
+++ b/pkgs/applications/networking/feedreaders/feedreader/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, vala_0_40, gettext
+{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, vala_0_40, gettext, python3
, appstream-glib, desktop-file-utils, glibcLocales, wrapGAppsHook
, curl, glib, gnome3, gst_all_1, json-glib, libnotify, libsecret, sqlite
}:
@@ -18,7 +18,7 @@ in stdenv.mkDerivation {
nativeBuildInputs = [
meson ninja pkgconfig vala_0_40 gettext appstream-glib desktop-file-utils
- glibcLocales wrapGAppsHook
+ python3 glibcLocales wrapGAppsHook
];
buildInputs = [
diff --git a/pkgs/applications/networking/firehol/default.nix b/pkgs/applications/networking/firehol/default.nix
index 9efe20b3ee95ec8bbfaa8c29569bd2e9012ff242..335f393bc0773bf47571fcd085bb08eb02ff07b7 100644
--- a/pkgs/applications/networking/firehol/default.nix
+++ b/pkgs/applications/networking/firehol/default.nix
@@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
name = "firehol-${version}";
- version = "3.1.5";
+ version = "3.1.6";
src = fetchFromGitHub {
owner = "firehol";
repo = "firehol";
rev = "v${version}";
- sha256 = "15cy1zxfpprma2zkmhj61zzhmw1pfnyhln7pca5lzvr1ifn2d0y0";
+ sha256 = "0l7sjpsb300kqv21hawd26a7jszlmafplacpn5lfj64m4yip93fd";
};
patches = [
diff --git a/pkgs/applications/networking/flexget/default.nix b/pkgs/applications/networking/flexget/default.nix
index 87c7bddab6fa6fd1772ca32312cd377675c511e3..53ee46e2060664c2cf2fa69b9755e514ffebdbbc 100644
--- a/pkgs/applications/networking/flexget/default.nix
+++ b/pkgs/applications/networking/flexget/default.nix
@@ -36,11 +36,11 @@ with python'.pkgs;
buildPythonApplication rec {
pname = "FlexGet";
- version = "2.14.9";
+ version = "2.14.18";
src = fetchPypi {
inherit pname version;
- sha256 = "1a8nxfr0rzwwd7b0nxr7zmw04ygbqvnzbi4w4nw2w8xiy46zid3q";
+ sha256 = "1pyvm1d23qy71rg7fzxcal8978kni7sn09zw4s4dsq56g8w80ay9";
};
postPatch = ''
diff --git a/pkgs/applications/networking/gopher/gopherclient/default.nix b/pkgs/applications/networking/gopher/gopherclient/default.nix
index b233ca4ab475de3cb76b98b17251d15357586024..d36533fc9e5e639309ccb0f22b106d2cc6b6f1a8 100644
--- a/pkgs/applications/networking/gopher/gopherclient/default.nix
+++ b/pkgs/applications/networking/gopher/gopherclient/default.nix
@@ -40,5 +40,6 @@ buildGoPackage rec {
license = licenses.mit;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
+ broken = true;
};
}
diff --git a/pkgs/applications/networking/ids/bro/default.nix b/pkgs/applications/networking/ids/bro/default.nix
index 5e79517a5512abb7e4928d845697b3140bfa1049..f90457ba9379250805a9498134bdef9d6aa87f95 100644
--- a/pkgs/applications/networking/ids/bro/default.nix
+++ b/pkgs/applications/networking/ids/bro/default.nix
@@ -2,11 +2,11 @@
, geoip, gperftools, python, swig }:
stdenv.mkDerivation rec {
- name = "bro-2.5.4";
+ name = "bro-2.5.5";
src = fetchurl {
url = "https://www.bro.org/downloads/${name}.tar.gz";
- sha256 = "07sz1i4ly30257677b8vfrbsvxhz2awijyzn5ihg4m567x1ymnl0";
+ sha256 = "1kvkiq8jjsqryry9jd4vw45pbfb46jly988mq62mv4sd1fqsxwhq";
};
nativeBuildInputs = [ cmake flex bison file ];
diff --git a/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix b/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix
index 9ec9a3451befd0a7edeba1835c6841b807c7104a..163f0ba3f4972a7e444c7dc11b01a5fb2f36374a 100644
--- a/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix
+++ b/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, boost }:
+{ stdenv, fetchFromGitHub, cmake, boost166 }:
stdenv.mkDerivation rec {
name = "SkypeExport-${version}";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake ];
- buildInputs = [ boost ];
+ buildInputs = [ boost166 ];
preConfigure = "cd src/SkypeExport/_gccbuild/linux";
installPhase = "install -Dt $out/bin SkypeExport";
diff --git a/pkgs/applications/networking/instant-messengers/franz/default.nix b/pkgs/applications/networking/instant-messengers/franz/default.nix
index b253e41ae7d856ac380b904c8d88b9e30f7bef69..2f3870d7899462c5ce8a04122ba94d08f295ae71 100644
--- a/pkgs/applications/networking/instant-messengers/franz/default.nix
+++ b/pkgs/applications/networking/instant-messengers/franz/default.nix
@@ -3,7 +3,7 @@
, gnome2, dbus, nss, nspr, alsaLib, cups, expat, udev, libnotify, xdg_utils }:
let
- bits = if stdenv.system == "x86_64-linux" then "x64"
+ bits = if stdenv.hostPlatform.system == "x86_64-linux" then "x64"
else "ia32";
version = "4.0.4";
diff --git a/pkgs/applications/networking/instant-messengers/mattermost-desktop/default.nix b/pkgs/applications/networking/instant-messengers/mattermost-desktop/default.nix
index a9ce8a96f9700e87036a7c26f27d32a7d119860c..109893850de160aaad8327526b72bd7c2ac96e69 100644
--- a/pkgs/applications/networking/instant-messengers/mattermost-desktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/mattermost-desktop/default.nix
@@ -41,18 +41,18 @@ in
version = "4.1.2";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://releases.mattermost.com/desktop/${version}/${name}-linux-x64.tar.gz";
sha256 = "16dn6870bs1nfl2082ym9gwvmqb3i5sli48qprap80p7riph6k9s";
}
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "https://releases.mattermost.com/desktop/${version}/${name}-linux-ia32.tar.gz";
sha256 = "145zb1l37fa2slfrrlprlwzcc5km3plxs374yhgix25mlg2afkqr";
}
else
- throw "Mattermost-Desktop is not currently supported on ${stdenv.system}";
+ throw "Mattermost-Desktop is not currently supported on ${stdenv.hostPlatform.system}";
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-matrix/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-matrix/default.nix
index a6d893fd95a47d84f5f3868b07472b4474ce5ac1..d4a26a266c3075e5b34122585c99811d4cd4d57c 100644
--- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-matrix/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-matrix/default.nix
@@ -1,30 +1,32 @@
-{ stdenv, fetchgit, pkgconfig, pidgin, json-glib, glib, http-parser } :
+{ stdenv, fetchgit, pkgconfig, pidgin, json-glib, glib, http-parser, sqlite, olm, libgcrypt } :
let
- version = "2016-07-11";
+ version = "2018-08-03";
in
stdenv.mkDerivation rec {
name = "purple-matrix-unstable-${version}";
src = fetchgit {
url = "https://github.com/matrix-org/purple-matrix";
- rev = "f9d36198a57de1cd1740a3ae11c2ad59b03b724a";
- sha256 = "1mmyvc70gslniphmcpk8sfl6ylik6dnprqghx4n47gsj1sb1cy00";
+ rev = "5a7166a3f54f85793c6b60662f8d12196aeaaeb0";
+ sha256 = "0ph0s24b37d1c50p8zbzgf4q2xns43a8v6vk85iz633wdd72zsa0";
};
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ pidgin json-glib glib http-parser ];
+ buildInputs = [ pidgin json-glib glib http-parser sqlite olm libgcrypt ];
- installPhase = ''
- install -Dm755 -t $out/lib/pidgin/ libmatrix.so
- for size in 16 22 48; do
- install -TDm644 matrix-"$size"px.png $out/pixmaps/pidgin/protocols/$size/matrix.png
- done
- '';
+ hardeningDisable = [ "fortify" ]; # upstream compiles with -O0
- meta = {
+ makeFlags = [
+ "DESTDIR=$(out)"
+ "PLUGIN_DIR_PURPLE=/lib/pidgin/"
+ "DATA_ROOT_DIR_PURPLE=/share"
+ ];
+
+ meta = with stdenv.lib; {
homepage = https://github.com/matrix-org/purple-matrix;
description = "Matrix support for Pidgin / libpurple";
- license = stdenv.lib.licenses.gpl2;
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ symphorien ];
};
}
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/tox-prpl/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/tox-prpl/default.nix
index 3997980bed414d9bac4c0c3cabe4541fb450fef0..6d75ba40ce013f5ff8ca10e59383616357344369 100644
--- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/tox-prpl/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/tox-prpl/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
- homepage = http://tox.dhs.org/;
+ homepage = https://github.com/jin-eld/tox-prpl;
description = "Tox plugin for Pidgin / libpurple";
license = licenses.gpl3;
platforms = platforms.linux;
diff --git a/pkgs/applications/networking/instant-messengers/psi-plus/default.nix b/pkgs/applications/networking/instant-messengers/psi-plus/default.nix
index 7c6f33935dc0c257d138e19f6691dc418f3a91cb..0fdd8dfb4bd3c820bb713389687fb607741b954c 100644
--- a/pkgs/applications/networking/instant-messengers/psi-plus/default.nix
+++ b/pkgs/applications/networking/instant-messengers/psi-plus/default.nix
@@ -1,24 +1,24 @@
{ stdenv, fetchFromGitHub, cmake
, qt5, libidn, qca2-qt5, libXScrnSaver, hunspell
-, libgcrypt, libotr, html-tidy, libgpgerror
+, libgcrypt, libotr, html-tidy, libgpgerror, libsignal-protocol-c
}:
stdenv.mkDerivation rec {
name = "psi-plus-${version}";
- version = "1.2.235";
+ version = "1.3.410";
src = fetchFromGitHub {
owner = "psi-plus";
repo = "psi-plus-snapshots";
rev = "${version}";
- sha256 = "0rc65gs6m3jxg407r99kikdylvrar5mq7x5m66ma604yk5igwg47";
+ sha256 = "02m984z2dfmlx522q9x1z0aalvi2mi48s5ghhs80hr5afnfyc5w6";
};
resources = fetchFromGitHub {
owner = "psi-plus";
repo = "resources";
- rev = "8f5038380e1be884b04b5a1ad3cc3385e793f668";
- sha256 = "1b8a2aixg966fzjwp9hz51rc31imyvpx014mp2fsm47k8na4470d";
+ rev = "c0bfb8a025eeec82cd0a23a559e0aa3da15c3ec3";
+ sha256 = "1q7v01w085vk7ml6gwis7j409w6f5cplpm7c0ajs4i93c4j53xdf";
};
postUnpack = ''
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
buildInputs = [
qt5.qtbase qt5.qtmultimedia qt5.qtx11extras qt5.qttools qt5.qtwebkit
libidn qca2-qt5 libXScrnSaver hunspell
- libgcrypt libotr html-tidy libgpgerror
+ libgcrypt libotr html-tidy libgpgerror libsignal-protocol-c
];
enableParallelBuilding = true;
@@ -42,6 +42,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "XMPP (Jabber) client";
maintainers = with maintainers; [ orivej ];
+ license = licenses.gpl2;
platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/networking/instant-messengers/psi/default.nix b/pkgs/applications/networking/instant-messengers/psi/default.nix
index 37d9de8794e554e147f277814ac1d6bca72d8b70..daa9d04cfb53a329595bd50cd0fa47377624adfa 100644
--- a/pkgs/applications/networking/instant-messengers/psi/default.nix
+++ b/pkgs/applications/networking/instant-messengers/psi/default.nix
@@ -22,9 +22,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- meta = {
+ meta = with stdenv.lib; {
description = "Psi, an XMPP (Jabber) client";
- maintainers = [ stdenv.lib.maintainers.raskin ];
+ maintainers = [ maintainers.raskin ];
+ license = licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}
diff --git a/pkgs/applications/networking/instant-messengers/rambox/sencha/bare.nix b/pkgs/applications/networking/instant-messengers/rambox/sencha/bare.nix
index ca82f30e2d1f2ea03b944b3dad50f894a496cc66..af92462a2a4911329ab89321e188dac1092e1336 100644
--- a/pkgs/applications/networking/instant-messengers/rambox/sencha/bare.nix
+++ b/pkgs/applications/networking/instant-messengers/rambox/sencha/bare.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
inherit version;
name = "sencha-bare-${version}";
- src = srcs.${stdenv.system};
+ src = srcs.${stdenv.hostPlatform.system};
nativeBuildInputs = [ gzip which unzip ];
buildInputs = [ jdk ];
diff --git a/pkgs/applications/networking/instant-messengers/signal-desktop/beta.nix b/pkgs/applications/networking/instant-messengers/signal-desktop/beta.nix
deleted file mode 100644
index 7d6854460d635cdd8f920e37fd41a709df93702f..0000000000000000000000000000000000000000
--- a/pkgs/applications/networking/instant-messengers/signal-desktop/beta.nix
+++ /dev/null
@@ -1,92 +0,0 @@
-{ stdenv, lib, fetchurl, dpkg, gnome2, atk, cairo, gdk_pixbuf, glib, freetype,
-fontconfig, dbus, libX11, xorg, libXi, libXcursor, libXdamage, libXrandr,
-libXcomposite, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss,
-nspr, alsaLib, cups, expat, udev
-}:
-let
- rpath = lib.makeLibraryPath [
- alsaLib
- atk
- cairo
- cups
- dbus
- expat
- fontconfig
- freetype
- gdk_pixbuf
- glib
- gnome2.GConf
- gnome2.gtk
- gnome2.pango
- libX11
- libXScrnSaver
- libXcomposite
- libXcursor
- libXdamage
- libXext
- libXfixes
- libXi
- libXrandr
- libXrender
- libXtst
- nspr
- nss
- stdenv.cc.cc
- udev
- xorg.libxcb
- ];
-
-in
- stdenv.mkDerivation rec {
- name = "signal-desktop-${version}";
-
- version = "1.1.0-beta.5";
-
- src =
- if stdenv.system == "x86_64-linux" then
- fetchurl {
- url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop-beta/signal-desktop-beta_${version}_amd64.deb";
- sha256 = "1kllym2iazp9i5afrh0vmsqqlh5b8i6f929p5yhl8bl4zd17zwpx";
- }
- else
- throw "Signal for Desktop is not currently supported on ${stdenv.system}";
-
- phases = [ "unpackPhase" "installPhase" ];
- nativeBuildInputs = [ dpkg ];
- unpackPhase = "dpkg-deb -x $src .";
- installPhase = ''
- mkdir -p $out
- cp -R opt $out
- cp -R usr/share $out/share
-
- chmod -R g-w $out
-
- # Patch signal
- patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "${rpath}:$out/opt/Signal Beta" \
- "$out/opt/Signal Beta/signal-desktop-beta"
-
- # Symlink to bin
- mkdir -p $out/bin
- ln -s "$out/opt/Signal Beta/signal-desktop-beta" $out/bin/signal-desktop-beta
-
- # Fix the desktop link
- substituteInPlace $out/share/applications/signal-desktop-beta.desktop \
- --replace "/opt/Signal Beta/signal-desktop-beta" $out/bin/signal-desktop-beta
- '';
-
- meta = {
- description = "Signal Private Messenger for the Desktop (Beta version)";
- homepage = https://signal.org/;
- license = lib.licenses.gpl3;
- maintainers = with lib.maintainers; [ ixmatus benley ];
- platforms = [
- "x86_64-linux"
- ];
- # Marked as broken on 2018-04-17. Reason: The most recent version is
- # 1.8.0-beta.1, while this is still 1.1.0-beta.5 (2017-12-09). The stable
- # package (signal-desktop) should be used instead (currently at version
- # 1.7.1, i.e. up-to-date).
- broken = true;
- };
- }
diff --git a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
index 9fe03b274cff7f332ee813900a2cb20160c7e87e..eaa9103a7b64c42af29c07d8bc24a6435cb917e9 100644
--- a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
+++ b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
@@ -6,7 +6,7 @@ let
# Please keep the version x.y.0.z and do not update to x.y.76.z because the
# source of the latter disappears much faster.
- version = "8.24.0.2";
+ version = "8.28.0.41";
rpath = stdenv.lib.makeLibraryPath [
alsaLib
@@ -53,13 +53,13 @@ let
] + ":${stdenv.cc.cc.lib}/lib64";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb";
- sha256 = "079bv0wilwwd9gqykcyfs4bj8za140788dxi058k4275h1jlvrww";
+ sha256 = "1kydf71qbz35dx4674h3nxfx8a88k620217906i54ic4qq2mgy2x";
}
else
- throw "Skype for linux is not supported on ${stdenv.system}";
+ throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}";
in stdenv.mkDerivation {
name = "skypeforlinux-${version}";
diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix
index bcf887808750907a801b3abce580b53df7fe32cb..af2030a20b8a157f61b915a8fe1343c821e191e6 100644
--- a/pkgs/applications/networking/instant-messengers/slack/default.nix
+++ b/pkgs/applications/networking/instant-messengers/slack/default.nix
@@ -44,13 +44,13 @@ let
] + ":${stdenv.cc.cc.lib}/lib64";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://downloads.slack-edge.com/linux_releases/slack-desktop-${version}-amd64.deb";
sha256 = "095dpkwvvnwlxsglyg6wi9126wpalzi736b6g6j3bd6d93z9afah";
}
else
- throw "Slack is not supported on ${stdenv.system}";
+ throw "Slack is not supported on ${stdenv.hostPlatform.system}";
in stdenv.mkDerivation {
name = "slack-${version}";
diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
index e1ced2df9f37308fcacf8dcdcdfbc23ef0ea7750..5d8e2c52c21858cb65e22df9e3097b81adf9e48c 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
@@ -4,8 +4,8 @@ let
mkTelegram = args: qt5.callPackage (import ./generic.nix args) { };
stableVersion = {
stable = true;
- version = "1.3.10";
- sha256Hash = "0i1lzks8pf627658w6p7dz87d6cl4g98031qm166npkc40f89bpr";
+ version = "1.3.14";
+ sha256Hash = "107m9iqw78b691pcq65s3m3zhamn8slh0wiyipwbbp0w13rqna3v";
# svn log svn://svn.archlinux.org/community/telegram-desktop/trunk
archPatchesRevision = "359861";
archPatchesHash = "15xybfs9k6dww747if8z6m9sh7anvqi76zsx2gxyna2j1z36i0r0";
@@ -14,7 +14,5 @@ in {
stable = mkTelegram stableVersion;
preview = mkTelegram (stableVersion // {
stable = false;
- version = "1.3.12";
- sha256Hash = "00z4ljs4fvbk7sf8wv1v50kln26gv8q12x6q41ai9gfzkvq5f69a";
});
}
diff --git a/pkgs/applications/networking/instant-messengers/weechat-matrix-bridge/default.nix b/pkgs/applications/networking/instant-messengers/weechat-matrix-bridge/default.nix
index 85faebf95a3dd8aad6b2bc133c7f88c6693fb6ed..4a8ffaaa261a1d4acb2ecaa901dd9ceaec85f605 100644
--- a/pkgs/applications/networking/instant-messengers/weechat-matrix-bridge/default.nix
+++ b/pkgs/applications/networking/instant-messengers/weechat-matrix-bridge/default.nix
@@ -1,12 +1,12 @@
{ stdenv, curl, fetchFromGitHub, cjson, olm, luaffi }:
stdenv.mkDerivation {
- name = "weechat-matrix-bridge-2018-01-10";
+ name = "weechat-matrix-bridge-2018-05-29";
src = fetchFromGitHub {
owner = "torhve";
repo = "weechat-matrix-protocol-script";
- rev = "a8e4ce04665c09ee7f24d6b319cd85cfb56dfbd7";
- sha256 = "0822xcxvwanwm8qbzqhn3f1m6hhxs29pyf8lnv6v29bl8136vcq3";
+ rev = "ace3fefc0e35a627f8a528032df2e3111e41eb1b";
+ sha256 = "1snf8vn5n9wzrnqnvdrcli4199s5p114jbjlgrj5c27i53173wqw";
};
patches = [
diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
index 0745836271ae5922cef32429364c7748ad76c1d4..0985f139238eee9b0ed3eae431d1f7867431a3be 100644
--- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
@@ -44,12 +44,12 @@ let
plat = {
"i686-linux" = "i386";
"x86_64-linux" = "amd64";
- }.${stdenv.system};
+ }.${stdenv.hostPlatform.system};
sha256 = {
"i686-linux" = "071ddh2d8wmiybwafwyb97962zj358l0fq7g2r44231653sgybvq";
"x86_64-linux" = "0qp9ms94smnm7k47b0n0jdzvnm1b7gj25hyinsfc6lghrb6jqw3r";
- }.${stdenv.system};
+ }.${stdenv.hostPlatform.system};
in
stdenv.mkDerivation rec {
diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
index afc6f03edb4a3c42e0936b2a827a0dc6b729a0f5..882215c50c5cac5e9af49550f33e56ea18a074f6 100644
--- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
+++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, system, makeWrapper, makeDesktopItem, autoPatchelfHook, env
+{ stdenv, fetchurl, makeWrapper, makeDesktopItem, autoPatchelfHook, env
# Dynamic libraries
, dbus, glib, libGL, libX11, libXfixes, libuuid, libxcb, qtbase, qtdeclarative
, qtimageformats, qtlocation, qtquickcontrols, qtquickcontrols2, qtscript, qtsvg
@@ -31,7 +31,7 @@ let
in stdenv.mkDerivation {
name = "zoom-us-${version}";
- src = srcs.${system};
+ src = srcs.${stdenv.hostPlatform.system};
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
diff --git a/pkgs/applications/networking/insync/default.nix b/pkgs/applications/networking/insync/default.nix
index e718dc6562fb3f494f3d695cb44d25380cf0f152..fee19de0e8d77c500adea51bdb8dac4e5ed20426 100644
--- a/pkgs/applications/networking/insync/default.nix
+++ b/pkgs/applications/networking/insync/default.nix
@@ -4,13 +4,13 @@ stdenv.mkDerivation rec {
name = "insync-${version}";
version = "1.4.5.37069";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "http://s.insynchq.com/builds/insync-portable_${version}_amd64.tar.bz2";
sha256 = "0mkqgpq4isngkj20c0ygmxf4cj975d446svhwvl3cqdrjkjm1ybd";
}
else
- throw "${name} is not supported on ${stdenv.system}";
+ throw "${name} is not supported on ${stdenv.hostPlatform.system}";
buildInputs = [ makeWrapper ];
diff --git a/pkgs/applications/networking/ipfs-cluster/default.nix b/pkgs/applications/networking/ipfs-cluster/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..33b9f6151399811d3a463f352aa71515ceb8c750
--- /dev/null
+++ b/pkgs/applications/networking/ipfs-cluster/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, buildGoPackage, fetchFromGitHub, fetchgx, gx-go }:
+
+buildGoPackage rec {
+ name = "ipfs-cluster-${version}";
+ version = "0.5.0";
+ rev = "v${version}";
+
+ goPackagePath = "github.com/ipfs/ipfs-cluster";
+
+ extraSrcPaths = [
+ (fetchgx {
+ inherit name src;
+ sha256 = "0jwz3kd07i5fs0sxds80j8d338skhgxgxra377qxsk0cr2hhj2vm";
+ })
+ ];
+
+ src = fetchFromGitHub {
+ owner = "ipfs";
+ repo = "ipfs-cluster";
+ inherit rev;
+ sha256 = "132whjyplcifq8747hcdrgbc0amhp618dg049jq5nyslcxfgdypm";
+ };
+
+ nativeBuildInputs = [ gx-go ];
+
+ preBuild = ''
+ # fetchgx stores packages by their ipfs hash
+ # this will rewrite github.com/ imports to gx/ipfs/
+ cd go/src/${goPackagePath}
+ gx-go rewrite
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Allocate, replicate, and track Pins across a cluster of IPFS daemons";
+ homepage = https://cluster.ipfs.io/;
+ license = licenses.mit;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ jglukasik ];
+ };
+}
+
diff --git a/pkgs/applications/networking/irc/konversation/default.nix b/pkgs/applications/networking/irc/konversation/default.nix
index c41b6116b29d9fe47e79a7d914687ddd274cced6..ccee78a64da684f80ed4e1bb54c1112631f1d8bb 100644
--- a/pkgs/applications/networking/irc/konversation/default.nix
+++ b/pkgs/applications/networking/irc/konversation/default.nix
@@ -30,13 +30,13 @@
let
pname = "konversation";
- version = "1.7.4";
+ version = "1.7.5";
in mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
- sha256 = "0y4rj4fcl1wsi3y1fhnzad9nf4llwrnipfm9mfm55kqnx1zmpvqp";
+ sha256 = "0h098yhlp36ls6pdvs2r93ig8dv4fys62m0h6wxccprb0qrpbgv0";
};
buildInputs = [
@@ -70,13 +70,6 @@ in mkDerivation rec {
kdoctools
];
- patches = [
- (fetchpatch {
- url = "https://cgit.kde.org/konversation.git/patch/?id=20018b3d0798421c9cb8a9d983e5a5b34bd88e8d";
- sha256 = "0y5m5zimfhc0d1xnkzs05c8ig11lhwdn04fk76vi7966hx8wggnn";
- })
- ];
-
meta = {
description = "Integrated IRC client for KDE";
license = with lib.licenses; [ gpl2 ];
diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
index 057c051c62596e73f9d2318d0995617fb31bd203..47cb83dee7667de4c8d98adb6e204046b268f235 100644
--- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix
+++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
@@ -3,7 +3,6 @@
, libarchive, libcanberra-gtk2, libetpan, libnotify, libsoup, libxml2, networkmanager
, openldap, perl, pkgconfig, poppler, python, shared-mime-info, webkitgtk24x-gtk2
, glib-networking, gsettings-desktop-schemas, libSM, libytnef
-
# Build options
# TODO: A flag to build the manual.
# TODO: Plugins that complain about their missing dependencies, even when
@@ -32,11 +31,11 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "claws-mail-${version}";
- version = "3.16.0";
+ version = "3.17.1";
src = fetchurl {
url = "http://www.claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz";
- sha256 = "1awpr3s7n8bq8p3w10a4j6lg5bizjxyiqp4rqzc2j8cn7lyi64n2";
+ sha256 = "1wknxbwyzm5xjh3cqmddcxmvp1rkp301qga5n5rgfi7vcd0myyvm";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/applications/networking/mailreaders/mblaze/default.nix b/pkgs/applications/networking/mailreaders/mblaze/default.nix
index ff4507991e4043c18389ca67ae37ce8ee68240da..86f945f369a09814c01246c19f910ab14c1d8691 100644
--- a/pkgs/applications/networking/mailreaders/mblaze/default.nix
+++ b/pkgs/applications/networking/mailreaders/mblaze/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
name = "mblaze-${version}";
- version = "0.3.2";
+ version = "0.4";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
owner = "chneukirchen";
repo = "mblaze";
rev = "v${version}";
- sha256 = "0sgzcf7lpgdix7x4p6wp1jjv9h62rrkca6325c7a9j8r0dbg1fdg";
+ sha256 = "15ac213a17mxni3bqvzxhiln65s4almrlmv72bbcgi7cymb303rp";
};
makeFlags = "PREFIX=$(out)";
diff --git a/pkgs/applications/networking/mailreaders/nylas-mail-bin/default.nix b/pkgs/applications/networking/mailreaders/nylas-mail-bin/default.nix
index 3376eebe5dc93de2301c5ada91fca2efd16406ef..3d8673a87a1b727edb2055b7e4899cfcfff6d5aa 100644
--- a/pkgs/applications/networking/mailreaders/nylas-mail-bin/default.nix
+++ b/pkgs/applications/networking/mailreaders/nylas-mail-bin/default.nix
@@ -33,13 +33,13 @@ stdenv.mkDerivation rec {
subVersion = "fec7941";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://edgehill.s3.amazonaws.com/${version}-${subVersion}/linux-deb/x64/NylasMail.deb";
sha256 = "40060aa1dc3b5187b8ed4a07b9de3427e3c5a291df98c2c82395647fa2aa4ada";
}
else
- throw "NylasMail is not supported on ${stdenv.system}";
+ throw "NylasMail is not supported on ${stdenv.hostPlatform.system}";
propagatedBuildInputs = [
alsaLib
diff --git a/pkgs/applications/networking/mailreaders/sup/default.nix b/pkgs/applications/networking/mailreaders/sup/default.nix
index 06777916b92af0ca906bc4e5eae1db2d85dcaa0c..c803db6dcbc1f2952c052e21aad9c9d2f1175e67 100644
--- a/pkgs/applications/networking/mailreaders/sup/default.nix
+++ b/pkgs/applications/networking/mailreaders/sup/default.nix
@@ -15,7 +15,7 @@ bundlerEnv {
meta = with lib; {
description = "A curses threads-with-tags style email client";
- homepage = http://supmua.org;
+ homepage = http://sup-heliotrope.github.io;
license = licenses.gpl2;
maintainers = with maintainers; [ cstrahan lovek323 ];
platforms = platforms.unix;
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
index b9b553f9447295b5f72ae524c3eddb55726e0561..cf68a26861945df760adf442c69896b3641bd642 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
@@ -47,7 +47,7 @@
with (import ./release_sources.nix);
let
- arch = if stdenv.system == "i686-linux"
+ arch = if stdenv.hostPlatform.system == "i686-linux"
then "linux-i686"
else "linux-x86_64";
diff --git a/pkgs/applications/networking/newsreaders/pan/default.nix b/pkgs/applications/networking/newsreaders/pan/default.nix
index 4a1940ae654546353c351bfec565cf2768ba44e6..9d51a76f5360512a414f242b7bd6a250fe3f553e 100644
--- a/pkgs/applications/networking/newsreaders/pan/default.nix
+++ b/pkgs/applications/networking/newsreaders/pan/default.nix
@@ -2,7 +2,7 @@
, stdenv, fetchurl, pkgconfig, gtk3, gtkspell3 ? null
, perl, gmime2, gettext, intltool, itstool, libxml2, dbus-glib, libnotify, gnutls
, makeWrapper, gnupg
-, gnomeSupport ? true, libgnome-keyring3
+, gnomeSupport ? true, gnome3, libsecret
}:
assert spellChecking -> gtkspell3 != null;
@@ -17,10 +17,10 @@ stdenv.mkDerivation {
sha256 = "1b4wamv33hprghcjk903bpvnd233yxyrm18qnh13alc8h1553nk8";
};
- nativeBuildInputs = [ pkgconfig makeWrapper ];
- buildInputs = [ gtk3 perl gmime2 gettext intltool itstool libxml2 dbus-glib libnotify gnutls ]
+ nativeBuildInputs = [ pkgconfig gettext intltool itstool libxml2 makeWrapper ];
+ buildInputs = [ gtk3 gmime2 libnotify gnutls ]
++ stdenv.lib.optional spellChecking gtkspell3
- ++ stdenv.lib.optional gnomeSupport libgnome-keyring3;
+ ++ stdenv.lib.optionals gnomeSupport [ libsecret gnome3.gcr ];
configureFlags = [
"--with-dbus"
diff --git a/pkgs/applications/networking/p2p/frostwire/default.nix b/pkgs/applications/networking/p2p/frostwire/default.nix
index 7b854fce6c5552a702ab9ea399e29b82d209fa25..40ff91e792b455b035dedac3cd61496cdfa6b34e 100644
--- a/pkgs/applications/networking/p2p/frostwire/default.nix
+++ b/pkgs/applications/networking/p2p/frostwire/default.nix
@@ -75,7 +75,7 @@ in stdenv.mkDerivation {
cp ${ { x86_64-darwin = "desktop/lib/native/*.dylib";
x86_64-linux = "desktop/lib/native/lib{jlibtorrent,SystemUtilities}.so";
i686-linux = "desktop/lib/native/lib{jlibtorrent,SystemUtilities}X86.so";
- }.${stdenv.system} or (throw "unsupported system ${stdenv.system}")
+ }.${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}")
} $out/lib
cp -dpR ${desktopItem}/share $out
diff --git a/pkgs/applications/networking/p2p/soulseekqt/default.nix b/pkgs/applications/networking/p2p/soulseekqt/default.nix
index 44e434aa8ee935af48aeff52ec95f8e7c8c73eb4..12ed680482f62190d901f47b6c4fe41e1ced12ef 100644
--- a/pkgs/applications/networking/p2p/soulseekqt/default.nix
+++ b/pkgs/applications/networking/p2p/soulseekqt/default.nix
@@ -37,7 +37,7 @@ in stdenv.mkDerivation rec {
name = "soulseekqt-${version}";
inherit version;
- src = srcs."${stdenv.system}" or (throw "unsupported system: ${stdenv.system}");
+ src = srcs."${stdenv.hostPlatform.system}" or (throw "unsupported system: ${stdenv.hostPlatform.system}");
dontBuild = true;
diff --git a/pkgs/applications/networking/p2p/zeronet/default.nix b/pkgs/applications/networking/p2p/zeronet/default.nix
index 8a8d1b33ca7345862148a08823c94dd05ff327b0..33acd103d8b4ad1238aba36385f05d4b413583b5 100644
--- a/pkgs/applications/networking/p2p/zeronet/default.nix
+++ b/pkgs/applications/networking/p2p/zeronet/default.nix
@@ -3,6 +3,7 @@
python2Packages.buildPythonApplication rec {
pname = "zeronet";
version = "0.6.2";
+ format = "other";
src = fetchFromGitHub {
owner = "HelloZeroNet";
@@ -12,9 +13,6 @@ python2Packages.buildPythonApplication rec {
};
propagatedBuildInputs = with python2Packages; [ msgpack gevent ];
-
- format = "other";
-
buildPhase = "${python2Packages.python.interpreter} -O -m compileall .";
installPhase = ''
@@ -22,14 +20,10 @@ python2Packages.buildPythonApplication rec {
cp -r plugins src tools *.py $out/share/
'';
- # Wrap the main executable and set the log and data dir to something out of
- # the store
postFixup = ''
makeWrapper "$out/share/zeronet.py" "$out/bin/zeronet" \
- --set PYTHONPATH "$PYTHONPATH" \
- --set PATH ${python2Packages.python}/bin \
- --add-flags "--log_dir \$HOME/.local/share/zeronet/logs" \
- --add-flags "--data_dir \$HOME/.local/share/zeronet"
+ --set PYTHONPATH "$PYTHONPATH" \
+ --set PATH ${python2Packages.python}/bin
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/networking/remote/anydesk/default.nix b/pkgs/applications/networking/remote/anydesk/default.nix
index 0f107936be6fcdaa6ce3cc162ef929fa0c940f1f..cb3814b55f19ce509935eb549e3ce5ccb41366d7 100644
--- a/pkgs/applications/networking/remote/anydesk/default.nix
+++ b/pkgs/applications/networking/remote/anydesk/default.nix
@@ -6,12 +6,12 @@ let
sha256 = {
"x86_64-linux" = "0g19sac4j3m1nf400vn6qcww7prqg2p4k4zsj74i109kk1396aa2";
"i686-linux" = "1dd4ai2pclav9g872xil3x67bxy32gvz9pb3w76383pcsdh5zh45";
- }."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
+ }."${stdenv.hostPlatform.system}" or (throw "system ${stdenv.hostPlatform.system} not supported");
arch = {
"x86_64-linux" = "amd64";
"i686-linux" = "i686";
- }."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
+ }."${stdenv.hostPlatform.system}" or (throw "system ${stdenv.hostPlatform.system} not supported");
description = "Desktop sharing application, providing remote support and online meetings";
diff --git a/pkgs/applications/networking/remote/putty/default.nix b/pkgs/applications/networking/remote/putty/default.nix
index e07bf7958f3f4c8079512444a7d468a3317bac7e..13613774b7c2dff387fc25782c59daa447695f95 100644
--- a/pkgs/applications/networking/remote/putty/default.nix
+++ b/pkgs/applications/networking/remote/putty/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, autoconf, automake, pkgconfig, libtool
+{ stdenv, lib, fetchurl, autoconf, automake, pkgconfig, libtool
, gtk2, halibut, ncurses, perl
-, hostPlatform, lib }:
+}:
stdenv.mkDerivation rec {
version = "0.70";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
sha256 = "1gmhwwj1y7b5hgkrkxpf4jddjpk9l5832zq5ibhsiicndsfs92mv";
};
- preConfigure = lib.optionalString hostPlatform.isUnix ''
+ preConfigure = lib.optionalString stdenv.hostPlatform.isUnix ''
perl mkfiles.pl
( cd doc ; make );
sed -e '/AM_PATH_GTK(/d' \
@@ -22,22 +22,23 @@ stdenv.mkDerivation rec {
-e '/AC_OUTPUT/iAM_PROG_AR' -i configure.ac
./mkauto.sh
cd unix
- '' + lib.optionalString hostPlatform.isWindows ''
+ '' + lib.optionalString stdenv.hostPlatform.isWindows ''
cd windows
'';
TOOLPATH = stdenv.cc.targetPrefix;
- makefile = if hostPlatform.isWindows then "Makefile.mgw" else null;
+ makefile = if stdenv.hostPlatform.isWindows then "Makefile.mgw" else null;
- installPhase = if hostPlatform.isWindows then ''
+ installPhase = if stdenv.hostPlatform.isWindows then ''
for exe in *.exe; do
install -D $exe $out/bin/$exe
done
'' else null;
nativeBuildInputs = [ autoconf automake halibut libtool perl pkgconfig ];
- buildInputs = []
- ++ lib.optionals hostPlatform.isUnix [ gtk2 ncurses ];
+ buildInputs = lib.optionals stdenv.hostPlatform.isUnix [
+ gtk2 ncurses
+ ];
enableParallelBuilding = true;
meta = with lib; {
diff --git a/pkgs/applications/networking/resilio-sync/default.nix b/pkgs/applications/networking/resilio-sync/default.nix
index 0db18e77bfa668e93df5ac07dde0ebca664b57b5..b59219d993660ea5b06e09f8032c54be6c66714d 100644
--- a/pkgs/applications/networking/resilio-sync/default.nix
+++ b/pkgs/applications/networking/resilio-sync/default.nix
@@ -4,7 +4,7 @@ let
arch = {
"x86_64-linux" = "x64";
"i686-linux" = "i386";
- }.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
+ }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ];
in stdenv.mkDerivation rec {
@@ -16,7 +16,7 @@ in stdenv.mkDerivation rec {
sha256 = {
"x86_64-linux" = "0041axi9carspkfaxvyirfvsa29zz55al01x90nh93nzxvpvywsz";
"i686-linux" = "1ar36lp4f6a1z9i82g3gpak4q4ny09faqxdd59q1pvfzq25ypdhs";
- }.${stdenv.system};
+ }.${stdenv.hostPlatform.system};
};
dontStrip = true; # Don't strip, otherwise patching the rpaths breaks
diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix
index 867768d9f9f136bd90735887c20edb817ceed944..f145d55daf385739d325c115b0e1721bbbd2850c 100644
--- a/pkgs/applications/networking/sniffers/wireshark/default.nix
+++ b/pkgs/applications/networking/sniffers/wireshark/default.nix
@@ -12,7 +12,7 @@ assert withQt -> !withGtk && qt5 != null;
with stdenv.lib;
let
- version = "2.6.2";
+ version = "2.6.3";
variant = if withGtk then "gtk" else if withQt then "qt" else "cli";
in stdenv.mkDerivation {
@@ -20,7 +20,7 @@ in stdenv.mkDerivation {
src = fetchurl {
url = "https://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz";
- sha256 = "153h6prxamv5a62f3pfadkry0y57696xrgxfy2gfy5xswdg8kcj9";
+ sha256 = "1v538h02y8avwy3cr11xz6wkyf9xd8qva4ng4sl9f2fw4skahn6i";
};
cmakeFlags = [
diff --git a/pkgs/applications/networking/spideroak/default.nix b/pkgs/applications/networking/spideroak/default.nix
index c1f3d62af73707b3a3e6152f238057fd50e96b3d..c07ad715afd2c70082b2984ab2275959f0311441 100644
--- a/pkgs/applications/networking/spideroak/default.nix
+++ b/pkgs/applications/networking/spideroak/default.nix
@@ -4,17 +4,17 @@
}:
let
- arch = if stdenv.system == "x86_64-linux" then "x64"
- else if stdenv.system == "i686-linux" then "x86"
- else throw "Spideroak client for: ${stdenv.system} not supported!";
+ arch = if stdenv.hostPlatform.system == "x86_64-linux" then "x64"
+ else if stdenv.hostPlatform.system == "i686-linux" then "x86"
+ else throw "Spideroak client for: ${stdenv.hostPlatform.system} not supported!";
- interpreter = if stdenv.system == "x86_64-linux" then "ld-linux-x86-64.so.2"
- else if stdenv.system == "i686-linux" then "ld-linux.so.2"
- else throw "Spideroak client for: ${stdenv.system} not supported!";
+ interpreter = if stdenv.hostPlatform.system == "x86_64-linux" then "ld-linux-x86-64.so.2"
+ else if stdenv.hostPlatform.system == "i686-linux" then "ld-linux.so.2"
+ else throw "Spideroak client for: ${stdenv.hostPlatform.system} not supported!";
- sha256 = if stdenv.system == "x86_64-linux" then "a88e5a8fe4a565ac500668bd53cf5784752d7c9253304ddce39ee7b01d078533"
- else if stdenv.system == "i686-linux" then "668f3b83a974a3877d16c8743c233a427ea0a44ab84b7f9aec19a2995db66c16"
- else throw "Spideroak client for: ${stdenv.system} not supported!";
+ sha256 = if stdenv.hostPlatform.system == "x86_64-linux" then "a88e5a8fe4a565ac500668bd53cf5784752d7c9253304ddce39ee7b01d078533"
+ else if stdenv.hostPlatform.system == "i686-linux" then "668f3b83a974a3877d16c8743c233a427ea0a44ab84b7f9aec19a2995db66c16"
+ else throw "Spideroak client for: ${stdenv.hostPlatform.system} not supported!";
ldpath = stdenv.lib.makeLibraryPath [
fontconfig freetype glib libICE libSM
diff --git a/pkgs/applications/networking/super-productivity/default.nix b/pkgs/applications/networking/super-productivity/default.nix
index 59872afaad938a62c062cc3c64aa85e492726a39..9bb4254c64a2ad8010a304e91f81384f28f4dcbd 100644
--- a/pkgs/applications/networking/super-productivity/default.nix
+++ b/pkgs/applications/networking/super-productivity/default.nix
@@ -44,13 +44,13 @@ let
] + ":${stdenv.cc.cc.lib}/lib64";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://github.com/johannesjo/super-productivity/releases/download/v${version}/superProductivity_${version}_amd64.deb";
sha256 = "0jfi0lfijnhij9jvkhxgyvq8m1jzaym8n1c7707fv3hjh1h0vxn1";
}
else
- throw "super-productivity is not supported on ${stdenv.system}";
+ throw "super-productivity is not supported on ${stdenv.hostPlatform.system}";
in stdenv.mkDerivation {
name = "super-productivity-${version}";
diff --git a/pkgs/applications/networking/sync/casync/default.nix b/pkgs/applications/networking/sync/casync/default.nix
index bea6a0780ed92d7f7c672990654ee356c46a37ad..8d9b941e26e449efd73c2bbb846923da29b33fd0 100644
--- a/pkgs/applications/networking/sync/casync/default.nix
+++ b/pkgs/applications/networking/sync/casync/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub
-, meson, ninja, pkgconfig, sphinx
+, meson, ninja, pkgconfig, python3, sphinx
, acl, curl, fuse, libselinux, udev, xz, zstd
, fuseSupport ? true
, selinuxSupport ? true
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optionals (fuseSupport) [ fuse ]
++ stdenv.lib.optionals (selinuxSupport) [ libselinux ]
++ stdenv.lib.optionals (udevSupport) [ udev ];
- nativeBuildInputs = [ meson ninja pkgconfig sphinx ];
+ nativeBuildInputs = [ meson ninja pkgconfig python3 sphinx ];
checkInputs = [ glibcLocales rsync ];
postPatch = ''
diff --git a/pkgs/applications/networking/sync/rclone/default.nix b/pkgs/applications/networking/sync/rclone/default.nix
index 337c166a79ac49ab59c62973b7c78723d74c69c0..54d612387ac4f02261742cb4bab8b3b082952e6f 100644
--- a/pkgs/applications/networking/sync/rclone/default.nix
+++ b/pkgs/applications/networking/sync/rclone/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "rclone-${version}";
- version = "1.42";
+ version = "1.43";
goPackagePath = "github.com/ncw/rclone";
@@ -10,7 +10,7 @@ buildGoPackage rec {
owner = "ncw";
repo = "rclone";
rev = "v${version}";
- sha256 = "0r85d45q0jdfwcrblq1rd698cw3h6mc9h4dmlhzl982zpkncijqj";
+ sha256 = "1khg5jsrjmnblv8zg0zqs1n0hmjv05pjj94m9d7jbp9d936lxsxx";
};
outputs = [ "bin" "out" "man" ];
diff --git a/pkgs/applications/networking/transporter/default.nix b/pkgs/applications/networking/transporter/default.nix
index d084461a9b2d7453deb49a427def481c43eac34d..55abd22b605c26f2c644016384cdf00c8e297f4a 100644
--- a/pkgs/applications/networking/transporter/default.nix
+++ b/pkgs/applications/networking/transporter/default.nix
@@ -5,6 +5,7 @@
, pkgconfig
, granite
, vala_0_40
+, python3
, gnome3
, libxml2
, gettext
@@ -37,6 +38,7 @@ in stdenv.mkDerivation rec {
ninja
pkgconfig
vala_0_40
+ python3
wrapGAppsHook
];
diff --git a/pkgs/applications/office/cb2bib/default.nix b/pkgs/applications/office/cb2bib/default.nix
index 1dd095e577e8d250f5aed17af773a554473f5c20..e4dc86ebd8db2c932af405cecfa7a78a7f2ce446 100644
--- a/pkgs/applications/office/cb2bib/default.nix
+++ b/pkgs/applications/office/cb2bib/default.nix
@@ -3,10 +3,10 @@
stdenv.mkDerivation rec {
name = pname + "-" + version;
pname = "cb2bib";
- version = "1.9.7";
+ version = "1.9.8";
src = fetchurl {
url = "https://www.molspaces.com/dl/progs/${name}.tar.gz";
- sha256 = "0gr8vmlz1ikw0jiwwac2ays20z26cdv3bjdx9m1nc450hl6m5s7s";
+ sha256 = "0fpa0znlabk0nrzgj4c0l6qbg8l16lp9d7lvb9ijv1y0ih9igf0f";
};
buildInputs = [ qtbase qtwebkit qtx11extras lzo libX11 ];
nativeBuildInputs = [ qmake ];
diff --git a/pkgs/applications/office/jameica/default.nix b/pkgs/applications/office/jameica/default.nix
index fdc6c58213a1437d67c8677f61eb9299840732ea..8d17ef2acaa4521faddb3537d1443c150b6303da 100644
--- a/pkgs/applications/office/jameica/default.nix
+++ b/pkgs/applications/office/jameica/default.nix
@@ -6,10 +6,10 @@ let
version = "${_version}-${_build}";
name = "jameica-${version}";
- swtSystem = if stdenv.system == "i686-linux" then "linux"
- else if stdenv.system == "x86_64-linux" then "linux64"
- else if stdenv.system == "x86_64-darwin" then "macos64"
- else throw "Unsupported system: ${stdenv.system}";
+ swtSystem = if stdenv.hostPlatform.system == "i686-linux" then "linux"
+ else if stdenv.hostPlatform.system == "x86_64-linux" then "linux64"
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then "macos64"
+ else throw "Unsupported system: ${stdenv.hostPlatform.system}";
desktopItem = makeDesktopItem {
name = "jameica";
diff --git a/pkgs/applications/office/keepnote/default.nix b/pkgs/applications/office/keepnote/default.nix
index bb2c6adbf3b49080433823047c982c6fd471ac33..2e0b3f3fed7dc6f8f863cb88a61cea21ca848756 100644
--- a/pkgs/applications/office/keepnote/default.nix
+++ b/pkgs/applications/office/keepnote/default.nix
@@ -16,7 +16,7 @@ python2Packages.buildPythonApplication {
meta = {
description = "Note taking application";
- homepage = http://rasm.ods.org/keepnote;
+ homepage = http://keepnote.org;
license = stdenv.lib.licenses.gpl2Plus;
};
}
diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix
index b2f063860032be32e22a70c457da7683abf66693..22c044d199a3bcc27ed53cdde76b5504996433cb 100644
--- a/pkgs/applications/office/libreoffice/default.nix
+++ b/pkgs/applications/office/libreoffice/default.nix
@@ -13,7 +13,7 @@
, librevenge, libe-book, libmwaw, glm, glew, gst_all_1
, gdb, commonsLogging, librdf_rasqal, wrapGAppsHook
, defaultIconTheme, glib, ncurses, epoxy, gpgme
-, langs ? [ "ca" "de" "en-GB" "en-US" "eo" "es" "fr" "hu" "it" "nl" "pl" "ru" "sl" ]
+, langs ? [ "ca" "cs" "de" "en-GB" "en-US" "eo" "es" "fr" "hu" "it" "nl" "pl" "ru" "sl" "zh-CN" ]
, withHelp ? true
, kdeIntegration ? false
}:
diff --git a/pkgs/applications/office/libreoffice/still.nix b/pkgs/applications/office/libreoffice/still.nix
index eb99cac8e9ec881cac2b751bf7db6ade6427bad2..1808eec8c2b1b4fafb0cea26aa6058a878ea2564 100644
--- a/pkgs/applications/office/libreoffice/still.nix
+++ b/pkgs/applications/office/libreoffice/still.nix
@@ -13,7 +13,7 @@
, librevenge, libe-book, libmwaw, glm, glew, gst_all_1
, gdb, commonsLogging, librdf_rasqal, wrapGAppsHook
, defaultIconTheme, glib, ncurses, epoxy, gpgme
-, langs ? [ "ca" "de" "en-GB" "en-US" "eo" "es" "fr" "hu" "it" "nl" "pl" "ru" "sl" ]
+, langs ? [ "ca" "cs" "de" "en-GB" "en-US" "eo" "es" "fr" "hu" "it" "nl" "pl" "ru" "sl" "zh-CN" ]
, withHelp ? true
, kdeIntegration ? false
}:
diff --git a/pkgs/applications/office/mendeley/default.nix b/pkgs/applications/office/mendeley/default.nix
index 693fa63661b57f693041df7e4efe0cead42a46f5..5b6271db83bd90b3a2b652c0735017228a9e803a 100644
--- a/pkgs/applications/office/mendeley/default.nix
+++ b/pkgs/applications/office/mendeley/default.nix
@@ -37,7 +37,7 @@
let
arch32 = "i686-linux";
- arch = if stdenv.system == arch32
+ arch = if stdenv.hostPlatform.system == arch32
then "i386"
else "amd64";
@@ -46,7 +46,7 @@ let
version = "${shortVersion}_${arch}";
url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb";
- sha256 = if stdenv.system == arch32
+ sha256 = if stdenv.hostPlatform.system == arch32
then "0fcyl5i8xdgb5j0x1643qc0j74d8p11jczvqmgqkqh0wgid1y1ad"
else "1dzwa2cnn9xakrhhq159fhh71gw5wlbf017rrikdlia694m8akq6";
diff --git a/pkgs/applications/office/moneyplex/default.nix b/pkgs/applications/office/moneyplex/default.nix
index 47d2ecc81ea371d2d73dc7d3f47abd91583dd08c..9f4ed80e6d80ab022f39796fd66449ea124db6c0 100644
--- a/pkgs/applications/office/moneyplex/default.nix
+++ b/pkgs/applications/office/moneyplex/default.nix
@@ -21,8 +21,8 @@ stdenv.mkDerivation rec {
name = "moneyplex-${version}";
version = "16.0.22424";
- src = fetchurl (if stdenv.system == "i686-linux" then src_i686
- else if stdenv.system == "x86_64-linux" then src_x86_64
+ src = fetchurl (if stdenv.hostPlatform.system == "i686-linux" then src_i686
+ else if stdenv.hostPlatform.system == "x86_64-linux" then src_x86_64
else throw "moneyplex requires i686-linux or x86_64-linux");
diff --git a/pkgs/applications/office/todoman/default.nix b/pkgs/applications/office/todoman/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..a7d93c3b0cb90ed464e34485f0eb4be8e5eaa022
--- /dev/null
+++ b/pkgs/applications/office/todoman/default.nix
@@ -0,0 +1,57 @@
+{ stdenv, python3, glibcLocales }:
+
+let
+ inherit (python3.pkgs) buildPythonApplication fetchPypi;
+in
+buildPythonApplication rec {
+ pname = "todoman";
+ version = "3.4.0";
+ name = "${pname}-${version}";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "09441fdrwz2irsbrxnpwys51372z6rn6gnxn87p95r3fv9gmh0fw";
+ };
+
+ LOCALE_ARCHIVE = stdenv.lib.optionalString stdenv.isLinux
+ "${glibcLocales}/lib/locale/locale-archive";
+ LANG = "en_US.UTF-8";
+ LC_TYPE = "en_US.UTF-8";
+
+ buildInputs = [ glibcLocales ];
+ propagatedBuildInputs = with python3.pkgs;
+ [ atomicwrites click click-log configobj humanize icalendar parsedatetime
+ python-dateutil pyxdg tabulate urwid ];
+
+ checkInputs = with python3.pkgs;
+ [ flake8 flake8-import-order freezegun hypothesis pytest pytestrunner pytestcov ];
+
+ makeWrapperArgs = [ "--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive"
+ "--set CHARSET en_us.UTF-8" ];
+
+ preCheck = ''
+ # Remove one failing test that only checks whether the command line works
+ rm tests/test_main.py
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/pimutils/todoman;
+ description = "Standards-based task manager based on iCalendar";
+ longDescription = ''
+ Todoman is a simple, standards-based, cli todo (aka: task) manager. Todos
+ are stored into icalendar files, which means you can sync them via CalDAV
+ using, for example, vdirsyncer.
+
+ Todos are read from individual ics files from the configured directory.
+ This matches the vdir specification. There’s support for the most common TODO
+ features for now (summary, description, location, due date and priority) for
+ now. Runs on any Unix-like OS. It’s been tested on GNU/Linux, BSD and macOS.
+ Unsupported fields may not be shown but are never deleted or altered.
+
+ Todoman is part of the pimutils project
+ '';
+ license = licenses.isc;
+ maintainers = with maintainers; [ leenaars ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/office/wpsoffice/default.nix b/pkgs/applications/office/wpsoffice/default.nix
index 46faf9ba651e9e504a4fbfda624a1443f57c6e9b..4c83d67f7cda77e5361b4c2eda313e119e38bd1e 100644
--- a/pkgs/applications/office/wpsoffice/default.nix
+++ b/pkgs/applications/office/wpsoffice/default.nix
@@ -3,7 +3,7 @@
, zlib, libpng12, libICE, libXrender, cups }:
let
- bits = if stdenv.system == "x86_64-linux" then "x86_64"
+ bits = if stdenv.hostPlatform.system == "x86_64-linux" then "x86_64"
else "x86";
version = "10.1.0.5672";
diff --git a/pkgs/applications/science/electronics/eagle/eagle7.nix b/pkgs/applications/science/electronics/eagle/eagle7.nix
index 9b8827187b262c1b40a09df4c0f511c65f90311c..d5720440f7ccaa6c4849ea5ccf104891ec857259 100644
--- a/pkgs/applications/science/electronics/eagle/eagle7.nix
+++ b/pkgs/applications/science/electronics/eagle/eagle7.nix
@@ -17,18 +17,18 @@ stdenv.mkDerivation rec {
version = "7.7.0";
src =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "ftp://ftp.cadsoft.de/eagle/program/7.7/eagle-lin32-${version}.run";
sha256 = "16fa66p77xigc7zvzfm7737mllrcs6nrgk2p7wvkjw3p9lvbz7z1";
}
- else if stdenv.system == "x86_64-linux" then
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "ftp://ftp.cadsoft.de/eagle/program/7.7/eagle-lin64-${version}.run";
sha256 = "18dcn6wqph1sqh0ah98qzfi05wip8a8ifbkaq79iskbrsi8iqnrg";
}
else
- throw "Unsupported system: ${stdenv.system}";
+ throw "Unsupported system: ${stdenv.hostPlatform.system}";
desktopItem = makeDesktopItem {
name = "eagle";
diff --git a/pkgs/applications/science/electronics/kicad/default.nix b/pkgs/applications/science/electronics/kicad/default.nix
index 3e783d2e177cc4dba787160a80e85d9cf7c7f2ef..c92da3eeb2928f05130ce5f803b84d7526e82162 100644
--- a/pkgs/applications/science/electronics/kicad/default.nix
+++ b/pkgs/applications/science/electronics/kicad/default.nix
@@ -36,8 +36,7 @@ stdenv.mkDerivation rec {
++ optional (ngspiceSupport) "-DKICAD_SPICE=ON";
nativeBuildInputs = [
- # https://www.mail-archive.com/kicad-developers@lists.launchpad.net/msg29840.html
- (cmake.override {majorVersion = "3.10";})
+ cmake
doxygen
pkgconfig
wrapGAppsHook
diff --git a/pkgs/applications/science/electronics/kicad/unstable.nix b/pkgs/applications/science/electronics/kicad/unstable.nix
index e43fd59e043156671b95dd7bbe40a50acc3b56e9..a9a4c32a0b45e5427eb270d708714c54cabb1db3 100644
--- a/pkgs/applications/science/electronics/kicad/unstable.nix
+++ b/pkgs/applications/science/electronics/kicad/unstable.nix
@@ -38,8 +38,7 @@ stdenv.mkDerivation rec {
"-DCMAKE_CXX_FLAGS=-I${wxPython}/include/wx-3.0"
];
- # https://www.mail-archive.com/kicad-developers@lists.launchpad.net/msg29840.html
- nativeBuildInputs = [ (cmake.override {majorVersion = "3.10";}) doxygen pkgconfig ];
+ nativeBuildInputs = [ cmake doxygen pkgconfig ];
buildInputs = [
libGLU_combined zlib libX11 wxGTK pcre libXdmcp gettext glew glm libpthreadstubs
cairo curl openssl boost
diff --git a/pkgs/applications/science/electronics/verilator/default.nix b/pkgs/applications/science/electronics/verilator/default.nix
index 6ee3f3266f8d04260e725fb22be215ca46e36661..fd6240fe1b2116370e94fc813b0ab7ecba9e1e75 100644
--- a/pkgs/applications/science/electronics/verilator/default.nix
+++ b/pkgs/applications/science/electronics/verilator/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "verilator-${version}";
- version = "3.924";
+ version = "3.926";
src = fetchurl {
url = "https://www.veripool.org/ftp/${name}.tgz";
- sha256 = "0xarifraycmdzjxs0lscpwvrwr59z84p8g8dkyjssc463dqikjvx";
+ sha256 = "0f4ajj1gmxskid61qj1ql1rzc3cmn1x2fpgqrbg7x3gszz61c9gr";
};
enableParallelBuilding = true;
diff --git a/pkgs/applications/science/logic/isabelle/default.nix b/pkgs/applications/science/logic/isabelle/default.nix
index ae04c11d959065e915d5c69a0f051590bbb70e64..ffe508569553cc1962e4dd781e20918758a3195a 100644
--- a/pkgs/applications/science/logic/isabelle/default.nix
+++ b/pkgs/applications/science/logic/isabelle/default.nix
@@ -48,7 +48,7 @@ stdenv.mkDerivation {
rm -rf $comp/x86*
done
'' + (if ! stdenv.isLinux then "" else ''
- arch=${if stdenv.system == "x86_64-linux" then "x86_64-linux" else "x86-linux"}
+ arch=${if stdenv.hostPlatform.system == "x86_64-linux" then "x86_64-linux" else "x86-linux"}
for f in contrib/*/$arch/{bash_process,epclextract,eprover,nunchaku,SPASS}; do
patchelf --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) "$f"
done
diff --git a/pkgs/applications/science/logic/jonprl/default.nix b/pkgs/applications/science/logic/jonprl/default.nix
index 982b5fc8b5fbf8c2b4b0861d5aecd90a1b26afc3..a95d1201cbd63c0c1968305f27cd3be8f36f5a70 100644
--- a/pkgs/applications/science/logic/jonprl/default.nix
+++ b/pkgs/applications/science/logic/jonprl/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
based on Brouwer-realizability & meaning explanations.
Inspired by Nuprl
'';
- homepage = http://www.jonprl.org/;
+ homepage = https://github.com/jonsterling/JonPRL;
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ puffnfresh ];
platforms = stdenv.lib.platforms.linux;
diff --git a/pkgs/applications/science/logic/saw-tools/default.nix b/pkgs/applications/science/logic/saw-tools/default.nix
index 65d2b4d91c3052e8f8b6546c5a3e4c7e73e280dd..32ebdad51d940fdb099284086a9324f41e30b4e9 100644
--- a/pkgs/applications/science/logic/saw-tools/default.nix
+++ b/pkgs/applications/science/logic/saw-tools/default.nix
@@ -12,7 +12,7 @@ let
url = "https://github.com/GaloisInc/saw-script/releases/download";
saw-bin =
- if stdenv.system == "i686-linux"
+ if stdenv.hostPlatform.system == "i686-linux"
then fetchurl {
url = url + "/v0.1.1-dev/saw-0.1.1-dev-2015-07-31-CentOS6-32.tar.gz";
sha256 = "126iag5nnvndi78c921z7vjrjfwcspn1hlxwwhzmqm4rvbhhr9v9";
diff --git a/pkgs/applications/science/logic/tlaplus/toolbox.nix b/pkgs/applications/science/logic/tlaplus/toolbox.nix
index 342d91cf5825ba22c23a431302c61190deedbe1e..f1116a27c0beaab5270cd10faf7bd24f75807494 100644
--- a/pkgs/applications/science/logic/tlaplus/toolbox.nix
+++ b/pkgs/applications/science/logic/tlaplus/toolbox.nix
@@ -44,7 +44,7 @@ in stdenv.mkDerivation {
--run "set -x; cd $out/toolbox" \
--add-flags "-data ~/.tla-toolbox" \
--prefix PATH : "${jre}/bin" \
- --prefix LD_LIBRARY_PATH : "${swt}/lib:${gtk}/lib:${libXtst}/lib:${glib}/lib"
+ --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ swt gtk libXtst glib ]}"
echo -e "\nCreating TLA Toolbox icons..."
pushd "$src"
diff --git a/pkgs/applications/science/logic/vampire/default.nix b/pkgs/applications/science/logic/vampire/default.nix
index e05839b2a143c5110842a4223a678f7db4164ab7..8dd8584b9a3cf7fa43ee7413d9a02b079e4c0566 100644
--- a/pkgs/applications/science/logic/vampire/default.nix
+++ b/pkgs/applications/science/logic/vampire/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
owner = "vprover";
repo = "vampire";
rev = version;
- sha256 = "080zwgmyhn0b2c6hqlhcgaw7n3frz02sh894v5kk68kzxbqr29w2";
+ sha256 = "1n0kf0g15yjw3v7z60l51h7fdn880mmvqsbb2szh48vzy20l92il";
fetchSubmodules = true;
leaveDotGit = true;
};
diff --git a/pkgs/applications/science/math/gmsh/default.nix b/pkgs/applications/science/math/gmsh/default.nix
index 956bfe1d811bcecc103a2df28bb5f9258781383c..7bc8729c3fe570afcaa00d94f41c185fe4918b88 100644
--- a/pkgs/applications/science/math/gmsh/default.nix
+++ b/pkgs/applications/science/math/gmsh/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, cmake, blas, liblapack, gfortran, gmm, fltk, libjpeg
, zlib, libGLU_combined, libGLU, xorg }:
-let version = "3.0.6"; in
+let version = "4.0.0"; in
stdenv.mkDerivation {
name = "gmsh-${version}";
src = fetchurl {
url = "http://gmsh.info/src/gmsh-${version}-source.tgz";
- sha256 = "0ywqhr0zmdhn8dvi6l8z1vkfycyv67fdrz6b95mb39np832bq04p";
+ sha256 = "0pqm0ippj0j07919hld3f3rgq0p1x4j32fxb2m1nyp226zx8l37v";
};
# The original CMakeLists tries to use some version of the Lapack lib
diff --git a/pkgs/applications/science/math/jags/default.nix b/pkgs/applications/science/math/jags/default.nix
index 2925e601e32bc067d963e69bf49e11729fd2bca1..1d1fb96a4739357bdd97e313ddf26ed8721ff6cf 100644
--- a/pkgs/applications/science/math/jags/default.nix
+++ b/pkgs/applications/science/math/jags/default.nix
@@ -9,11 +9,11 @@ stdenv.mkDerivation rec {
buildInputs = [gfortran openblas];
configureFlags = [ "--with-blas=-lopenblas" "--with-lapack=-lopenblas" ];
- meta = {
+ meta = with stdenv.lib; {
description = "Just Another Gibbs Sampler";
- license = "GPL2";
- homepage = http://www-ice.iarc.fr/~martyn/software/jags/;
- maintainers = [stdenv.lib.maintainers.andres];
- platforms = stdenv.lib.platforms.unix;
+ license = licenses.gpl2;
+ homepage = http://mcmc-jags.sourceforge.net;
+ maintainers = [ maintainers.andres ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/science/math/mathematica/10.nix b/pkgs/applications/science/math/mathematica/10.nix
index 4884ee1f93abd5f10d8037339cc0bbb7258e67b6..c6802c3719e9c1aa9499eef0fdd807928389393b 100644
--- a/pkgs/applications/science/math/mathematica/10.nix
+++ b/pkgs/applications/science/math/mathematica/10.nix
@@ -18,7 +18,7 @@
let
platform =
- if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux" then
"Linux"
else
throw "Mathematica requires i686-linux or x86_64 linux";
@@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
]);
ldpath = stdenv.lib.makeLibraryPath buildInputs
- + stdenv.lib.optionalString (stdenv.system == "x86_64-linux")
+ + stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux")
(":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs);
phases = "unpackPhase installPhase fixupPhase";
diff --git a/pkgs/applications/science/math/mathematica/9.nix b/pkgs/applications/science/math/mathematica/9.nix
index d60feb54695d7765e8afe2b4eed26c9d5bba0d2f..1023e7ca3d5c217773860d7ee6b1467ed9ba4c07 100644
--- a/pkgs/applications/science/math/mathematica/9.nix
+++ b/pkgs/applications/science/math/mathematica/9.nix
@@ -16,7 +16,7 @@
let
platform =
- if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux" then
"Linux"
else
throw "Mathematica requires i686-linux or x86_64 linux";
@@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
]);
ldpath = stdenv.lib.makeLibraryPath buildInputs
- + stdenv.lib.optionalString (stdenv.system == "x86_64-linux")
+ + stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux")
(":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs);
phases = "unpackPhase installPhase fixupPhase";
diff --git a/pkgs/applications/science/math/mathematica/default.nix b/pkgs/applications/science/math/mathematica/default.nix
index fa4ff8b00687508944df31f2431461a8a719e469..165a566055791b6bbcc8c6b24c460e289d929038 100644
--- a/pkgs/applications/science/math/mathematica/default.nix
+++ b/pkgs/applications/science/math/mathematica/default.nix
@@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
]);
ldpath = stdenv.lib.makeLibraryPath buildInputs
- + stdenv.lib.optionalString (stdenv.system == "x86_64-linux")
+ + stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux")
(":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs);
phases = "unpackPhase installPhase fixupPhase";
diff --git a/pkgs/applications/science/math/sage/default.nix b/pkgs/applications/science/math/sage/default.nix
index 7e62f0cf75ee6d5cb5230b37616edb3b9a9b216c..08e3a752b8b661ecdb928622a9534810ff8c753d 100644
--- a/pkgs/applications/science/math/sage/default.nix
+++ b/pkgs/applications/science/math/sage/default.nix
@@ -21,7 +21,7 @@ let
sagelib = self.callPackage ./sagelib.nix {
inherit flint ecl arb;
- inherit sage-src openblas-blas-pc openblas-cblas-pc openblas-lapack-pc pynac singular;
+ inherit sage-src pynac singular;
linbox = nixpkgs.linbox.override { withSage = true; };
};
@@ -41,13 +41,13 @@ let
};
sage-env = self.callPackage ./sage-env.nix {
- inherit sage-src python rWrapper openblas-cblas-pc ecl singular palp flint pynac pythonEnv;
+ inherit sage-src python rWrapper ecl singular palp flint pynac pythonEnv;
pkg-config = nixpkgs.pkgconfig; # not to confuse with pythonPackages.pkgconfig
};
sage-with-env = self.callPackage ./sage-with-env.nix {
inherit pythonEnv;
- inherit sage-src openblas-blas-pc openblas-cblas-pc openblas-lapack-pc pynac singular;
+ inherit sage-src pynac singular;
pkg-config = nixpkgs.pkgconfig; # not to confuse with pythonPackages.pkgconfig
three = nodePackages_8_x.three;
};
@@ -60,10 +60,6 @@ let
};
};
- openblas-blas-pc = callPackage ./openblas-pc.nix { name = "blas"; };
- openblas-cblas-pc = callPackage ./openblas-pc.nix { name = "cblas"; };
- openblas-lapack-pc = callPackage ./openblas-pc.nix { name = "lapack"; };
-
sage-src = callPackage ./sage-src.nix {};
pythonRuntimeDeps = with python.pkgs; [
diff --git a/pkgs/applications/science/math/sage/openblas-pc.nix b/pkgs/applications/science/math/sage/openblas-pc.nix
deleted file mode 100644
index f4669a6557e94ffe29c2b9cd06482a5018de03be..0000000000000000000000000000000000000000
--- a/pkgs/applications/science/math/sage/openblas-pc.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ openblasCompat
-, writeTextFile
-, name
-}:
-
-writeTextFile {
- name = "openblas-${name}-pc-${openblasCompat.version}";
- destination = "/lib/pkgconfig/${name}.pc";
- text = ''
- Name: ${name}
- Version: ${openblasCompat.version}
-
- Description: ${name} for SageMath, provided by the OpenBLAS package.
- Cflags: -I${openblasCompat}/include
- Libs: -L${openblasCompat}/lib -lopenblas
- '';
-}
diff --git a/pkgs/applications/science/math/sage/sage-env.nix b/pkgs/applications/science/math/sage/sage-env.nix
index 317eb6e16c495bdc173ef2c9e89af95f2a882204..74c2e0aa0360e934e6be07d0e5372aadf52b56eb 100644
--- a/pkgs/applications/science/math/sage/sage-env.nix
+++ b/pkgs/applications/science/math/sage/sage-env.nix
@@ -37,7 +37,7 @@
, lcalc
, rubiks
, flintqs
-, openblas-cblas-pc
+, openblasCompat
, flint
, gmp
, mpfr
@@ -98,9 +98,9 @@ writeTextFile rec {
export PKG_CONFIG_PATH='${lib.concatStringsSep ":" (map (pkg: "${pkg}/lib/pkgconfig") [
# This is only needed in the src/sage/misc/cython.py test and I'm not sure if there's really a use-case
# for it outside of the tests. However since singular and openblas are runtime dependencies anyways
- # and openblas-cblas-pc is tiny, it doesn't really hurt to include.
+ # it doesn't really hurt to include.
singular
- openblas-cblas-pc
+ openblasCompat
])
}'
export SAGE_ROOT='${sage-src}'
diff --git a/pkgs/applications/science/math/sage/sage-src.nix b/pkgs/applications/science/math/sage/sage-src.nix
index 096f2212cc49c7b7ad1d8cf872cb4722b741f326..7fd49fe205cc2c79fe086c831d0439da262f4edb 100644
--- a/pkgs/applications/science/math/sage/sage-src.nix
+++ b/pkgs/applications/science/math/sage/sage-src.nix
@@ -136,6 +136,13 @@ stdenv.mkDerivation rec {
url = "https://git.sagemath.org/sage.git/patch?id2=8.4.beta0&id=8bef4fd2876a61969b516fe4eb3b8ad7cc076c5e";
sha256 = "00p3hfsfn3w2vxgd9fjd23mz7xfxjfravf8ysjxkyd657jbkpjmk";
})
+
+ # https://trac.sagemath.org/ticket/26117
+ (fetchpatch {
+ name = "sympy-1.2.patch";
+ url = "https://git.sagemath.org/sage.git/patch?id2=8.4.beta2&id=d94a0a3a3fb4aec05a6f4d95166d90c284f05c36";
+ sha256 = "0an2xl1pp3jg36kgg2m1vb7sns7rprk1h3d0qy1gxwdab6i7qnvi";
+ })
];
patches = nixPatches ++ packageUpgradePatches ++ [
diff --git a/pkgs/applications/science/math/sage/sage-with-env.nix b/pkgs/applications/science/math/sage/sage-with-env.nix
index 63b9772b8231f7615268eaf3808b6bbc6ae8ce1d..8ccf8b5a4938fc1129c446d15ddb4ae5b244e24c 100644
--- a/pkgs/applications/science/math/sage/sage-with-env.nix
+++ b/pkgs/applications/science/math/sage/sage-with-env.nix
@@ -4,9 +4,6 @@
, sage-env
, sage-src
, openblasCompat
-, openblas-blas-pc
-, openblas-cblas-pc
-, openblas-lapack-pc
, pkg-config
, three
, singular
@@ -32,9 +29,6 @@ let
makeWrapper
pkg-config
openblasCompat # lots of segfaults with regular (64 bit) openblas
- openblas-blas-pc
- openblas-cblas-pc
- openblas-lapack-pc
singular
three
pynac
diff --git a/pkgs/applications/science/math/sage/sagelib.nix b/pkgs/applications/science/math/sage/sagelib.nix
index abcefba5e260f18cf5cf56d4288c897643c22e1e..c1dbcf38304e3cd7631c870f63f3906240086688 100644
--- a/pkgs/applications/science/math/sage/sagelib.nix
+++ b/pkgs/applications/science/math/sage/sagelib.nix
@@ -3,9 +3,6 @@
, buildPythonPackage
, arb
, openblasCompat
-, openblas-blas-pc
-, openblas-cblas-pc
-, openblas-lapack-pc
, brial
, cliquer
, cypari2
@@ -59,9 +56,7 @@ buildPythonPackage rec {
nativeBuildInputs = [
iml
perl
- openblas-blas-pc
- openblas-cblas-pc
- openblas-lapack-pc
+ openblasCompat
jupyter_core
];
diff --git a/pkgs/applications/science/math/scilab-bin/default.nix b/pkgs/applications/science/math/scilab-bin/default.nix
index dacd3e7307365cc1bc2f44c3b4c8e38305022888..54b262fe5058fb5d2bbc392476e62ef335d3433f 100644
--- a/pkgs/applications/science/math/scilab-bin/default.nix
+++ b/pkgs/applications/science/math/scilab-bin/default.nix
@@ -10,9 +10,9 @@ let
badArch = throw "${name} requires i686-linux or x86_64-linux";
architecture =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
"i686"
- else if stdenv.system == "x86_64-linux" then
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
"x86_64"
else
badArch;
@@ -23,9 +23,9 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://www.scilab.org/download/${ver}/scilab-${ver}.bin.linux-${architecture}.tar.gz";
sha256 =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
"0fgjc2ak3b2qi6yin3fy50qwk2bcj0zbz1h4lyyic9n1n1qcliib"
- else if stdenv.system == "x86_64-linux" then
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
"1scswlznc14vyzg0gqa1q9gcpwx05kz1sbn563463mzkdp7nd35d"
else
badArch;
diff --git a/pkgs/applications/science/math/symmetrica/default.nix b/pkgs/applications/science/math/symmetrica/default.nix
index a641993b393bc1780618e14d3d41b85e7b01e371..bc971606cd085c80bf47b8853b8ef860879853c8 100644
--- a/pkgs/applications/science/math/symmetrica/default.nix
+++ b/pkgs/applications/science/math/symmetrica/default.nix
@@ -57,6 +57,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.publicDomain;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.unix;
- homepage = http://www.symmetrica.de/;
+ homepage = http://www.algorithm.uni-bayreuth.de/en/research/SYMMETRICA/index.html;
};
}
diff --git a/pkgs/applications/science/misc/snakemake/default.nix b/pkgs/applications/science/misc/snakemake/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..6b0570814f2b49ba4a17f41a24d967bdf5a1afa2
--- /dev/null
+++ b/pkgs/applications/science/misc/snakemake/default.nix
@@ -0,0 +1,41 @@
+{
+ stdenv
+, python
+}:
+
+python.buildPythonPackage rec {
+ pname = "snakemake";
+ version = "5.2.2";
+
+ propagatedBuildInputs = with python; [
+ appdirs
+ ConfigArgParse
+ datrie
+ docutils
+ jsonschema
+ pyyaml
+ ratelimiter
+ requests
+ wrapt
+ ];
+
+ src = python.fetchPypi {
+ inherit pname version;
+ sha256 = "adffe7e24b4a613a9e8bf0a2a320b3cea236d86afb9132bb0bbbc08b8e35a3a3";
+ };
+
+ doCheck = false; # Tests depend on Google Cloud credentials at ${HOME}/gcloud-service-key.json
+
+ meta = with stdenv.lib; {
+ homepage = http://snakemake.bitbucket.io;
+ license = licenses.mit;
+ description = "Python-based execution environment for make-like workflows";
+ longDescription = ''
+ Snakemake is a workflow management system that aims to reduce the complexity of
+ creating workflows by providing a fast and comfortable execution environment,
+ together with a clean and readable specification language in Python style. Snakemake
+ workflows are essentially Python scripts extended by declarative code to define
+ rules. Rules describe how to create output files from input files.
+ '';
+ };
+}
diff --git a/pkgs/applications/science/molecular-dynamics/lammps/default.nix b/pkgs/applications/science/molecular-dynamics/lammps/default.nix
index 9a89b88d7a5271f58cc03633fb8627cc66182a79..03e37ad9d93512230ce495d1a9770c6b2409ce25 100644
--- a/pkgs/applications/science/molecular-dynamics/lammps/default.nix
+++ b/pkgs/applications/science/molecular-dynamics/lammps/default.nix
@@ -1,25 +1,37 @@
-{ stdenv, writeText, fetchurl,
- libpng, fftw,
- mpiSupport ? false, mpi ? null
+{ lib
+, bash
+, stdenv
+, writeText
+, fetchFromGitHub
+, libpng
+, gzip
+, fftw
+, openblas
+, mpiSupport ? false, mpi ? null
}:
assert mpiSupport -> mpi != null;
stdenv.mkDerivation rec {
# LAMMPS has weird versioning converted to ISO 8601 format
- version = "2016-02-16";
+ version = "patch_2Aug2018";
name = "lammps-${version}";
- src = fetchurl {
- url = "mirror://sourceforge/lammps/lammps-16Feb16.tar.gz";
- sha256 = "1yzfbkxma3xa1288rnn66h4w0smbmjkwq1fx1y60pjiw0prmk105";
+ lammps_packages = "asphere body class2 colloid compress coreshell dipole granular kspace manybody mc misc molecule opt peri qeq replica rigid shock snap srd user-reaxc";
+ lammps_includes = "-DLAMMPS_EXCEPTIONS -DLAMMPS_GZIP -DLAMMPS_MEMALIGN=64";
+
+ src = fetchFromGitHub {
+ owner = "lammps";
+ repo = "lammps";
+ rev = "${version}";
+ sha256 = "1ph9pr7s11wgmspmnhxa55bh1pq2cyl8iimfi62lbpbpl9pr1ilc";
};
passthru = {
inherit mpi;
};
- buildInputs = [ fftw libpng ]
+ buildInputs = [ fftw libpng openblas gzip bash ]
++ (stdenv.lib.optionals mpiSupport [ mpi ]);
# Must do manual build due to LAMMPS requiring a seperate build for
@@ -27,13 +39,19 @@ stdenv.mkDerivation rec {
builder = writeText "builder.sh" ''
source $stdenv/setup
- tar xzf $src
- cd lammps-*/src
- make mode=exe ${if mpiSupport then "mpi" else "serial"} SHELL=$SHELL LMP_INC="-DLAMMPS_GZIP -DLAMMPS_PNG" FFT_PATH=-DFFT_FFTW3 FFT_LIB=-lfftw3 JPG_LIB=-lpng
- make mode=shlib ${if mpiSupport then "mpi" else "serial"} SHELL=$SHELL LMP_INC="-DLAMMPS_GZIP -DLAMMPS_PNG" FFT_PATH=-DFFT_FFTW3 FFT_LIB=-lfftw3 JPG_LIB=-lpng
+ mkdir lammps
+ cp -r $src/lib $src/src lammps
+ chmod -R 755 lammps/src/
+ cd lammps/src
+ for pack in ${lammps_packages}; do make "yes-$pack" SHELL=$SHELL; done
+ make mode=exe ${if mpiSupport then "mpi" else "serial"} SHELL=$SHELL LMP_INC="${lammps_includes}" FFT_PATH=-DFFT_FFTW3 FFT_LIB=-lfftw3 JPG_LIB=-lpng
+ make mode=shlib ${if mpiSupport then "mpi" else "serial"} SHELL=$SHELL LMP_INC="${lammps_includes}" FFT_PATH=-DFFT_FFTW3 FFT_LIB=-lfftw3 JPG_LIB=-lpng
mkdir -p $out/bin
- cp -v lmp_* $out/bin/lammps
+ cp -v lmp_* $out/bin/
+
+ mkdir -p $out/include
+ cp -v *.h $out/include/
mkdir -p $out/lib
cp -v liblammps* $out/lib/
@@ -51,5 +69,6 @@ stdenv.mkDerivation rec {
homepage = http://lammps.sandia.gov;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
+ maintainers = with lib.maintainers; [ costrouc ];
};
}
diff --git a/pkgs/applications/science/programming/plm/default.nix b/pkgs/applications/science/programming/plm/default.nix
index f46f7afb659c789af43f78de2dfcdaf6e4350fb8..c454ad377686b8c5a5e022f5ebe95cface97bb36 100644
--- a/pkgs/applications/science/programming/plm/default.nix
+++ b/pkgs/applications/science/programming/plm/default.nix
@@ -28,9 +28,9 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Free cross-platform programming exerciser";
- homepage = http://webloria.loria.fr/~quinson/Teaching/PLM/;
license = licenses.gpl3;
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
+ broken = true;
};
}
diff --git a/pkgs/applications/science/robotics/apmplanner2/default.nix b/pkgs/applications/science/robotics/apmplanner2/default.nix
index 7ae44418fff61626e1b882750c8277ceb4097b6a..2d579a80369856de54aa6d055272075e4e21c972 100644
--- a/pkgs/applications/science/robotics/apmplanner2/default.nix
+++ b/pkgs/applications/science/robotics/apmplanner2/default.nix
@@ -23,8 +23,12 @@ stdenv.mkDerivation rec {
qmakeFlags = [ "apm_planner.pro" ];
# this ugly hack is necessary, as `bin/apmplanner2` needs the contents of `share/APMPlanner2` inside of `bin/`
- preFixup = "ln --relative --symbolic $out/share/APMPlanner2/* $out/bin/";
-
+ preFixup = ''
+ ln --relative --symbolic $out/share/APMPlanner2/* $out/bin/
+ substituteInPlace $out/share/applications/apmplanner2.desktop \
+ --replace /usr $out
+ '';
+
enableParallelBuilding = true;
meta = {
diff --git a/pkgs/applications/search/catfish/default.nix b/pkgs/applications/search/catfish/default.nix
index adf0f51fc4cc51d6bba6f8e5ca3f986d6c91e124..c36baae0621b13212beb4111890ed5f6b54ef4ff 100644
--- a/pkgs/applications/search/catfish/default.nix
+++ b/pkgs/applications/search/catfish/default.nix
@@ -5,13 +5,13 @@
pythonPackages.buildPythonApplication rec {
majorver = "1.4";
- minorver = "4";
+ minorver = "6";
version = "${majorver}.${minorver}";
pname = "catfish";
src = fetchurl {
- url = "https://launchpad.net/catfish-search/${majorver}/${version}/+download/${pname}-${version}.tar.gz";
- sha256 = "1mw7py6si6y88jblmzm04hf049bpww7h87k2wypq07zm1dw55m52";
+ url = "https://archive.xfce.org/src/apps/${pname}/${majorver}/${pname}-${version}.tar.bz2";
+ sha256 = "1gxdk5gx0gjq95jhdbpiq39cxpzd4vmw00a78f0wg2i6qlafxjp1";
};
nativeBuildInputs = [
@@ -52,7 +52,7 @@ pythonPackages.buildPythonApplication rec {
doCheck = false;
meta = with stdenv.lib; {
- homepage = https://launchpad.net/catfish-search;
+ homepage = https://docs.xfce.org/apps/catfish/start;
description = "A handy file search tool";
longDescription = ''
Catfish is a handy file searching tool. The interface is
diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix
index 01a4f4023023ffe59ac255d28581c533df3d5d79..e56284ac5c53cbcdb6cbea0ece55aea71d686007 100644
--- a/pkgs/applications/search/recoll/default.nix
+++ b/pkgs/applications/search/recoll/default.nix
@@ -5,7 +5,7 @@
, ghostscript, gawk, gnugrep, gnused, gnutar, gzip, libiconv, zlib
, withGui ? true }:
-assert stdenv.system != "powerpc-linux";
+assert stdenv.hostPlatform.system != "powerpc-linux";
stdenv.mkDerivation rec {
ver = "1.23.7";
diff --git a/pkgs/applications/version-management/git-and-tools/git-cola/default.nix b/pkgs/applications/version-management/git-and-tools/git-cola/default.nix
index 63894cc3dcdb5bd81c9f7503d533ead502cdb9a5..4b15d03d20078a32b4bf89908716177b6121c308 100644
--- a/pkgs/applications/version-management/git-and-tools/git-cola/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-cola/default.nix
@@ -4,13 +4,13 @@ let
inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify;
in buildPythonApplication rec {
name = "git-cola-${version}";
- version = "3.1";
+ version = "3.2";
src = fetchFromGitHub {
owner = "git-cola";
repo = "git-cola";
rev = "v${version}";
- sha256 = "1xzm8694zndl2pb4nanzhldn7wrsc1gjd5ldjncidw1msp9fczq1";
+ sha256 = "1ivaqhvdbmlp0lmrwb2pv3kjqlcpqbxbinbvjjn3g81r4avjs7yy";
};
buildInputs = [ git gettext ];
diff --git a/pkgs/applications/version-management/gitea/default.nix b/pkgs/applications/version-management/gitea/default.nix
index 592b348d03fd8aa7b375484f52ec92eb9bc534e1..c6eb563155f6f6180887fbd180b15563316030b5 100644
--- a/pkgs/applications/version-management/gitea/default.nix
+++ b/pkgs/applications/version-management/gitea/default.nix
@@ -7,13 +7,13 @@ with stdenv.lib;
buildGoPackage rec {
name = "gitea-${version}";
- version = "1.5.0";
+ version = "1.5.1";
src = fetchFromGitHub {
owner = "go-gitea";
repo = "gitea";
rev = "v${version}";
- sha256 = "0gp777x8yjbqvz9i79qv3bn3hrlp1bn7ib57r7w5a7jmr9rd0nca";
+ sha256 = "06h6v9py35mm0xk9l8xrq02vvr5vzl15gfbw9qqvpn8kiamkn53r";
};
patches = [ ./static-root-path.patch ];
diff --git a/pkgs/applications/version-management/gogs/default.nix b/pkgs/applications/version-management/gogs/default.nix
index d3c248b44752d16e7a632e382a91e10fe2a90065..25f7be37e1ee8f65ec4dde0bf2da4617311ab543 100644
--- a/pkgs/applications/version-management/gogs/default.nix
+++ b/pkgs/applications/version-management/gogs/default.nix
@@ -7,13 +7,13 @@ with stdenv.lib;
buildGoPackage rec {
name = "gogs-${version}";
- version = "0.11.34";
+ version = "0.11.53";
src = fetchFromGitHub {
- owner = "gogits";
+ owner = "gogs";
repo = "gogs";
rev = "v${version}";
- sha256 = "15xwcw3k7wbahdgp796gly79qkka21p7kvm84zfjgcsjjri0kdnz";
+ sha256 = "1icm4bawyic4ivzyspqc6qjv882gil8j923zrbylw3i4ifhlcdhd";
};
patches = [ ./static-root-path.patch ];
@@ -37,7 +37,7 @@ buildGoPackage rec {
--prefix PATH : ${makeBinPath [ bash git gzip openssh ]}
'';
- goPackagePath = "github.com/gogits/gogs";
+ goPackagePath = "github.com/gogs/gogs";
meta = {
description = "A painless self-hosted Git service";
diff --git a/pkgs/applications/version-management/tkcvs/default.nix b/pkgs/applications/version-management/tkcvs/default.nix
index 83116569dbe3cfe9ccae6ed16e1f060d5478436d..48558c15dc1c4834cad7b3955c388746789e2562 100644
--- a/pkgs/applications/version-management/tkcvs/default.nix
+++ b/pkgs/applications/version-management/tkcvs/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation
'';
meta = {
- homepage = http://www.twobarleycorns.net/tkcvs.html;
+ homepage = https://tkcvs.sourceforge.io;
description = "TCL/TK GUI for cvs and subversion";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix
index 031202ad646cba11bcf8fb7c63ac0c915b3fad76..96e0bb04031babcc129d293cd375c3345062b098 100644
--- a/pkgs/applications/video/clipgrab/default.nix
+++ b/pkgs/applications/video/clipgrab/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "clipgrab-${version}";
- version = "3.6.8";
+ version = "3.6.9";
src = fetchurl {
- sha256 = "0agp97g79mlqcwfz2xk5rdxw4kx0hm92xikdspbpxlfji1mkh10p";
+ sha256 = "16r0h286vqw1bns29sx5x2919pj3y8gxf1k7dpf9xrz0vm2zrc3v";
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
url = "https://download.clipgrab.org/${name}.tar.gz";
};
diff --git a/pkgs/applications/video/gnome-mpv/default.nix b/pkgs/applications/video/gnome-mpv/default.nix
index 1bb77ffc4a8081868aee4fa0dad4c7818a4fad56..75a299d46c7d3f08e265854d9e302abb64254853 100644
--- a/pkgs/applications/video/gnome-mpv/default.nix
+++ b/pkgs/applications/video/gnome-mpv/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, meson, ninja
+{ stdenv, fetchFromGitHub, meson, ninja, python3
, gettext, pkgconfig, desktop-file-utils, wrapGAppsHook
, appstream-glib, epoxy, glib, gtk3, mpv
}:
@@ -15,13 +15,14 @@ stdenv.mkDerivation rec {
sha256 = "1cjhw3kz163iwj2japhnv354i1lr112xyyfkxw82cwy2554cfim4";
};
- nativeBuildInputs = [ meson ninja appstream-glib gettext pkgconfig desktop-file-utils wrapGAppsHook ];
+ nativeBuildInputs = [ meson ninja python3 appstream-glib gettext pkgconfig desktop-file-utils wrapGAppsHook ];
buildInputs = [ epoxy glib gtk3 mpv ];
enableParallelBuilding = true;
postPatch = ''
- patchShebangs .
+ patchShebangs meson_post_install.py
+ patchShebangs src/generate_authors.py
sed -i '/gtk-update-icon-cache/s/^/#/' meson_post_install.py
'';
diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix
index 5ca678a2e175f74222c9bb0346fbb15a58795a8c..454665455c510a3e241b05dc84906ef2215d6acc 100644
--- a/pkgs/applications/video/kodi/default.nix
+++ b/pkgs/applications/video/kodi/default.nix
@@ -189,7 +189,7 @@ in stdenv.mkDerivation rec {
wrapProgram $out/bin/$p \
--prefix PATH ":" "${lib.makeBinPath [ python2 glxinfo xdpyinfo ]}" \
--prefix LD_LIBRARY_PATH ":" "${lib.makeLibraryPath
- [ curl systemd libmad libvdpau libcec libcec_platform rtmpdump libass ]}"
+ ([ curl systemd libmad libvdpau libcec libcec_platform rtmpdump libass ] ++ lib.optional nfsSupport libnfs)}"
done
substituteInPlace $out/share/xsessions/kodi.desktop \
diff --git a/pkgs/applications/video/lightworks/default.nix b/pkgs/applications/video/lightworks/default.nix
index 64a967001b57f593b85e60cb71934c88e1644c06..4bfd9e790070d3e14150bc093e67cef913fd4f7e 100644
--- a/pkgs/applications/video/lightworks/default.nix
+++ b/pkgs/applications/video/lightworks/default.nix
@@ -23,12 +23,12 @@ let
name = "lightworks-${version}";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "http://downloads.lwks.com/v14/lwks-14.0.0-amd64.deb";
sha256 = "66eb9f9678d979db76199f1c99a71df0ddc017bb47dfda976b508849ab305033";
}
- else throw "${name} is not supported on ${stdenv.system}";
+ else throw "${name} is not supported on ${stdenv.hostPlatform.system}";
buildInputs = [ dpkg makeWrapper ];
diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix
index ef01ac4cdae3c8a62e945879823d5a2b37892fe1..3f0fb0e8022c31c1a702588747ab4336831bac5b 100644
--- a/pkgs/applications/video/mkvtoolnix/default.nix
+++ b/pkgs/applications/video/mkvtoolnix/default.nix
@@ -12,13 +12,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "mkvtoolnix-${version}";
- version = "25.0.0";
+ version = "26.0.0";
src = fetchFromGitLab {
owner = "mbunkus";
repo = "mkvtoolnix";
rev = "release-${version}";
- sha256 = "04m57719q7q0h0gcj1b2bh8xbdcl5bijic4hw71xf9xd19a95k78";
+ sha256 = "0dq0lbr6kzj455mv4z6a851n7ff3xlmsxklijiyp4drn1jf0q1pb";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/video/mplayer/default.nix b/pkgs/applications/video/mplayer/default.nix
index 02a0c2c0ec490bbb3c554516e8ed05bb7b649ab4..e017e7cc0015e42c7261353dafb187ab6607a5da 100644
--- a/pkgs/applications/video/mplayer/default.nix
+++ b/pkgs/applications/video/mplayer/default.nix
@@ -60,13 +60,13 @@ let
let
dir = http://www.mplayerhq.hu/MPlayer/releases/codecs/;
in
- if stdenv.system == "i686-linux" then fetchurl {
+ if stdenv.hostPlatform.system == "i686-linux" then fetchurl {
url = "${dir}/essential-20071007.tar.bz2";
sha256 = "18vls12n12rjw0mzw4pkp9vpcfmd1c21rzha19d7zil4hn7fs2ic";
- } else if stdenv.system == "x86_64-linux" then fetchurl {
+ } else if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl {
url = "${dir}/essential-amd64-20071007.tar.bz2";
sha256 = "13xf5b92w1ra5hw00ck151lypbmnylrnznq9hhb0sj36z5wz290x";
- } else if stdenv.system == "powerpc-linux" then fetchurl {
+ } else if stdenv.hostPlatform.system == "powerpc-linux" then fetchurl {
url = "${dir}/essential-ppc-20071007.tar.bz2";
sha256 = "18mlj8dp4wnz42xbhdk1jlz2ygra6fbln9wyrcyvynxh96g1871z";
} else null;
diff --git a/pkgs/applications/video/omxplayer/default.nix b/pkgs/applications/video/omxplayer/default.nix
index 00a419d0a85d91bdd62dfad00888a2a5d97bf044..7a130bbdb41843913352bc1afb9a02efd4d7a844 100644
--- a/pkgs/applications/video/omxplayer/default.nix
+++ b/pkgs/applications/video/omxplayer/default.nix
@@ -1,6 +1,5 @@
{ stdenv, fetchurl
, raspberrypifw, pcre, boost, freetype, zlib
-, hostPlatform
}:
let
@@ -14,7 +13,7 @@ let
configurePlatforms = [];
configureFlags = [
- "--arch=${hostPlatform.parsed.cpu.name}"
+ "--arch=${stdenv.hostPlatform.parsed.cpu.name}"
] ++ stdenv.lib.optionals stdenv.hostPlatform.isAarch32 [
# TODO be better with condition
"--cpu=arm1176jzf-s"
@@ -46,8 +45,8 @@ let
"--enable-hardcoded-tables"
"--disable-runtime-cpudetect"
"--disable-debug"
- "--arch=${hostPlatform.parsed.cpu.name}"
- "--target_os=${hostPlatform.parsed.kernel.name}"
+ "--arch=${stdenv.hostPlatform.parsed.cpu.name}"
+ "--target_os=${stdenv.hostPlatform.parsed.kernel.name}"
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"--cross-prefix=${stdenv.cc.targetPrefix}"
"--enable-cross-compile"
diff --git a/pkgs/applications/video/pitivi/default.nix b/pkgs/applications/video/pitivi/default.nix
index cea85f553b5f74cec9a0ecd1cd4fe46dc5f59426..adb5d237f54fe38a513331e88b3e9efb0df930d3 100644
--- a/pkgs/applications/video/pitivi/default.nix
+++ b/pkgs/applications/video/pitivi/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, itstool, wrapGAppsHook
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, python3, wrapGAppsHook
, python3Packages, gst, gtk3
, gobjectIntrospection, librsvg, gnome3, libnotify
, meson, ninja
@@ -43,7 +43,7 @@ in python3Packages.buildPythonApplication rec {
patchShebangs ./getenvvar.py
'';
- nativeBuildInputs = [ meson ninja pkgconfig intltool itstool wrapGAppsHook ];
+ nativeBuildInputs = [ meson ninja pkgconfig intltool itstool python3 wrapGAppsHook ];
buildInputs = [
gobjectIntrospection gtk3 librsvg gnome3.gnome-desktop gnome3.gsound
diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix
index 950cd27937cc54173751e2005a5363170c345c78..dea7e7f86a94b9c02ea8231b00f55aca8635878d 100644
--- a/pkgs/applications/video/shotcut/default.nix
+++ b/pkgs/applications/video/shotcut/default.nix
@@ -8,13 +8,13 @@ assert stdenv.lib.versionAtLeast mlt.version "6.8.0";
stdenv.mkDerivation rec {
name = "shotcut-${version}";
- version = "18.08";
+ version = "18.08.14";
src = fetchFromGitHub {
owner = "mltframework";
repo = "shotcut";
rev = "v${version}";
- sha256 = "1p2s4avm3bl5ippmgfzkkbb2w0xs4vhk2wbcd22g7bh1zq9w190n";
+ sha256 = "074df9vc0rdb4byalaarq522vkfq5mrhxs4dgbyqls3ryd3hj1ds";
};
enableParallelBuilding = true;
diff --git a/pkgs/applications/video/uvccapture/default.nix b/pkgs/applications/video/uvccapture/default.nix
index 468db46251037cfb24f8b611209fc5a2790a43e5..dd595baa52e820228c53d5420d0fc6253eaf9dcb 100644
--- a/pkgs/applications/video/uvccapture/default.nix
+++ b/pkgs/applications/video/uvccapture/default.nix
@@ -10,7 +10,7 @@ in
stdenv.mkDerivation rec {
name = "uvccapture-0.5";
-
+
src = fetchurl {
url = "mirror://debian/pool/main/u/uvccapture/uvccapture_0.5.orig.tar.gz";
sha256 = "1b3akkcmr3brbf93akr8xi20w8zqf2g0qfq928500wy04qi6jqpi";
@@ -43,7 +43,6 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Capture image from USB webcam at a specified interval";
- homepage = http://linux-uvc.berlios.de/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
diff --git a/pkgs/applications/video/webtorrent_desktop/default.nix b/pkgs/applications/video/webtorrent_desktop/default.nix
index c99aed0c1afb5be7a08213c46e3f1f345f1baeb8..086190000ab4572785e611bba76013bfe12d4a40 100644
--- a/pkgs/applications/video/webtorrent_desktop/default.nix
+++ b/pkgs/applications/video/webtorrent_desktop/default.nix
@@ -42,13 +42,13 @@
version = "0.20.0";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://github.com/webtorrent/webtorrent-desktop/releases/download/v0.20.0/webtorrent-desktop_${version}-1_amd64.deb";
sha256 = "1kkrnbimiip5pn2nwpln35bbdda9gc3cgrjwphq4fqasbjf2781k";
}
else
- throw "Webtorrent is not currently supported on ${stdenv.system}";
+ throw "Webtorrent is not currently supported on ${stdenv.hostPlatform.system}";
phases = [ "unpackPhase" "installPhase" ];
nativeBuildInputs = [ dpkg ];
unpackPhase = "dpkg-deb -x $src .";
diff --git a/pkgs/applications/virtualization/containerd/default.nix b/pkgs/applications/virtualization/containerd/default.nix
index 2fa93af4831067c18e433e154afef0c2dbb778c0..03b60a5f3853a2655aee00aa1295779419ead138 100644
--- a/pkgs/applications/virtualization/containerd/default.nix
+++ b/pkgs/applications/virtualization/containerd/default.nix
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- homepage = https://containerd.tools/;
+ homepage = https://containerd.io/;
description = "A daemon to control runC";
license = licenses.asl20;
maintainers = with maintainers; [ offline vdemeester ];
diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix
index 1ff61129b0f956a5d10e8d587532b93e9a22afca..bbb2a099666b3618a55bb92cfce09ce4a9b4ce63 100644
--- a/pkgs/applications/virtualization/qemu/default.nix
+++ b/pkgs/applications/virtualization/qemu/default.nix
@@ -22,9 +22,7 @@
with stdenv.lib;
let
- version = "2.12.1";
- sha256 = "1jp5y56682bgpfjapagxjfrjdvqkal34pj9qzn6kj8fqaad80l21";
- audio = optionalString (hasSuffix "linux" stdenv.system) "alsa,"
+ audio = optionalString (hasSuffix "linux" stdenv.hostPlatform.system) "alsa,"
+ optionalString pulseSupport "pa,"
+ optionalString sdlSupport "sdl,";
@@ -36,6 +34,7 @@ let
in
stdenv.mkDerivation rec {
+ version = "3.0.0";
name = "qemu-"
+ stdenv.lib.optionalString xenSupport "xen-"
+ stdenv.lib.optionalString hostCpuOnly "host-cpu-only-"
@@ -43,8 +42,8 @@ stdenv.mkDerivation rec {
+ version;
src = fetchurl {
- url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2";
- inherit sha256;
+ url = "https://wiki.qemu.org/download/qemu-${version}.tar.bz2";
+ sha256 = "1s7bm2xhcxbc9is0rg8xzwijx7azv67skq7mjc58spsgc2nn4glk";
};
buildInputs =
diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix
index c7d86ad9fd60ce3050b5dc161ba8e7538c691292..40395568f4ba2bf25ec1b1c8dc44b594103e0277 100644
--- a/pkgs/applications/virtualization/virt-manager/default.nix
+++ b/pkgs/applications/virtualization/virt-manager/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, python2Packages, intltool, file
-, wrapGAppsHook, gtkvnc, vte, avahi, dconf
+, wrapGAppsHook, gtk-vnc, vte, avahi, dconf
, gobjectIntrospection, libvirt-glib, system-libvirt
, gsettings-desktop-schemas, glib, libosinfo, gnome3, gtk3
, spiceSupport ? true, spice-gtk ? null
@@ -24,7 +24,7 @@ python2Packages.buildPythonApplication rec {
];
buildInputs =
- [ libvirt-glib vte dconf gtkvnc gnome3.defaultIconTheme avahi
+ [ libvirt-glib vte dconf gtk-vnc gnome3.defaultIconTheme avahi
gsettings-desktop-schemas libosinfo gtk3
] ++ optional spiceSupport spice-gtk;
diff --git a/pkgs/applications/virtualization/virt-viewer/default.nix b/pkgs/applications/virtualization/virt-viewer/default.nix
index beecf72fd0b035ce57ac02e434076b3d0e8a4335..cbdecb3228827730f3fa351239d800f89a223978 100644
--- a/pkgs/applications/virtualization/virt-viewer/default.nix
+++ b/pkgs/applications/virtualization/virt-viewer/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2, gtk3, gtkvnc, gmp
+{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2, gtk3, gtk-vnc, gmp
, libgcrypt, gnupg, cyrus_sasl, shared-mime-info, libvirt, yajl, xen
-, gsettings-desktop-schemas, makeWrapper, libvirt-glib, libcap_ng, numactl
+, gsettings-desktop-schemas, wrapGAppsHook, libvirt-glib, libcap_ng, numactl
, libapparmor, gst_all_1
, spiceSupport ? true
, spice-gtk ? null, spice-protocol ? null, libcap ? null, gdbm ? null
@@ -21,10 +21,10 @@ stdenv.mkDerivation rec {
sha256 = "00y9vi69sja4pkrfnvrkwsscm41bqrjzvp8aijb20pvg6ymczhj7";
};
- nativeBuildInputs = [ pkgconfig intltool ];
+ nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ];
buildInputs = [
- glib libxml2 gtk3 gtkvnc gmp libgcrypt gnupg cyrus_sasl shared-mime-info
- libvirt yajl gsettings-desktop-schemas makeWrapper libvirt-glib
+ glib libxml2 gtk3 gtk-vnc gmp libgcrypt gnupg cyrus_sasl shared-mime-info
+ libvirt yajl gsettings-desktop-schemas libvirt-glib
libcap_ng numactl libapparmor
] ++ optionals stdenv.isx86_64 [
xen
@@ -33,14 +33,6 @@ stdenv.mkDerivation rec {
gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
];
- postInstall = ''
- for f in "$out"/bin/*; do
- wrapProgram "$f" \
- --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
- --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
- done
- '';
-
meta = {
description = "A viewer for remote virtual machines";
maintainers = [ maintainers.raskin ];
diff --git a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
index dcc58b04c8e370d4e749bef083c984576011bd04..cb7bcad3592decbfc50c1be6793938878d9c3ff0 100644
--- a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
+++ b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
@@ -44,23 +44,23 @@ stdenv.mkDerivation {
'';
buildCommand = with xorg; ''
- ${if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" then ''
+ ${if stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux" then ''
isoinfo -J -i $src -x /VBoxLinuxAdditions.run > ./VBoxLinuxAdditions.run
chmod 755 ./VBoxLinuxAdditions.run
./VBoxLinuxAdditions.run --noexec --keep
''
- else throw ("Architecture: "+stdenv.system+" not supported for VirtualBox guest additions")
+ else throw ("Architecture: "+stdenv.hostPlatform.system+" not supported for VirtualBox guest additions")
}
# Unpack files
cd install
- ${if stdenv.system == "i686-linux" then ''
+ ${if stdenv.hostPlatform.system == "i686-linux" then ''
tar xfvj VBoxGuestAdditions-x86.tar.bz2
''
- else if stdenv.system == "x86_64-linux" then ''
+ else if stdenv.hostPlatform.system == "x86_64-linux" then ''
tar xfvj VBoxGuestAdditions-amd64.tar.bz2
''
- else throw ("Architecture: "+stdenv.system+" not supported for VirtualBox guest additions")
+ else throw ("Architecture: "+stdenv.hostPlatform.system+" not supported for VirtualBox guest additions")
}
cd ../
@@ -81,13 +81,13 @@ stdenv.mkDerivation {
# Change the interpreter for various binaries
for i in sbin/VBoxService bin/{VBoxClient,VBoxControl} other/mount.vboxsf
do
- ${if stdenv.system == "i686-linux" then ''
+ ${if stdenv.hostPlatform.system == "i686-linux" then ''
patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux.so.2 $i
''
- else if stdenv.system == "x86_64-linux" then ''
+ else if stdenv.hostPlatform.system == "x86_64-linux" then ''
patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux-x86-64.so.2 $i
''
- else throw ("Architecture: "+stdenv.system+" not supported for VirtualBox guest additions")
+ else throw ("Architecture: "+stdenv.hostPlatform.system+" not supported for VirtualBox guest additions")
}
patchelf --set-rpath ${lib.makeLibraryPath [ stdenv.cc.cc dbus libX11 libXt libXext libXmu libXfixes libXrandr libXcursor ]} $i
done
diff --git a/pkgs/applications/virtualization/vpcs/default.nix b/pkgs/applications/virtualization/vpcs/default.nix
index 65435e19366be33a7b2dd1893d654e94bee7d20c..3d6efcfc84438f1927cd23f3e6b5333b3381e6b6 100644
--- a/pkgs/applications/virtualization/vpcs/default.nix
+++ b/pkgs/applications/virtualization/vpcs/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, glibc, buildPlatform }:
+{ stdenv, fetchurl, glibc }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
buildPhase = ''(
cd src
- ./mk.sh ${buildPlatform.platform.kernelArch}
+ ./mk.sh ${stdenv.buildPlatform.platform.kernelArch}
)'';
installPhase = ''
diff --git a/pkgs/applications/virtualization/xen/4.10.nix b/pkgs/applications/virtualization/xen/4.10.nix
index 5e21f7ee6081e6ef4134d96496ee4f5b9dcc5915..f3055fc79c35aa574e588691155a7edb305d42e9 100644
--- a/pkgs/applications/virtualization/xen/4.10.nix
+++ b/pkgs/applications/virtualization/xen/4.10.nix
@@ -1,4 +1,5 @@
{ stdenv, callPackage, fetchurl, fetchpatch, fetchgit
+, ocaml-ng
, withInternalQemu ? true
, withInternalTraditionalQemu ? true
, withInternalSeabios ? true
@@ -177,4 +178,4 @@ callPackage (import ./generic.nix (rec {
else throw "this xen has no qemu builtin";
};
-})) args
+})) ({ ocamlPackages = ocaml-ng.ocamlPackages_4_05; } // args)
diff --git a/pkgs/applications/virtualization/xen/4.8.nix b/pkgs/applications/virtualization/xen/4.8.nix
index f99cdb69d2a8e0d75f01e91ca12dd5f014a09bed..2a59cd1f0615393ceabd643eac6de14e9846cb58 100644
--- a/pkgs/applications/virtualization/xen/4.8.nix
+++ b/pkgs/applications/virtualization/xen/4.8.nix
@@ -1,4 +1,5 @@
{ stdenv, callPackage, fetchurl, fetchpatch, fetchgit
+, ocaml-ng
, withInternalQemu ? true
, withInternalTraditionalQemu ? true
, withInternalSeabios ? true
@@ -181,4 +182,4 @@ callPackage (import ./generic.nix (rec {
else throw "this xen has no qemu builtin";
};
-})) args
+})) ({ ocamlPackages = ocaml-ng.ocamlPackages_4_05; } // args)
diff --git a/pkgs/applications/window-managers/awesome/3.5.nix b/pkgs/applications/window-managers/awesome/3.5.nix
deleted file mode 100644
index f3d43d15efba7c2ed0f3d3e928deb8b62fbb442f..0000000000000000000000000000000000000000
--- a/pkgs/applications/window-managers/awesome/3.5.nix
+++ /dev/null
@@ -1,86 +0,0 @@
-{ stdenv, fetchurl, luaPackages, cairo, cmake, imagemagick, pkgconfig, gdk_pixbuf
-, xorg, libstartup_notification, libxdg_basedir, libpthreadstubs
-, xcb-util-cursor, makeWrapper, pango, gobjectIntrospection, unclutter
-, compton, procps, iproute, coreutils, curl, alsaUtils, findutils, xterm
-, which, dbus, nettools, git, asciidoc, doxygen
-, xmlto, docbook_xml_dtd_45, docbook_xsl, findXMLCatalogs
-}:
-
-let
- version = "3.5.9";
-in with luaPackages;
-
-stdenv.mkDerivation rec {
- name = "awesome-${version}";
-
- src = fetchurl {
- url = "http://awesome.naquadah.org/download/awesome-${version}.tar.xz";
- sha256 = "0kynair1ykr74b39a4gcm2y24viial64337cf26nhlc7azjbby67";
- };
-
- meta = with stdenv.lib; {
- description = "Highly configurable, dynamic window manager for X";
- homepage = http://awesome.naquadah.org/;
- license = licenses.gpl2Plus;
- maintainers = with maintainers; [ lovek323 ];
- platforms = platforms.linux;
- };
-
- nativeBuildInputs = [
- asciidoc
- cmake
- doxygen
- imagemagick
- makeWrapper
- pkgconfig
- xmlto docbook_xml_dtd_45 docbook_xsl findXMLCatalogs
- ];
-
- buildInputs = [
- cairo
- dbus
- gdk_pixbuf
- gobjectIntrospection
- git
- lgi
- libpthreadstubs
- libstartup_notification
- libxdg_basedir
- lua
- nettools
- pango
- xcb-util-cursor
- xorg.libXau
- xorg.libXdmcp
- xorg.libxcb
- xorg.libxshmfence
- xorg.xcbutil
- xorg.xcbutilimage
- xorg.xcbutilkeysyms
- xorg.xcbutilrenderutil
- xorg.xcbutilwm
- ];
-
- #cmakeFlags = "-DGENERATE_MANPAGES=ON";
-
- LD_LIBRARY_PATH = "${stdenv.lib.makeLibraryPath [ cairo pango gobjectIntrospection ]}";
- GI_TYPELIB_PATH = "${pango.out}/lib/girepository-1.0";
- LUA_CPATH = "${lgi}/lib/lua/${lua.luaversion}/?.so";
- LUA_PATH = "${lgi}/share/lua/${lua.luaversion}/?.lua;${lgi}/share/lua/${lua.luaversion}/lgi/?.lua";
-
- postInstall = ''
- wrapProgram $out/bin/awesome \
- --prefix LUA_CPATH ";" "${lgi}/lib/lua/${lua.luaversion}/?.so" \
- --prefix LUA_PATH ";" "${lgi}/share/lua/${lua.luaversion}/?.lua;${lgi}/share/lua/${lua.luaversion}/lgi/?.lua" \
- --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
- --prefix LD_LIBRARY_PATH : "$LD_LIBRARY_PATH" \
- --prefix PATH : "${stdenv.lib.makeBinPath [ compton unclutter procps iproute coreutils curl alsaUtils findutils xterm ]}"
-
- wrapProgram $out/bin/awesome-client \
- --prefix PATH : "${which}/bin"
- '';
-
- passthru = {
- inherit lua;
- };
-}
diff --git a/pkgs/applications/window-managers/compton/default.nix b/pkgs/applications/window-managers/compton/default.nix
index d79d8c3325d70514bd91bfa01526b7ed7f4a9018..e5faf084a42de75fd0ae827d6f90aefde785f094 100644
--- a/pkgs/applications/window-managers/compton/default.nix
+++ b/pkgs/applications/window-managers/compton/default.nix
@@ -3,59 +3,77 @@
, dbus, libconfig, libdrm, libGL, pcre, libX11, libXcomposite, libXdamage
, libXinerama, libXrandr, libXrender, libXext, xwininfo }:
-stdenv.mkDerivation rec {
- name = "compton-0.1_beta2.5";
-
- src = fetchFromGitHub {
- owner = "chjj";
- repo = "compton";
- rev = "b7f43ee67a1d2d08239a2eb67b7f50fe51a592a8";
- sha256 = "1p7ayzvm3c63q42na5frznq3rlr1lby2pdgbvzm1zl07wagqss18";
- };
+let
+ common = source: stdenv.mkDerivation (source // rec {
+ name = "${source.pname}-${source.version}";
+
+ buildInputs = [
+ dbus libX11 libXcomposite libXdamage libXrender libXrandr libXext
+ libXinerama libdrm pcre libxml2 libxslt libconfig libGL
+ ];
+
+ nativeBuildInputs = [
+ pkgconfig
+ asciidoc
+ docbook_xml_dtd_45
+ docbook_xsl
+ makeWrapper
+ ];
- buildInputs = [
- libX11
- libXcomposite
- libXdamage
- libXrender
- libXrandr
- libXext
- libXinerama
- libdrm
- pcre
- libconfig
- dbus
- libGL
- ];
-
- nativeBuildInputs = [
- pkgconfig
- asciidoc
- libxml2
- docbook_xml_dtd_45
- docbook_xsl
- libxslt
- makeWrapper
- ];
-
- installFlags = [ "PREFIX=$(out)" ];
-
- postInstall = ''
- wrapProgram $out/bin/compton-trans \
- --prefix PATH : ${lib.makeBinPath [ xwininfo ]}
- '';
-
- meta = with stdenv.lib; {
- homepage = https://github.com/chjj/compton/;
- description = "A fork of XCompMgr, a sample compositing manager for X servers";
- longDescription = ''
- A fork of XCompMgr, which is a sample compositing manager for X
- servers supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE
- extensions. It enables basic eye-candy effects. This fork adds
- additional features, such as additional effects, and a fork at a
- well-defined and proper place.
+ installFlags = [ "PREFIX=$(out)" ];
+
+ postInstall = ''
+ wrapProgram $out/bin/compton-trans \
+ --prefix PATH : ${lib.makeBinPath [ xwininfo ]}
'';
- license = licenses.mit;
- platforms = platforms.linux;
+
+ meta = with lib; {
+ description = "A fork of XCompMgr, a sample compositing manager for X servers";
+ longDescription = ''
+ A fork of XCompMgr, which is a sample compositing manager for X
+ servers supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE
+ extensions. It enables basic eye-candy effects. This fork adds
+ additional features, such as additional effects, and a fork at a
+ well-defined and proper place.
+ '';
+ license = licenses.mit;
+ maintainers = with maintainers; [ ertes enzime twey ];
+ platforms = platforms.linux;
+ };
+ });
+
+ stableSource = {
+ pname = "compton";
+ version = "0.1_beta2.5";
+
+ src = fetchFromGitHub {
+ owner = "chjj";
+ repo = "compton";
+ rev = "b7f43ee67a1d2d08239a2eb67b7f50fe51a592a8";
+ sha256 = "1p7ayzvm3c63q42na5frznq3rlr1lby2pdgbvzm1zl07wagqss18";
+ };
+
+ meta = {
+ homepage = https://github.com/chjj/compton/;
+ };
+ };
+
+ gitSource = {
+ pname = "compton-git";
+ version = "2018-08-14";
+
+ src = fetchFromGitHub {
+ owner = "yshui";
+ repo = "compton";
+ rev = "cac8094ce12cd40706fb48f9ab35354d9ee7c48f";
+ sha256 = "0qif3nx8vszlr06bixasna13pzfaikp86xax9miwnba50517y7v5";
+ };
+
+ meta = {
+ homepage = https://github.com/yshui/compton/;
+ };
};
+in {
+ compton = common stableSource;
+ compton-git = common gitSource;
}
diff --git a/pkgs/applications/window-managers/compton/git.nix b/pkgs/applications/window-managers/compton/git.nix
deleted file mode 100644
index 90ae043fba32cf38993e7c3996861102943e1c82..0000000000000000000000000000000000000000
--- a/pkgs/applications/window-managers/compton/git.nix
+++ /dev/null
@@ -1,60 +0,0 @@
-{ stdenv, fetchFromGitHub, asciidoc, dbus, docbook_xml_dtd_45,
- docbook_xsl, libconfig, libdrm, libxml2, libxslt, libGLU_combined, pcre,
- pkgconfig, libXcomposite, libXdamage, libXext, libXfixes, libXinerama,
- libXrandr, libXrender, xwininfo }:
-
-stdenv.mkDerivation rec {
- name = "compton-git-${version}";
- version = "2018-05-21";
-
- src = fetchFromGitHub {
- owner = "yshui";
- repo = "compton";
- rev = "9b24550814b7c69065f90039b0a5d0a2281b9f81";
- sha256 = "09nn0q9lgv59chfxljips0n8vnwwxi1yz6hmcsiggsl3zvpabpxl";
- };
-
- nativeBuildInputs = [
- asciidoc
- docbook_xml_dtd_45
- docbook_xsl
- pkgconfig
- ];
-
- buildInputs = [
- dbus
- libXcomposite
- libXdamage
- libXext
- libXfixes
- libXinerama
- libXrandr
- libXrender
- libconfig
- libdrm
- libxml2
- libxslt
- libGLU_combined
- pcre
- ];
-
- propagatedBuildInputs = [ xwininfo ];
-
- installFlags = "PREFIX=$(out)";
-
- meta = with stdenv.lib; {
- description =
- "A fork of XCompMgr, a sample compositing manager for X servers (git version)";
- homepage = https://github.com/yshui/compton/;
- license = licenses.mit;
- longDescription = ''
- A fork of XCompMgr, which is a sample compositing manager for X
- servers supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE
- extensions. It enables basic eye-candy effects. This fork adds
- additional features, such as additional effects, and a fork at a
- well-defined and proper place.
- '';
- maintainers = [ maintainers.ertes maintainers.twey ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/applications/window-managers/dwm/git.nix b/pkgs/applications/window-managers/dwm/git.nix
new file mode 100644
index 0000000000000000000000000000000000000000..aaa32dd6b11beb23a1d1656fd3fc78259d26da06
--- /dev/null
+++ b/pkgs/applications/window-managers/dwm/git.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchgit, libX11, libXinerama, libXft, patches ? [], conf ? null }:
+
+let
+ name = "dwm-git-20180602";
+in
+
+stdenv.mkDerivation {
+ inherit name;
+
+ src = fetchgit {
+ url = "git://git.suckless.org/dwm";
+ rev = "b69c870a3076d78ab595ed1cd4b41cf6b03b2610";
+ sha256 = "10i079h79l4gdch1qy2vrrb2xxxkgkjmgphr5r9a75jbbagwvz0k";
+ };
+
+ buildInputs = [ libX11 libXinerama libXft ];
+
+ prePatch = ''sed -i "s@/usr/local@$out@" config.mk'';
+
+ # Allow users set their own list of patches
+ inherit patches;
+
+ # Allow users to override the entire config file AFTER appying the patches
+ postPatch = stdenv.lib.optionalString (conf!=null) ''
+ echo -n '${conf}' > config.def.h
+ '';
+
+ buildPhase = "make";
+
+ meta = with stdenv.lib; {
+ homepage = https://suckless.org/;
+ description = "Dynamic window manager for X, development version";
+ license = licenses.mit;
+ maintainers = with maintainers; [xeji];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/applications/window-managers/herbstluftwm/default.nix b/pkgs/applications/window-managers/herbstluftwm/default.nix
index 6f3505056c37e68691043310dbdc57dc54f712be..d49c893ca145a13bc69b7000a42fb2d58af7647e 100644
--- a/pkgs/applications/window-managers/herbstluftwm/default.nix
+++ b/pkgs/applications/window-managers/herbstluftwm/default.nix
@@ -1,18 +1,19 @@
{ stdenv, fetchurl, pkgconfig, glib, libX11, libXext, libXinerama }:
stdenv.mkDerivation rec {
- name = "herbstluftwm-0.7.0";
+ name = "herbstluftwm-0.7.1";
src = fetchurl {
url = "https://herbstluftwm.org/tarballs/${name}.tar.gz";
- sha256 = "09xfs213vg1dpird61wik5bqb9yf8kh63ssy18ihf54inwqgqbvy";
+ sha256 = "0d47lbjxxqd8d96hby47bdhyn9mlih7h28712j1vckiz05ig63nw";
};
patchPhase = ''
substituteInPlace config.mk \
--replace "/usr/local" "$out" \
--replace "/etc" "$out/etc" \
- --replace "/zsh/functions/Completion/X" "/zsh/site-functions"
+ --replace "/zsh/functions/Completion/X" "/zsh/site-functions" \
+ --replace "/usr/share" "\$(PREFIX)/share"
'';
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/applications/window-managers/i3/default.nix b/pkgs/applications/window-managers/i3/default.nix
index 513fe06df8f6019c9e1f35a225e90c639b2b2b8c..5c95b9daf2516e01b5bb2e4c630bc673c73e3f12 100644
--- a/pkgs/applications/window-managers/i3/default.nix
+++ b/pkgs/applications/window-managers/i3/default.nix
@@ -36,9 +36,9 @@ stdenv.mkDerivation rec {
# they shouldn't, and then even once that's fixed have some
# perl-related errors later on. For more, see
# https://github.com/NixOS/nixpkgs/issues/7957
- doCheck = false; # stdenv.system == "x86_64-linux";
+ doCheck = false; # stdenv.hostPlatform.system == "x86_64-linux";
- checkPhase = stdenv.lib.optionalString (stdenv.system == "x86_64-linux")
+ checkPhase = stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux")
''
(cd testcases && xvfb-run ./complete-run.pl -p 1 --keep-xserver-output)
! grep -q '^not ok' testcases/latest/complete-run.log
diff --git a/pkgs/applications/window-managers/larswm/default.nix b/pkgs/applications/window-managers/larswm/default.nix
index 7a6c44abb5511f7af9e906ac1cef302be620aba5..21ea00d110e0b58f93f245ffa054d8ec7f318616 100644
--- a/pkgs/applications/window-managers/larswm/default.nix
+++ b/pkgs/applications/window-managers/larswm/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
'';
meta = {
- homepage = http://larswm.fnurt.net/;
+ homepage = http://www.fnurt.net/larswm;
description = "9wm-like tiling window manager";
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.linux;
diff --git a/pkgs/applications/window-managers/ratpoison/default.nix b/pkgs/applications/window-managers/ratpoison/default.nix
index ced8e2e0b9d5b02f6864efec79f22f12fd637da3..fded0ee24a576229073901bb176643486be3efca 100644
--- a/pkgs/applications/window-managers/ratpoison/default.nix
+++ b/pkgs/applications/window-managers/ratpoison/default.nix
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
cripples Emacs and other quality pieces of software.
'';
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = [ maintainers.AndersonTorres ];
};
}
diff --git a/pkgs/applications/window-managers/way-cooler/way-cooler.nix b/pkgs/applications/window-managers/way-cooler/way-cooler.nix
index 8a740b15500da74abf6d444dc46e16af357cdfb5..d7816be562569c95ef52fe5103d5a9262d4c1072 100644
--- a/pkgs/applications/window-managers/way-cooler/way-cooler.nix
+++ b/pkgs/applications/window-managers/way-cooler/way-cooler.nix
@@ -1,6 +1,6 @@
# Generated by carnix 0.6.5: carnix -o way-cooler.nix Cargo.lock
-{ lib, buildPlatform, buildRustCrate, fetchgit }:
-let kernel = buildPlatform.parsed.kernel.name;
+{ lib, stdenv, buildRustCrate, fetchgit }:
+let kernel = stdenv.buildPlatform.parsed.kernel.name;
updateFeatures = f: up: functions: builtins.deepSeq f (lib.lists.foldl' (features: fun: fun features) (lib.attrsets.recursiveUpdate f up) functions);
mapFeatures = features: map (fun: fun { features = features; });
mkFeatures = feat: lib.lists.foldl (features: featureName:
diff --git a/pkgs/applications/window-managers/way-cooler/wc-bg.nix b/pkgs/applications/window-managers/way-cooler/wc-bg.nix
index c63123db7ccbca53bb28cd2fdd15b0fd0e5ab077..4d527715c5f27829a75a31a1d39061076251168e 100644
--- a/pkgs/applications/window-managers/way-cooler/wc-bg.nix
+++ b/pkgs/applications/window-managers/way-cooler/wc-bg.nix
@@ -1,6 +1,6 @@
# Generated by carnix 0.6.5: carnix -o wc-bg.nix Cargo.lock
-{ lib, buildPlatform, buildRustCrate, fetchgit }:
-let kernel = buildPlatform.parsed.kernel.name;
+{ lib, stdenv, buildRustCrate, fetchgit }:
+let kernel = stdenv.buildPlatform.parsed.kernel.name;
updateFeatures = f: up: functions: builtins.deepSeq f (lib.lists.foldl' (features: fun: fun features) (lib.attrsets.recursiveUpdate f up) functions);
mapFeatures = features: map (fun: fun { features = features; });
mkFeatures = feat: lib.lists.foldl (features: featureName:
diff --git a/pkgs/applications/window-managers/way-cooler/wc-grab.nix b/pkgs/applications/window-managers/way-cooler/wc-grab.nix
index 947a9653e56dfbe0cd7a897fcf491bcccb454167..6f936eb2e4325019cbf4d38239be330425808b40 100644
--- a/pkgs/applications/window-managers/way-cooler/wc-grab.nix
+++ b/pkgs/applications/window-managers/way-cooler/wc-grab.nix
@@ -1,6 +1,6 @@
# Generated by carnix 0.6.5: carnix -o wc-grab.nix Cargo.lock
-{ lib, buildPlatform, buildRustCrate, fetchgit }:
-let kernel = buildPlatform.parsed.kernel.name;
+{ lib, stdenv, buildRustCrate, fetchgit }:
+let kernel = stdenv.hostPlatform.parsed.kernel.name;
updateFeatures = f: up: functions: builtins.deepSeq f (lib.lists.foldl' (features: fun: fun features) (lib.attrsets.recursiveUpdate f up) functions);
mapFeatures = features: map (fun: fun { features = features; });
mkFeatures = feat: lib.lists.foldl (features: featureName:
diff --git a/pkgs/applications/window-managers/way-cooler/wc-lock.nix b/pkgs/applications/window-managers/way-cooler/wc-lock.nix
index 008df5479ce1b3b0716fc4fe744453148e7c3eb6..1b9e3df3508e36a115565903cc0a4df03aa30aa9 100644
--- a/pkgs/applications/window-managers/way-cooler/wc-lock.nix
+++ b/pkgs/applications/window-managers/way-cooler/wc-lock.nix
@@ -1,6 +1,6 @@
# Generated by carnix 0.6.5: carnix -o wc-lock.nix Cargo.lock
-{ lib, buildPlatform, buildRustCrate, fetchgit }:
-let kernel = buildPlatform.parsed.kernel.name;
+{ lib, stdenv, buildRustCrate, fetchgit }:
+let kernel = stdenv.hostPlatform.parsed.kernel.name;
updateFeatures = f: up: functions: builtins.deepSeq f (lib.lists.foldl' (features: fun: fun features) (lib.attrsets.recursiveUpdate f up) functions);
mapFeatures = features: map (fun: fun { features = features; });
mkFeatures = feat: lib.lists.foldl (features: featureName:
diff --git a/pkgs/applications/window-managers/weston/default.nix b/pkgs/applications/window-managers/weston/default.nix
index d967f55b81c8a5b827874da02bb54150e27c608d..541c7b539bb9d7878f12f68e08667cf7115efbb8 100644
--- a/pkgs/applications/window-managers/weston/default.nix
+++ b/pkgs/applications/window-managers/weston/default.nix
@@ -7,11 +7,11 @@
stdenv.mkDerivation rec {
name = "weston-${version}";
- version = "4.0.0";
+ version = "5.0.0";
src = fetchurl {
url = "https://wayland.freedesktop.org/releases/${name}.tar.xz";
- sha256 = "0n2big8xw6g6n46zm1jyf00dv9r4d84visdz5b8vxpw3xzkhmz50";
+ sha256 = "1bsc9ry566mpk6fdwkqpvwq2j7m79d9cvh7d3lgf6igsphik98hm";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/build-support/build-fhs-userenv/env.nix b/pkgs/build-support/build-fhs-userenv/env.nix
index d951fb9ab06ed0216dd32a2e8678541f5d5033f7..23568f51b23e16f4b541a7d7ebd7004b9f309003 100644
--- a/pkgs/build-support/build-fhs-userenv/env.nix
+++ b/pkgs/build-support/build-fhs-userenv/env.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildEnv, writeText, pkgs, pkgsi686Linux, system }:
+{ stdenv, buildEnv, writeText, pkgs, pkgsi686Linux }:
{ name, profile ? ""
, targetPkgs ? pkgs: [], multiPkgs ? pkgs: []
@@ -22,7 +22,7 @@
# /lib will link to /lib32
let
- is64Bit = system == "x86_64-linux";
+ is64Bit = stdenv.hostPlatform.parsed.cpu.bits == 64;
isMultiBuild = multiPkgs != null && is64Bit;
isTargetBuild = !isMultiBuild;
diff --git a/pkgs/build-support/kernel/make-initrd.nix b/pkgs/build-support/kernel/make-initrd.nix
index 262bee608eddfa11131e8686d3f28d628e1e1b05..22761af158af42f2866ec8d1245a850179b01bbf 100644
--- a/pkgs/build-support/kernel/make-initrd.nix
+++ b/pkgs/build-support/kernel/make-initrd.nix
@@ -13,14 +13,13 @@
# argument.
{ stdenv, perl, cpio, contents, compressor, prepend, ubootTools
-, hostPlatform
}:
stdenv.mkDerivation rec {
name = "initrd";
builder = ./make-initrd.sh;
- makeUInitrd = hostPlatform.platform.kernelTarget == "uImage";
+ makeUInitrd = stdenv.hostPlatform.platform.kernelTarget == "uImage";
nativeBuildInputs = [ perl cpio ]
++ stdenv.lib.optional makeUInitrd ubootTools;
diff --git a/pkgs/build-support/make-desktopitem/default.nix b/pkgs/build-support/make-desktopitem/default.nix
index f5b4e5af93a0dfdd324dedc71191e5c007c901f3..f8c31ed5c1d424f84a3d6ef90ac44bf04a503ba5 100644
--- a/pkgs/build-support/make-desktopitem/default.nix
+++ b/pkgs/build-support/make-desktopitem/default.nix
@@ -1,36 +1,48 @@
-{stdenv}:
+{stdenv, lib}:
{ name
, type ? "Application"
, exec
-, icon ? ""
-, comment ? ""
+, icon ? null
+, comment ? null
, terminal ? "false"
, desktopName
-, genericName
-, mimeType ? ""
+, genericName ? null
+, mimeType ? null
, categories ? "Application;Other;"
, startupNotify ? null
-, extraEntries ? ""
+, extraEntries ? null
}:
stdenv.mkDerivation {
name = "${name}.desktop";
- buildCommand = ''
+
+ buildCommand = let
+
+ optionalEntriesList = [{k="Icon"; v=icon;}
+ {k="Comment"; v=comment;}
+ {k="GenericName"; v=genericName;}
+ {k="MimeType"; v=mimeType;}
+ {k="StartupNotify"; v=startupNotify;}];
+
+ valueNotNull = {k, v}: v != null;
+ entriesToKeep = builtins.filter valueNotNull optionalEntriesList;
+
+ mkEntry = {k, v}: k + "=" + v;
+ optionalEntriesString = lib.concatMapStringsSep "\n" mkEntry entriesToKeep;
+
+ in
+ ''
mkdir -p $out/share/applications
cat > $out/share/applications/${name}.desktop </bin/python. Interpreters that are
# already in the store are left untouched.
-fixupOutputHooks+=('if [ -z "$dontPatchShebangs" -a -e "$prefix" ]; then patchShebangs "$prefix"; fi')
+fixupOutputHooks+=(patchShebangsAuto)
+
+# Run patch shebangs on a directory.
+# patchShebangs [--build | --host] directory
+
+# Flags:
+# --build : Lookup commands available at build-time
+# --host : Lookup commands available at runtime
+
+# Example use cases,
+# $ patchShebangs --host /nix/store/...-hello-1.0/bin
+# $ patchShebangs --build configure
patchShebangs() {
+ local pathName
+
+ if [ "$1" = "--host" ]; then
+ pathName=HOST_PATH
+ shift
+ elif [ "$1" = "--build" ]; then
+ pathName=PATH
+ shift
+ fi
+
local dir="$1"
+
header "patching script interpreter paths in $dir"
local f
local oldPath
@@ -27,6 +49,14 @@ patchShebangs() {
oldInterpreterLine=$(head -1 "$f" | tail -c+3)
read -r oldPath arg0 args <<< "$oldInterpreterLine"
+ if [ -z "$pathName" ]; then
+ if [ -n "$strictDeps" ] && [[ "$f" = "$NIX_STORE"* ]]; then
+ pathName=HOST_PATH
+ else
+ pathName=PATH
+ fi
+ fi
+
if $(echo "$oldPath" | grep -q "/bin/env$"); then
# Check for unsupported 'env' functionality:
# - options: something starting with a '-'
@@ -35,14 +65,17 @@ patchShebangs() {
echo "unsupported interpreter directive \"$oldInterpreterLine\" (set dontPatchShebangs=1 and handle shebang patching yourself)"
exit 1
fi
- newPath="$(command -v "$arg0" || true)"
+
+ newPath="$(PATH="${!pathName}" command -v "$arg0" || true)"
else
if [ "$oldPath" = "" ]; then
# If no interpreter is specified linux will use /bin/sh. Set
# oldpath="/bin/sh" so that we get /nix/store/.../sh.
oldPath="/bin/sh"
fi
- newPath="$(command -v "$(basename "$oldPath")" || true)"
+
+ newPath="$(PATH="${!pathName}" command -v "$(basename "$oldPath")" || true)"
+
args="$arg0 $args"
fi
@@ -65,3 +98,17 @@ patchShebangs() {
stopNest
}
+
+patchShebangsAuto () {
+ if [ -z "$dontPatchShebangs" -a -e "$prefix" ]; then
+
+ # Dev output will end up being run on the build platform. An
+ # example case of this is sdl2-config. Otherwise, we can just
+ # use the runtime path (--host).
+ if [ "$output" != out ] && [ "$output" = "${!outputDev}" ]; then
+ patchShebangs --build "$prefix"
+ else
+ patchShebangs --host "$prefix"
+ fi
+ fi
+}
diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix
index f9816b2d0d7ccfa7f02b8561118797c473616afb..d2acc2679afafbf88b0c345f6d415653ea1b9321 100644
--- a/pkgs/build-support/trivial-builders.nix
+++ b/pkgs/build-support/trivial-builders.nix
@@ -145,7 +145,10 @@ rec {
# entries is a list of attribute sets like { name = "name" ; path = "/nix/store/..."; }
linkFarm = name: entries: runCommand name { preferLocalBuild = true; }
("mkdir -p $out; cd $out; \n" +
- (lib.concatMapStrings (x: "ln -s '${x.path}' '${x.name}';\n") entries));
+ (lib.concatMapStrings (x: ''
+ mkdir -p "$(dirname '${x.name}')"
+ ln -s '${x.path}' '${x.name}'
+ '') entries));
# Print an error message if the file with the specified name and
diff --git a/pkgs/build-support/vm/windows/controller/default.nix b/pkgs/build-support/vm/windows/controller/default.nix
index 17803a28330f5cfc07c6570aa7b23f85f90e8916..e000308bed8fe97bd5e0dd63c82bd520dc3e5764 100644
--- a/pkgs/build-support/vm/windows/controller/default.nix
+++ b/pkgs/build-support/vm/windows/controller/default.nix
@@ -157,7 +157,7 @@ let
"-net vde,vlan=0,sock=$QEMU_VDE_SOCKET"
]);
- maybeKvm64 = optional (stdenv.system == "x86_64-linux") "-cpu kvm64";
+ maybeKvm64 = optional (stdenv.hostPlatform.system == "x86_64-linux") "-cpu kvm64";
cygwinQemuArgs = concatStringsSep " " (maybeKvm64 ++ [
"-monitor unix:$MONITOR_SOCKET,server,nowait"
diff --git a/pkgs/build-support/vm/windows/cygwin-iso/default.nix b/pkgs/build-support/vm/windows/cygwin-iso/default.nix
index 2c46d5fae9072900e69cd6ba5b77cefecf700283..76cd41a75bc7b47635f0cb238eefbd7ca6366599 100644
--- a/pkgs/build-support/vm/windows/cygwin-iso/default.nix
+++ b/pkgs/build-support/vm/windows/cygwin-iso/default.nix
@@ -17,7 +17,7 @@ let
};
cygwinCross = (import ../../../../.. {
- inherit (stdenv) system;
+ localSystem = stdenv.hostPlatform;
crossSystem = {
libc = "msvcrt";
platform = {};
diff --git a/pkgs/data/icons/faba-icon-theme/default.nix b/pkgs/data/icons/faba-icon-theme/default.nix
index e9d9efcfcb02dff7bb3307f012fcf339dfe64e11..07d2b5ecf02c96abe9a568e96f7f171e5fbbbcb3 100644
--- a/pkgs/data/icons/faba-icon-theme/default.nix
+++ b/pkgs/data/icons/faba-icon-theme/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, meson, ninja, gtk3, elementary-icon-theme }:
+{ stdenv, fetchFromGitHub, meson, ninja, python3, gtk3, elementary-icon-theme }:
stdenv.mkDerivation rec {
name = "${package-name}-${version}";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "0xh6ppr73p76z60ym49b4d0liwdc96w41cc5p07d48hxjsa6qd6n";
};
- nativeBuildInputs = [ meson ninja gtk3 elementary-icon-theme ];
+ nativeBuildInputs = [ meson ninja python3 gtk3 elementary-icon-theme ];
postPatch = ''
patchShebangs meson/post_install.py
diff --git a/pkgs/data/icons/moka-icon-theme/default.nix b/pkgs/data/icons/moka-icon-theme/default.nix
index 2b4bb5d67c3b992a2dac1dc91e7c87d86a550b1c..17892679a7eaa9369cf44cec3da9ce58ee32dfac 100644
--- a/pkgs/data/icons/moka-icon-theme/default.nix
+++ b/pkgs/data/icons/moka-icon-theme/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, meson, ninja, gtk3, faba-icon-theme }:
+{ stdenv, fetchFromGitHub, meson, ninja, gtk3, python3, faba-icon-theme }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "015l02im4mha5z91dbchxf6xkp66d346bg3xskwg0rh3lglhjsrd";
};
- nativeBuildInputs = [ meson ninja gtk3 faba-icon-theme ];
+ nativeBuildInputs = [ meson ninja gtk3 python3 faba-icon-theme ];
postPatch = ''
patchShebangs meson/post_install.py
diff --git a/pkgs/data/icons/numix-cursor-theme/default.nix b/pkgs/data/icons/numix-cursor-theme/default.nix
index 883276b00a8c6185090d021f17858f7676655c6d..edeb61c6d3e1cfa05f2c4ee5c50b9703f6908588 100644
--- a/pkgs/data/icons/numix-cursor-theme/default.nix
+++ b/pkgs/data/icons/numix-cursor-theme/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Numix cursor theme";
- homepage = https://numixproject.org;
+ homepage = https://numixproject.github.io;
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ offline ];
diff --git a/pkgs/data/icons/paper-icon-theme/default.nix b/pkgs/data/icons/paper-icon-theme/default.nix
index 34c949519baaae753aa6cc82e1b54b631595db04..b16c9b076824169e03e0a8f13a8d202efeaf02fe 100644
--- a/pkgs/data/icons/paper-icon-theme/default.nix
+++ b/pkgs/data/icons/paper-icon-theme/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, meson, ninja, gtk3 }:
+{ stdenv, fetchFromGitHub, meson, ninja, gtk3, python3 }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "0x45zkjnmbz904df63ph06npbm3phpgck4xwyymx8r8jgrfplk6v";
};
- nativeBuildInputs = [ meson ninja gtk3 ];
+ nativeBuildInputs = [ meson ninja gtk3 python3 ];
postPatch = ''
patchShebangs meson/post_install.py
diff --git a/pkgs/data/misc/iana-etc/default.nix b/pkgs/data/misc/iana-etc/default.nix
index e6c33fc260e87c4557613f66cb4a5e4576cf77e7..af8270e6eefa1fbb73e8483c729806f98fadf595 100644
--- a/pkgs/data/misc/iana-etc/default.nix
+++ b/pkgs/data/misc/iana-etc/default.nix
@@ -1,12 +1,11 @@
{ stdenv, fetchzip }:
let
- version = "20180711";
+ version = "20180905";
in fetchzip {
name = "iana-etc-${version}";
-
url = "https://github.com/Mic92/iana-etc/releases/download/${version}/iana-etc-${version}.tar.gz";
- sha256 = "0vbgk3paix2v4rlh90a8yh1l39s322awng06izqj44zcg704fjbj";
+ sha256 = "1vl3by24xddl267cjq9bcwb7yvfd7gqalwgd5sgx8i7kz9bk40q2";
postFetch = ''
tar -xzvf $downloadedFile --strip-components=1
diff --git a/pkgs/data/misc/media-player-info/default.nix b/pkgs/data/misc/media-player-info/default.nix
index dbf92ad066f5598937d6bb1b3a55ac675f6cb6b3..6d00f34e97873848a962e3f883ada749219b0b89 100644
--- a/pkgs/data/misc/media-player-info/default.nix
+++ b/pkgs/data/misc/media-player-info/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, pkgconfig, python3, udev, systemd }:
let
- name = "media-player-info-23";
+ name = "media-player-info-24";
in
stdenv.mkDerivation {
@@ -9,7 +9,7 @@ in
src = fetchurl {
url = "https://www.freedesktop.org/software/media-player-info/${name}.tar.gz";
- sha256 = "1jy8xh4xjgjc4wj4qrw6sx2j3606zsj4bgiczhzf3xlpnkh6vax9";
+ sha256 = "0d0i7av8v369hzvlynwlrbickv1brlzsmiky80lrjgjh1gdldkz6";
};
buildInputs = [ udev systemd ];
diff --git a/pkgs/data/misc/nixos-artwork/grub2-theme.nix b/pkgs/data/misc/nixos-artwork/grub2-theme.nix
new file mode 100644
index 0000000000000000000000000000000000000000..8bc6c8adc13e7ce7f699667310c346a132ac304a
--- /dev/null
+++ b/pkgs/data/misc/nixos-artwork/grub2-theme.nix
@@ -0,0 +1,5 @@
+{fetchzip}:
+fetchzip {
+ url = https://github.com/NixOS/nixos-artwork/releases/download/bootloader-18.09-pre/grub2-installer.tar.bz2;
+ sha256 = "0rhh061m1hpgadm7587inw3fxfacnd53xjc53w3vzghlck56djq5";
+}
diff --git a/pkgs/data/misc/nixos-artwork/wallpapers.nix b/pkgs/data/misc/nixos-artwork/wallpapers.nix
index 3a65a9626d141270c82f6630e70f453ea114f18f..648b4f1dd960ca3e4ca8924d7299dc1250f558f6 100644
--- a/pkgs/data/misc/nixos-artwork/wallpapers.nix
+++ b/pkgs/data/misc/nixos-artwork/wallpapers.nix
@@ -23,16 +23,9 @@ let
in
-{
+rec {
- gnome-dark = mkNixBackground {
- name = "gnome-dark-2015-02-27";
- description = "Gnome Dark background for Nix";
- src = fetchurl {
- url = https://raw.githubusercontent.com/NixOS/nixos-artwork/7ece5356398db14b5513392be4b31f8aedbb85a2/gnome/Gnome_Dark.png;
- sha256 = "0c7sl9k4zdjwvdz3nhlm8i4qv4cjr0qagalaa1a438jigixx27l7";
- };
- };
+ gnome-dark = simple-dark-gray-bottom;
mosaic-blue = mkNixBackground {
name = "mosaic-blue-2016-02-19";
@@ -61,6 +54,24 @@ in
};
};
+ simple-dark-gray-bootloader = mkNixBackground {
+ name = "simple-dark-gray-bootloader-2018-08-28";
+ description = "Simple dark gray background for NixOS, specifically bootloaders.";
+ src = fetchurl {
+ url = https://raw.githubusercontent.com/NixOS/nixos-artwork/9d1f11f652ed5ffe460b6c602fbfe2e7e9a08dff/bootloader/nix-wallpaper-simple-dark-gray_bootloader.png;
+ sha256 = "0v26kfydn7alr81f2qpgsqdiq2zk7yrwlgibx2j7k91z9h47dpj9";
+ };
+ };
+
+ simple-dark-gray-bottom = mkNixBackground {
+ name = "simple-dark-gray-2018-08-28";
+ description = "Simple dark gray background for NixOS, specifically bootloaders and graphical login.";
+ src = fetchurl {
+ url = https://raw.githubusercontent.com/NixOS/nixos-artwork/783c38b22de09f6ee33aacc817470a4513392d83/wallpapers/nix-wallpaper-simple-dark-gray_bottom.png;
+ sha256 = "13hi4jwp5ga06dpdw5l03b4znwn58fdjlkqjkg824isqsxzv6k15";
+ };
+ };
+
simple-light-gray = mkNixBackground {
name = "simple-light-gray-2016-02-19";
description = "Simple light gray background for Nix";
diff --git a/pkgs/desktops/deepin/dde-qt-dbus-factory/default.nix b/pkgs/desktops/deepin/dde-qt-dbus-factory/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..007d58b3c3048dad0c09512911bf4c71be127e02
--- /dev/null
+++ b/pkgs/desktops/deepin/dde-qt-dbus-factory/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchFromGitHub, pkgconfig, qmake, python }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "dde-qt-dbus-factory";
+ version = "1.0.4";
+
+ src = fetchFromGitHub {
+ owner = "linuxdeepin";
+ repo = pname;
+ rev = version;
+ sha256 = "0j0f57byzlz2ixgj6qr1pda83bpwn2q8kxv4i2jv99n6g0qw4nmw";
+ };
+
+ nativeBuildInputs = [
+ qmake
+ python
+ ];
+
+ postPatch = ''
+ sed -i libdframeworkdbus/{DFrameworkdbusConfig.in,libdframeworkdbus.pro} \
+ -e "s,/usr,$out,"
+ '';
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "Qt DBus interface library for Deepin software";
+ homepage = https://github.com/linuxdeepin/dde-qt-dbus-factory;
+ license = with licenses; [ gpl3Plus lgpl2Plus ];
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/desktops/deepin/deepin-gettext-tools/default.nix b/pkgs/desktops/deepin/deepin-gettext-tools/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..e275429b3951c859d0803cf0e8f373e1b0a08792
--- /dev/null
+++ b/pkgs/desktops/deepin/deepin-gettext-tools/default.nix
@@ -0,0 +1,46 @@
+{ stdenv, fetchFromGitHub, gettext, python3Packages, perlPackages }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "deepin-gettext-tools";
+ version = "1.0.8";
+
+ src = fetchFromGitHub {
+ owner = "linuxdeepin";
+ repo = pname;
+ rev = version;
+ sha256 = "03cwa82dd14a31v44jd3z0kpiri6g21ar4f48s8ph78nvjy55880";
+ };
+
+ nativeBuildInputs = [
+ python3Packages.wrapPython
+ ];
+
+ buildInputs = [
+ gettext
+ perlPackages.perl
+ perlPackages.XMLLibXML
+ perlPackages.ConfigTiny
+ python3Packages.python
+ ];
+
+ makeFlags = [ "PREFIX=$(out)" ];
+
+ postPatch = ''
+ sed -e 's/sudo cp/cp/' -i src/generate_mo.py
+ '';
+
+ postFixup = ''
+ wrapPythonPrograms
+ wrapPythonProgramsIn "$out/lib/${pname}"
+ wrapProgram $out/bin/deepin-desktop-ts-convert --set PERL5LIB $PERL5LIB
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Deepin Internationalization utilities";
+ homepage = https://github.com/linuxdeepin/deepin-gettext-tools;
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/desktops/deepin/deepin-icon-theme/default.nix b/pkgs/desktops/deepin/deepin-icon-theme/default.nix
index 7a422beb9924df756a903391786cd74a42712ff5..c6d7f3493019633116e9754cb635fcfae17262ca 100644
--- a/pkgs/desktops/deepin/deepin-icon-theme/default.nix
+++ b/pkgs/desktops/deepin/deepin-icon-theme/default.nix
@@ -3,37 +3,32 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "deepin-icon-theme";
- version = "15.12.52";
+ version = "15.12.59";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
- sha256 = "141in9jlflmckd8rg4605dfks84p1p6b1zdbhbiwrg11xbl66f3l";
-
- # Get rid of case collision in file names, which is an issue in
- # darwin where file names are case insensitive.
- extraPostFetch = ''
- rm "$out"/Sea/apps/scalable/TeXmacs.svg
- rm "$out"/deepin/apps/48/TeXmacs.svg
- '';
+ sha256 = "1qkxhqx6a7pahkjhf6m9lm16lw9v9grk0d4j449h9622zwfjkxlq";
};
nativeBuildInputs = [ gtk3 papirus-icon-theme ];
- makeFlags = [ "PREFIX=$(out)" ];
+ postPatch = ''
+ patchShebangs .
- postFixup = ''
- for theme in $out/share/icons/*; do
- gtk-update-icon-cache $theme
- done
+ # install in $out
+ sed -i -e "s|/usr|$out|g" Makefile tools/hicolor.links
+
+ # keep icon-theme.cache
+ sed -i -e 's|\(-rm -f .*/icon-theme.cache\)|# \1|g' Makefile
'';
meta = with stdenv.lib; {
- description = "Deepin icon theme";
+ description = "Icons for the Deepin Desktop Environment";
homepage = https://github.com/linuxdeepin/deepin-icon-theme;
license = licenses.gpl3;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ romildo ];
};
}
diff --git a/pkgs/desktops/deepin/deepin-menu/default.nix b/pkgs/desktops/deepin/deepin-menu/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..df0dcc3790701386c180e70c1a4da2fa0c1c175a
--- /dev/null
+++ b/pkgs/desktops/deepin/deepin-menu/default.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchFromGitHub, pkgconfig, qmake, dtkcore, dtkwidget,
+ qt5integration }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "deepin-menu";
+ version = "3.3.10";
+
+ src = fetchFromGitHub {
+ owner = "linuxdeepin";
+ repo = pname;
+ rev = version;
+ sha256 = "1666821c2irs2hjgr3kvivij6c2fgjva8323kplrz75w2lz518xb";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ qmake
+ ];
+
+ buildInputs = [
+ dtkcore
+ dtkwidget
+ qt5integration
+ ];
+
+ postPatch = ''
+ sed -i deepin-menu.pro -e "s,/usr,$out,"
+ '';
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "Deepin menu service";
+ homepage = https://github.com/linuxdeepin/deepin-menu;
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/desktops/deepin/deepin-terminal/default.nix b/pkgs/desktops/deepin/deepin-terminal/default.nix
index a72bae4384a9501256e8545b54bb2e28fc323acc..2ce7885807ac912f546e58a61f9ca6e524c3d49d 100644
--- a/pkgs/desktops/deepin/deepin-terminal/default.nix
+++ b/pkgs/desktops/deepin/deepin-terminal/default.nix
@@ -1,14 +1,16 @@
-{ stdenv, fetchurl, fetchFromGitHub, pkgconfig, gtk3, vala, cmake, ninja, vte, libgee, wnck, zssh, gettext, librsvg, libsecret, json-glib, gobjectIntrospection }:
+{ stdenv, fetchurl, fetchFromGitHub, pkgconfig, gtk3, vala, cmake,
+ ninja, vte, libgee, wnck, zssh, gettext, librsvg, libsecret,
+ json-glib, gobjectIntrospection, deepin-menu }:
stdenv.mkDerivation rec {
name = "deepin-terminal-${version}";
- version = "3.0.0";
+ version = "3.0.3";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = "deepin-terminal";
rev = version;
- sha256 = "11f2yc0fj05lwhgvdrbrs8xsdm7qgp6wb5wd1f9iyc5nxn7ccl1r";
+ sha256 = "04yvim97a4j8fq5lq2g6svs8qs79np9m4nl6x83iv02wkb9b7gqa";
};
patches = [
@@ -29,17 +31,19 @@ stdenv.mkDerivation rec {
# For setup hook
gobjectIntrospection
];
- buildInputs = [ gtk3 vte libgee wnck librsvg libsecret json-glib ];
+
+ buildInputs = [ gtk3 vte libgee wnck librsvg libsecret json-glib deepin-menu ];
meta = with stdenv.lib; {
description = "The default terminal emulation for Deepin";
longDescription = ''
Deepin terminal, it sharpens your focus in the world of command line!
- It is an advanced terminal emulator with workspace, multiple windows, remote management, quake mode and other features.
+ It is an advanced terminal emulator with workspace, multiple
+ windows, remote management, quake mode and other features.
'';
- homepage = https://github.com/linuxdeepin/deepin-terminal/;
+ homepage = https://github.com/linuxdeepin/deepin-terminal;
license = licenses.gpl3;
- maintainers = with maintainers; [ ];
platforms = platforms.linux;
+ maintainers = [ maintainers.romildo ];
};
}
diff --git a/pkgs/desktops/deepin/default.nix b/pkgs/desktops/deepin/default.nix
index 2070e7bc77f5940ce7b6dac7318da00182c7b913..15e108a651aaf2abe0207937ac55134846da5775 100644
--- a/pkgs/desktops/deepin/default.nix
+++ b/pkgs/desktops/deepin/default.nix
@@ -3,12 +3,19 @@
let
packages = self: with self; {
+ dde-qt-dbus-factory = callPackage ./dde-qt-dbus-factory { };
+ deepin-gettext-tools = callPackage ./deepin-gettext-tools { };
deepin-gtk-theme = callPackage ./deepin-gtk-theme { };
deepin-icon-theme = callPackage ./deepin-icon-theme { };
+ deepin-menu = callPackage ./deepin-menu { };
deepin-terminal = callPackage ./deepin-terminal {
inherit (pkgs.gnome3) libgee vte;
wnck = pkgs.libwnck3;
};
+ dtkcore = callPackage ./dtkcore { };
+ dtkwidget = callPackage ./dtkwidget { };
+ qt5dxcb-plugin = callPackage ./qt5dxcb-plugin { };
+ qt5integration = callPackage ./qt5integration { };
};
diff --git a/pkgs/desktops/deepin/dtkcore/default.nix b/pkgs/desktops/deepin/dtkcore/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..1dfb627c605d289aefec39bb5e68da635cce9b0b
--- /dev/null
+++ b/pkgs/desktops/deepin/dtkcore/default.nix
@@ -0,0 +1,52 @@
+{ stdenv, fetchFromGitHub, pkgconfig, qmake, gsettings-qt, pythonPackages }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "dtkcore";
+ version = "2.0.9";
+
+ src = fetchFromGitHub {
+ owner = "linuxdeepin";
+ repo = pname;
+ rev = version;
+ sha256 = "0jfl4w3sviy59rl41a5507dbhqhsxy7hqw3gf64a57gjlbdskmm1";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ qmake
+ pythonPackages.wrapPython
+ ];
+
+ buildInputs = [
+ gsettings-qt
+ ];
+
+ postPatch = ''
+ # Only define QT_HOST_DATA if it is empty
+ sed '/QT_HOST_DATA=/a }' -i src/dtk_module.prf
+ sed '/QT_HOST_DATA=/i isEmpty(QT_HOST_DATA) {' -i src/dtk_module.prf
+
+ # Fix shebang
+ sed -i tools/script/dtk-translate.py -e "s,#!env,#!/usr/bin/env,"
+ '';
+
+ preConfigure = ''
+ qmakeFlags="$qmakeFlags QT_HOST_DATA=$out"
+ '';
+
+ postFixup = ''
+ chmod +x $out/lib/dtk2/*.py
+ wrapPythonProgramsIn "$out/lib/dtk2" "$out $pythonPath"
+ '';
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "Deepin tool kit core modules";
+ homepage = https://github.com/linuxdeepin/dtkcore;
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/desktops/deepin/dtkwidget/default.nix b/pkgs/desktops/deepin/dtkwidget/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..c9dbd124b03817c71fa241aa56d6c69a98563aa7
--- /dev/null
+++ b/pkgs/desktops/deepin/dtkwidget/default.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchFromGitHub, pkgconfig, qmake, qttools, qtmultimedia,
+ qtsvg, qtx11extras, librsvg, libstartup_notification, gsettings-qt,
+ dde-qt-dbus-factory, dtkcore
+}:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "dtkwidget";
+ version = "2.0.9.3";
+
+ src = fetchFromGitHub {
+ owner = "linuxdeepin";
+ repo = pname;
+ rev = version;
+ sha256 = "1ngspvjvws1d2nkyqjh9y45ilahkd1fqwxnlmazgik4355mb76bv";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ qmake
+ qttools
+ ];
+
+ buildInputs = [
+ qtmultimedia
+ qtsvg
+ qtx11extras
+ librsvg
+ libstartup_notification
+ gsettings-qt
+ dde-qt-dbus-factory
+ dtkcore
+ ];
+
+ preConfigure = ''
+ qmakeFlags="$qmakeFlags \
+ INCLUDE_INSTALL_DIR=$out/include \
+ LIB_INSTALL_DIR=$out/lib \
+ QT_HOST_DATA=$out"
+ '';
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "Deepin graphical user interface library";
+ homepage = https://github.com/linuxdeepin/dtkwidget;
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix b/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..3754de3ea9808910e21385b63aba893f4efb9049
--- /dev/null
+++ b/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchFromGitHub, pkgconfig, qmake, qtx11extras, libSM, mtdev, cairo }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "qt5dxcb-plugin";
+ version = "1.1.11";
+
+ src = fetchFromGitHub {
+ owner = "linuxdeepin";
+ repo = pname;
+ rev = version;
+ sha256 = "157p2cqs9fvd4n4fmxj6mh4cxlc35bkl4rnf832wk2gvjnxdfrfy";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ qmake
+ ];
+
+ buildInputs = [
+ qtx11extras
+ libSM
+ mtdev
+ cairo
+ ];
+
+ preConfigure = ''
+ qmakeFlags="$qmakeFlags INSTALL_PATH=$out/$qtPluginPrefix/platforms"
+ '';
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "Qt platform theme integration plugin for DDE";
+ homepage = https://github.com/linuxdeepin/qt5dxcb-plugin;
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/desktops/deepin/qt5integration/default.nix b/pkgs/desktops/deepin/qt5integration/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..28e06bae42d29b75b7fbd752add6c3fe473d9d87
--- /dev/null
+++ b/pkgs/desktops/deepin/qt5integration/default.nix
@@ -0,0 +1,52 @@
+{ stdenv, fetchFromGitHub, pkgconfig, qmake, mtdev, gsettings-qt
+, lxqt, qtx11extras, qtmultimedia, qtsvg, fontconfig, freetype
+, qt5dxcb-plugin, qtstyleplugins, dtkcore, dtkwidget
+}:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "qt5integration";
+ version = "0.3.5";
+
+ src = fetchFromGitHub {
+ owner = "linuxdeepin";
+ repo = pname;
+ rev = version;
+ sha256 = "0qf9ndsg8pz2n68y68a30d1hxr3ri8k4j00dxlbcf5cn5mbnny1b";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ qmake
+ ];
+
+ buildInputs = [
+ dtkcore
+ dtkwidget
+ qt5dxcb-plugin
+ mtdev
+ lxqt.libqtxdg
+ qtstyleplugins
+ qtx11extras
+ qtmultimedia
+ qtsvg
+ ];
+
+ postPatch = ''
+ sed -i dstyleplugin/dstyleplugin.pro \
+ platformthemeplugin/qt5deepintheme-plugin.pro \
+ iconengineplugins/svgiconengine/svgiconengine.pro \
+ imageformatplugins/svg/svg.pro \
+ -e "s,\$\$\[QT_INSTALL_PLUGINS\],$out/$qtPluginPrefix,"
+ '';
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "Qt platform theme integration plugins for DDE";
+ homepage = https://github.com/linuxdeepin/qt5integration;
+ license = with licenses; [ gpl3 lgpl2Plus bsd2 ];
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix
index 9119d5e93d81fe8b638207c4a0c1c61a837b4f38..8edf702a24c69a6070c305cb69a92483ddd61a87 100644
--- a/pkgs/desktops/enlightenment/enlightenment.nix
+++ b/pkgs/desktops/enlightenment/enlightenment.nix
@@ -6,11 +6,11 @@
stdenv.mkDerivation rec {
name = "enlightenment-${version}";
- version = "0.22.3";
+ version = "0.22.4";
src = fetchurl {
url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz";
- sha256 = "16zydv7z94aw3rywmb9gr8ya85k7b75h22wng95lfx1x0y1yb0ad";
+ sha256 = "0ygy891rrw5c7lhk539nhif77j88phvz2h0fhx172iaridy9kx2r";
};
nativeBuildInputs = [
@@ -57,16 +57,6 @@ stdenv.mkDerivation rec {
];
postPatch = ''
- # In order to get the available keyboard layouts Enlightenment looks for
- # the file xorg.lst, that should be provided by xkeyboard-config (when
- # configured with option --with-xkb-rules-symlink=xorg). Currently
- # xkeyboard-config is not configured with this option in
- # NixOS. Therefore it is needed to add base.lst (which xorg.lst would be
- # a symbolic link to) explicitly as an alternative.
-
- sed "/#ifdef XKB_BASE/a XKB_BASE \"\/rules\/base.lst\"," \
- -i src/modules/wizard/page_011.c src/modules/xkbswitch/e_mod_parse.c
-
# edge_cc is a binary provided by efl and cannot be found at the directory
# given by e_prefix_bin_get(), which is $out/bin
diff --git a/pkgs/desktops/gnome-3/apps/bijiben/default.nix b/pkgs/desktops/gnome-3/apps/bijiben/default.nix
index 06510c8f34acaf006e53d699ae347621b41d79ea..38c729a1c42914115d03e981af49d1bfcf2f3ce9 100644
--- a/pkgs/desktops/gnome-3/apps/bijiben/default.nix
+++ b/pkgs/desktops/gnome-3/apps/bijiben/default.nix
@@ -1,5 +1,5 @@
{ stdenv, meson, ninja, gettext, fetchurl, pkgconfig
-, wrapGAppsHook, itstool, desktop-file-utils
+, wrapGAppsHook, itstool, desktop-file-utils, python3
, glib, gtk3, evolution-data-server
, libuuid, webkitgtk, zeitgeist
, gnome3, libxml2 }:
@@ -22,7 +22,7 @@ in stdenv.mkDerivation rec {
'';
nativeBuildInputs = [
- meson ninja pkgconfig gettext itstool libxml2 desktop-file-utils wrapGAppsHook
+ meson ninja pkgconfig gettext itstool libxml2 desktop-file-utils python3 wrapGAppsHook
];
buildInputs = [
diff --git a/pkgs/desktops/gnome-3/apps/file-roller/default.nix b/pkgs/desktops/gnome-3/apps/file-roller/default.nix
index 45aab553c41881d6b2c6f1d3fd0b411f508115ee..bd97393b7b69c18fc7c094c64534c8b97b539171 100644
--- a/pkgs/desktops/gnome-3/apps/file-roller/default.nix
+++ b/pkgs/desktops/gnome-3/apps/file-roller/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, glib, gtk, meson, ninja, pkgconfig, gnome3, gettext, itstool, libxml2, libarchive
-, file, json-glib, wrapGAppsHook, desktop-file-utils, libnotify, nautilus, glibcLocales }:
+, file, json-glib, python3, wrapGAppsHook, desktop-file-utils, libnotify, nautilus, glibcLocales }:
stdenv.mkDerivation rec {
name = "file-roller-${version}";
@@ -12,11 +12,11 @@ stdenv.mkDerivation rec {
LANG = "en_US.UTF-8"; # postinstall.py
- nativeBuildInputs = [ meson ninja gettext itstool pkgconfig libxml2 wrapGAppsHook glibcLocales desktop-file-utils ];
+ nativeBuildInputs = [ meson ninja gettext itstool pkgconfig libxml2 python3 wrapGAppsHook glibcLocales desktop-file-utils ];
buildInputs = [ glib gtk json-glib libarchive file gnome3.defaultIconTheme libnotify nautilus ];
- PKG_CONFIG_LIBNAUTILUS_EXTENSION_EXTENSIONDIR = "lib/nautilus/extensions-3.0";
+ PKG_CONFIG_LIBNAUTILUS_EXTENSION_EXTENSIONDIR = "${placeholder "out"}/lib/nautilus/extensions-3.0";
postPatch = ''
chmod +x postinstall.py # patchShebangs requires executable file
diff --git a/pkgs/desktops/gnome-3/apps/gnome-boxes/default.nix b/pkgs/desktops/gnome-3/apps/gnome-boxes/default.nix
index 6d55cbe8ee799734a0a16aaefd813de94ee636c5..b6679ccc2695ff387042953a539c19198272fad3 100644
--- a/pkgs/desktops/gnome-3/apps/gnome-boxes/default.nix
+++ b/pkgs/desktops/gnome-3/apps/gnome-boxes/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, meson, ninja, wrapGAppsHook, pkgconfig, gettext, itstool, libvirt-glib
-, glib, gobjectIntrospection, libxml2, gtk3, gtkvnc, libvirt, spice-gtk
+, glib, gobjectIntrospection, libxml2, gtk3, gtk-vnc, libvirt, spice-gtk, python3
, spice-protocol, libsoup, libosinfo, systemd, tracker, tracker-miners, vala
, libcap, yajl, gmp, gdbm, cyrus_sasl, gnome3, librsvg, desktop-file-utils
, mtools, cdrkit, libcdio, libusb, libarchive, acl, libgudev, qemu, libsecret
@@ -21,14 +21,14 @@ in stdenv.mkDerivation rec {
doCheck = true;
nativeBuildInputs = [
- meson ninja vala pkgconfig gettext itstool wrapGAppsHook gobjectIntrospection desktop-file-utils
+ meson ninja vala pkgconfig gettext itstool wrapGAppsHook gobjectIntrospection desktop-file-utils python3
];
# Required for USB redirection PolicyKit rules file
propagatedUserEnvPkgs = [ spice-gtk ];
buildInputs = [
- libvirt-glib glib gtk3 gtkvnc libxml2
+ libvirt-glib glib gtk3 gtk-vnc libxml2
libvirt spice-gtk spice-protocol libsoup json-glib webkitgtk libosinfo systemd
tracker tracker-miners libcap yajl gmp gdbm cyrus_sasl libusb libarchive
gnome3.defaultIconTheme librsvg acl libgudev libsecret
diff --git a/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix b/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
index 347cd7a16ae05301ee981aa7648b54d0e15ed963..05275fa01ac5760a05ac7088866c1ed08e697965 100644
--- a/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
+++ b/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, meson, ninja, pkgconfig, wrapGAppsHook, libdazzle, libgweather, geoclue2, geocode-glib
+{ stdenv, fetchurl, meson, ninja, pkgconfig, wrapGAppsHook, libdazzle, libgweather, geoclue2, geocode-glib, python3
, gettext, libxml2, gnome3, gtk, evolution-data-server, libsoup
, glib, gnome-online-accounts, gsettings-desktop-schemas }:
@@ -20,7 +20,7 @@ in stdenv.mkDerivation rec {
};
};
- nativeBuildInputs = [ meson ninja pkgconfig gettext libxml2 wrapGAppsHook ];
+ nativeBuildInputs = [ meson ninja pkgconfig gettext libxml2 wrapGAppsHook python3 ];
buildInputs = [
gtk evolution-data-server libsoup glib gnome-online-accounts libdazzle libgweather geoclue2 geocode-glib
gsettings-desktop-schemas gnome3.defaultIconTheme
diff --git a/pkgs/desktops/gnome-3/apps/gnome-characters/default.nix b/pkgs/desktops/gnome-3/apps/gnome-characters/default.nix
index b5525957d468de4ac961a847ba818230212351de..8b497fbf433d8c3c91d5e6880b59a5895480831b 100644
--- a/pkgs/desktops/gnome-3/apps/gnome-characters/default.nix
+++ b/pkgs/desktops/gnome-3/apps/gnome-characters/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, gnome3, glib, gtk3, pango, wrapGAppsHook
+{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, gnome3, glib, gtk3, pango, wrapGAppsHook, python3
, gobjectIntrospection, gjs, libunistring }:
stdenv.mkDerivation rec {
@@ -22,11 +22,11 @@ stdenv.mkDerivation rec {
};
};
- nativeBuildInputs = [ meson ninja pkgconfig gettext wrapGAppsHook gobjectIntrospection ];
+ nativeBuildInputs = [ meson ninja pkgconfig gettext wrapGAppsHook python3 gobjectIntrospection ];
buildInputs = [ glib gtk3 gjs pango gnome3.gsettings-desktop-schemas gnome3.defaultIconTheme libunistring ];
mesonFlags = [
- "-Ddbus_service_dir=share/dbus-1/services"
+ "-Ddbus_service_dir=${placeholder "out"}/share/dbus-1/services"
];
meta = with stdenv.lib; {
diff --git a/pkgs/desktops/gnome-3/apps/gnome-documents/default.nix b/pkgs/desktops/gnome-3/apps/gnome-documents/default.nix
index a7d4288c9eb5483b4255a2f7cfec66c35553fa27..e600284550b741f2512cc4486d61c62e958a9901 100644
--- a/pkgs/desktops/gnome-3/apps/gnome-documents/default.nix
+++ b/pkgs/desktops/gnome-3/apps/gnome-documents/default.nix
@@ -2,17 +2,17 @@
, pkgconfig, gtk3, glib, tracker, tracker-miners
, itstool, libxslt, webkitgtk, libgdata
, gnome-desktop, libzapojit, libgepub
-, gnome3, gdk_pixbuf, libsoup, docbook_xsl
+, gnome3, gdk_pixbuf, libsoup, docbook_xsl, docbook_xml_dtd_42
, gobjectIntrospection, inkscape, poppler_utils
-, desktop-file-utils, wrapGAppsHook }:
+, desktop-file-utils, wrapGAppsHook, python3 }:
stdenv.mkDerivation rec {
name = "gnome-documents-${version}";
- version = "3.28.1";
+ version = "3.28.2";
src = fetchurl {
url = "mirror://gnome/sources/gnome-documents/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "1i0s246bg9xcjxgbajph744pn65bq5gk6r9kkl3f5iwdq3rjc0pm";
+ sha256 = "0aannnq39gjg6jnjm4kr8fqigg5npjvd8dyxw7k4hy4ny0ffxwjq";
};
doCheck = true;
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
mesonFlags = [ "-Dgetting-started=true" ];
nativeBuildInputs = [
- meson ninja pkgconfig gettext itstool libxslt desktop-file-utils docbook_xsl wrapGAppsHook
+ meson ninja pkgconfig gettext itstool libxslt desktop-file-utils docbook_xsl docbook_xml_dtd_42 wrapGAppsHook python3
inkscape poppler_utils # building getting started
];
buildInputs = [
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
'';
preFixup = ''
- substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib.dev}/bin/gapplication"
+ substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib.bin}/bin/gapplication"
'';
passthru = {
diff --git a/pkgs/desktops/gnome-3/apps/gnome-power-manager/default.nix b/pkgs/desktops/gnome-3/apps/gnome-power-manager/default.nix
index 70ed4403f100c5939864746cd8c746c06f594557..a7861dcf74d9f6327926390cd4dd8d866fbe7b5f 100644
--- a/pkgs/desktops/gnome-3/apps/gnome-power-manager/default.nix
+++ b/pkgs/desktops/gnome-3/apps/gnome-power-manager/default.nix
@@ -7,6 +7,7 @@
, meson
, ninja
, upower
+, python3
, desktop-file-utils
, wrapGAppsHook
, gnome3 }:
@@ -37,6 +38,7 @@ in stdenv.mkDerivation rec {
gettext
# needed by meson_post_install.sh
+ python3
glib.dev
desktop-file-utils
];
diff --git a/pkgs/desktops/gnome-3/apps/gnome-todo/default.nix b/pkgs/desktops/gnome-3/apps/gnome-todo/default.nix
index 8e506b52270a93aa9de8e3678897ae0d886a3f51..3a9f33f46f00bdebfb0bf9c016139f5f5103fbe5 100644
--- a/pkgs/desktops/gnome-3/apps/gnome-todo/default.nix
+++ b/pkgs/desktops/gnome-3/apps/gnome-todo/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, meson, ninja, pkgconfig, wrapGAppsHook
+{ stdenv, fetchurl, meson, ninja, pkgconfig, python3, wrapGAppsHook
, gettext, gnome3, glib, gtk, libpeas
, gnome-online-accounts, gsettings-desktop-schemas
, evolution-data-server, libxml2, libsoup, libical, rest, json-glib }:
@@ -15,7 +15,7 @@ in stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- meson ninja pkgconfig gettext wrapGAppsHook
+ meson ninja pkgconfig gettext python3 wrapGAppsHook
];
buildInputs = [
glib gtk libpeas gnome-online-accounts
diff --git a/pkgs/desktops/gnome-3/apps/vinagre/default.nix b/pkgs/desktops/gnome-3/apps/vinagre/default.nix
index 566624431dc62a93804cd29e45fab658cff1e61b..a8fe76ee03f994d44ed1beeed9285c721771d3eb 100644
--- a/pkgs/desktops/gnome-3/apps/vinagre/default.nix
+++ b/pkgs/desktops/gnome-3/apps/vinagre/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, vte, libxml2, gtkvnc, intltool
-, libsecret, itstool, makeWrapper, librsvg }:
+{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, vte, libxml2, gtk-vnc, intltool
+, libsecret, itstool, wrapGAppsHook, librsvg }:
stdenv.mkDerivation rec {
name = "vinagre-${version}";
@@ -10,25 +10,25 @@ stdenv.mkDerivation rec {
sha256 = "cd1cdbacca25c8d1debf847455155ee798c3e67a20903df8b228d4ece5505e82";
};
- passthru = {
- updateScript = gnome3.updateScript { packageName = "vinagre"; attrPath = "gnome3.vinagre"; };
- };
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ gtk3 vte libxml2 gtkvnc intltool libsecret
- itstool makeWrapper gnome3.defaultIconTheme librsvg ];
+ nativeBuildInputs = [ pkgconfig intltool itstool wrapGAppsHook ];
+ buildInputs = [
+ gtk3 vte libxml2 gtk-vnc libsecret gnome3.defaultIconTheme librsvg
+ ];
NIX_CFLAGS_COMPILE = "-Wno-format-nonliteral";
- preFixup = ''
- wrapProgram "$out/bin/vinagre" \
- --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:$out/share"
- '';
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = "vinagre";
+ attrPath = "gnome3.vinagre";
+ };
+ };
meta = with stdenv.lib; {
- homepage = https://wiki.gnome.org/Apps/Vinagre;
description = "Remote desktop viewer for GNOME";
- platforms = platforms.linux;
+ homepage = https://wiki.gnome.org/Apps/Vinagre;
+ license = licenses.gpl2Plus;
maintainers = gnome3.maintainers;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/desktops/gnome-3/core/caribou/default.nix b/pkgs/desktops/gnome-3/core/caribou/default.nix
index 48be01faf33f829ad9959d2ed727bb0527d64b9b..acfd6dfb37455a09550d57cd36979fb6116a16f1 100644
--- a/pkgs/desktops/gnome-3/core/caribou/default.nix
+++ b/pkgs/desktops/gnome-3/core/caribou/default.nix
@@ -1,11 +1,11 @@
-{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, python3Packages, libxml2
+{ fetchurl, stdenv, pkgconfig, gnome3, glib, gtk3, clutter, dbus, python3, libxml2
, libxklavier, libXtst, gtk2, intltool, libxslt, at-spi2-core, autoreconfHook
, wrapGAppsHook }:
let
pname = "caribou";
version = "0.4.21";
- pythonEnv = python3Packages.python.withPackages ( ps: with ps; [ pygobject3 ] );
+ pythonEnv = python3.withPackages ( ps: with ps; [ pygobject3 ] );
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
@@ -14,11 +14,21 @@ in stdenv.mkDerivation rec {
sha256 = "0mfychh1q3dx0b96pjz9a9y112bm9yqyim40yykzxx1hppsdjhww";
};
+ patches = [
+ # Fix crash in GNOME Flashback
+ # https://bugzilla.gnome.org/show_bug.cgi?id=791001
+ (fetchurl {
+ url = https://bugzilla.gnome.org/attachment.cgi?id=364774;
+ sha256 = "15k1455grf6knlrxqbjnk7sals1730b0whj30451scp46wyvykvd";
+ })
+ ];
+
nativeBuildInputs = [ pkgconfig intltool libxslt libxml2 autoreconfHook wrapGAppsHook ];
- buildInputs = with gnome3;
- [ glib gtk clutter at-spi2-core dbus pythonEnv python3Packages.pygobject3
- libXtst gtk2 ];
+ buildInputs = [
+ glib gtk3 clutter at-spi2-core dbus pythonEnv python3.pkgs.pygobject3
+ libXtst gtk2
+ ];
propagatedBuildInputs = [ gnome3.libgee libxklavier ];
@@ -37,9 +47,8 @@ in stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "An input assistive technology intended for switch and pointer users";
homepage = https://wiki.gnome.org/Projects/Caribou;
- platforms = platforms.linux;
license = licenses.lgpl21;
maintainers = gnome3.maintainers;
+ platforms = platforms.linux;
};
-
}
diff --git a/pkgs/desktops/gnome-3/core/dconf-editor/default.nix b/pkgs/desktops/gnome-3/core/dconf-editor/default.nix
index 57c102d89cc517b64f6830a5d535abb8125694ef..13d73fa34d2fbe1328a5ae62d3f239db16175a0e 100644
--- a/pkgs/desktops/gnome-3/core/dconf-editor/default.nix
+++ b/pkgs/desktops/gnome-3/core/dconf-editor/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, meson, ninja, vala, libxslt, pkgconfig, glib, dbus-glib, gtk3, gnome3
+{ stdenv, fetchurl, meson, ninja, vala, libxslt, pkgconfig, glib, dbus-glib, gtk3, gnome3, python3
, libxml2, gettext, docbook_xsl, wrapGAppsHook, gobjectIntrospection }:
let
@@ -12,7 +12,7 @@ in stdenv.mkDerivation rec {
sha256 = "0nhcpwqrkmpxbhaf0cafvy6dlp6s7vhm5vknl4lgs3l24zc56ns5";
};
- nativeBuildInputs = [ meson ninja vala libxslt pkgconfig wrapGAppsHook gettext docbook_xsl libxml2 gobjectIntrospection ];
+ nativeBuildInputs = [ meson ninja vala libxslt pkgconfig wrapGAppsHook gettext docbook_xsl libxml2 gobjectIntrospection python3 ];
buildInputs = [ glib dbus-glib gtk3 gnome3.defaultIconTheme gnome3.dconf ];
diff --git a/pkgs/desktops/gnome-3/core/eog/default.nix b/pkgs/desktops/gnome-3/core/eog/default.nix
index e5483333d403a37b4da48e907ef63d162d2da6f5..8459ba2c126b26adeb29c10fb84f1bcfa6674ef5 100644
--- a/pkgs/desktops/gnome-3/core/eog/default.nix
+++ b/pkgs/desktops/gnome-3/core/eog/default.nix
@@ -1,6 +1,6 @@
{ fetchurl, stdenv, meson, ninja, gettext, itstool, pkgconfig, libxml2, libjpeg, libpeas, gnome3
, gtk3, glib, gsettings-desktop-schemas, adwaita-icon-theme, gnome-desktop, lcms2, gdk_pixbuf, exempi
-, shared-mime-info, wrapGAppsHook, librsvg, libexif, gobjectIntrospection }:
+, shared-mime-info, wrapGAppsHook, librsvg, libexif, gobjectIntrospection, python3 }:
let
pname = "eog";
@@ -13,7 +13,7 @@ in stdenv.mkDerivation rec {
sha256 = "1lj8v9m8jdxc3d4nzmgrxcccddg3hh8lkbmz4g71yxa0ykxxvbip";
};
- nativeBuildInputs = [ meson ninja pkgconfig gettext itstool wrapGAppsHook libxml2 gobjectIntrospection ];
+ nativeBuildInputs = [ meson ninja pkgconfig gettext itstool wrapGAppsHook libxml2 gobjectIntrospection python3 ];
buildInputs = [
libjpeg gtk3 gdk_pixbuf glib libpeas librsvg lcms2 gnome-desktop libexif exempi
diff --git a/pkgs/desktops/gnome-3/core/epiphany/default.nix b/pkgs/desktops/gnome-3/core/epiphany/default.nix
index 9613606f777ae3295177e9245fc1aa4e4d741c6a..01232b0f99778b7d14a982c56b11d163d2aabf7e 100644
--- a/pkgs/desktops/gnome-3/core/epiphany/default.nix
+++ b/pkgs/desktops/gnome-3/core/epiphany/default.nix
@@ -1,7 +1,7 @@
{ stdenv, meson, ninja, gettext, fetchurl, pkgconfig, gtk, glib, icu
, wrapGAppsHook, gnome3, libxml2, libxslt, itstool
, webkitgtk, libsoup, glib-networking, libsecret, gnome-desktop, libnotify, p11-kit
-, sqlite, gcr, isocodes, desktop-file-utils
+, sqlite, gcr, isocodes, desktop-file-utils, python3
, gdk_pixbuf, gst_all_1, json-glib }:
stdenv.mkDerivation rec {
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
mesonFlags = [ "-Dunit_tests=false" ];
nativeBuildInputs = [
- meson ninja libxslt pkgconfig itstool gettext wrapGAppsHook desktop-file-utils
+ meson ninja libxslt pkgconfig itstool gettext wrapGAppsHook desktop-file-utils python3
];
buildInputs = [
diff --git a/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix b/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
index 842ad66342276eb905b3b074cb01a917e52416e8..c355c9bbce694105ffcf7a5805f2ffb09b981c8f 100644
--- a/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
+++ b/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
@@ -37,11 +37,9 @@ stdenv.mkDerivation rec {
"-DENABLE_VALA_BINDINGS=ON"
"-DENABLE_INTROSPECTION=ON"
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
+ "-DINCLUDE_INSTALL_DIR=${placeholder "dev"}/include"
];
- postPatch = ''
- cmakeFlags="-DINCLUDE_INSTALL_DIR=$dev/include $cmakeFlags"
- '';
passthru = {
updateScript = gnome3.updateScript {
diff --git a/pkgs/desktops/gnome-3/core/gnome-bluetooth/default.nix b/pkgs/desktops/gnome-3/core/gnome-bluetooth/default.nix
index d65f282e03b8bdd23c35ea54fc650a36a21617f4..e7acbe8706ec7e0f13473a7b7ce3aab55a741122 100644
--- a/pkgs/desktops/gnome-3/core/gnome-bluetooth/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-bluetooth/default.nix
@@ -1,28 +1,47 @@
{ stdenv, fetchurl, gnome3, meson, ninja, pkgconfig, gtk3, intltool, glib
-, udev, itstool, libxml2, wrapGAppsHook, libnotify, libcanberra-gtk3, gobjectIntrospection }:
+, udev, itstool, libxml2, wrapGAppsHook, libnotify, libcanberra-gtk3, gobjectIntrospection
+, gtk-doc, docbook_xsl, docbook_xml_dtd_43 }:
-stdenv.mkDerivation rec {
- name = "gnome-bluetooth-${version}";
- version = "3.28.1";
+let
+ pname = "gnome-bluetooth";
+in stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ version = "3.28.2";
+
+ # TODO: split out "lib"
+ outputs = [ "out" "dev" "devdoc" "man" ];
src = fetchurl {
- url = "mirror://gnome/sources/gnome-bluetooth/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "1g3yrq5792qvc5rxnf26cgciawrca27hqn6wxfcf63bpa2dsjcsn";
+ url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
+ sha256 = "0ch7lll5n8v7m26y6y485gnrik19ml42rsh1drgcxydm6fn62j8z";
};
- passthru = {
- updateScript = gnome3.updateScript { packageName = "gnome-bluetooth"; attrPath = "gnome3.gnome-bluetooth"; };
- };
+ nativeBuildInputs = [
+ meson ninja intltool itstool pkgconfig libxml2 wrapGAppsHook gobjectIntrospection
+ gtk-doc docbook_xsl docbook_xml_dtd_43
+ ];
+ buildInputs = [
+ glib gtk3 udev libnotify libcanberra-gtk3
+ gnome3.defaultIconTheme gnome3.gsettings-desktop-schemas
+ ];
- nativeBuildInputs = [ meson ninja intltool itstool pkgconfig libxml2 wrapGAppsHook gobjectIntrospection ];
- buildInputs = [ glib gtk3 udev libnotify libcanberra-gtk3
- gnome3.defaultIconTheme gnome3.gsettings-desktop-schemas ];
+ mesonFlags = [
+ "-Dicon_update=false"
+ "-Dgtk_doc=true"
+ ];
postPatch = ''
chmod +x meson_post_install.py # patchShebangs requires executable file
patchShebangs meson_post_install.py
'';
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ attrPath = "gnome3.${pname}";
+ };
+ };
+
meta = with stdenv.lib; {
homepage = https://help.gnome.org/users/gnome-bluetooth/stable/index.html.en;
description = "Application that let you manage Bluetooth in the GNOME destkop";
diff --git a/pkgs/desktops/gnome-3/core/gnome-calculator/default.nix b/pkgs/desktops/gnome-3/core/gnome-calculator/default.nix
index 794f37fcbbdc5ba62d1ef1daa01cb03c6e3ed598..2f4743ee26336b9fee63105fc1881b2a482346bf 100644
--- a/pkgs/desktops/gnome-3/core/gnome-calculator/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-calculator/default.nix
@@ -1,5 +1,5 @@
{ stdenv, meson, ninja, vala, gettext, itstool, fetchurl, pkgconfig, libxml2
-, gtk3, glib, gtksourceview3, wrapGAppsHook, gobjectIntrospection
+, gtk3, glib, gtksourceview3, wrapGAppsHook, gobjectIntrospection, python3
, gnome3, mpfr, gmp, libsoup, libmpc }:
stdenv.mkDerivation rec {
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- meson ninja pkgconfig vala gettext itstool wrapGAppsHook
+ meson ninja pkgconfig vala gettext itstool wrapGAppsHook python3
gobjectIntrospection # for finding vapi files
];
diff --git a/pkgs/desktops/gnome-3/core/gnome-contacts/default.nix b/pkgs/desktops/gnome-3/core/gnome-contacts/default.nix
index 5799e613d5bcb18d216f9e8938df30a5af621454..a9541d64b03c51f9b2266ab0bd968072cfc2947e 100644
--- a/pkgs/desktops/gnome-3/core/gnome-contacts/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-contacts/default.nix
@@ -1,5 +1,5 @@
{ stdenv, gettext, fetchurl, evolution-data-server
-, pkgconfig, libxslt, docbook_xsl, docbook_xml_dtd_42, gtk3, glib, cheese
+, pkgconfig, libxslt, docbook_xsl, docbook_xml_dtd_42, python3, gtk3, glib, cheese
, libchamplain, clutter-gtk, geocode-glib, gnome-desktop, gnome-online-accounts
, wrapGAppsHook, folks, libxml2, gnome3, telepathy-glib
, vala, meson, ninja }:
@@ -17,7 +17,7 @@ in stdenv.mkDerivation rec {
propagatedUserEnvPkgs = [ evolution-data-server ];
nativeBuildInputs = [
- meson ninja pkgconfig vala gettext libxslt docbook_xsl docbook_xml_dtd_42 wrapGAppsHook
+ meson ninja pkgconfig vala gettext libxslt docbook_xsl docbook_xml_dtd_42 python3 wrapGAppsHook
];
buildInputs = [
diff --git a/pkgs/desktops/gnome-3/core/gnome-control-center/default.nix b/pkgs/desktops/gnome-3/core/gnome-control-center/default.nix
index 6d5777614118f9c4346f0a45d049b6fb3bf59e29..6a57e4cdff48ff38f4b89dc30dfe7370f9574d82 100644
--- a/pkgs/desktops/gnome-3/core/gnome-control-center/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-control-center/default.nix
@@ -5,7 +5,7 @@
, cracklib, libkrb5, networkmanagerapplet, networkmanager, glibc
, libwacom, samba, shared-mime-info, tzdata, libtool, libgnomekbd
, docbook_xsl, modemmanager, clutter, clutter-gtk, cheese
-, fontconfig, sound-theme-freedesktop, grilo }:
+, fontconfig, sound-theme-freedesktop, grilo, python3 }:
let
pname = "gnome-control-center";
@@ -20,7 +20,7 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [
meson ninja pkgconfig gettext wrapGAppsHook libtool libxslt docbook_xsl
- shared-mime-info
+ shared-mime-info python3
];
buildInputs = with gnome3; [
diff --git a/pkgs/desktops/gnome-3/core/gnome-desktop/default.nix b/pkgs/desktops/gnome-3/core/gnome-desktop/default.nix
index e909a356866c9f97a329a643cd009961519eba16..d6402a3b5b6c75e0363559042f4c0a418280e7cd 100644
--- a/pkgs/desktops/gnome-3/core/gnome-desktop/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-desktop/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, libxslt, which, libX11, gnome3, gtk3, glib
+{ stdenv, fetchurl, substituteAll, pkgconfig, libxslt, which, libX11, gnome3, gtk3, glib
, intltool, libxml2, xkeyboard_config, isocodes, itstool, wayland
, libseccomp, bubblewrap, gobjectIntrospection, gtk-doc, docbook_xsl }:
@@ -30,18 +30,16 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ gnome3.gsettings-desktop-schemas ];
patches = [
- ./bubblewrap-paths.patch
+ (substituteAll {
+ src = ./bubblewrap-paths.patch;
+ BUBBLEWRAP_BIN = "${bubblewrap}/bin/bwrap";
+ })
];
configureFlags = [
"--enable-gtk-doc"
];
- postPatch = ''
- substituteInPlace libgnome-desktop/gnome-desktop-thumbnail-script.c --subst-var-by \
- BUBBLEWRAP_BIN "${bubblewrap}/bin/bwrap"
- '';
-
passthru = {
updateScript = gnome3.updateScript {
packageName = "gnome-desktop";
diff --git a/pkgs/desktops/gnome-3/core/gnome-disk-utility/default.nix b/pkgs/desktops/gnome-3/core/gnome-disk-utility/default.nix
index 2eb66b02627bcf5d85c847b93c6d19dc13608309..a572e617766eee61fe247a983a485c8aba364702 100644
--- a/pkgs/desktops/gnome-3/core/gnome-disk-utility/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-disk-utility/default.nix
@@ -1,5 +1,5 @@
{ stdenv, gettext, fetchurl, pkgconfig, udisks2, libsecret, libdvdread
-, meson, ninja, gtk, glib, wrapGAppsHook, libnotify
+, meson, ninja, gtk, glib, wrapGAppsHook, python3, libnotify
, itstool, gnome3, libxml2
, libcanberra-gtk3, libxslt, docbook_xsl, libpwquality }:
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
meson ninja pkgconfig gettext itstool libxslt docbook_xsl
- wrapGAppsHook libxml2
+ wrapGAppsHook python3 libxml2
];
buildInputs = [
gtk glib libsecret libpwquality libnotify libdvdread libcanberra-gtk3
diff --git a/pkgs/desktops/gnome-3/core/gnome-font-viewer/default.nix b/pkgs/desktops/gnome-3/core/gnome-font-viewer/default.nix
index 7e76b8991fd49c3e6ad775bc69392644eae72840..6af2f7f4b03f0f5211784f0331e56d0d0f85530b 100644
--- a/pkgs/desktops/gnome-3/core/gnome-font-viewer/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-font-viewer/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "gnome-font-viewer-${version}";
- version = "3.28.0";
+ version = "3.30.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-font-viewer/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "16mp22f255b8zqnnlqh25n6v79b9bd0gmli9ywqyapa0cfai09x3";
+ sha256 = "1wwnx2zrlbd2d6np7m9s78alx6j6ranrnh1g2z6zrv9qcj8rpzz5";
};
passthru = {
diff --git a/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix b/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
index acb32bc174cad74ca190dabba2977430d0c0fb8a..cce192c9f29d4fde4bf27b6367672d718cd1f408 100644
--- a/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, pkgconfig, dbus, libgcrypt, libtasn1, pam, python2, glib, libxslt
-, intltool, pango, gcr, gdk_pixbuf, atk, p11-kit, openssh, wrapGAppsHook
-, docbook_xsl, docbook_xml_dtd_42, gnome3 }:
+{ stdenv, fetchurl, pkgconfig, dbus, libgcrypt, pam, python2, glib, libxslt
+, gettext, gcr, libcap_ng, libselinux, p11-kit, openssh, wrapGAppsHook
+, docbook_xsl, docbook_xml_dtd_43, gnome3 }:
stdenv.mkDerivation rec {
name = "gnome-keyring-${version}";
@@ -11,21 +11,15 @@ stdenv.mkDerivation rec {
sha256 = "0sk4las4ji8wv9nx8mldzqccmpmkvvr9pdwv9imj26r10xyin5w1";
};
- passthru = {
- updateScript = gnome3.updateScript { packageName = "gnome-keyring"; attrPath = "gnome3.gnome-keyring"; };
- };
-
outputs = [ "out" "dev" ];
- buildInputs = with gnome3; [
- dbus libgcrypt pam gtk3 libgnome-keyring openssh
- pango gcr gdk_pixbuf atk p11-kit
+ buildInputs = [
+ glib libgcrypt pam openssh libcap_ng libselinux
+ gcr p11-kit
];
- propagatedBuildInputs = [ glib libtasn1 libxslt ];
-
nativeBuildInputs = [
- pkgconfig intltool docbook_xsl docbook_xml_dtd_42 wrapGAppsHook
+ pkgconfig gettext libxslt docbook_xsl docbook_xml_dtd_43 wrapGAppsHook
];
configureFlags = [
@@ -48,6 +42,13 @@ stdenv.mkDerivation rec {
make check
'';
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = "gnome-keyring";
+ attrPath = "gnome3.gnome-keyring";
+ };
+ };
+
meta = with stdenv.lib; {
description = "Collection of components in GNOME that store secrets, passwords, keys, certificates and make them available to applications";
homepage = https://wiki.gnome.org/Projects/GnomeKeyring;
diff --git a/pkgs/desktops/gnome-3/core/gnome-screenshot/default.nix b/pkgs/desktops/gnome-3/core/gnome-screenshot/default.nix
index f5b33c88f574e490e69421d734ad41c5766b55e3..c92280ed56639a51c009991e8b71dc3a1dfe5f4b 100644
--- a/pkgs/desktops/gnome-3/core/gnome-screenshot/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-screenshot/default.nix
@@ -1,5 +1,5 @@
{ stdenv, gettext, libxml2, fetchurl, pkgconfig, libcanberra-gtk3
-, gtk3, glib, meson, ninja, wrapGAppsHook, appstream-glib, desktop-file-utils
+, gtk3, glib, meson, ninja, python3, wrapGAppsHook, appstream-glib, desktop-file-utils
, gnome3 }:
let
@@ -20,7 +20,7 @@ in stdenv.mkDerivation rec {
patchShebangs build-aux/postinstall.py
'';
- nativeBuildInputs = [ meson ninja pkgconfig gettext appstream-glib libxml2 desktop-file-utils wrapGAppsHook ];
+ nativeBuildInputs = [ meson ninja pkgconfig gettext appstream-glib libxml2 desktop-file-utils python3 wrapGAppsHook ];
buildInputs = [
gtk3 glib libcanberra-gtk3 gnome3.defaultIconTheme
gnome3.gsettings-desktop-schemas
diff --git a/pkgs/desktops/gnome-3/core/gnome-settings-daemon/default.nix b/pkgs/desktops/gnome-3/core/gnome-settings-daemon/default.nix
index cfb41c01e6ade95344487181b9b2f25715ec0b9c..bfaf430d5932fe8ad0c175d2ef01e0c3429a8cd3 100644
--- a/pkgs/desktops/gnome-3/core/gnome-settings-daemon/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-settings-daemon/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
];
mesonFlags = [
- "-Dudev_dir=lib/udev"
+ "-Dudev_dir=${placeholder "out"}/lib/udev"
];
postPatch = ''
diff --git a/pkgs/desktops/gnome-3/core/gnome-shell/default.nix b/pkgs/desktops/gnome-3/core/gnome-shell/default.nix
index b4d309e19813b3511edaf021d26c947937eda834..8e09c960e75e8286832def35d9912259bc80d91f 100644
--- a/pkgs/desktops/gnome-3/core/gnome-shell/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-shell/default.nix
@@ -2,7 +2,7 @@
, python3Packages, libsoup, polkit, clutter, networkmanager, docbook_xsl , docbook_xsl_ns, at-spi2-core
, libstartup_notification, telepathy-glib, telepathy-logger, libXtst, unzip, glibcLocales, shared-mime-info
, libgweather, libcanberra-gtk3, librsvg, geoclue2, perl, docbook_xml_dtd_42, desktop-file-utils
-, libpulseaudio, libical, gobjectIntrospection, gstreamer, wrapGAppsHook
+, libpulseaudio, libical, gobjectIntrospection, gstreamer, wrapGAppsHook, libxslt
, accountsservice, gdk_pixbuf, gdm, upower, ibus, networkmanagerapplet
, sassc, systemd, gst_all_1 }:
@@ -27,7 +27,7 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [
meson ninja pkgconfig gettext docbook_xsl docbook_xsl_ns docbook_xml_dtd_42 perl wrapGAppsHook glibcLocales
- sassc desktop-file-utils
+ sassc desktop-file-utils libxslt.bin
];
buildInputs = with gnome3; [
systemd caribou
diff --git a/pkgs/desktops/gnome-3/core/gnome-user-share/default.nix b/pkgs/desktops/gnome-3/core/gnome-user-share/default.nix
index da117a536911a629704365c5d712e7f9d7747692..5ae579417aec4ea1ae2133871452164bcbbc57f2 100644
--- a/pkgs/desktops/gnome-3/core/gnome-user-share/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-user-share/default.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
postInstall = ''
mkdir -p $out/share/gsettings-schemas/$name
mv $out/share/glib-2.0 $out/share/gsettings-schemas/$name
- ${glib.dev}/bin/glib-compile-schemas $out/share/gsettings-schemas/$name/glib-2.0/schemas
+ glib-compile-schemas "$out/share/gsettings-schemas/$name/glib-2.0/schemas"
'';
meta = with stdenv.lib; {
diff --git a/pkgs/desktops/gnome-3/core/libgee/default.nix b/pkgs/desktops/gnome-3/core/libgee/default.nix
index a5ce9ee5e10528971626a05ca03900a23b87df62..a65d0f401f0ea4b388f6317d6fe72f9c5a1422b3 100644
--- a/pkgs/desktops/gnome-3/core/libgee/default.nix
+++ b/pkgs/desktops/gnome-3/core/libgee/default.nix
@@ -6,6 +6,8 @@ in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
+ outputs = [ "out" "dev" ];
+
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "0c26x8gi3ivmhlbqcmiag4jwrkvcy28ld24j55nqr3jikb904a5v";
@@ -13,11 +15,12 @@ stdenv.mkDerivation rec {
doCheck = true;
- patches = [ ./fix_introspection_paths.patch ];
-
nativeBuildInputs = [ pkgconfig autoconf vala gobjectIntrospection ];
buildInputs = [ glib ];
+ PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "${placeholder "dev"}/share/gir-1.0";
+ PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "${placeholder "out"}/lib/girepository-1.0";
+
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
diff --git a/pkgs/desktops/gnome-3/core/libgee/fix_introspection_paths.patch b/pkgs/desktops/gnome-3/core/libgee/fix_introspection_paths.patch
deleted file mode 100644
index 67003f451645d2a88c91d9c41859eca0e5fce403..0000000000000000000000000000000000000000
--- a/pkgs/desktops/gnome-3/core/libgee/fix_introspection_paths.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- fix_introspection_paths.patch/configure 2014-01-07 17:43:53.521339338 +0000
-+++ fix_introspection_paths.patch/configure-fix 2014-01-07 17:45:11.068635069 +0000
-@@ -12085,8 +12085,8 @@
- INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
- INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
- INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
-- INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
-- INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
-+ INTROSPECTION_GIRDIR="${datadir}/gir-1.0"
-+ INTROSPECTION_TYPELIBDIR="${libdir}/girepository-1.0"
- INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0`
- INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0`
- INTROSPECTION_MAKEFILE=`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection
diff --git a/pkgs/desktops/gnome-3/core/libgweather/default.nix b/pkgs/desktops/gnome-3/core/libgweather/default.nix
index beab024652729723e4804efa09898d2927a1ebb0..23405af50d3b62812f21a70376fd6f8f56c961df 100644
--- a/pkgs/desktops/gnome-3/core/libgweather/default.nix
+++ b/pkgs/desktops/gnome-3/core/libgweather/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, meson, ninja, pkgconfig, libxml2, glib, gtk, gettext, libsoup
-, gtk-doc, docbook_xsl, gobjectIntrospection, tzdata, geocode-glib, vala, gnome3 }:
+, gtk-doc, docbook_xsl, docbook_xml_dtd_43, gobjectIntrospection, python3, tzdata, geocode-glib, vala, gnome3 }:
let
pname = "libgweather";
@@ -14,7 +14,7 @@ in stdenv.mkDerivation rec {
sha256 = "0xfy5ghwvnz2g9074dy6512m4z2pv66pmja14vhi9imgacbfh708";
};
- nativeBuildInputs = [ meson ninja pkgconfig gettext vala gtk-doc docbook_xsl gobjectIntrospection ];
+ nativeBuildInputs = [ meson ninja pkgconfig gettext vala gtk-doc docbook_xsl docbook_xml_dtd_43 gobjectIntrospection python3 ];
buildInputs = [ glib gtk libsoup libxml2 geocode-glib ];
postPatch = ''
diff --git a/pkgs/desktops/gnome-3/core/nautilus/default.nix b/pkgs/desktops/gnome-3/core/nautilus/default.nix
index 5beabd08fa3a23b33a86f68936ebcf184f73c1a0..33beb8a87d375b1be0b5b3e643b3745b058d9c54 100644
--- a/pkgs/desktops/gnome-3/core/nautilus/default.nix
+++ b/pkgs/desktops/gnome-3/core/nautilus/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, libxml2, desktop-file-utils, wrapGAppsHook
+{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, libxml2, desktop-file-utils, python3, wrapGAppsHook
, gtk, gnome3, gnome-autoar, dbus-glib, shared-mime-info, libnotify, libexif
, exempi, librsvg, tracker, tracker-miners, gnome-desktop, gexiv2, libselinux, gdk_pixbuf }:
@@ -13,7 +13,7 @@ in stdenv.mkDerivation rec {
sha256 = "19dhpa2ylrg8d5274lahy7xqr2p9z3jnq1h4qmsh95czkpy7is4w";
};
- nativeBuildInputs = [ meson ninja pkgconfig libxml2 gettext wrapGAppsHook desktop-file-utils ];
+ nativeBuildInputs = [ meson ninja pkgconfig libxml2 gettext python3 wrapGAppsHook desktop-file-utils ];
buildInputs = [
dbus-glib shared-mime-info libexif gtk exempi libnotify libselinux
diff --git a/pkgs/desktops/gnome-3/core/simple-scan/default.nix b/pkgs/desktops/gnome-3/core/simple-scan/default.nix
index e4458b7d0a3f91699aa4f6cf01b41d4c19a6118c..8596a059ca5dee11948f498f2ca2153f96439995 100644
--- a/pkgs/desktops/gnome-3/core/simple-scan/default.nix
+++ b/pkgs/desktops/gnome-3/core/simple-scan/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, itstool, wrapGAppsHook
+{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, itstool, python3, wrapGAppsHook
, cairo, gdk_pixbuf, colord, glib, gtk, gusb, packagekit, libwebp
, libxml2, sane-backends, vala, gnome3, gobjectIntrospection }:
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
buildInputs = [ cairo gdk_pixbuf colord glib gnome3.defaultIconTheme gusb
gtk libwebp packagekit sane-backends vala ];
nativeBuildInputs = [
- meson ninja gettext itstool pkgconfig wrapGAppsHook libxml2
+ meson ninja gettext itstool pkgconfig python3 wrapGAppsHook libxml2
# For setup hook
gobjectIntrospection
];
diff --git a/pkgs/desktops/gnome-3/core/totem/default.nix b/pkgs/desktops/gnome-3/core/totem/default.nix
index b8197ccf83c52bb791a62aecaa7d324e18155638..50e060c13c3a59036fcf1ea1f73fef242b4ab666 100644
--- a/pkgs/desktops/gnome-3/core/totem/default.nix
+++ b/pkgs/desktops/gnome-3/core/totem/default.nix
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
'';
mesonFlags = [
- "-Dwith-nautilusdir=lib/nautilus/extensions-3.0"
+ "-Dwith-nautilusdir=${placeholder "out"}/lib/nautilus/extensions-3.0"
# https://bugs.launchpad.net/ubuntu/+source/totem/+bug/1712021
# https://bugzilla.gnome.org/show_bug.cgi?id=784236
# https://github.com/mesonbuild/meson/issues/1994
diff --git a/pkgs/desktops/gnome-3/core/tracker-miners/default.nix b/pkgs/desktops/gnome-3/core/tracker-miners/default.nix
index dc55fa9a7b4ac22c16d0ab97f62e0ad79c133210..ad5b40d3c088ab13aa0857f4e5d7cb9f416da1ee 100644
--- a/pkgs/desktops/gnome-3/core/tracker-miners/default.nix
+++ b/pkgs/desktops/gnome-3/core/tracker-miners/default.nix
@@ -1,24 +1,24 @@
-{ stdenv, fetchurl, substituteAll, intltool, itstool, libxslt, makeWrapper
+{ stdenv, fetchurl, substituteAll, intltool, itstool, libxslt
, meson, ninja, pkgconfig, vala, wrapGAppsHook, bzip2, dbus, evolution-data-server
, exempi, flac, giflib, glib, gnome3, gst_all_1, icu, json-glib, libcue, libexif
-, libgsf, libiptcdata, libjpeg, libpng, libseccomp, libsoup, libtiff, libuuid
+, libgrss, libgsf, libiptcdata, libjpeg, libpng, libseccomp, libsoup, libtiff, libuuid
, libvorbis, libxml2, poppler, taglib, upower }:
-stdenv.mkDerivation rec {
- name = "${pname}-${version}";
+let
pname = "tracker-miners";
- version = "2.0.5";
+in stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ version = "2.1.3";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "00k8nb8dbkjnqjk12gcs5n2cm6yny553qildsm5b2c8nfs1w16b4";
+ sha256 = "10j6iifq0ccnqckdx7fqlrfifbvs08jbczgxajldz26057kwp8fz";
};
nativeBuildInputs = [
intltool
itstool
libxslt
- makeWrapper
meson
ninja
pkgconfig
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
wrapGAppsHook
];
- # TODO: add libgrss, libenca, libosinfo
+ # TODO: add libenca, libosinfo
buildInputs = [
bzip2
dbus
@@ -44,6 +44,7 @@ stdenv.mkDerivation rec {
json-glib
libcue
libexif
+ libgrss
libgsf
libiptcdata
libjpeg
@@ -60,7 +61,8 @@ stdenv.mkDerivation rec {
];
mesonFlags = [
- "-Dminer_rss=false" # needs libgrss
+ # TODO: tests do not like our sandbox
+ "-Dfunctional_tests=false"
];
patches = [
@@ -75,13 +77,7 @@ stdenv.mkDerivation rec {
})
];
- passthru = {
- updateScript = gnome3.updateScript {
- packageName = pname;
- attrPath = "gnome3.${pname}";
- };
- };
-
+ # Symlinks require absolute path and we still cannot use placeholders
# https://github.com/NixOS/nixpkgs/pull/39534#discussion_r184339131
# https://github.com/NixOS/nixpkgs/pull/37693
preConfigure = ''
@@ -89,13 +85,16 @@ stdenv.mkDerivation rec {
'';
postInstall = ''
- ${glib.dev}/bin/glib-compile-schemas $out/share/glib-2.0/schemas
+ glib-compile-schemas "$out/share/glib-2.0/schemas"
'';
- # https://bugzilla.gnome.org/show_bug.cgi?id=796145
- postFixup = ''
- rm $out/share/tracker/miners/org.freedesktop.Tracker1.Miner.RSS.service
- '';
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ attrPath = "gnome3.${pname}";
+ versionPolicy = "none";
+ };
+ };
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Projects/Tracker;
diff --git a/pkgs/desktops/gnome-3/core/tracker-miners/fix-paths.patch b/pkgs/desktops/gnome-3/core/tracker-miners/fix-paths.patch
index 847e3bf204dde13b9065cf982d485d0e00eccf2d..47ad114eb0b50d1f0a81902b49c8ceb3307055fc 100644
--- a/pkgs/desktops/gnome-3/core/tracker-miners/fix-paths.patch
+++ b/pkgs/desktops/gnome-3/core/tracker-miners/fix-paths.patch
@@ -1,6 +1,28 @@
+--- a/meson.build
++++ b/meson.build
+@@ -25,15 +25,15 @@
+ #
+ # This check acts as a guard to make sure we are being configured with the
+ # right prefix, among other things.
+- tracker_store = find_program(join_paths(get_option('prefix'), get_option('libexecdir'), 'tracker-store'))
++ tracker_store = find_program(join_paths(tracker_miner.get_pkgconfig_variable('prefix'), 'libexec', 'tracker-store'))
+ tracker_store_path = tracker_store.path()
+
+ # If we are building against an installed version of tracker core rather than
+ # having it as a subproject, these 'uninstalled' locations point to the actual
+ # installed locations.
+- tracker_uninstalled_domain_rule = join_paths(get_option('prefix'), get_option('datadir'), 'tracker', 'domain-ontologies', 'default.rule')
+- tracker_uninstalled_nepomuk_ontologies_dir = join_paths(get_option('prefix'), get_option('datadir'), 'tracker', 'ontologies', 'nepomuk')
+- tracker_uninstalled_stop_words_dir = join_paths(get_option('prefix'), get_option('datadir'), 'tracker', 'stop-words', 'default.rule')
++ tracker_uninstalled_domain_rule = join_paths(tracker_miner.get_pkgconfig_variable('prefix'), 'share', 'tracker', 'domain-ontologies', 'default.rule')
++ tracker_uninstalled_nepomuk_ontologies_dir = join_paths(tracker_miner.get_pkgconfig_variable('prefix'), 'share', 'tracker', 'ontologies', 'nepomuk')
++ tracker_uninstalled_stop_words_dir = join_paths(tracker_miner.get_pkgconfig_variable('prefix'), 'share', 'tracker', 'stop-words', 'default.rule')
+ else
+ tracker_subproject = subproject('tracker',
+ default_options: [
--- a/src/libtracker-miners-common/tracker-domain-ontology.c
+++ b/src/libtracker-miners-common/tracker-domain-ontology.c
-@@ -313,7 +313,7 @@
+@@ -323,7 +323,7 @@
goto end;
}
} else {
@@ -9,7 +31,7 @@
DEFAULT_RULE, NULL);
if (!g_file_test (path, G_FILE_TEST_IS_REGULAR)) {
-@@ -372,7 +372,7 @@
+@@ -388,7 +388,7 @@
if (!priv->ontology_location) {
gchar *ontology_path;
diff --git a/pkgs/desktops/gnome-3/core/tracker/default.nix b/pkgs/desktops/gnome-3/core/tracker/default.nix
index 649960c0bf3f02a2637bdbe2bfce0330efa5b8df..ef6f31490a5b14aac4a4bfd111fdb480edbc2fae 100644
--- a/pkgs/desktops/gnome-3/core/tracker/default.nix
+++ b/pkgs/desktops/gnome-3/core/tracker/default.nix
@@ -1,39 +1,53 @@
-{ stdenv, fetchurl, intltool, pkgconfig, gobjectIntrospection
-, libxml2, upower, glib, wrapGAppsHook, vala, sqlite, libxslt
+{ stdenv, fetchurl, intltool, meson, ninja, pkgconfig, gobjectIntrospection, python2
+, gtk-doc, docbook_xsl, docbook_xml_dtd_412, docbook_xml_dtd_43, glibcLocales
+, libxml2, upower, glib, wrapGAppsHook, vala, sqlite, libxslt, libstemmer
, gnome3, icu, libuuid, networkmanager, libsoup, json-glib }:
let
pname = "tracker";
- version = "2.0.4";
+ version = "2.1.3";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
- outputs = [ "out" "dev" ];
+ outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "1mfc5lv820kr7ssi7hldn25gmshh65k19kh478qjsnb64sshsbyf";
+ sha256 = "00gimpn2ydv3yka25cmw3i0n402d2nhx7992byvq4yvhr77rni22";
};
- enableParallelBuilding = true;
+ nativeBuildInputs = [
+ meson ninja vala pkgconfig intltool libxslt wrapGAppsHook gobjectIntrospection
+ gtk-doc docbook_xsl docbook_xml_dtd_412 docbook_xml_dtd_43 glibcLocales
+ python2 # for data-generators
+ ];
- nativeBuildInputs = [ vala pkgconfig intltool libxslt wrapGAppsHook gobjectIntrospection ];
- # TODO: add libstemmer
buildInputs = [
- glib libxml2 sqlite upower icu networkmanager libsoup libuuid json-glib
+ glib libxml2 sqlite upower icu networkmanager libsoup libuuid json-glib libstemmer
];
- # TODO: figure out wrapping unit tests, some of them fail on missing gsettings-desktop-schemas
- configureFlags = [ "--disable-unit-tests" ];
+ LC_ALL = "en_US.UTF-8";
+
+ mesonFlags = [
+ "-Ddbus_services=share/dbus-1/services"
+ # TODO: figure out wrapping unit tests, some of them fail on missing gsettings-desktop-schemas
+ "-Dfunctional_tests=false"
+ ];
postPatch = ''
patchShebangs utils/g-ir-merge/g-ir-merge
+ patchShebangs utils/data-generators/cc/generate
+ '';
+
+ postInstall = ''
+ glib-compile-schemas "$out/share/glib-2.0/schemas"
'';
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
+ versionPolicy = "none";
};
};
diff --git a/pkgs/desktops/gnome-3/default.nix b/pkgs/desktops/gnome-3/default.nix
index 18db0e5ba812b7db8648560cdc2f103abf552c40..d90440d5f55768ec553d7082f05c80b92693c8dc 100644
--- a/pkgs/desktops/gnome-3/default.nix
+++ b/pkgs/desktops/gnome-3/default.nix
@@ -43,7 +43,7 @@ lib.makeScope pkgs.newScope (self: with self; {
inherit (pkgs) atk glib gobjectIntrospection gspell webkitgtk gtk3 gtkmm3
libgtop libgudev libhttpseverywhere librsvg libsecret gdk_pixbuf gtksourceview gtksourceview4
easytag meld orca rhythmbox shotwell gnome-usage
- clutter clutter-gst clutter-gtk cogl gtkvnc libdazzle;
+ clutter clutter-gst clutter-gtk cogl gtk-vnc libdazzle;
libsoup = pkgs.libsoup.override { gnomeSupport = true; };
libchamplain = pkgs.libchamplain.override { libsoup = libsoup; };
@@ -399,6 +399,8 @@ lib.makeScope pkgs.newScope (self: with self; {
gnome-packagekit = callPackage ./misc/gnome-packagekit { };
+ # TODO: remove this after 18.09 has forked off
+ gconf = throw "gconf is deprecated since 2009 and has been removed from the package set. Use gnome2.GConf instead. For more details see https://github.com/NixOS/nixpkgs/pull/43268";
} // lib.optionalAttrs (config.allowAliases or true) {
#### Legacy aliases
diff --git a/pkgs/desktops/gnome-3/devtools/devhelp/default.nix b/pkgs/desktops/gnome-3/devtools/devhelp/default.nix
index 63fa2ebddcff319159c68d75831bdd232d0d6070..aa0f545c2dbd9bf4d5a9890be90805ceed277d68 100644
--- a/pkgs/desktops/gnome-3/devtools/devhelp/default.nix
+++ b/pkgs/desktops/gnome-3/devtools/devhelp/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, meson, ninja, pkgconfig, gnome3, gtk3, wrapGAppsHook
-, glib, amtk, appstream-glib, gobjectIntrospection
+, glib, amtk, appstream-glib, gobjectIntrospection, python3
, webkitgtk, gettext, itstool, gsettings-desktop-schemas }:
stdenv.mkDerivation rec {
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "1rzilsn0v8dj86djankllc5f10d58f6rwg4w1fffh5zly10nlli5";
};
- nativeBuildInputs = [ meson ninja pkgconfig gettext itstool wrapGAppsHook appstream-glib gobjectIntrospection ];
+ nativeBuildInputs = [ meson ninja pkgconfig gettext itstool wrapGAppsHook appstream-glib gobjectIntrospection python3 ];
buildInputs = [
glib gtk3 webkitgtk amtk
gnome3.defaultIconTheme gsettings-desktop-schemas
diff --git a/pkgs/desktops/gnome-3/extensions/caffeine/default.nix b/pkgs/desktops/gnome-3/extensions/caffeine/default.nix
index d556c5e55ca4bbe4155755dc06d61a7dc28cfbd0..cc945159716922cf61f9db59202258cca18f0566 100644
--- a/pkgs/desktops/gnome-3/extensions/caffeine/default.nix
+++ b/pkgs/desktops/gnome-3/extensions/caffeine/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
buildPhase = ''
${bash}/bin/bash ./update-locale.sh
- ${glib.dev}/bin/glib-compile-schemas --strict --targetdir=caffeine@patapon.info/schemas/ caffeine@patapon.info/schemas
+ glib-compile-schemas --strict --targetdir=caffeine@patapon.info/schemas/ caffeine@patapon.info/schemas
'';
installPhase = ''
diff --git a/pkgs/desktops/gnome-3/extensions/mediaplayer/default.nix b/pkgs/desktops/gnome-3/extensions/mediaplayer/default.nix
index f64a0ef3f27e22f0170692f3ba7166ec24518cf0..6038443944f2a4761bb34e2a6215201d054a658f 100644
--- a/pkgs/desktops/gnome-3/extensions/mediaplayer/default.nix
+++ b/pkgs/desktops/gnome-3/extensions/mediaplayer/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, glib, meson, gettext, ninja }:
+{ stdenv, fetchFromGitHub, glib, meson, gettext, ninja, python3 }:
stdenv.mkDerivation rec {
name = "gnome-shell-extensions-mediaplayer-${version}";
@@ -14,6 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
meson
ninja
+ python3
];
buildInputs = [
glib
diff --git a/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix b/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix
index 395e90d263efc3bd2c07e6723b450d01ab13a491..b4b34d91c18efbe8097f76bdc2010b23694939ca 100644
--- a/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix
+++ b/pkgs/desktops/gnome-3/extensions/system-monitor/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
];
buildPhase = ''
- ${glib.dev}/bin/glib-compile-schemas --targetdir=${uuid}/schemas ${uuid}/schemas
+ glib-compile-schemas --targetdir=${uuid}/schemas ${uuid}/schemas
'';
installPhase = ''
diff --git a/pkgs/desktops/gnome-3/extensions/volume-mixer.nix b/pkgs/desktops/gnome-3/extensions/volume-mixer.nix
index 1487efe0a23fe251a42776d24b0c5605213e81b2..19ced0b5252cd9ceea1b919fc84aae694f54aca6 100644
--- a/pkgs/desktops/gnome-3/extensions/volume-mixer.nix
+++ b/pkgs/desktops/gnome-3/extensions/volume-mixer.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
];
buildPhase = ''
- ${glib.dev}/bin/glib-compile-schemas --targetdir=${uuid}/schemas ${uuid}/schemas
+ glib-compile-schemas --targetdir=${uuid}/schemas ${uuid}/schemas
'';
installPhase = ''
diff --git a/pkgs/desktops/gnome-3/games/atomix/default.nix b/pkgs/desktops/gnome-3/games/atomix/default.nix
index 8ea4b82ca039d6099f06f4a03a3ebbc708951bd5..f7a18f4c5c3121502f62b45851b5fa50bf07990a 100644
--- a/pkgs/desktops/gnome-3/games/atomix/default.nix
+++ b/pkgs/desktops/gnome-3/games/atomix/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, meson, ninja, pkgconfig, wrapGAppsHook
+{ stdenv, fetchurl, meson, ninja, pkgconfig, wrapGAppsHook, python3
, gettext, gnome3, glib, gtk3, libgnome-games-support, gdk_pixbuf }:
let
@@ -12,7 +12,7 @@ in stdenv.mkDerivation rec {
sha256 = "1k8bvwywpvw5f13pw40brk6c3rz2mdz9cd4zhcawg7qdm77dvcvb";
};
- nativeBuildInputs = [ meson ninja pkgconfig gettext wrapGAppsHook ];
+ nativeBuildInputs = [ meson ninja pkgconfig gettext wrapGAppsHook python3 ];
buildInputs = [ glib gtk3 gdk_pixbuf libgnome-games-support gnome3.defaultIconTheme ];
postPatch = ''
diff --git a/pkgs/desktops/gnome-3/games/gnome-chess/default.nix b/pkgs/desktops/gnome-3/games/gnome-chess/default.nix
index aebd72d65df2d8a99c907670e68f7d12c4304d64..01e23384b8eaedf43dd99465f408b753e235afea 100644
--- a/pkgs/desktops/gnome-3/games/gnome-chess/default.nix
+++ b/pkgs/desktops/gnome-3/games/gnome-chess/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, meson, ninja, vala, pkgconfig, wrapGAppsHook, gobjectIntrospection
-, gettext, itstool, libxml2, gnome3, glib, gtk3, librsvg }:
+, gettext, itstool, libxml2, python3, gnome3, glib, gtk3, librsvg }:
stdenv.mkDerivation rec {
name = "gnome-chess-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "1q8gc0mq8k2b7pjy363g0yjd80czqknw6ssqzbvgqx5b8nkfvmv1";
};
- nativeBuildInputs = [ meson ninja vala pkgconfig gettext itstool libxml2 wrapGAppsHook gobjectIntrospection ];
+ nativeBuildInputs = [ meson ninja vala pkgconfig gettext itstool libxml2 python3 wrapGAppsHook gobjectIntrospection ];
buildInputs = [ glib gtk3 librsvg gnome3.defaultIconTheme ];
postPatch = ''
diff --git a/pkgs/desktops/gnome-3/games/gnome-mines/default.nix b/pkgs/desktops/gnome-3/games/gnome-mines/default.nix
index 33672054a37328cabce46031f75869985a98b336..297e1a9ed7bfc34fc9610017eace9eb627c4c4af 100644
--- a/pkgs/desktops/gnome-3/games/gnome-mines/default.nix
+++ b/pkgs/desktops/gnome-3/games/gnome-mines/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, meson, ninja, vala, gobjectIntrospection, pkgconfig, gnome3, gtk3, wrapGAppsHook
-, librsvg, gettext, itstool, libxml2, libgnome-games-support, libgee }:
+, librsvg, gettext, itstool, python3, libxml2, libgnome-games-support, libgee }:
stdenv.mkDerivation rec {
name = "gnome-mines-${version}";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
};
# gobjectIntrospection for finding vapi files
- nativeBuildInputs = [ meson ninja vala gobjectIntrospection pkgconfig gettext itstool libxml2 wrapGAppsHook ];
+ nativeBuildInputs = [ meson ninja vala gobjectIntrospection pkgconfig gettext itstool python3 libxml2 wrapGAppsHook ];
buildInputs = [ gtk3 librsvg gnome3.defaultIconTheme libgnome-games-support libgee ];
postPatch = ''
diff --git a/pkgs/desktops/gnome-3/games/gnome-nibbles/default.nix b/pkgs/desktops/gnome-3/games/gnome-nibbles/default.nix
index 7390108953f76a57041188e7b3969bb02c1a25da..c871fbbf916003d58c48b77da8610cdaf011efcf 100644
--- a/pkgs/desktops/gnome-3/games/gnome-nibbles/default.nix
+++ b/pkgs/desktops/gnome-3/games/gnome-nibbles/default.nix
@@ -4,29 +4,31 @@
stdenv.mkDerivation rec {
name = "gnome-nibbles-${version}";
- version = "3.24.0";
+ version = "3.24.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-nibbles/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "0ddc1fe03483958dd5513d04f5919ade991902d12da18a4c2d3307f818a5cb4f";
+ sha256 = "19g44cnrb191v50bdvy2qkrfhvyfsahd0kx9hz95x9gkjfn2nn35";
};
- passthru = {
- updateScript = gnome3.updateScript { packageName = "gnome-nibbles"; attrPath = "gnome3.gnome-nibbles"; };
- };
-
- nativeBuildInputs = [ pkgconfig ];
+ nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool itstool libxml2 ];
buildInputs = [
- gtk3 wrapGAppsHook intltool itstool libxml2
- librsvg libcanberra-gtk3 clutter-gtk gnome3.defaultIconTheme
+ gtk3 librsvg libcanberra-gtk3 clutter-gtk gnome3.defaultIconTheme
libgee libgnome-games-support
];
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = "gnome-nibbles";
+ attrPath = "gnome3.gnome-nibbles";
+ };
+ };
+
meta = with stdenv.lib; {
- homepage = https://wiki.gnome.org/Apps/Nibbles;
description = "Guide a worm around a maze";
- maintainers = gnome3.maintainers;
+ homepage = https://wiki.gnome.org/Apps/Nibbles;
license = licenses.gpl2;
+ maintainers = gnome3.maintainers;
platforms = platforms.linux;
};
}
diff --git a/pkgs/desktops/gnome-3/games/quadrapassel/default.nix b/pkgs/desktops/gnome-3/games/quadrapassel/default.nix
index b0572f981dedee1d842899eafb7a896668d0f744..7ae226b3f8e562dc08498cf8ac540049c2f8f346 100644
--- a/pkgs/desktops/gnome-3/games/quadrapassel/default.nix
+++ b/pkgs/desktops/gnome-3/games/quadrapassel/default.nix
@@ -2,8 +2,10 @@
, librsvg, libcanberra-gtk3
, intltool, itstool, libxml2, clutter, clutter-gtk, wrapGAppsHook }:
-stdenv.mkDerivation rec {
- name = "quadrapassel-${version}";
+let
+ pname = "quadrapassel";
+in stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
version = "3.22.0";
src = fetchurl {
@@ -11,22 +13,26 @@ stdenv.mkDerivation rec {
sha256 = "0ed44ef73c8811cbdfc3b44c8fd80eb6e2998d102d59ac324e4748f5d9dddb55";
};
- passthru = {
- updateScript = gnome3.updateScript { packageName = "quadrapassel"; attrPath = "gnome3.quadrapassel"; };
- };
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg
- libcanberra-gtk3 itstool intltool clutter
- libxml2 clutter-gtk wrapGAppsHook ];
+ nativeBuildInputs = [ pkgconfig itstool intltool wrapGAppsHook ];
+ buildInputs = [
+ gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg
+ libcanberra-gtk3 clutter libxml2 clutter-gtk
+ ];
enableParallelBuilding = true;
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ attrPath = "gnome3.${pname}";
+ };
+ };
+
meta = with stdenv.lib; {
- homepage = https://wiki.gnome.org/Apps/Quadrapassel;
description = "Classic falling-block game, Tetris";
- maintainers = gnome3.maintainers;
+ homepage = https://wiki.gnome.org/Apps/Quadrapassel;
license = licenses.gpl2;
+ maintainers = gnome3.maintainers;
platforms = platforms.linux;
};
}
diff --git a/pkgs/desktops/gnome-3/games/swell-foop/default.nix b/pkgs/desktops/gnome-3/games/swell-foop/default.nix
index 13b6f57d0fd204aa14cb45b6bd01bb62d9e7894d..b7dc6203b8a916df0845221882513e9537f029bd 100644
--- a/pkgs/desktops/gnome-3/games/swell-foop/default.nix
+++ b/pkgs/desktops/gnome-3/games/swell-foop/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, meson, ninja, pkgconfig, vala, glib, gtk3, gnome3, desktop-file-utils
-, clutter, clutter-gtk, gettext, itstool, libxml2, wrapGAppsHook }:
+, clutter, clutter-gtk, gettext, itstool, libxml2, wrapGAppsHook, python3 }:
let
pname = "swell-foop";
@@ -19,7 +19,7 @@ in stdenv.mkDerivation rec {
};
};
- nativeBuildInputs = [ meson ninja vala pkgconfig wrapGAppsHook itstool gettext libxml2 desktop-file-utils ];
+ nativeBuildInputs = [ meson ninja vala pkgconfig wrapGAppsHook python3 itstool gettext libxml2 desktop-file-utils ];
buildInputs = [ glib gtk3 gnome3.defaultIconTheme clutter clutter-gtk ];
postPatch = ''
diff --git a/pkgs/desktops/gnome-3/misc/california/default.nix b/pkgs/desktops/gnome-3/misc/california/default.nix
index 91aeb7ca00a870ef0ec8cfc11250c6a128ecec03..7c90d8fa4e42d24c3238290bd2cc7a82bff47499 100644
--- a/pkgs/desktops/gnome-3/misc/california/default.nix
+++ b/pkgs/desktops/gnome-3/misc/california/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, intltool, pkgconfig, gtk3, vala_0_32, libgee, wrapGAppsHook, itstool, gobjectIntrospection
+{ stdenv, fetchurl, intltool, pkgconfig, gtk3, vala_0_34, libgee, wrapGAppsHook, itstool, gobjectIntrospection
, gnome-online-accounts, evolution-data-server, gnome3, glib, libsoup, libgdata, sqlite, xdg_utils }:
let
@@ -12,7 +12,7 @@ in stdenv.mkDerivation rec {
sha256 = "1dky2kllv469k8966ilnf4xrr7z35pq8mdvs7kwziy59cdikapxj";
};
- nativeBuildInputs = [ intltool itstool vala_0_32 pkgconfig wrapGAppsHook gobjectIntrospection ];
+ nativeBuildInputs = [ intltool itstool vala_0_34 pkgconfig wrapGAppsHook gobjectIntrospection ];
buildInputs = [ glib gtk3 libgee libsoup libgdata gnome-online-accounts evolution-data-server sqlite xdg_utils gnome3.gsettings-desktop-schemas ];
enableParallelBuilding = true;
diff --git a/pkgs/desktops/gnome-3/misc/geary/default.nix b/pkgs/desktops/gnome-3/misc/geary/default.nix
index 37f149c7ad9aa53152fadc40aeb9d1f2f56d141b..9077d663523393f183ebb3f04622f8d323dd4fcc 100644
--- a/pkgs/desktops/gnome-3/misc/geary/default.nix
+++ b/pkgs/desktops/gnome-3/misc/geary/default.nix
@@ -6,14 +6,14 @@
let
pname = "geary";
- version = "0.12.3";
+ version = "0.12.4";
in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
- sha256 = "18zzjzs075zja00xpnyvjrrdzm54icdhfw4ywhpr6rqfcpnzifw7";
+ sha256 = "01ykhkjfkprvh9kp4rzrl6xs2pqibiw44ckvqsn5cs3xy2rlq8mm";
};
nativeBuildInputs = [ vala_0_40 intltool pkgconfig wrapGAppsHook cmake ninja desktop-file-utils gnome-doc-utils gobjectIntrospection ];
diff --git a/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix b/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix
index 41206b71d42a6a991345ea6d2960fec5981e416a..0ff21a6b0dd89bb23ef51025aac27b9052f37c24 100644
--- a/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix
+++ b/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix
@@ -15,7 +15,7 @@ in stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- meson ninja pkgconfig gettext itstool libxml2 wrapGAppsHook
+ meson ninja pkgconfig gettext itstool libxml2 wrapGAppsHook python3Packages.python
];
buildInputs = [
gtk3 glib gnome3.gsettings-desktop-schemas
diff --git a/pkgs/desktops/gnome-3/misc/libgda/default.nix b/pkgs/desktops/gnome-3/misc/libgda/default.nix
index a10675ab80335b66ae9ca255a77ff3d70be54f2b..069c769efaa2e45b94000329cdec6c837ab3cf76 100644
--- a/pkgs/desktops/gnome-3/misc/libgda/default.nix
+++ b/pkgs/desktops/gnome-3/misc/libgda/default.nix
@@ -1,4 +1,5 @@
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl, gnome3
+, overrideCC, gcc6
, mysqlSupport ? false, mysql ? null
, postgresSupport ? false, postgresql ? null
}:
@@ -6,7 +7,7 @@
assert mysqlSupport -> mysql != null;
assert postgresSupport -> postgresql != null;
-stdenv.mkDerivation rec {
+(if stdenv.isAarch64 then overrideCC stdenv gcc6 else stdenv).mkDerivation rec {
name = "libgda-${version}";
version = "5.2.4";
diff --git a/pkgs/desktops/gnome-3/misc/libgnome-games-support/default.nix b/pkgs/desktops/gnome-3/misc/libgnome-games-support/default.nix
index 7e28c90813a0fdbdc0af722b2b75c3f7694093bf..9a55864dfcc244938ec1a963497c17f506533781 100644
--- a/pkgs/desktops/gnome-3/misc/libgnome-games-support/default.nix
+++ b/pkgs/desktops/gnome-3/misc/libgnome-games-support/default.nix
@@ -3,13 +3,13 @@
let
pname = "libgnome-games-support";
- version = "1.4.1";
+ version = "1.4.2";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
- sha256 = "1j7lfcnc29lgn8ppn13wkn9w2y1n3lsapagwp91zh3bf0h2h4hv1";
+ sha256 = "02hirpk885jndwarbl3cl5fk7w2z5ziv677csyv1wi2n6rmpn088";
};
nativeBuildInputs = [ pkgconfig intltool ];
diff --git a/pkgs/desktops/gnome-3/misc/pidgin/default.nix b/pkgs/desktops/gnome-3/misc/pidgin/default.nix
index a5dd1480d3db4ab4d01c5bd6dc2352c4e17c9872..c11fdfa6099ea45234fb889df9732d780876bf67 100644
--- a/pkgs/desktops/gnome-3/misc/pidgin/default.nix
+++ b/pkgs/desktops/gnome-3/misc/pidgin/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
schemas_dir="$share_dir/gsettings-schemas/${name}/glib-2.0/schemas"
mkdir -p "$schemas_dir"
mv schemas/* "$schemas_dir" # fix Emacs syntax highlighting: */
- ${glib.dev}/bin/glib-compile-schemas "$schemas_dir"
+ glib-compile-schemas "$schemas_dir"
locale_dir="$share_dir/locale"
mkdir -p "$locale_dir"
diff --git a/pkgs/desktops/mate/eom/default.nix b/pkgs/desktops/mate/eom/default.nix
index ee297237f6e034661957a2dbb4a5af13c223591f..4f33805144945540512850f90929d9936215cdab 100644
--- a/pkgs/desktops/mate/eom/default.nix
+++ b/pkgs/desktops/mate/eom/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "eom-${version}";
- version = "1.21.0";
+ version = "1.21.2";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "165n314hxapq8glzlv7vs5x44z13wjmpysl5p7q3ckrsxy5pczww";
+ sha256 = "08idw219mw0v0nkaphy0jvxi67gqm4nzbbnhnwjksxbma2gmpvss";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/xfce4-13/xfce4-mixer/default.nix b/pkgs/desktops/xfce4-13/xfce4-mixer/default.nix
index 266b05199ddbb846480efbbb4d7172a039b6561d..a4bc0a3eaddb29fbd9b732c361e49b096e04a4b3 100644
--- a/pkgs/desktops/xfce4-13/xfce4-mixer/default.nix
+++ b/pkgs/desktops/xfce4-13/xfce4-mixer/default.nix
@@ -1,5 +1,10 @@
-{ mkXfceDerivation, automakeAddFlags, dbus-glib, gtk2, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
+{ mkXfceDerivation, automakeAddFlags, dbus-glib, gtk2, libxfce4ui, libxfce4util, xfce4-panel, xfconf, gst-plugins-base, libunique }:
+let
+ gst_plugins_minimal = gst-plugins-base.override {
+ minimalDeps = true;
+ };
+in
mkXfceDerivation rec {
category = "apps";
pname = "xfce4-mixer";
@@ -16,7 +21,9 @@ mkXfceDerivation rec {
buildInputs = [
dbus-glib
+ gst_plugins_minimal
gtk2
+ libunique
libxfce4ui
libxfce4util
xfce4-panel
diff --git a/pkgs/desktops/xfce4-13/xfce4-settings/default.nix b/pkgs/desktops/xfce4-13/xfce4-settings/default.nix
index d08c1f96fdd4752263dc06042c501e5a0ae23d0b..6eb917fd76fd1907f50c117d08418012654d098e 100644
--- a/pkgs/desktops/xfce4-13/xfce4-settings/default.nix
+++ b/pkgs/desktops/xfce4-13/xfce4-settings/default.nix
@@ -1,4 +1,4 @@
-{ mkXfceDerivation, automakeAddFlags, dbus-glib, exo, garcon, gtk3
+{ mkXfceDerivation, automakeAddFlags, exo, garcon, gtk3
, libnotify ? null, libxfce4ui, libxfce4util, libxklavier ? null
, upower ? null, xfconf, xf86inputlibinput ? null }:
@@ -19,7 +19,6 @@ mkXfceDerivation rec {
nativeBuildInputs = [ automakeAddFlags ];
buildInputs = [
- dbus-glib
exo
garcon
gtk3
diff --git a/pkgs/development/arduino/arduino-core/default.nix b/pkgs/development/arduino/arduino-core/default.nix
index a427023df56eb288296856336001b0991c5cb97c..269df6a07cd0dd1ba57b2b54700fb3d2256ccc5c 100644
--- a/pkgs/development/arduino/arduino-core/default.nix
+++ b/pkgs/development/arduino/arduino-core/default.nix
@@ -13,15 +13,19 @@ assert withTeensyduino -> withGui;
# xdotool script; the cause of this hang is not yet known.
# TODO: There is a fair chance that Teensyduino works with arm-linux, but it
# has not yet been tested.
-if withTeensyduino && (stdenv.system != "x86_64-linux") then throw
+if withTeensyduino && (stdenv.hostPlatform.system != "x86_64-linux") then throw
"Teensyduino is only supported on x86_64-linux at this time (patches welcome)."
else
let
- externalDownloads = import ./downloads.nix {inherit fetchurl; inherit (lib) optionalAttrs; inherit (stdenv) system;};
+ externalDownloads = import ./downloads.nix {
+ inherit fetchurl;
+ inherit (lib) optionalAttrs;
+ inherit (stdenv.hostPlatform) 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-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";}
+ lib.optional (stdenv.hostPlatform.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.hostPlatform.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"; };
@@ -46,9 +50,9 @@ let
zlib
];
teensy_architecture =
- lib.optionalString (stdenv.system == "x86_64-linux") "linux64"
- + lib.optionalString (stdenv.system == "i686-linux") "linux32"
- + lib.optionalString (stdenv.system == "arm-linux") "linuxarm";
+ lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux") "linux64"
+ + lib.optionalString (stdenv.hostPlatform.system == "i686-linux") "linux32"
+ + lib.optionalString (stdenv.hostPlatform.system == "arm-linux") "linuxarm";
flavor = (if withTeensyduino then "teensyduino" else "arduino")
+ stdenv.lib.optionalString (!withGui) "-core";
diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix
index 26bed216acfaa58a5bc868e606c1545298e80b9a..c5be1c78a55fe3f96af6bc34a932d4c587d94afa 100644
--- a/pkgs/development/beam-modules/default.nix
+++ b/pkgs/development/beam-modules/default.nix
@@ -42,7 +42,7 @@ let
buildMix = callPackage ./build-mix.nix {};
# BEAM-based languages.
- elixir = elixir_1_6;
+ elixir = elixir_1_7;
elixir_1_7 = lib.callElixir ../interpreters/elixir/1.7.nix {
inherit rebar erlang;
diff --git a/pkgs/development/compilers/ccl/default.nix b/pkgs/development/compilers/ccl/default.nix
index 9570b0eead8512cb7f038219cd3d7c0b56349106..ae6af8dd4b4f0cd2212057a9bca6e19303212376 100644
--- a/pkgs/development/compilers/ccl/default.nix
+++ b/pkgs/development/compilers/ccl/default.nix
@@ -29,7 +29,7 @@ let
};
armv6l-linux = armv7l-linux;
};
- cfg = options."${stdenv.system}" or (throw "missing source url for platform ${stdenv.system}");
+ cfg = options."${stdenv.hostPlatform.system}" or (throw "missing source url for platform ${stdenv.hostPlatform.system}");
in
stdenv.mkDerivation rec {
diff --git a/pkgs/development/compilers/clean/default.nix b/pkgs/development/compilers/clean/default.nix
index 16ac8b787219242e0897bf001f83cb20a239ae7e..cc6197922fd3788e5f31fd0c78b163fd12a6b811 100644
--- a/pkgs/development/compilers/clean/default.nix
+++ b/pkgs/development/compilers/clean/default.nix
@@ -4,11 +4,11 @@ stdenv.mkDerivation rec {
name = "clean-2.4";
src =
- if stdenv.system == "i686-linux" then (fetchurl {
+ if stdenv.hostPlatform.system == "i686-linux" then (fetchurl {
url = "http://clean.cs.ru.nl/download/Clean24/linux/clean2.4_boot.tar.gz";
sha256 = "1w8vvmkwzq8g51639r62apcy75sj69nm08082a34xvqm9ymfgkq5";
})
- else if stdenv.system == "x86_64-linux" then (fetchurl {
+ else if stdenv.hostPlatform.system == "x86_64-linux" then (fetchurl {
url = "https://clean.cs.ru.nl/download/Clean24/linux/clean2.4_64_boot.tar.gz";
sha256 = "08gsa1pjl5wyzh4ah8ccfx8a7mdcn6ycsn1lzkrr9adygv1gmm7r";
})
diff --git a/pkgs/development/compilers/cmucl/binary.nix b/pkgs/development/compilers/cmucl/binary.nix
index 2833c5378c1dad27465e6a4b802c15acd3274c9b..9e3184c42eb2aefd8419f8eda912068ff29dbd5b 100644
--- a/pkgs/development/compilers/cmucl/binary.nix
+++ b/pkgs/development/compilers/cmucl/binary.nix
@@ -1,7 +1,7 @@
{stdenv, fetchurl}:
let
- inherit (stdenv) system;
+ inherit (stdenv.hostPlatform) system;
version = "21b";
downloadUrl = arch:
"http://common-lisp.net/project/cmucl/downloads/release/" +
diff --git a/pkgs/development/compilers/crystal/default.nix b/pkgs/development/compilers/crystal/default.nix
index a0f37973ccd516733b76345060c0982d3710aeb8..aa1c85ebcb005349dc1c310183419e2787579bac 100644
--- a/pkgs/development/compilers/crystal/default.nix
+++ b/pkgs/development/compilers/crystal/default.nix
@@ -1,28 +1,28 @@
{ stdenv, fetchurl, makeWrapper
-, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm, clang }:
+, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm, clang, which }:
stdenv.mkDerivation rec {
name = "crystal-${version}";
- version = "0.25.1";
+ version = "0.26.0";
src = fetchurl {
url = "https://github.com/crystal-lang/crystal/archive/${version}.tar.gz";
- sha256 = "1ikzly6vs28ilqvqm4kxzhqs8mp6l4l344rhak63dav7vv97nnlv";
+ sha256 = "18vv47xvnf3hl5js5sk58wj2khqq36kcs851i3lgr0ji7m0g3379";
};
- prebuiltName = "crystal-0.25.1-1";
+ prebuiltName = "crystal-0.26.0-1";
prebuiltSrc = let arch = {
"x86_64-linux" = "linux-x86_64";
"i686-linux" = "linux-i686";
"x86_64-darwin" = "darwin-x86_64";
- }."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
+ }."${stdenv.hostPlatform.system}" or (throw "system ${stdenv.hostPlatform.system} not supported");
in fetchurl {
- url = "https://github.com/crystal-lang/crystal/releases/download/0.25.1/${prebuiltName}-${arch}.tar.gz";
+ url = "https://github.com/crystal-lang/crystal/releases/download/0.26.0/${prebuiltName}-${arch}.tar.gz";
sha256 = {
- "x86_64-linux" = "0zjmbvbhi11p7s99jmvb3pac6zzsr792bxcfanrx503fjxxafgll";
- "i686-linux" = "0i0hgsq7xa53594blqw5qi6jrqja18spifmalg7df2mj3h13h3pz";
- "x86_64-darwin" = "1h369hzis1cigxbb6fgpahyq4d13gfgjc6adf300zc38yh8rvyy0";
- }."${stdenv.system}";
+ "x86_64-linux" = "1xban102yiiwmlklxvn3xp3q546bp8hlxxpakayajkhhnpl6yv45";
+ "i686-linux" = "1igspf1lrv7wpmz0pfrkbx8m1ykvnv4zhic53cav4nicppm2v0ic";
+ "x86_64-darwin" = "0hzc65ccajr0yhmvi5vbdgbzbp1gbjy56da24ds3zwwkam1ddk0k";
+ }."${stdenv.hostPlatform.system}";
};
unpackPhase = ''
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
libiconv
];
- nativeBuildInputs = [ makeWrapper ];
+ nativeBuildInputs = [ which makeWrapper ];
buildInputs = libs ++ [ llvm ];
@@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
description = "A compiled language with Ruby like syntax and type inference";
homepage = https://crystal-lang.org/;
license = stdenv.lib.licenses.asl20;
- maintainers = with stdenv.lib.maintainers; [ sifmelcara david50407 ];
+ maintainers = with stdenv.lib.maintainers; [ manveru david50407 ];
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
};
}
diff --git a/pkgs/development/compilers/dotnet/sdk/default.nix b/pkgs/development/compilers/dotnet/sdk/default.nix
index 50057f91e8046522fe10e35ccd7028c3659d4210..0e28e041cc5da716779ef1ab68747dd99d74b6b6 100644
--- a/pkgs/development/compilers/dotnet/sdk/default.nix
+++ b/pkgs/development/compilers/dotnet/sdk/default.nix
@@ -12,12 +12,13 @@ let
rpath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc libunwind libuuid icu openssl zlib curl ];
in
stdenv.mkDerivation rec {
- version = "2.1.302";
+ version = "2.1.401";
name = "dotnet-sdk-${version}";
src = fetchurl {
url = "https://dotnetcli.azureedge.net/dotnet/Sdk/${version}/dotnet-sdk-${version}-linux-x64.tar.gz";
- sha256 = "1a8z9q69cd9a33j7fr7907abm5z4qiivw5k379cgsjmmvxwyvjia";
+ # use sha512 from the download page
+ sha512 = "639f9f68f225246d9cce798d72d011f65c7eda0d775914d1394df050bddf93e2886555f5eed85a75d6c72e9063a54d8aa053c64c326c683b94e9e0a0570e5654";
};
unpackPhase = "tar xvzf $src";
diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix
index 6a8d5f11b75c0cc2bef5d977eb5135a843d44300..93deb4a90aff941e52abaf6281a090be426499f4 100644
--- a/pkgs/development/compilers/elm/default.nix
+++ b/pkgs/development/compilers/elm/default.nix
@@ -1,14 +1,56 @@
-{ lib, stdenv, buildEnv, haskell, nodejs, fetchurl, makeWrapper }:
+{ lib, stdenv, buildEnv, haskell, nodejs, fetchurl, makeWrapper, git }:
# To update:
-# 1) Update versions in ./update-elm.rb and run it.
-# 2) Checkout elm-reactor and run `elm-package install -y` inside.
-# 3) Run ./elm2nix.rb in elm-reactor's directory.
-# 4) Move the resulting 'package.nix' to 'packages/elm-reactor-elm.nix'.
+
+# 1) Modify ./update.sh and run it
+
+# 2) to generate versions.dat:
+# 2.1) git clone https://github.com/elm/compiler.git
+# 2.2) cd compiler
+# 2.3) cabal2nix --shell . | sed 's/"default",/"ghc822",/' > shell.nix
+# 2.4) nix-shell
+# 2.5) mkdir .elm
+# 2.6) export ELM_HOME=$(pwd)/.elm
+# 2.7) cabal build
+# 2.8) cp .elm/0.19.0/package/versions.dat ...
+
+# 3) generate a template for elm-elm.nix with:
+# (
+# echo "{";
+# jq '.dependencies | .direct, .indirect | to_entries | .[] | { (.key) : { version : .value, sha256: "" } } ' \
+# < ui/browser/elm.json \
+# | sed 's/:/ =/' \
+# | sed 's/^[{}]//' \
+# | sed -E 's/(["}]),?$/\1;/' \
+# | sed -E 's/"(version|sha256)"/\1/' \
+# | grep -v '^$';
+# echo "}"
+# )
+#
+# ... then fill in the sha256s
+
+# Notes:
+
+# the elm binary embeds a piece of pre-compiled elm code, used by 'elm
+# reactor'. this means that the build process for 'elm' effectively
+# executes 'elm make'. that in turn expects to retrieve the elm
+# dependencies of that code (elm/core, etc.) from
+# package.elm-lang.org, as well as a cached bit of metadata
+# (versions.dat).
+
+# the makeDotElm function lets us retrieve these dependencies in the
+# standard nix way. we have to copy them in (rather than symlink) and
+# make them writable because the elm compiler writes other .dat files
+# alongside the source code. versions.dat was produced during an
+# impure build of this same code; the build complains that it can't
+# update this cache, but continues past that warning.
+
+# finally, we set ELM_HOME to point to these pre-fetched artifacts so
+# that the default of ~/.elm isn't used.
let
- makeElmStuff = deps:
- let json = builtins.toJSON (lib.mapAttrs (name: info: info.version) deps);
+ makeDotElm = ver: deps:
+ let versionsDat = ./versions.dat;
cmds = lib.mapAttrsToList (name: info: let
pkg = stdenv.mkDerivation {
@@ -29,80 +71,61 @@ let
};
in ''
- mkdir -p elm-stuff/packages/${name}
- ln -s ${pkg} elm-stuff/packages/${name}/${info.version}
+ mkdir -p .elm/${ver}/package/${name}
+ cp -R ${pkg} .elm/${ver}/package/${name}/${info.version}
'') deps;
- in ''
- export HOME=/tmp
- mkdir elm-stuff
- cat > elm-stuff/exact-dependencies.json < packages/elm-format.nix
- where foo is a tag for a new version, for example "0.3.1-alpha".
+ where foo is a tag for a new version, for example "0.8.0".
*/
- elm-format = self.callPackage ./packages/elm-format.nix { };
- elm-interface-to-json = self.callPackage ./packages/elm-interface-to-json.nix {
- aeson-pretty = self.aeson-pretty_0_7_2;
- either = hlib.overrideCabal self.either (drv :{
- jailbreak = true;
- version = "4.4.1.1";
- sha256 = "1lrlwqqnm6ibfcydlv5qvvssw7bm0c6yypy0rayjzv1znq7wp1xh";
- libraryHaskellDepends = drv.libraryHaskellDepends or [] ++ [
- self.exceptions self.free self.mmorph self.monad-control
- self.MonadRandom self.profunctors self.transformers
- self.transformers-base
- ];
- });
- };
+ elm-format = overrideCabal (self.callPackage ./packages/elm-format.nix { }) (drv: {
+ # https://github.com/avh4/elm-format/issues/529
+ patchPhase = ''
+ cat >Setup.hs < "0.18.0",
- "elm-package" => "0.18.0",
- "elm-make" => "0.18.0",
- "elm-reactor" => "0.18.0",
- "elm-repl" => "0.18.0"
- }
-
-for pkg, ver in $elm_packages
- system "cabal2nix https://github.com/elm-lang/#{pkg} --revision refs/tags/#{ver} --jailbreak > packages/#{pkg}.nix"
-end
-
-File.open("packages/release.nix", 'w') do |file|
- file.puts "# This file is auto-generated by ./update-elm.rb."
- file.puts "# Please, do not modify it by hand!"
- file.puts "{ callPackage }:"
- file.puts "{"
- file.puts " version = \"#{$elm_version}\";"
- file.puts " packages = {"
- for pkg, ver in $elm_packages
- file.puts " #{pkg} = callPackage ./#{pkg}.nix { };"
- end
- file.puts " };"
- file.puts "}"
-end
diff --git a/pkgs/development/compilers/elm/update.sh b/pkgs/development/compilers/elm/update.sh
new file mode 100755
index 0000000000000000000000000000000000000000..02e5bdc9b581a154df25bf938d2742d3376052c4
--- /dev/null
+++ b/pkgs/development/compilers/elm/update.sh
@@ -0,0 +1,3 @@
+cabal2nix https://github.com/elm/compiler --revision 32059a289d27e303fa1665e9ada0a52eb688f302 > packages/elm.nix
+cabal2nix --no-check cabal://indents-0.3.3 > packages/indents.nix
+cabal2nix --no-haddock --no-check --jailbreak --revision refs/tags/0.8.0 http://github.com/avh4/elm-format > packages/elm-format.nix
diff --git a/pkgs/development/compilers/elm/versions.dat b/pkgs/development/compilers/elm/versions.dat
new file mode 100644
index 0000000000000000000000000000000000000000..824ab383057f2138d4dcd431b52851a2e6b8b127
Binary files /dev/null and b/pkgs/development/compilers/elm/versions.dat differ
diff --git a/pkgs/development/compilers/fpc/binary.nix b/pkgs/development/compilers/fpc/binary.nix
index 0ecf4437c9a249344c0595c730ec657dd6236f38..cf13ab6f5954c23f3eab40609ae6c3e832b3f3c4 100644
--- a/pkgs/development/compilers/fpc/binary.nix
+++ b/pkgs/development/compilers/fpc/binary.nix
@@ -4,17 +4,17 @@ stdenv.mkDerivation {
name = "fpc-2.6.0-binary";
src =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "mirror://sourceforge/project/freepascal/Linux/2.6.0/fpc-2.6.0.i386-linux.tar";
sha256 = "08yklvrfxvk59bxsd4rh1i6s3cjn0q06dzjs94h9fbq3n1qd5zdf";
}
- else if stdenv.system == "x86_64-linux" then
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "mirror://sourceforge/project/freepascal/Linux/2.6.0/fpc-2.6.0.x86_64-linux.tar";
sha256 = "0k9vi75k39y735fng4jc2vppdywp82j4qhzn7x4r6qjkad64d8lx";
}
- else throw "Not supported on ${stdenv.system}.";
+ else throw "Not supported on ${stdenv.hostPlatform.system}.";
builder = ./binary-builder.sh;
diff --git a/pkgs/development/compilers/fpc/default.nix b/pkgs/development/compilers/fpc/default.nix
index 51544783d8c60729ed2158c711511cc3366af97c..b516019ffc9a7ca5a2a3bd7fb4ca7517ab87dc23 100644
--- a/pkgs/development/compilers/fpc/default.nix
+++ b/pkgs/development/compilers/fpc/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [ startFPC gawk ];
preConfigure =
- if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" then ''
+ if stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux" then ''
sed -e "s@'/lib/ld-linux[^']*'@'''@" -i fpcsrc/compiler/systems/t_linux.pas
sed -e "s@'/lib64/ld-linux[^']*'@'''@" -i fpcsrc/compiler/systems/t_linux.pas
'' else "";
diff --git a/pkgs/development/compilers/gcc/4.8/default.nix b/pkgs/development/compilers/gcc/4.8/default.nix
index 101a6feeeae3254b82c6ca43397df7fe43cd667a..ed185b4be1a2ea14247eace7580bfad33f1f041e 100644
--- a/pkgs/development/compilers/gcc/4.8/default.nix
+++ b/pkgs/development/compilers/gcc/4.8/default.nix
@@ -1,7 +1,7 @@
{ stdenv, targetPackages, fetchurl, fetchpatch, noSysDirs
, langC ? true, langCC ? true, langFortran ? false
-, langObjC ? targetPlatform.isDarwin
-, langObjCpp ? targetPlatform.isDarwin
+, langObjC ? stdenv.targetPlatform.isDarwin
+, langObjCpp ? stdenv.targetPlatform.isDarwin
, langJava ? false
, langGo ? false
, profiledCompiler ? false
@@ -20,15 +20,14 @@
, libXrandr ? null, libXi ? null, inputproto ? null, randrproto ? null
, x11Support ? langJava
, enableMultilib ? false
-, enablePlugin ? hostPlatform == buildPlatform # Whether to support user-supplied plug-ins
+, enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
, name ? "gcc"
, libcCross ? null
, crossStageStatic ? false
-, libpthread ? null, libpthreadCross ? null # required for GNU/Hurd
, # Strip kills static libs of other archs (hence no cross)
- stripped ? hostPlatform == buildPlatform && targetPlatform == hostPlatform
+ stripped ? stdenv.hostPlatform == stdenv.buildPlatform
+ && stdenv.targetPlatform == stdenv.hostPlatform
, gnused ? null
-, buildPlatform, hostPlatform, targetPlatform
, buildPackages
}:
@@ -43,7 +42,7 @@ assert cloog != null -> isl != null;
assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
-assert hostPlatform.isDarwin -> gnused != null;
+assert stdenv.hostPlatform.isDarwin -> gnused != null;
# The go frontend is written in c++
assert langGo -> langCC;
@@ -55,6 +54,8 @@ let version = "4.8.5";
enableParallelBuilding = true;
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
patches = [ ]
++ optional enableParallelBuilding ../parallel-bconfig.patch
++ optional (targetPlatform != hostPlatform) ../libstdc++-target.patch
@@ -181,39 +182,7 @@ stdenv.mkDerivation ({
libc_dev = stdenv.cc.libc_dev;
postPatch =
- if targetPlatform.isHurd
- then
- # On GNU/Hurd glibc refers to Hurd & Mach headers and libpthread is not
- # in glibc, so add the right `-I' flags to the default spec string.
- assert libcCross != null -> libpthreadCross != null;
- let
- libc = if libcCross != null then libcCross else stdenv.glibc;
- gnu_h = "gcc/config/gnu.h";
- extraCPPDeps =
- libc.propagatedBuildInputs
- ++ stdenv.lib.optional (libpthreadCross != null) libpthreadCross
- ++ stdenv.lib.optional (libpthread != null) libpthread;
- extraCPPSpec =
- concatStrings (intersperse " "
- (map (x: "-I${x.dev or x}/include") extraCPPDeps));
- extraLibSpec =
- if libpthreadCross != null
- then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
- else "-L${libpthread}/lib";
- in
- '' echo "augmenting \`CPP_SPEC' in \`${gnu_h}' with \`${extraCPPSpec}'..."
- sed -i "${gnu_h}" \
- -es'|CPP_SPEC *"\(.*\)$|CPP_SPEC "${extraCPPSpec} \1|g'
-
- echo "augmenting \`LIB_SPEC' in \`${gnu_h}' with \`${extraLibSpec}'..."
- sed -i "${gnu_h}" \
- -es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
-
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
- sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
- ''
- else if targetPlatform != hostPlatform || stdenv.cc.libc != null then
+ if targetPlatform != hostPlatform || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
# `/lib/ld*.so'.
let
@@ -379,21 +348,13 @@ stdenv.mkDerivation ({
++ optional langJava boehmgc
++ optionals javaAwtGtk xlibs
++ optionals javaAwtGtk [ gmp mpfr ]
- ++ optional (libpthread != null) libpthread
- ++ optional (libpthreadCross != null) libpthreadCross
-
- # On GNU/Hurd glibc refers to Mach & Hurd
- # headers.
- ++ optionals (libcCross != null && libcCross ? propagatedBuildInputs)
- libcCross.propagatedBuildInputs
));
LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath ([]
++ optional (zlib != null) zlib
++ optional langJava boehmgc
++ optionals javaAwtGtk xlibs
- ++ optionals javaAwtGtk [ gmp mpfr ]
- ++ optional (libpthread != null) libpthread)
+ ++ optionals javaAwtGtk [ gmp mpfr ])
);
EXTRA_TARGET_FLAGS = optionals
@@ -413,10 +374,7 @@ stdenv.mkDerivation ({
] else [
"-Wl,-rpath,${libcCross.out}/lib"
"-Wl,-rpath-link,${libcCross.out}/lib"
- ]) ++ optionals (libpthreadCross != null) [
- "-L${libpthreadCross}/lib"
- "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
- ]);
+ ]));
passthru = {
inherit langC langCC langObjC langObjCpp langFortran langGo version;
diff --git a/pkgs/development/compilers/gcc/4.9/default.nix b/pkgs/development/compilers/gcc/4.9/default.nix
index 1df87cc3d429aaded937ab9c4bf40142107d4e87..3f13562c1b8ca16ef32d8174c53da859d13880b5 100644
--- a/pkgs/development/compilers/gcc/4.9/default.nix
+++ b/pkgs/development/compilers/gcc/4.9/default.nix
@@ -1,7 +1,7 @@
{ stdenv, targetPackages, fetchurl, noSysDirs, fetchpatch
, langC ? true, langCC ? true, langFortran ? false
-, langObjC ? targetPlatform.isDarwin
-, langObjCpp ? targetPlatform.isDarwin
+, langObjC ? stdenv.targetPlatform.isDarwin
+, langObjCpp ? stdenv.targetPlatform.isDarwin
, langJava ? false
, langGo ? false
, profiledCompiler ? false
@@ -20,15 +20,14 @@
, libXrandr ? null, libXi ? null, inputproto ? null, randrproto ? null
, x11Support ? langJava
, enableMultilib ? false
-, enablePlugin ? hostPlatform == buildPlatform # Whether to support user-supplied plug-ins
+, enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
, name ? "gcc"
, libcCross ? null
, crossStageStatic ? false
-, libpthread ? null, libpthreadCross ? null # required for GNU/Hurd
, # Strip kills static libs of other archs (hence no cross)
- stripped ? hostPlatform == buildPlatform && targetPlatform == hostPlatform
+ stripped ? stdenv.hostPlatform == stdenv.buildPlatform
+ && stdenv.targetPlatform == stdenv.hostPlatform
, gnused ? null
-, buildPlatform, hostPlatform, targetPlatform
, buildPackages
}:
@@ -43,7 +42,7 @@ assert cloog != null -> isl != null;
assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
-assert hostPlatform.isDarwin -> gnused != null;
+assert stdenv.hostPlatform.isDarwin -> gnused != null;
# The go frontend is written in c++
assert langGo -> langCC;
@@ -55,6 +54,8 @@ let version = "4.9.4";
enableParallelBuilding = true;
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
patches =
[ ../use-source-date-epoch.patch ]
++ optionals enableParallelBuilding [ ../parallel-bconfig.patch ./parallel-strsignal.patch ]
@@ -190,39 +191,7 @@ stdenv.mkDerivation ({
libc_dev = stdenv.cc.libc_dev;
postPatch =
- if targetPlatform.isHurd
- then
- # On GNU/Hurd glibc refers to Hurd & Mach headers and libpthread is not
- # in glibc, so add the right `-I' flags to the default spec string.
- assert libcCross != null -> libpthreadCross != null;
- let
- libc = if libcCross != null then libcCross else stdenv.glibc;
- gnu_h = "gcc/config/gnu.h";
- extraCPPDeps =
- libc.propagatedBuildInputs
- ++ stdenv.lib.optional (libpthreadCross != null) libpthreadCross
- ++ stdenv.lib.optional (libpthread != null) libpthread;
- extraCPPSpec =
- concatStrings (intersperse " "
- (map (x: "-I${x.dev or x}/include") extraCPPDeps));
- extraLibSpec =
- if libpthreadCross != null
- then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
- else "-L${libpthread}/lib";
- in
- '' echo "augmenting \`CPP_SPEC' in \`${gnu_h}' with \`${extraCPPSpec}'..."
- sed -i "${gnu_h}" \
- -es'|CPP_SPEC *"\(.*\)$|CPP_SPEC "${extraCPPSpec} \1|g'
-
- echo "augmenting \`LIB_SPEC' in \`${gnu_h}' with \`${extraLibSpec}'..."
- sed -i "${gnu_h}" \
- -es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
-
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
- sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
- ''
- else if targetPlatform != hostPlatform || stdenv.cc.libc != null then
+ if targetPlatform != hostPlatform || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
# `/lib/ld*.so'.
let
@@ -401,22 +370,13 @@ stdenv.mkDerivation ({
++ optional langJava boehmgc
++ optionals javaAwtGtk xlibs
++ optionals javaAwtGtk [ gmp mpfr ]
- ++ optional (libpthread != null) libpthread
- ++ optional (libpthreadCross != null) libpthreadCross
-
- # On GNU/Hurd glibc refers to Mach & Hurd
- # headers.
- ++ optionals (libcCross != null && libcCross ? propagatedBuildInputs)
- libcCross.propagatedBuildInputs
));
LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath ([]
++ optional (zlib != null) zlib
++ optional langJava boehmgc
++ optionals javaAwtGtk xlibs
- ++ optionals javaAwtGtk [ gmp mpfr ]
- ++ optional (libpthread != null) libpthread)
- );
+ ++ optionals javaAwtGtk [ gmp mpfr ]));
EXTRA_TARGET_FLAGS = optionals
(targetPlatform != hostPlatform && libcCross != null)
@@ -435,10 +395,7 @@ stdenv.mkDerivation ({
] else [
"-Wl,-rpath,${libcCross.out}/lib"
"-Wl,-rpath-link,${libcCross.out}/lib"
- ]) ++ optionals (libpthreadCross != null) [
- "-L${libpthreadCross}/lib"
- "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
- ]);
+ ]));
passthru =
{ inherit langC langCC langObjC langObjCpp langFortran langGo version; isGNU = true; };
diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix
index 1215c971f239a74f7556913577d76854eb3187e5..497ca40c3ae6dc98521df2637ec7692fb8146185 100644
--- a/pkgs/development/compilers/gcc/5/default.nix
+++ b/pkgs/development/compilers/gcc/5/default.nix
@@ -1,7 +1,7 @@
{ stdenv, targetPackages, fetchurl, fetchpatch, noSysDirs
, langC ? true, langCC ? true, langFortran ? false
-, langObjC ? targetPlatform.isDarwin
-, langObjCpp ? targetPlatform.isDarwin
+, langObjC ? stdenv.targetPlatform.isDarwin
+, langObjCpp ? stdenv.targetPlatform.isDarwin
, langJava ? false
, langGo ? false
, profiledCompiler ? false
@@ -20,16 +20,15 @@
, libXrandr ? null, libXi ? null, inputproto ? null, randrproto ? null
, x11Support ? langJava
, enableMultilib ? false
-, enablePlugin ? hostPlatform == buildPlatform # Whether to support user-supplied plug-ins
+, enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
, name ? "gcc"
, libcCross ? null
, crossStageStatic ? false
-, libpthread ? null, libpthreadCross ? null # required for GNU/Hurd
, # Strip kills static libs of other archs (hence no cross)
- stripped ? hostPlatform == buildPlatform && targetPlatform == hostPlatform
+ stripped ? stdenv.hostPlatform == stdenv.buildPlatform
+ && stdenv.targetPlatform == stdenv.hostPlatform
, gnused ? null
, cloog # unused; just for compat with gcc4, as we override the parameter on some places
-, buildPlatform, hostPlatform, targetPlatform
, buildPackages
}:
@@ -41,7 +40,7 @@ assert langJava -> zip != null && unzip != null
assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
-assert hostPlatform.isDarwin -> gnused != null;
+assert stdenv.hostPlatform.isDarwin -> gnused != null;
# The go frontend is written in c++
assert langGo -> langCC;
@@ -54,6 +53,8 @@ let version = "5.5.0";
enableParallelBuilding = true;
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
patches =
[ ../use-source-date-epoch.patch ]
++ optional (targetPlatform != hostPlatform) ../libstdc++-target.patch
@@ -188,39 +189,7 @@ stdenv.mkDerivation ({
'';
postPatch =
- if targetPlatform.isHurd
- then
- # On GNU/Hurd glibc refers to Hurd & Mach headers and libpthread is not
- # in glibc, so add the right `-I' flags to the default spec string.
- assert libcCross != null -> libpthreadCross != null;
- let
- libc = if libcCross != null then libcCross else stdenv.glibc;
- gnu_h = "gcc/config/gnu.h";
- extraCPPDeps =
- libc.propagatedBuildInputs
- ++ stdenv.lib.optional (libpthreadCross != null) libpthreadCross
- ++ stdenv.lib.optional (libpthread != null) libpthread;
- extraCPPSpec =
- concatStrings (intersperse " "
- (map (x: "-I${x.dev or x}/include") extraCPPDeps));
- extraLibSpec =
- if libpthreadCross != null
- then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
- else "-L${libpthread}/lib";
- in
- '' echo "augmenting \`CPP_SPEC' in \`${gnu_h}' with \`${extraCPPSpec}'..."
- sed -i "${gnu_h}" \
- -es'|CPP_SPEC *"\(.*\)$|CPP_SPEC "${extraCPPSpec} \1|g'
-
- echo "augmenting \`LIB_SPEC' in \`${gnu_h}' with \`${extraLibSpec}'..."
- sed -i "${gnu_h}" \
- -es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
-
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
- sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
- ''
- else if targetPlatform != hostPlatform || stdenv.cc.libc != null then
+ if targetPlatform != hostPlatform || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
# `/lib/ld*.so'.
let
@@ -302,7 +271,7 @@ stdenv.mkDerivation ({
] ++
optional (libelf != null) "--with-libelf=${libelf}" ++
optional (!(crossMingw && crossStageStatic))
- "--with-native-system-header-dir=${getDev stdenv.cc.libc}/include" ++
+ "--with-native-system-header-dir=${getDev stdenv.cc.libc}/include" ++
# Basic configuration
[
@@ -400,13 +369,6 @@ stdenv.mkDerivation ({
++ optional langJava boehmgc
++ optionals javaAwtGtk xlibs
++ optionals javaAwtGtk [ gmp mpfr ]
- ++ optional (libpthread != null) libpthread
- ++ optional (libpthreadCross != null) libpthreadCross
-
- # On GNU/Hurd glibc refers to Mach & Hurd
- # headers.
- ++ optionals (libcCross != null && libcCross ? propagatedBuildInputs)
- libcCross.propagatedBuildInputs
));
LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath ([]
@@ -414,8 +376,7 @@ stdenv.mkDerivation ({
++ optional langJava boehmgc
++ optionals javaAwtGtk xlibs
++ optionals javaAwtGtk [ gmp mpfr ]
- ++ optional (libpthread != null) libpthread)
- );
+ ));
EXTRA_TARGET_FLAGS = optionals
(targetPlatform != hostPlatform && libcCross != null)
@@ -434,10 +395,7 @@ stdenv.mkDerivation ({
] else [
"-Wl,-rpath,${libcCross.out}/lib"
"-Wl,-rpath-link,${libcCross.out}/lib"
- ]) ++ optionals (libpthreadCross != null) [
- "-L${libpthreadCross}/lib"
- "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
- ]);
+ ]));
passthru =
{ inherit langC langCC langObjC langObjCpp langFortran langGo version; isGNU = true; };
diff --git a/pkgs/development/compilers/gcc/6/default.nix b/pkgs/development/compilers/gcc/6/default.nix
index 0fb390758954ac9b7c14d31b49a657959c969bee..3f5d3172d12fbbe35888908e53deede1136631b6 100644
--- a/pkgs/development/compilers/gcc/6/default.nix
+++ b/pkgs/development/compilers/gcc/6/default.nix
@@ -1,7 +1,7 @@
{ stdenv, targetPackages, fetchurl, noSysDirs
, langC ? true, langCC ? true, langFortran ? false
-, langObjC ? targetPlatform.isDarwin
-, langObjCpp ? targetPlatform.isDarwin
+, langObjC ? stdenv.targetPlatform.isDarwin
+, langObjCpp ? stdenv.targetPlatform.isDarwin
, langJava ? false
, langGo ? false
, profiledCompiler ? false
@@ -20,16 +20,15 @@
, libXrandr ? null, libXi ? null, inputproto ? null, randrproto ? null
, x11Support ? langJava
, enableMultilib ? false
-, enablePlugin ? hostPlatform == buildPlatform # Whether to support user-supplied plug-ins
+, enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
, name ? "gcc"
, libcCross ? null
, crossStageStatic ? false
-, libpthread ? null, libpthreadCross ? null # required for GNU/Hurd
, # Strip kills static libs of other archs (hence no cross)
- stripped ? hostPlatform == buildPlatform && targetPlatform == hostPlatform
+ stripped ? stdenv.hostPlatform == stdenv.buildPlatform
+ && stdenv.targetPlatform == stdenv.hostPlatform
, gnused ? null
, cloog # unused; just for compat with gcc4, as we override the parameter on some places
-, buildPlatform, hostPlatform, targetPlatform
, buildPackages
}:
@@ -41,7 +40,7 @@ assert langJava -> zip != null && unzip != null
assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
-assert hostPlatform.isDarwin -> gnused != null;
+assert stdenv.hostPlatform.isDarwin -> gnused != null;
# The go frontend is written in c++
assert langGo -> langCC;
@@ -53,6 +52,8 @@ let version = "6.4.0";
enableParallelBuilding = true;
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
patches =
[ ../use-source-date-epoch.patch ]
++ optional (targetPlatform != hostPlatform) ../libstdc++-target.patch
@@ -192,39 +193,7 @@ stdenv.mkDerivation ({
'';
postPatch =
- if targetPlatform.isHurd
- then
- # On GNU/Hurd glibc refers to Hurd & Mach headers and libpthread is not
- # in glibc, so add the right `-I' flags to the default spec string.
- assert libcCross != null -> libpthreadCross != null;
- let
- libc = if libcCross != null then libcCross else stdenv.glibc;
- gnu_h = "gcc/config/gnu.h";
- extraCPPDeps =
- libc.propagatedBuildInputs
- ++ stdenv.lib.optional (libpthreadCross != null) libpthreadCross
- ++ stdenv.lib.optional (libpthread != null) libpthread;
- extraCPPSpec =
- concatStrings (intersperse " "
- (map (x: "-I${x.dev or x}/include") extraCPPDeps));
- extraLibSpec =
- if libpthreadCross != null
- then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
- else "-L${libpthread}/lib";
- in
- '' echo "augmenting \`CPP_SPEC' in \`${gnu_h}' with \`${extraCPPSpec}'..."
- sed -i "${gnu_h}" \
- -es'|CPP_SPEC *"\(.*\)$|CPP_SPEC "${extraCPPSpec} \1|g'
-
- echo "augmenting \`LIB_SPEC' in \`${gnu_h}' with \`${extraLibSpec}'..."
- sed -i "${gnu_h}" \
- -es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
-
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
- sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
- ''
- else if targetPlatform != hostPlatform || stdenv.cc.libc != null then
+ if targetPlatform != hostPlatform || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
# `/lib/ld*.so'.
let
@@ -408,22 +377,13 @@ stdenv.mkDerivation ({
++ optional langJava boehmgc
++ optionals javaAwtGtk xlibs
++ optionals javaAwtGtk [ gmp mpfr ]
- ++ optional (libpthread != null) libpthread
- ++ optional (libpthreadCross != null) libpthreadCross
-
- # On GNU/Hurd glibc refers to Mach & Hurd
- # headers.
- ++ optionals (libcCross != null && libcCross ? propagatedBuildInputs)
- libcCross.propagatedBuildInputs
));
LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath ([]
++ optional (zlib != null) zlib
++ optional langJava boehmgc
++ optionals javaAwtGtk xlibs
- ++ optionals javaAwtGtk [ gmp mpfr ]
- ++ optional (libpthread != null) libpthread)
- );
+ ++ optionals javaAwtGtk [ gmp mpfr ]));
EXTRA_TARGET_FLAGS = optionals
(targetPlatform != hostPlatform && libcCross != null)
@@ -442,10 +402,7 @@ stdenv.mkDerivation ({
] else [
"-Wl,-rpath,${libcCross.out}/lib"
"-Wl,-rpath-link,${libcCross.out}/lib"
- ]) ++ optionals (libpthreadCross != null) [
- "-L${libpthreadCross}/lib"
- "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
- ]);
+ ]));
passthru =
{ inherit langC langCC langObjC langObjCpp langFortran langGo version; isGNU = true; };
diff --git a/pkgs/development/compilers/gcc/7/default.nix b/pkgs/development/compilers/gcc/7/default.nix
index c5541da0790122d2a9d983b1bce523827ed0c2f9..30c1611f5fb3e92c413f330ded491647399ac8db 100644
--- a/pkgs/development/compilers/gcc/7/default.nix
+++ b/pkgs/development/compilers/gcc/7/default.nix
@@ -1,7 +1,7 @@
{ stdenv, targetPackages, fetchurl, fetchpatch, noSysDirs
, langC ? true, langCC ? true, langFortran ? false
-, langObjC ? targetPlatform.isDarwin
-, langObjCpp ? targetPlatform.isDarwin
+, langObjC ? stdenv.targetPlatform.isDarwin
+, langObjCpp ? stdenv.targetPlatform.isDarwin
, langGo ? false
, profiledCompiler ? false
, staticCompiler ? false
@@ -13,16 +13,15 @@
, isl ? null # optional, for the Graphite optimization framework.
, zlib ? null
, enableMultilib ? false
-, enablePlugin ? hostPlatform == buildPlatform # Whether to support user-supplied plug-ins
+, enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
, name ? "gcc"
, libcCross ? null
, crossStageStatic ? false
-, libpthread ? null, libpthreadCross ? null # required for GNU/Hurd
, # Strip kills static libs of other archs (hence no cross)
- stripped ? hostPlatform == buildPlatform && targetPlatform == hostPlatform
+ stripped ? stdenv.hostPlatform == stdenv.buildPlatform
+ && stdenv.targetPlatform == stdenv.hostPlatform
, gnused ? null
, cloog # unused; just for compat with gcc4, as we override the parameter on some places
-, buildPlatform, hostPlatform, targetPlatform
, buildPackages
}:
@@ -30,7 +29,7 @@
assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
-assert hostPlatform.isDarwin -> gnused != null;
+assert stdenv.hostPlatform.isDarwin -> gnused != null;
# The go frontend is written in c++
assert langGo -> langCC;
@@ -42,6 +41,8 @@ let version = "7.3.0";
enableParallelBuilding = true;
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
patches =
[ # https://gcc.gnu.org/ml/gcc-patches/2018-02/msg00633.html
./riscv-pthread-reentrant.patch
@@ -165,39 +166,7 @@ stdenv.mkDerivation ({
patchShebangs $configureScript
done
'' + (
- if targetPlatform.isHurd
- then
- # On GNU/Hurd glibc refers to Hurd & Mach headers and libpthread is not
- # in glibc, so add the right `-I' flags to the default spec string.
- assert libcCross != null -> libpthreadCross != null;
- let
- libc = if libcCross != null then libcCross else stdenv.glibc;
- gnu_h = "gcc/config/gnu.h";
- extraCPPDeps =
- libc.propagatedBuildInputs
- ++ stdenv.lib.optional (libpthreadCross != null) libpthreadCross
- ++ stdenv.lib.optional (libpthread != null) libpthread;
- extraCPPSpec =
- concatStrings (intersperse " "
- (map (x: "-I${x.dev or x}/include") extraCPPDeps));
- extraLibSpec =
- if libpthreadCross != null
- then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
- else "-L${libpthread}/lib";
- in
- '' echo "augmenting \`CPP_SPEC' in \`${gnu_h}' with \`${extraCPPSpec}'..."
- sed -i "${gnu_h}" \
- -es'|CPP_SPEC *"\(.*\)$|CPP_SPEC "${extraCPPSpec} \1|g'
-
- echo "augmenting \`LIB_SPEC' in \`${gnu_h}' with \`${extraLibSpec}'..."
- sed -i "${gnu_h}" \
- -es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
-
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
- sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
- ''
- else if targetPlatform != hostPlatform || stdenv.cc.libc != null then
+ if targetPlatform != hostPlatform || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
# `/lib/ld*.so'.
let
@@ -357,19 +326,9 @@ stdenv.mkDerivation ({
CPATH = optionals (targetPlatform == hostPlatform) (makeSearchPathOutput "dev" "include" ([]
++ optional (zlib != null) zlib
- ++ optional (libpthread != null) libpthread
- ++ optional (libpthreadCross != null) libpthreadCross
-
- # On GNU/Hurd glibc refers to Mach & Hurd
- # headers.
- ++ optionals (libcCross != null && libcCross ? propagatedBuildInputs)
- libcCross.propagatedBuildInputs
));
- LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath ([]
- ++ optional (zlib != null) zlib
- ++ optional (libpthread != null) libpthread)
- );
+ LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath (optional (zlib != null) zlib));
EXTRA_TARGET_FLAGS = optionals
(targetPlatform != hostPlatform && libcCross != null)
@@ -388,10 +347,7 @@ stdenv.mkDerivation ({
] else [
"-Wl,-rpath,${libcCross.out}/lib"
"-Wl,-rpath-link,${libcCross.out}/lib"
- ]) ++ optionals (libpthreadCross != null) [
- "-L${libpthreadCross}/lib"
- "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
- ]);
+ ]));
passthru =
{ inherit langC langCC langObjC langObjCpp langFortran langGo version; isGNU = true; };
diff --git a/pkgs/development/compilers/gcc/8/default.nix b/pkgs/development/compilers/gcc/8/default.nix
index 5d7be163783495ddb7527f9d7dc80e7f056ca4c9..727cd9cbdbd7b9168731a4483e8279442d8b9a67 100644
--- a/pkgs/development/compilers/gcc/8/default.nix
+++ b/pkgs/development/compilers/gcc/8/default.nix
@@ -1,7 +1,7 @@
{ stdenv, targetPackages, fetchurl, noSysDirs
, langC ? true, langCC ? true, langFortran ? false
-, langObjC ? targetPlatform.isDarwin
-, langObjCpp ? targetPlatform.isDarwin
+, langObjC ? stdenv.targetPlatform.isDarwin
+, langObjCpp ? stdenv.targetPlatform.isDarwin
, langGo ? false
, profiledCompiler ? false
, staticCompiler ? false
@@ -13,16 +13,15 @@
, isl ? null # optional, for the Graphite optimization framework.
, zlib ? null
, enableMultilib ? false
-, enablePlugin ? hostPlatform == buildPlatform # Whether to support user-supplied plug-ins
+, enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
, name ? "gcc"
, libcCross ? null
, crossStageStatic ? false
-, libpthread ? null, libpthreadCross ? null # required for GNU/Hurd
, # Strip kills static libs of other archs (hence no cross)
- stripped ? hostPlatform == buildPlatform && targetPlatform == hostPlatform
+ stripped ? stdenv.hostPlatform == stdenv.buildPlatform
+ && stdenv.targetPlatform == stdenv.hostPlatform
, gnused ? null
, cloog # unused; just for compat with gcc4, as we override the parameter on some places
-, buildPlatform, hostPlatform, targetPlatform
, buildPackages
}:
@@ -30,7 +29,7 @@
assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
-assert hostPlatform.isDarwin -> gnused != null;
+assert stdenv.hostPlatform.isDarwin -> gnused != null;
# The go frontend is written in c++
assert langGo -> langCC;
@@ -42,6 +41,8 @@ let version = "8.2.0";
enableParallelBuilding = true;
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
patches =
optional (targetPlatform != hostPlatform) ../libstdc++-target.patch
++ optional noSysDirs ../no-sys-dirs.patch
@@ -160,39 +161,7 @@ stdenv.mkDerivation ({
patchShebangs $configureScript
done
'' + (
- if targetPlatform.isHurd
- then
- # On GNU/Hurd glibc refers to Hurd & Mach headers and libpthread is not
- # in glibc, so add the right `-I' flags to the default spec string.
- assert libcCross != null -> libpthreadCross != null;
- let
- libc = if libcCross != null then libcCross else stdenv.glibc;
- gnu_h = "gcc/config/gnu.h";
- extraCPPDeps =
- libc.propagatedBuildInputs
- ++ stdenv.lib.optional (libpthreadCross != null) libpthreadCross
- ++ stdenv.lib.optional (libpthread != null) libpthread;
- extraCPPSpec =
- concatStrings (intersperse " "
- (map (x: "-I${x.dev or x}/include") extraCPPDeps));
- extraLibSpec =
- if libpthreadCross != null
- then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
- else "-L${libpthread}/lib";
- in
- '' echo "augmenting \`CPP_SPEC' in \`${gnu_h}' with \`${extraCPPSpec}'..."
- sed -i "${gnu_h}" \
- -es'|CPP_SPEC *"\(.*\)$|CPP_SPEC "${extraCPPSpec} \1|g'
-
- echo "augmenting \`LIB_SPEC' in \`${gnu_h}' with \`${extraLibSpec}'..."
- sed -i "${gnu_h}" \
- -es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
-
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
- sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
- ''
- else if targetPlatform != hostPlatform || stdenv.cc.libc != null then
+ if targetPlatform != hostPlatform || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
# `/lib/ld*.so'.
let
@@ -346,19 +315,9 @@ stdenv.mkDerivation ({
CPATH = optionals (targetPlatform == hostPlatform) (makeSearchPathOutput "dev" "include" ([]
++ optional (zlib != null) zlib
- ++ optional (libpthread != null) libpthread
- ++ optional (libpthreadCross != null) libpthreadCross
-
- # On GNU/Hurd glibc refers to Mach & Hurd
- # headers.
- ++ optionals (libcCross != null && libcCross ? propagatedBuildInputs)
- libcCross.propagatedBuildInputs
));
- LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath ([]
- ++ optional (zlib != null) zlib
- ++ optional (libpthread != null) libpthread)
- );
+ LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath (optional (zlib != null) zlib));
EXTRA_TARGET_FLAGS = optionals
(targetPlatform != hostPlatform && libcCross != null)
@@ -377,10 +336,7 @@ stdenv.mkDerivation ({
] else [
"-Wl,-rpath,${libcCross.out}/lib"
"-Wl,-rpath-link,${libcCross.out}/lib"
- ]) ++ optionals (libpthreadCross != null) [
- "-L${libpthreadCross}/lib"
- "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
- ]);
+ ]));
passthru =
{ inherit langC langCC langObjC langObjCpp langFortran langGo version; isGNU = true; };
diff --git a/pkgs/development/compilers/gcc/snapshot/default.nix b/pkgs/development/compilers/gcc/snapshot/default.nix
index 124fdbcdf9d44cfa8233aa74fa4f14df30be08f9..dd6de818117fbe97c7b641a3f27cb9fca2fe54df 100644
--- a/pkgs/development/compilers/gcc/snapshot/default.nix
+++ b/pkgs/development/compilers/gcc/snapshot/default.nix
@@ -1,7 +1,7 @@
{ stdenv, targetPackages, fetchurl, noSysDirs
, langC ? true, langCC ? true, langFortran ? false
-, langObjC ? targetPlatform.isDarwin
-, langObjCpp ? targetPlatform.isDarwin
+, langObjC ? stdenv.targetPlatform.isDarwin
+, langObjCpp ? stdenv.targetPlatform.isDarwin
, langGo ? false
, profiledCompiler ? false
, staticCompiler ? false
@@ -13,17 +13,16 @@
, isl ? null # optional, for the Graphite optimization framework.
, zlib ? null
, enableMultilib ? false
-, enablePlugin ? hostPlatform == buildPlatform # Whether to support user-supplied plug-ins
+, enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
, name ? "gcc"
, libcCross ? null
, crossStageStatic ? false
-, libpthread ? null, libpthreadCross ? null # required for GNU/Hurd
, # Strip kills static libs of other archs (hence no cross)
- stripped ? hostPlatform == buildPlatform && targetPlatform == hostPlatform
+ stripped ? stdenv.hostPlatform == stdenv.buildPlatform
+ && stdenv.targetPlatform == stdenv.hostPlatform
, gnused ? null
, cloog # unused; just for compat with gcc4, as we override the parameter on some places
, flex ? null
-, buildPlatform, hostPlatform, targetPlatform
, buildPackages
}:
@@ -31,7 +30,7 @@
assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
-assert hostPlatform.isDarwin -> gnused != null;
+assert stdenv.hostPlatform.isDarwin -> gnused != null;
# The go frontend is written in c++
assert langGo -> langCC;
@@ -43,6 +42,8 @@ let version = "7-20170409";
enableParallelBuilding = true;
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
patches =
[ ]
++ optional (targetPlatform != hostPlatform) ../libstdc++-target.patch
@@ -134,39 +135,7 @@ stdenv.mkDerivation ({
hardeningDisable = [ "format" ];
postPatch =
- if targetPlatform.isHurd
- then
- # On GNU/Hurd glibc refers to Hurd & Mach headers and libpthread is not
- # in glibc, so add the right `-I' flags to the default spec string.
- assert libcCross != null -> libpthreadCross != null;
- let
- libc = if libcCross != null then libcCross else stdenv.glibc;
- gnu_h = "gcc/config/gnu.h";
- extraCPPDeps =
- libc.propagatedBuildInputs
- ++ stdenv.lib.optional (libpthreadCross != null) libpthreadCross
- ++ stdenv.lib.optional (libpthread != null) libpthread;
- extraCPPSpec =
- concatStrings (intersperse " "
- (map (x: "-I${x.dev or x}/include") extraCPPDeps));
- extraLibSpec =
- if libpthreadCross != null
- then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
- else "-L${libpthread}/lib";
- in
- '' echo "augmenting \`CPP_SPEC' in \`${gnu_h}' with \`${extraCPPSpec}'..."
- sed -i "${gnu_h}" \
- -es'|CPP_SPEC *"\(.*\)$|CPP_SPEC "${extraCPPSpec} \1|g'
-
- echo "augmenting \`LIB_SPEC' in \`${gnu_h}' with \`${extraLibSpec}'..."
- sed -i "${gnu_h}" \
- -es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
-
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
- sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
- ''
- else if targetPlatform != hostPlatform || stdenv.cc.libc != null then
+ if targetPlatform != hostPlatform || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
# `/lib/ld*.so'.
let
@@ -314,19 +283,9 @@ stdenv.mkDerivation ({
CPATH = optionals (targetPlatform == hostPlatform) (makeSearchPathOutput "dev" "include" ([]
++ optional (zlib != null) zlib
- ++ optional (libpthread != null) libpthread
- ++ optional (libpthreadCross != null) libpthreadCross
-
- # On GNU/Hurd glibc refers to Mach & Hurd
- # headers.
- ++ optionals (libcCross != null && libcCross ? propagatedBuildInputs)
- libcCross.propagatedBuildInputs
));
- LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath ([]
- ++ optional (zlib != null) zlib
- ++ optional (libpthread != null) libpthread)
- );
+ LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath (optional (zlib != null) zlib));
EXTRA_TARGET_FLAGS = optionals
(targetPlatform != hostPlatform && libcCross != null)
@@ -345,10 +304,7 @@ stdenv.mkDerivation ({
] else [
"-Wl,-rpath,${libcCross.out}/lib"
"-Wl,-rpath-link,${libcCross.out}/lib"
- ]) ++ optionals (libpthreadCross != null) [
- "-L${libpthreadCross}/lib"
- "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
- ]);
+ ]));
passthru =
{ inherit langC langCC langObjC langObjCpp langFortran langGo version; isGNU = true; };
diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix
index 0cf3a4cb12b48f88106c38f714a8d65ee7ba0a8c..9c87d815b4a9282a073bf3e202faea86de6eb95e 100644
--- a/pkgs/development/compilers/ghc/7.10.3.nix
+++ b/pkgs/development/compilers/ghc/7.10.3.nix
@@ -1,5 +1,4 @@
{ stdenv, targetPackages
-, buildPlatform, hostPlatform, targetPlatform
# build-tools
, bootPkgs, hscolour
@@ -8,7 +7,7 @@
, libiconv ? null, ncurses
-, useLLVM ? !targetPlatform.isx86
+, useLLVM ? !stdenv.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.
@@ -19,7 +18,7 @@
enableIntegerSimple ? !(gmp.meta.available or false), gmp
, # If enabled, use -fPIC when compiling static libs.
- enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+ enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform
, # Whether to build dynamic libs for the standard library (on the target
# platform). Static libs are always built.
@@ -27,10 +26,12 @@
, # What flavour to build. An empty string indicates no
# specific flavour and falls back to ghc default values.
- ghcFlavour ? stdenv.lib.optionalString (targetPlatform != hostPlatform) "perf-cross"
+ ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) "perf-cross"
}:
let
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
inherit (bootPkgs) ghc;
# TODO(@Ericson2314) Make unconditional
diff --git a/pkgs/development/compilers/ghc/8.0.2.nix b/pkgs/development/compilers/ghc/8.0.2.nix
index ddd9c27589ace13bac2858ac4ea90af7c953fa04..935d09b57446dfefa8ca9ebdb788f8ba05e3cf2f 100644
--- a/pkgs/development/compilers/ghc/8.0.2.nix
+++ b/pkgs/development/compilers/ghc/8.0.2.nix
@@ -1,5 +1,4 @@
{ stdenv, targetPackages
-, buildPlatform, hostPlatform, targetPlatform
# build-tools
, bootPkgs, hscolour
@@ -7,7 +6,7 @@
, libiconv ? null, ncurses
-, useLLVM ? !targetPlatform.isx86
+, useLLVM ? !stdenv.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.
@@ -18,7 +17,7 @@
enableIntegerSimple ? !(gmp.meta.available or false), gmp
, # If enabled, use -fPIC when compiling static libs.
- enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+ enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform
, # Whether to build dynamic libs for the standard library (on the target
# platform). Static libs are always built.
@@ -26,12 +25,14 @@
, # What flavour to build. An empty string indicates no
# specific flavour and falls back to ghc default values.
- ghcFlavour ? stdenv.lib.optionalString (targetPlatform != hostPlatform) "perf-cross"
+ ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) "perf-cross"
}:
assert !enableIntegerSimple -> gmp != null;
let
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
inherit (bootPkgs) ghc;
# TODO(@Ericson2314) Make unconditional
diff --git a/pkgs/development/compilers/ghc/8.2.2.nix b/pkgs/development/compilers/ghc/8.2.2.nix
index 79c910e5fd21727565d09349fd07562eb64a75d8..cf448d8d849a7dfb93fd4387797b2cbcf096b427 100644
--- a/pkgs/development/compilers/ghc/8.2.2.nix
+++ b/pkgs/development/compilers/ghc/8.2.2.nix
@@ -1,5 +1,4 @@
{ stdenv, targetPackages
-, buildPlatform, hostPlatform, targetPlatform
# build-tools
, bootPkgs, alex, happy, hscolour
@@ -8,7 +7,7 @@
, libiconv ? null, ncurses
-, useLLVM ? !targetPlatform.isx86 || (targetPlatform.isMusl && hostPlatform != targetPlatform)
+, useLLVM ? !stdenv.targetPlatform.isx86 || (stdenv.targetPlatform.isMusl && stdenv.hostPlatform != stdenv.targetPlatform)
, # 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.
@@ -19,7 +18,7 @@
enableIntegerSimple ? !(gmp.meta.available or false), gmp
, # If enabled, use -fPIC when compiling static libs.
- enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+ enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform
, # Whether to build dynamic libs for the standard library (on the target
# platform). Static libs are always built.
@@ -27,7 +26,7 @@
, # What flavour to build. An empty string indicates no
# specific flavour and falls back to ghc default values.
- ghcFlavour ? stdenv.lib.optionalString (targetPlatform != hostPlatform) "perf-cross"
+ ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) "perf-cross"
, # Whether to backport https://phabricator.haskell.org/D4388 for
# deterministic profiling symbol names, at the cost of a slightly
# non-standard GHC API
@@ -37,6 +36,8 @@
assert !enableIntegerSimple -> gmp != null;
let
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
inherit (bootPkgs) ghc;
# TODO(@Ericson2314) Make unconditional
diff --git a/pkgs/development/compilers/ghc/8.4.3.nix b/pkgs/development/compilers/ghc/8.4.3.nix
index f30c8dd8622ede00463dc8dc7803c30bf09d68ed..aa9fab1843643e87b4d2a67805359e41f9e6e773 100644
--- a/pkgs/development/compilers/ghc/8.4.3.nix
+++ b/pkgs/development/compilers/ghc/8.4.3.nix
@@ -1,5 +1,4 @@
{ stdenv, targetPackages
-, buildPlatform, hostPlatform, targetPlatform
# build-tools
, bootPkgs, alex, happy, hscolour
@@ -7,7 +6,7 @@
, libiconv ? null, ncurses
-, useLLVM ? !targetPlatform.isx86 || (targetPlatform.isMusl && hostPlatform != targetPlatform)
+, useLLVM ? !stdenv.targetPlatform.isx86 || (stdenv.targetPlatform.isMusl && stdenv.hostPlatform != stdenv.targetPlatform)
, # 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.
@@ -18,18 +17,18 @@
enableIntegerSimple ? !(gmp.meta.available or false), gmp
, # If enabled, use -fPIC when compiling static libs.
- enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+ enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform
, # Whether to build dynamic libs for the standard library (on the target
# platform). Static libs are always built.
- enableShared ? !targetPlatform.isWindows && !targetPlatform.useiOSPrebuilt
+ enableShared ? !stdenv.targetPlatform.isWindows && !stdenv.targetPlatform.useiOSPrebuilt
, # Whetherto build terminfo.
- enableTerminfo ? !targetPlatform.isWindows
+ enableTerminfo ? !stdenv.targetPlatform.isWindows
, # What flavour to build. An empty string indicates no
# specific flavour and falls back to ghc default values.
- ghcFlavour ? stdenv.lib.optionalString (targetPlatform != hostPlatform) "perf-cross"
+ ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) "perf-cross"
, # Whether to backport https://phabricator.haskell.org/D4388 for
# deterministic profiling symbol names, at the cost of a slightly
# non-standard GHC API
@@ -39,6 +38,8 @@
assert !enableIntegerSimple -> gmp != null;
let
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
inherit (bootPkgs) ghc;
# TODO(@Ericson2314) Make unconditional
diff --git a/pkgs/development/compilers/ghc/8.6.1.nix b/pkgs/development/compilers/ghc/8.6.1.nix
index fdb60ce3f2e811f045d443b4690a3428bfe11d46..7fcb52969151c8cd92ee2e05b02810ab362f86ff 100644
--- a/pkgs/development/compilers/ghc/8.6.1.nix
+++ b/pkgs/development/compilers/ghc/8.6.1.nix
@@ -1,5 +1,4 @@
{ stdenv, targetPackages
-, buildPlatform, hostPlatform, targetPlatform
# build-tools
, bootPkgs, alex, happy, hscolour
@@ -7,7 +6,7 @@
, libiconv ? null, ncurses
-, useLLVM ? !targetPlatform.isx86 || (targetPlatform.isMusl && hostPlatform != targetPlatform)
+, useLLVM ? !stdenv.targetPlatform.isx86 || (stdenv.targetPlatform.isMusl && stdenv.hostPlatform != stdenv.targetPlatform)
, # 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.
@@ -18,23 +17,25 @@
enableIntegerSimple ? !(gmp.meta.available or false), gmp
, # If enabled, use -fPIC when compiling static libs.
- enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+ enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform
, # Whether to build dynamic libs for the standard library (on the target
# platform). Static libs are always built.
- enableShared ? !targetPlatform.isWindows && !targetPlatform.useiOSPrebuilt
+ enableShared ? !stdenv.targetPlatform.isWindows && !stdenv.targetPlatform.useiOSPrebuilt
, # Whetherto build terminfo.
- enableTerminfo ? !targetPlatform.isWindows
+ enableTerminfo ? !stdenv.targetPlatform.isWindows
, # What flavour to build. An empty string indicates no
# specific flavour and falls back to ghc default values.
- ghcFlavour ? stdenv.lib.optionalString (targetPlatform != hostPlatform) "perf-cross"
+ ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) "perf-cross"
}:
assert !enableIntegerSimple -> gmp != null;
let
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
inherit (bootPkgs) ghc;
# TODO(@Ericson2314) Make unconditional
diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix
index 2824ce669ee62b64c694b6931acf57bfccee7a68..ee95bd0f60470b80cd4a95abb68d9b04c8f94f9a 100644
--- a/pkgs/development/compilers/ghc/head.nix
+++ b/pkgs/development/compilers/ghc/head.nix
@@ -1,5 +1,4 @@
{ stdenv, targetPackages
-, buildPlatform, hostPlatform, targetPlatform
# build-tools
, bootPkgs, alex, happy, hscolour
@@ -7,7 +6,7 @@
, libiconv ? null, ncurses
-, useLLVM ? !targetPlatform.isx86 || (targetPlatform.isMusl && hostPlatform != targetPlatform)
+, useLLVM ? !stdenv.targetPlatform.isx86 || (stdenv.targetPlatform.isMusl && stdenv.hostPlatform != stdenv.targetPlatform)
, # 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.
@@ -18,22 +17,24 @@
enableIntegerSimple ? !(gmp.meta.available or false), gmp
, # If enabled, use -fPIC when compiling static libs.
- enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+ enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform
, # Whether to build dynamic libs for the standard library (on the target
# platform). Static libs are always built.
- enableShared ? !targetPlatform.isWindows && !targetPlatform.useAndroidPrebuilt
+ enableShared ? !stdenv.targetPlatform.isWindows && !stdenv.targetPlatform.useAndroidPrebuilt
, # Whetherto build terminfo.
- enableTerminfo ? !targetPlatform.isWindows
+ enableTerminfo ? !stdenv.targetPlatform.isWindows
, version ? "8.5.20180118"
, # What flavour to build. An empty string indicates no
# specific flavour and falls back to ghc default values.
- ghcFlavour ? stdenv.lib.optionalString (targetPlatform != hostPlatform) "perf-cross"
+ ghcFlavour ? stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) "perf-cross"
}:
let
+ inherit (stdenv) buildPlatform hostPlatform targetPlatform;
+
inherit (bootPkgs) ghc;
# TODO(@Ericson2314) Make unconditional
diff --git a/pkgs/development/compilers/ghcjs-ng/default.nix b/pkgs/development/compilers/ghcjs-ng/default.nix
index ddabb7ca6bfc641cca24d3309c9975aafe4a683d..5db2777c8bb06023f2505306c540a6660af110d2 100644
--- a/pkgs/development/compilers/ghcjs-ng/default.nix
+++ b/pkgs/development/compilers/ghcjs-ng/default.nix
@@ -59,7 +59,7 @@ let
};
bootGhcjs = haskellLib.justStaticExecutables passthru.bootPkgs.ghcjs;
- libexec = "${bootGhcjs}/libexec/${builtins.replaceStrings ["darwin" "i686"] ["osx" "i386"] stdenv.system}-${passthru.bootPkgs.ghc.name}/${bootGhcjs.name}";
+ libexec = "${bootGhcjs}/libexec/${builtins.replaceStrings ["darwin" "i686"] ["osx" "i386"] stdenv.buildPlatform.system}-${passthru.bootPkgs.ghc.name}/${bootGhcjs.name}";
in stdenv.mkDerivation {
name = bootGhcjs.name;
diff --git a/pkgs/development/compilers/glslang/default.nix b/pkgs/development/compilers/glslang/default.nix
index b2a4eda9a63e3b57eee3903f74710dd4d9b7828f..eb444fffe895992823c9009e75ffb5915c7aa382 100644
--- a/pkgs/development/compilers/glslang/default.nix
+++ b/pkgs/development/compilers/glslang/default.nix
@@ -1,20 +1,28 @@
-{ stdenv, fetchFromGitHub, cmake, bison, spirv-tools, jq }:
+{ stdenv, fetchFromGitHub, fetchpatch, cmake, bison, spirv-tools, jq }:
stdenv.mkDerivation rec {
name = "glslang-git-${version}";
- version = "2018-06-21";
+ version = "2018-07-27";
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "glslang";
- rev = "ef1f899b5d64a9628023f1bb129198674cba2b97";
- sha256 = "052w6rahmy1wlphv533wz8nyn82icky28lprvl8w3acfq3831zg6";
+ rev = "e99a26810f65314183163c07664a40e05647c15f";
+ sha256 = "1w11z518xfbnf34xgzg1mp3xicpw2qmpcvaixlzw79s9ifqg5lqs";
};
+ patches = [
+ # spirv-tools bump for vulkan sdk 1.1.82.1; remove on update
+ (fetchpatch {
+ url = "https://github.com/lenny-lunarg/glslang/commit/c7f4e818ac55f545289f87f8c37571b2eadcde86.patch";
+ sha256 = "197293alxjdpm3x1vd6pksdb1d9za42vlyn8yn2w786av0l7vf1k";
+ })
+ ];
+
buildInputs = [ cmake bison jq ] ++ spirv-tools.buildInputs;
enableParallelBuilding = true;
- patchPhase = ''
+ postPatch = ''
cp --no-preserve=mode -r "${spirv-tools.src}" External/spirv-tools
ln -s "${spirv-tools.headers}" External/spirv-tools/external/spirv-headers
'';
@@ -23,7 +31,7 @@ stdenv.mkDerivation rec {
HEADERS_COMMIT=$(jq -r < known_good.json '.commits|map(select(.name=="spirv-tools/external/spirv-headers"))[0].commit')
TOOLS_COMMIT=$(jq -r < known_good.json '.commits|map(select(.name=="spirv-tools"))[0].commit')
if [ "$HEADERS_COMMIT" != "${spirv-tools.headers.rev}" ] || [ "$TOOLS_COMMIT" != "${spirv-tools.src.rev}" ]; then
- echo "ERROR: spirv-tools commits do not match expected versions";
+ echo "ERROR: spirv-tools commits do not match expected versions: expected tools at $TOOLS_COMMIT, headers at $HEADERS_COMMIT";
exit 1;
fi
'';
diff --git a/pkgs/development/compilers/go/1.10.nix b/pkgs/development/compilers/go/1.10.nix
index 513d0307f6bf44572afbd6d5d23055c2e8bf9eec..fa4b4abafdee5a29eeebe7917d1afe23edfc6152 100644
--- a/pkgs/development/compilers/go/1.10.nix
+++ b/pkgs/development/compilers/go/1.10.nix
@@ -134,12 +134,12 @@ stdenv.mkDerivation rec {
GOOS = if stdenv.isDarwin then "darwin" else "linux";
GOARCH = if stdenv.isDarwin then "amd64"
- else if stdenv.system == "i686-linux" then "386"
- else if stdenv.system == "x86_64-linux" then "amd64"
+ else if stdenv.hostPlatform.system == "i686-linux" then "386"
+ else if stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
else if stdenv.isAarch32 then "arm"
else if stdenv.isAarch64 then "arm64"
else throw "Unsupported system";
- GOARM = optionalString (stdenv.system == "armv5tel-linux") "5";
+ GOARM = optionalString (stdenv.hostPlatform.system == "armv5tel-linux") "5";
GO386 = 387; # from Arch: don't assume sse2 on i686
CGO_ENABLED = 1;
GOROOT_BOOTSTRAP = "${goBootstrap}/share/go";
diff --git a/pkgs/development/compilers/go/1.11.nix b/pkgs/development/compilers/go/1.11.nix
new file mode 100644
index 0000000000000000000000000000000000000000..55cc654b0aa9f46fbb8b15a43f251b554041add0
--- /dev/null
+++ b/pkgs/development/compilers/go/1.11.nix
@@ -0,0 +1,194 @@
+{ stdenv, fetchFromGitHub, tzdata, iana-etc, go_bootstrap, runCommand, writeScriptBin
+, perl, which, pkgconfig, patch, procps
+, pcre, cacert, llvm
+, Security, Foundation
+, makeWrapper, git, subversion, mercurial, bazaar }:
+
+let
+
+ inherit (stdenv.lib) optionals optionalString;
+
+ clangHack = writeScriptBin "clang" ''
+ #!${stdenv.shell}
+ exec ${stdenv.cc}/bin/clang "$@" 2> >(sed '/ld: warning:.*ignoring unexpected dylib file/ d' 1>&2)
+ '';
+
+ goBootstrap = runCommand "go-bootstrap" {} ''
+ mkdir $out
+ cp -rf ${go_bootstrap}/* $out/
+ chmod -R u+w $out
+ find $out -name "*.c" -delete
+ cp -rf $out/bin/* $out/share/go/bin/
+ '';
+
+in
+
+stdenv.mkDerivation rec {
+ name = "go-${version}";
+ version = "1.11";
+
+ src = fetchFromGitHub {
+ owner = "golang";
+ repo = "go";
+ rev = "go${version}";
+ sha256 = "1k18d6rkijlgzn1zw4wphzcv6a6w9hb1msgrsh1102jb18644f2q";
+ };
+
+ GOCACHE = "off";
+
+ # perl is used for testing go vet
+ nativeBuildInputs = [ perl which pkgconfig patch makeWrapper procps ];
+ buildInputs = [ cacert pcre ]
+ ++ optionals stdenv.isLinux [ stdenv.cc.libc.out ]
+ ++ optionals (stdenv.hostPlatform.libc == "glibc") [ stdenv.cc.libc.static ];
+ propagatedBuildInputs = optionals stdenv.isDarwin [ Security Foundation ];
+
+ hardeningDisable = [ "all" ];
+
+ prePatch = ''
+ patchShebangs ./ # replace /bin/bash
+
+ # This source produces shell script at run time,
+ # and thus it is not corrected by patchShebangs.
+ substituteInPlace misc/cgo/testcarchive/carchive_test.go \
+ --replace '#!/usr/bin/env bash' '#!${stdenv.shell}'
+
+ # Disabling the 'os/http/net' tests (they want files not available in
+ # chroot builds)
+ rm src/net/{listen,parse}_test.go
+ rm src/syscall/exec_linux_test.go
+
+ # !!! substituteInPlace does not seems to be effective.
+ # The os test wants to read files in an existing path. Just don't let it be /usr/bin.
+ sed -i 's,/usr/bin,'"`pwd`", src/os/os_test.go
+ sed -i 's,/bin/pwd,'"`type -P pwd`", src/os/os_test.go
+ # Disable the unix socket test
+ sed -i '/TestShutdownUnix/areturn' src/net/net_test.go
+ # Disable the hostname test
+ sed -i '/TestHostname/areturn' src/os/os_test.go
+ # ParseInLocation fails the test
+ sed -i '/TestParseInSydney/areturn' src/time/format_test.go
+ # Remove the api check as it never worked
+ sed -i '/src\/cmd\/api\/run.go/ireturn nil' src/cmd/dist/test.go
+ # Remove the coverage test as we have removed this utility
+ sed -i '/TestCoverageWithCgo/areturn' src/cmd/go/go_test.go
+ # Remove the timezone naming test
+ sed -i '/TestLoadFixed/areturn' src/time/time_test.go
+ # Remove disable setgid test
+ sed -i '/TestRespectSetgidDir/areturn' src/cmd/go/internal/work/build_test.go
+ # Remove cert tests that conflict with NixOS's cert resolution
+ sed -i '/TestEnvVars/areturn' src/crypto/x509/root_unix_test.go
+ # TestWritevError hangs sometimes
+ sed -i '/TestWritevError/areturn' src/net/writev_test.go
+ # TestVariousDeadlines fails sometimes
+ sed -i '/TestVariousDeadlines/areturn' src/net/timeout_test.go
+
+ sed -i 's,/etc/protocols,${iana-etc}/etc/protocols,' src/net/lookup_unix.go
+ sed -i 's,/etc/services,${iana-etc}/etc/services,' src/net/port_unix.go
+
+ # Disable cgo lookup tests not works, they depend on resolver
+ rm src/net/cgo_unix_test.go
+
+ '' + optionalString stdenv.isLinux ''
+ sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/time/zoneinfo_unix.go
+ '' + optionalString stdenv.isAarch32 ''
+ echo '#!${stdenv.shell}' > misc/cgo/testplugin/test.bash
+ '' + optionalString stdenv.isDarwin ''
+ substituteInPlace src/race.bash --replace \
+ "sysctl machdep.cpu.extfeatures | grep -qv EM64T" true
+ sed -i 's,strings.Contains(.*sysctl.*,true {,' src/cmd/dist/util.go
+ sed -i 's,"/etc","'"$TMPDIR"'",' src/os/os_test.go
+ sed -i 's,/_go_os_test,'"$TMPDIR"'/_go_os_test,' src/os/path_test.go
+
+ sed -i '/TestChdirAndGetwd/areturn' src/os/os_test.go
+ sed -i '/TestCredentialNoSetGroups/areturn' src/os/exec/exec_posix_test.go
+ sed -i '/TestRead0/areturn' src/os/os_test.go
+ sed -i '/TestSystemRoots/areturn' src/crypto/x509/root_darwin_test.go
+
+ sed -i '/TestGoInstallRebuildsStalePackagesInOtherGOPATH/areturn' src/cmd/go/go_test.go
+ sed -i '/TestBuildDashIInstallsDependencies/areturn' src/cmd/go/go_test.go
+
+ sed -i '/TestDisasmExtld/areturn' src/cmd/objdump/objdump_test.go
+
+ sed -i 's/unrecognized/unknown/' src/cmd/link/internal/ld/lib.go
+
+ touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd
+ '';
+
+ patches = [
+ ./remove-tools-1.11.patch
+ ./ssl-cert-file-1.9.patch
+ ./remove-test-pie.patch
+ ./creds-test.patch
+ ./go-1.9-skip-flaky-19608.patch
+ ./go-1.9-skip-flaky-20072.patch
+ ./remove-fhs-test-references.patch
+ ./skip-external-network-tests.patch
+ ./skip-nohup-tests.patch
+ ];
+
+ postPatch = optionalString stdenv.isDarwin ''
+ echo "substitute hardcoded dsymutil with ${llvm}/bin/llvm-dsymutil"
+ substituteInPlace "src/cmd/link/internal/ld/lib.go" --replace dsymutil ${llvm}/bin/llvm-dsymutil
+ '';
+
+ GOOS = if stdenv.isDarwin then "darwin" else "linux";
+ GOARCH = if stdenv.isDarwin then "amd64"
+ else if stdenv.targetPlatform.isi686 then "386"
+ else if stdenv.targetPlatform.isx86_64 then "amd64"
+ else if stdenv.targetPlatform.isAarch32 then "arm"
+ else if stdenv.targetPlatform.isAarch64 then "arm64"
+ else throw "Unsupported system";
+ GOARM = stdenv.targetPlatform.parsed.cpu.version or "";
+ 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.
+ CC = if stdenv.isDarwin then "clang" else "cc";
+
+ configurePhase = ''
+ # Indicate that we are running on build infrastructure
+ # Some tests assume things like home directories and users exists
+ export GO_BUILDER_NAME=nix
+
+ mkdir -p $out/share/go/bin
+ export GOROOT=$out/share/go
+ export GOBIN=$GOROOT/bin
+ export PATH=$GOBIN:$PATH
+ ulimit -a
+ '';
+
+ postConfigure = optionalString stdenv.isDarwin ''
+ export PATH=${clangHack}/bin:$PATH
+ '';
+
+ installPhase = ''
+ cp -r . $GOROOT
+ ( cd $GOROOT/src && ./all.bash )
+
+ # (https://github.com/golang/go/wiki/GoGetTools)
+ wrapProgram $out/share/go/bin/go --prefix PATH ":" "${stdenv.lib.makeBinPath [ git subversion mercurial bazaar ]}"
+ '';
+
+ preFixup = ''
+ rm -r $out/share/go/pkg/bootstrap
+ ln -s $out/share/go/bin $out/bin
+ '';
+
+ setupHook = ./setup-hook.sh;
+
+ disallowedReferences = [ go_bootstrap ];
+
+ meta = with stdenv.lib; {
+ branch = "1.9";
+ homepage = http://golang.org/;
+ description = "The Go Programming language";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ cstrahan orivej velovix mic92 ];
+ platforms = platforms.linux ++ platforms.darwin;
+ };
+}
diff --git a/pkgs/development/compilers/go/1.4.nix b/pkgs/development/compilers/go/1.4.nix
index 32eb0d98d188a0525d9b2f0ae38cd4b611600f9e..40fd3f15786ba2d2f42de8b16f40c55438b63a70 100644
--- a/pkgs/development/compilers/go/1.4.nix
+++ b/pkgs/development/compilers/go/1.4.nix
@@ -128,11 +128,11 @@ stdenv.mkDerivation rec {
GOOS = if stdenv.isDarwin then "darwin" else "linux";
GOARCH = if stdenv.isDarwin then "amd64"
- else if stdenv.system == "i686-linux" then "386"
- else if stdenv.system == "x86_64-linux" then "amd64"
+ else if stdenv.hostPlatform.system == "i686-linux" then "386"
+ else if stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
else if stdenv.isAarch32 then "arm"
else throw "Unsupported system";
- GOARM = stdenv.lib.optionalString (stdenv.system == "armv5tel-linux") "5";
+ GOARM = stdenv.lib.optionalString (stdenv.hostPlatform.system == "armv5tel-linux") "5";
GO386 = 387; # from Arch: don't assume sse2 on i686
CGO_ENABLED = 0;
diff --git a/pkgs/development/compilers/go/1.9.nix b/pkgs/development/compilers/go/1.9.nix
index d46e40f460b17f8be8949633390df6d6ba18884a..48f16c3ffa5aa3362b73f567c0bf764f7e53f870 100644
--- a/pkgs/development/compilers/go/1.9.nix
+++ b/pkgs/development/compilers/go/1.9.nix
@@ -134,12 +134,12 @@ stdenv.mkDerivation rec {
GOOS = if stdenv.isDarwin then "darwin" else "linux";
GOARCH = if stdenv.isDarwin then "amd64"
- else if stdenv.system == "i686-linux" then "386"
- else if stdenv.system == "x86_64-linux" then "amd64"
+ else if stdenv.hostPlatform.system == "i686-linux" then "386"
+ else if stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
else if stdenv.isAarch32 then "arm"
else if stdenv.isAarch64 then "arm64"
else throw "Unsupported system";
- GOARM = optionalString (stdenv.system == "armv5tel-linux") "5";
+ GOARM = optionalString (stdenv.hostPlatform.system == "armv5tel-linux") "5";
GO386 = 387; # from Arch: don't assume sse2 on i686
CGO_ENABLED = 1;
GOROOT_BOOTSTRAP = "${goBootstrap}/share/go";
diff --git a/pkgs/development/compilers/go/remove-fhs-test-references.patch b/pkgs/development/compilers/go/remove-fhs-test-references.patch
new file mode 100644
index 0000000000000000000000000000000000000000..1ea7f85d529076ffe66096ced5f80c5e75b057f7
--- /dev/null
+++ b/pkgs/development/compilers/go/remove-fhs-test-references.patch
@@ -0,0 +1,13 @@
+diff --git a/src/cmd/vendor/golang.org/x/sys/unix/syscall_unix_test.go b/src/cmd/vendor/golang.org/x/sys/unix/syscall_unix_test.go
+index d694990..87fa259 100644
+--- a/src/cmd/vendor/golang.org/x/sys/unix/syscall_unix_test.go
++++ b/src/cmd/vendor/golang.org/x/sys/unix/syscall_unix_test.go
+@@ -452,7 +452,7 @@ func TestGetwd(t *testing.T) {
+ defer fd.Close()
+ // These are chosen carefully not to be symlinks on a Mac
+ // (unlike, say, /var, /etc)
+- dirs := []string{"/", "/usr/bin"}
++ dirs := []string{"/"}
+ switch runtime.GOOS {
+ case "android":
+ dirs = []string{"/", "/system/bin"}
diff --git a/pkgs/development/compilers/go/remove-tools-1.11.patch b/pkgs/development/compilers/go/remove-tools-1.11.patch
new file mode 100644
index 0000000000000000000000000000000000000000..cff35999a8322afbfc44d26844cf8b7606925ede
--- /dev/null
+++ b/pkgs/development/compilers/go/remove-tools-1.11.patch
@@ -0,0 +1,35 @@
+diff --git a/src/go/build/build.go b/src/go/build/build.go
+index b68a712..b60bf19 100644
+--- a/src/go/build/build.go
++++ b/src/go/build/build.go
+@@ -1708,7 +1708,7 @@ func init() {
+ }
+
+ // ToolDir is the directory containing build tools.
+-var ToolDir = getToolDir()
++var ToolDir = runtime.GOTOOLDIR()
+
+ // IsLocalImport reports whether the import path is
+ // a local import path, like ".", "..", "./foo", or "../foo".
+diff --git a/src/runtime/extern.go b/src/runtime/extern.go
+index 7171b13..18a942c 100644
+--- a/src/runtime/extern.go
++++ b/src/runtime/extern.go
+@@ -229,6 +229,17 @@ func GOROOT() string {
+ return sys.DefaultGoroot
+ }
+
++// GOTOOLDIR returns the root of the Go tree.
++// It uses the GOTOOLDIR environment variable, if set,
++// or else the root used during the Go build.
++func GOTOOLDIR() string {
++ s := gogetenv("GOTOOLDIR")
++ if s != "" {
++ return s
++ }
++ return GOROOT() + "/pkg/tool/" + GOOS + "_" + GOARCH
++}
++
+ // Version returns the Go tree's version string.
+ // It is either the commit hash and date at the time of the build or,
+ // when possible, a release tag like "go1.3".
diff --git a/pkgs/development/compilers/go/skip-external-network-tests.patch b/pkgs/development/compilers/go/skip-external-network-tests.patch
new file mode 100644
index 0000000000000000000000000000000000000000..5791b213cb59c94e7ff352273fc61c7497bc37f1
--- /dev/null
+++ b/pkgs/development/compilers/go/skip-external-network-tests.patch
@@ -0,0 +1,26 @@
+diff --git a/src/cmd/go/go_test.go b/src/cmd/go/go_test.go
+index 85cae90..94b4edd 100644
+--- a/src/cmd/go/go_test.go
++++ b/src/cmd/go/go_test.go
+@@ -4946,6 +4946,8 @@ func TestBuildmodePIE(t *testing.T) {
+ }
+
+ func TestExecBuildX(t *testing.T) {
++ t.Skipf("skipping, test requires networking")
++
+ tooSlow(t)
+ if !canCgo {
+ t.Skip("skipping because cgo not enabled")
+diff --git a/src/net/dial_test.go b/src/net/dial_test.go
+index 00a84d1..27f9ec9 100644
+--- a/src/net/dial_test.go
++++ b/src/net/dial_test.go
+@@ -968,6 +968,8 @@ func TestDialerControl(t *testing.T) {
+ // mustHaveExternalNetwork is like testenv.MustHaveExternalNetwork
+ // except that it won't skip testing on non-iOS builders.
+ func mustHaveExternalNetwork(t *testing.T) {
++ t.Skipf("Nix sandbox does not have networking")
++
+ t.Helper()
+ ios := runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64")
+ if testenv.Builder() == "" || ios {
diff --git a/pkgs/development/compilers/go/skip-nohup-tests.patch b/pkgs/development/compilers/go/skip-nohup-tests.patch
new file mode 100644
index 0000000000000000000000000000000000000000..1da07407d049f31eb3baa64306fa63b35b760e79
--- /dev/null
+++ b/pkgs/development/compilers/go/skip-nohup-tests.patch
@@ -0,0 +1,22 @@
+diff --git a/src/os/signal/signal_test.go b/src/os/signal/signal_test.go
+index 3d79c7a..6e0f7b4 100644
+--- a/src/os/signal/signal_test.go
++++ b/src/os/signal/signal_test.go
+@@ -217,6 +217,8 @@ var checkSighupIgnored = flag.Bool("check_sighup_ignored", false, "if true, Test
+
+ // Test that Ignored(SIGHUP) correctly detects whether it is being run under nohup.
+ func TestDetectNohup(t *testing.T) {
++ t.Skip("Fails in nix build environment")
++
+ if *checkSighupIgnored {
+ if !Ignored(syscall.SIGHUP) {
+ t.Fatal("SIGHUP is not ignored.")
+@@ -306,6 +308,8 @@ func TestStop(t *testing.T) {
+ // Test that when run under nohup, an uncaught SIGHUP does not kill the program,
+ // but a
+ func TestNohup(t *testing.T) {
++ t.Skip("Fails in nix build environment")
++
+ // Ugly: ask for SIGHUP so that child will not have no-hup set
+ // even if test is running under nohup environment.
+ // We have no intention of reading from c.
diff --git a/pkgs/development/compilers/hhvm/default.nix b/pkgs/development/compilers/hhvm/default.nix
index 749e4125a0b3ccf7017f71c3223a447652d91663..010dacd0c71a9c693a73a9f4c8a34f776d3350a6 100644
--- a/pkgs/development/compilers/hhvm/default.nix
+++ b/pkgs/development/compilers/hhvm/default.nix
@@ -63,5 +63,6 @@ stdenv.mkDerivation rec {
license = "PHP/Zend";
platforms = [ "x86_64-linux" ];
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
+ broken = true; # Since 2018-04-21, see https://hydra.nixos.org/build/73059373
};
}
diff --git a/pkgs/development/compilers/jetbrains-jdk/default.nix b/pkgs/development/compilers/jetbrains-jdk/default.nix
index 1c62f79f907bcdb6eb45c52f09f008c80a0db568..39fab8b25d8f616b8c8e902066435b352ba1c8ba 100644
--- a/pkgs/development/compilers/jetbrains-jdk/default.nix
+++ b/pkgs/development/compilers/jetbrains-jdk/default.nix
@@ -10,13 +10,13 @@ let drv = stdenv.mkDerivation rec {
version = "152b1248.6";
name = pname + "-" + version;
- src = if stdenv.system == "x86_64-linux" then
+ src = if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://bintray.com/jetbrains/intellij-jdk/download_file?file_path=jbsdk8u${version}_linux_x64.tar.gz";
sha256 = "12l81g8zhaymh4rzyfl9nyzmpkgzc7wrphm3j4plxx129yn9i7d7";
}
else
- throw "unsupported system: ${stdenv.system}";
+ throw "unsupported system: ${stdenv.hostPlatform.system}";
nativeBuildInputs = [ file ];
diff --git a/pkgs/development/compilers/julia/0.7.nix b/pkgs/development/compilers/julia/0.7.nix
new file mode 100644
index 0000000000000000000000000000000000000000..99c6b245ba673465fc34910a929e6255fef0d14a
--- /dev/null
+++ b/pkgs/development/compilers/julia/0.7.nix
@@ -0,0 +1,6 @@
+import ./shared.nix {
+ majorVersion = "0";
+ minorVersion = "7";
+ maintenanceVersion = "0";
+ src_sha256 = "1j57569qm2ii8ddzsp08hds2navpk7acdz83kh27dvk44axhwj6f";
+}
diff --git a/pkgs/development/compilers/julia/1.0.nix b/pkgs/development/compilers/julia/1.0.nix
new file mode 100644
index 0000000000000000000000000000000000000000..2301d0c1f437e12260ba2cd89687ceec0fde8639
--- /dev/null
+++ b/pkgs/development/compilers/julia/1.0.nix
@@ -0,0 +1,6 @@
+import ./shared.nix {
+ majorVersion = "1";
+ minorVersion = "0";
+ maintenanceVersion = "0";
+ src_sha256 = "083277z90m1jxr2d1ysb96rgjj9h5q97l6h54mx3pb3f38ykshz2";
+}
diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix
index 84fdf8f9786d6ac96a5ed413f380890680e4e0ef..086570f5ce20a9b6843e31bbfee0429bfde01255 100644
--- a/pkgs/development/compilers/julia/default.nix
+++ b/pkgs/development/compilers/julia/default.nix
@@ -101,7 +101,7 @@ stdenv.mkDerivation rec {
makeFlags =
let
- arch = head (splitString "-" stdenv.system);
+ arch = head (splitString "-" stdenv.hostPlatform.system);
march = { "x86_64" = "x86-64"; "i686" = "pentium4"; }."${arch}"
or (throw "unsupported architecture: ${arch}");
# Julia requires Pentium 4 (SSE2) or better
diff --git a/pkgs/development/compilers/julia/shared.nix b/pkgs/development/compilers/julia/shared.nix
new file mode 100644
index 0000000000000000000000000000000000000000..41c9c57bd0340d95074f5a2e661ac7ab8b458084
--- /dev/null
+++ b/pkgs/development/compilers/julia/shared.nix
@@ -0,0 +1,218 @@
+{ majorVersion
+, minorVersion
+, maintenanceVersion
+, src_sha256
+}:
+{ stdenv, fetchurl, fetchzip
+# build tools
+, gfortran, m4, makeWrapper, patchelf, perl, which, python2, paxctl
+, llvm, cmake
+# libjulia dependencies
+, libunwind, readline, utf8proc, zlib
+# standard library dependencies
+, curl, fftwSinglePrec, fftw, gmp, libgit2, mpfr, openlibm, openspecfun, pcre2
+# linear algebra
+, openblas, arpack
+# Darwin frameworks
+, CoreServices, ApplicationServices
+}:
+
+with stdenv.lib;
+
+# All dependencies must use the same OpenBLAS.
+let
+ arpack_ = arpack;
+in
+let
+ arpack = arpack_.override { inherit openblas; };
+in
+
+let
+ dsfmtVersion = "2.2.3";
+ dsfmt = fetchurl {
+ url = "http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/dSFMT-src-${dsfmtVersion}.tar.gz";
+ sha256 = "03kaqbjbi6viz0n33dk5jlf6ayxqlsq4804n7kwkndiga9s4hd42";
+ };
+
+ libuvVersion = "ed3700c849289ed01fe04273a7bf865340b2bd7e";
+ libuv = fetchurl {
+ url = "https://api.github.com/repos/JuliaLang/libuv/tarball/${libuvVersion}";
+ sha256 = "137w666zsjw1p0ma3lf94d75hr1q45sgkfmbizkyji2qm57cnxjs";
+ };
+
+ rmathVersion = "0.1";
+ rmath-julia = fetchurl {
+ url = "https://api.github.com/repos/JuliaLang/Rmath-julia/tarball/v${rmathVersion}";
+ sha256 = "1qyps217175qhid46l8f5i1v8i82slgp23ia63x2hzxwfmx8617p";
+ };
+
+ virtualenvVersion = "15.0.0";
+ virtualenv = fetchurl {
+ url = "mirror://pypi/v/virtualenv/virtualenv-${virtualenvVersion}.tar.gz";
+ sha256 = "06fw4liazpx5vf3am45q2pdiwrv0id7ckv7n6zmpml29x6vkzmkh";
+ };
+
+ libwhichVersion = "81e9723c0273d78493dc8c8ed570f68d9ce7e89e";
+ libwhich = fetchurl {
+ url = "https://api.github.com/repos/vtjnash/libwhich/tarball/${libwhichVersion}";
+ sha256 = "1p7zg31kpmpbmh1znrk1xrbd074agx13b9q4dcw8n2zrwwdlbz3b";
+ };
+
+ llvmVersion = "6.0.0";
+ llvm = fetchurl {
+ url = "http://releases.llvm.org/6.0.0/llvm-${llvmVersion}.src.tar.xz";
+ sha256 = "0224xvfg6h40y5lrbnb9qaq3grmdc5rg00xq03s1wxjfbf8krx8z";
+ };
+
+ suitesparseVersion = "4.4.5";
+ suitesparse = fetchurl {
+ url = "http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-${suitesparseVersion}.tar.gz";
+ sha256 = "1jcbxb8jx5wlcixzf6n5dca2rcfx6mlcms1k2rl5gp67ay3bix43";
+ };
+ version = "${majorVersion}.${minorVersion}.${maintenanceVersion}";
+in
+
+stdenv.mkDerivation rec {
+ pname = "julia";
+ inherit version;
+ name = "${pname}-${version}";
+
+ src = fetchzip {
+ url = "https://github.com/JuliaLang/${pname}/releases/download/v${version}/${name}.tar.gz";
+ sha256 = src_sha256;
+ };
+ prePatch = ''
+ export PATH=$PATH:${cmake}/bin
+ mkdir deps/srccache
+ cp "${dsfmt}" "./deps/srccache/dsfmt-${dsfmtVersion}.tar.gz"
+ cp "${rmath-julia}" "./deps/srccache/Rmath-julia-${rmathVersion}.tar.gz"
+ cp "${libuv}" "./deps/srccache/libuv-${libuvVersion}.tar.gz"
+ cp "${virtualenv}" "./deps/srccache/virtualenv-${virtualenvVersion}.tar.gz"
+ cp "${libwhich}" "./deps/srccache/libwhich-${libwhichVersion}.tar.gz"
+ cp "${llvm}" "./deps/srccache/llvm-${llvmVersion}.src.tar.xz"
+ cp "${suitesparse}" "./deps/srccache/SuiteSparse-${suitesparseVersion}.tar.gz"
+ '';
+
+ patches = [
+ ./0001.1-use-system-utf8proc.patch
+ ] ++ stdenv.lib.optional stdenv.needsPax ./0004-hardened.patch;
+
+ postPatch = ''
+ patchShebangs . contrib
+ for i in backtrace cmdlineargs; do
+ mv test/$i.jl{,.off}
+ touch test/$i.jl
+ done
+ rm stdlib/Sockets/test/runtests.jl && touch stdlib/Sockets/test/runtests.jl
+ sed -e 's/Invalid Content-Type:/invalid Content-Type:/g' -i ./stdlib/LibGit2/test/libgit2.jl
+ sed -e 's/Failed to resolve /failed to resolve /g' -i ./stdlib/LibGit2/test/libgit2.jl
+ '';
+
+ buildInputs = [
+ arpack fftw fftwSinglePrec gmp libgit2 libunwind mpfr
+ pcre2.dev openblas openlibm openspecfun readline utf8proc
+ zlib
+ ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [CoreServices ApplicationServices]
+ ;
+
+ nativeBuildInputs = [ curl gfortran m4 makeWrapper patchelf perl python2 which ]
+ ++ stdenv.lib.optional stdenv.needsPax paxctl;
+
+ makeFlags =
+ let
+ arch = head (splitString "-" stdenv.system);
+ march = { "x86_64" = "x86-64"; "i686" = "pentium4"; }."${arch}"
+ or (throw "unsupported architecture: ${arch}");
+ # Julia requires Pentium 4 (SSE2) or better
+ cpuTarget = { "x86_64" = "x86-64"; "i686" = "pentium4"; }."${arch}"
+ or (throw "unsupported architecture: ${arch}");
+ in [
+ "ARCH=${arch}"
+ "MARCH=${march}"
+ "JULIA_CPU_TARGET=${cpuTarget}"
+ "PREFIX=$(out)"
+ "prefix=$(out)"
+ "SHELL=${stdenv.shell}"
+
+ "USE_SYSTEM_BLAS=1"
+ "USE_BLAS64=${if openblas.blas64 then "1" else "0"}"
+ "LIBBLAS=-lopenblas"
+ "LIBBLASNAME=libopenblas"
+
+ "USE_SYSTEM_LAPACK=1"
+ "LIBLAPACK=-lopenblas"
+ "LIBLAPACKNAME=libopenblas"
+
+ "USE_SYSTEM_ARPACK=1"
+ "USE_SYSTEM_FFTW=1"
+ "USE_SYSTEM_GMP=1"
+ "USE_SYSTEM_LIBGIT2=1"
+ "USE_SYSTEM_LIBUNWIND=1"
+
+ #"USE_SYSTEM_LLVM=1"
+ "LLVM_VER=6.0.0"
+
+ "USE_SYSTEM_MPFR=1"
+ "USE_SYSTEM_OPENLIBM=1"
+ "USE_SYSTEM_OPENSPECFUN=1"
+ "USE_SYSTEM_PATCHELF=1"
+ "USE_SYSTEM_PCRE=1"
+ "PCRE_CONFIG=${pcre2.dev}/bin/pcre2-config"
+ "PCRE_INCL_PATH=${pcre2.dev}/include/pcre2.h"
+ "USE_SYSTEM_READLINE=1"
+ "USE_SYSTEM_UTF8PROC=1"
+ "USE_SYSTEM_ZLIB=1"
+ ];
+
+ NIX_CFLAGS_COMPILE = [ "-fPIC" ];
+
+ LD_LIBRARY_PATH = makeLibraryPath [
+ arpack fftw fftwSinglePrec gmp libgit2 mpfr openblas openlibm
+ openspecfun pcre2
+ ];
+
+ dontStrip = true;
+ dontPatchELF = true;
+
+ enableParallelBuilding = true;
+
+ doCheck = !stdenv.isDarwin;
+ checkTarget = "testall";
+ # Julia's tests require read/write access to $HOME
+ preCheck = ''
+ export HOME="$NIX_BUILD_TOP"
+ '';
+
+ preBuild = ''
+ sed -e '/^install:/s@[^ ]*/doc/[^ ]*@@' -i Makefile
+ sed -e '/[$](DESTDIR)[$](docdir)/d' -i Makefile
+ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}
+ '';
+
+ postInstall = ''
+ # Symlink shared libraries from LD_LIBRARY_PATH into lib/julia,
+ # as using a wrapper with LD_LIBRARY_PATH causes segmentation
+ # faults when program returns an error:
+ # $ julia -e 'throw(Error())'
+ find $(echo $LD_LIBRARY_PATH | sed 's|:| |g') -maxdepth 1 -name '*.${if stdenv.isDarwin then "dylib" else "so"}*' | while read lib; do
+ if [[ ! -e $out/lib/julia/$(basename $lib) ]]; then
+ ln -sv $lib $out/lib/julia/$(basename $lib)
+ fi
+ done
+ '';
+
+ passthru = {
+ inherit majorVersion minorVersion maintenanceVersion;
+ site = "share/julia/site/v${majorVersion}.${minorVersion}";
+ };
+
+ meta = {
+ description = "High-level performance-oriented dynamical language for technical computing";
+ homepage = https://julialang.org/;
+ license = stdenv.lib.licenses.mit;
+ maintainers = with stdenv.lib.maintainers; [ raskin rob ];
+ platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
+ broken = stdenv.isi686;
+ };
+}
diff --git a/pkgs/development/compilers/llvm/3.9/llvm.nix b/pkgs/development/compilers/llvm/3.9/llvm.nix
index dfeddf2fe65a55aaa9a58fc729bbc8a790dddaa5..9e7fbbe96c35b863f7b7bed5e65c3d0a027c2063 100644
--- a/pkgs/development/compilers/llvm/3.9/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.9/llvm.nix
@@ -13,13 +13,11 @@
, zlib
, compiler-rt_src
, debugVersion ? false
-, enableSharedLibraries ? (buildPlatform == hostPlatform)
+, enableSharedLibraries ? (stdenv.buildPlatform == stdenv.hostPlatform)
, buildPackages
-, buildPlatform
-, hostPlatform
}:
-assert (hostPlatform != buildPlatform) -> !enableSharedLibraries;
+assert (stdenv.hostPlatform != stdenv.buildPlatform) -> !enableSharedLibraries;
let
src = fetch "llvm" "1vi9sf7rx1q04wj479rsvxayb6z740iaz3qniwp266fgp5a07n8z";
@@ -131,7 +129,7 @@ in stdenv.mkDerivation rec {
++ stdenv.lib.optionals (isDarwin) [
"-DLLVM_ENABLE_LIBCXX=ON"
"-DCAN_TARGET_i386=false"
- ] ++ stdenv.lib.optionals (buildPlatform != hostPlatform) [
+ ] ++ stdenv.lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
"-DCMAKE_CROSSCOMPILING=True"
"-DLLVM_TABLEGEN=${buildPackages.llvmPackages_39.llvm}/bin/llvm-tblgen"
] ++ stdenv.lib.optionals stdenv.hostPlatform.isMusl [
diff --git a/pkgs/development/compilers/mezzo/default.nix b/pkgs/development/compilers/mezzo/default.nix
index 79dc479fae836f29f64927ebe56e4002f0129958..c0b535747133cfd4ded300eeca83c4085998a9c1 100644
--- a/pkgs/development/compilers/mezzo/default.nix
+++ b/pkgs/development/compilers/mezzo/default.nix
@@ -1,5 +1,9 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, menhir, yojson, ulex, pprint, fix, functory }:
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "mezzo is not available for OCaml ${ocaml.version}"
+else
+
let
check-ocaml-version = with stdenv.lib; versionAtLeast (getVersion ocaml);
in
diff --git a/pkgs/development/compilers/mint/default.nix b/pkgs/development/compilers/mint/default.nix
index 6552f5f44e3af8e8af3491706f11972a61036bfb..2896c0c0913909c2417426ff9e4ca3492c8bd530 100644
--- a/pkgs/development/compilers/mint/default.nix
+++ b/pkgs/development/compilers/mint/default.nix
@@ -1,4 +1,9 @@
-{stdenv, lib, fetchFromGitHub, crystal, zlib, openssl, duktape}:
+# Updating the dependencies for this package:
+#
+# wget https://github.com/mint-lang/mint/blob/0.2.1/shard.lock
+# nix-shell -p crystal libyaml --run 'crystal run crystal2nix.cr'
+#
+{stdenv, lib, fetchFromGitHub, crystal, zlib, openssl, duktape, which }:
let
crystalPackages = lib.mapAttrs (name: src:
stdenv.mkDerivation {
@@ -28,15 +33,16 @@ let
};
in
stdenv.mkDerivation rec {
- version = "0.2.0";
+ version = "0.2.1";
name = "mint-${version}";
src = fetchFromGitHub {
owner = "mint-lang";
repo = "mint";
- rev = "0.2.0";
- sha256 = "1ds9zrvbmnfy744i9ri6v4w37aw7ccmdxzxmy8l97h045hzz9cp3";
+ rev = version;
+ sha256 = "0r8hv2j5yz0rlvrbpnybihj44562pkmsssa8f0hjs45m1ifvf4b1";
};
+ nativeBuildInputs = [ which ];
buildInputs = [ crystal zlib openssl duktape ];
buildPhase = ''
diff --git a/pkgs/development/compilers/mint/shards.nix b/pkgs/development/compilers/mint/shards.nix
index 808b4710048b4b6026b918a447e4dee2989e7bd5..069df52ba12dc65314fe501ace09395b194804ae 100644
--- a/pkgs/development/compilers/mint/shards.nix
+++ b/pkgs/development/compilers/mint/shards.nix
@@ -2,8 +2,8 @@
admiral = {
owner = "jwaldrip";
repo = "admiral.cr";
- rev = "v1.7.2";
- sha256 = "1j2cr4p3d44848v0gfl97p9kw2dslscnb1piyb7b3374iy345i0k";
+ rev = "v1.7.3";
+ sha256 = "0b98qjy43wsrc08am7lkhcdsxc7gplf9hcmbvd4p3dw4g107rk91";
};
ameba = {
owner = "veelenga";
@@ -14,8 +14,8 @@
baked_file_system = {
owner = "schovi";
repo = "baked_file_system";
- rev = "24dbaf2180b872c0f0fc777b34e3759108959e6e";
- sha256 = "01p7hzsvms9cywdgs0rcs6mxdi94491wk55823fw2vxv24hvxnvk";
+ rev = "v0.9.7";
+ sha256 = "1fi6zag1a6h4xwrfizy01dls3hhraqw0cmpwj7rjv1qcddjgig5z";
};
diff = {
owner = "MakeNowJust";
@@ -38,8 +38,8 @@
kemal = {
owner = "kemalcr";
repo = "kemal";
- rev = "09bb1fcd4073a374b3a61c99e48e05a866b23c08";
- sha256 = "0yyb59i897gr8cqjbf48d6s0znq68ibpxarxkxkgrqk7lbvrqqr7";
+ rev = "v0.24.0";
+ sha256 = "0sg7gy1lbhid9y9wh77m9sd00jygk92njm4mpb7w1fq8bjnm738k";
};
kilt = {
owner = "jeromegn";
diff --git a/pkgs/development/compilers/mlton/default.nix b/pkgs/development/compilers/mlton/default.nix
index 583f6f80137f0cd1f64f866f841009fce7fe019c..6b6907b0b2e641805b7b00c24692d0df029aa8cc 100644
--- a/pkgs/development/compilers/mlton/default.nix
+++ b/pkgs/development/compilers/mlton/default.nix
@@ -14,15 +14,15 @@ stdenv.mkDerivation rec {
name = "mlton-${version}";
binSrc =
- if stdenv.system == "i686-linux" then (fetchurl {
+ if stdenv.hostPlatform.system == "i686-linux" then (fetchurl {
url = "mirror://sourceforge/project/mlton/mlton/${version}/${name}-1.x86-linux.tgz";
sha256 = "1kxjjmnw4xk2d9hpvz43w9dvyhb3025k4zvjx785c33nrwkrdn4j";
})
- else if stdenv.system == "x86_64-linux" then (fetchurl {
+ else if stdenv.hostPlatform.system == "x86_64-linux" then (fetchurl {
url = "mirror://sourceforge/project/mlton/mlton/${version}/${name}-1.amd64-linux.tgz";
sha256 = "0fyhwxb4nmpirjbjcvk9f6w67gmn2gkz7xcgz0xbfih9kc015ygn";
})
- else if stdenv.system == "x86_64-darwin" then (fetchurl {
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then (fetchurl {
url = "mirror://sourceforge/project/mlton/mlton/${version}/${name}-1.amd64-darwin.gmp-macports.tgz";
sha256 = "044wnh9hhg6if886xy805683k0as347xd37r0r1yi4x7qlxzzgx9";
})
diff --git a/pkgs/development/compilers/mozart/binary.nix b/pkgs/development/compilers/mozart/binary.nix
index ebe562fcde3277d6f3c05af50e31754521b8172a..ef6cd1160b33c8f1847fed39814929425dfd7a5a 100644
--- a/pkgs/development/compilers/mozart/binary.nix
+++ b/pkgs/development/compilers/mozart/binary.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
preferLocalBuild = true;
- src = binaries."${stdenv.system}" or (throw "unsupported system: ${stdenv.system}");
+ src = binaries."${stdenv.hostPlatform.system}" or (throw "unsupported system: ${stdenv.hostPlatform.system}");
libPath = stdenv.lib.makeLibraryPath
[ stdenv.cc.cc
diff --git a/pkgs/development/compilers/nvidia-cg-toolkit/default.nix b/pkgs/development/compilers/nvidia-cg-toolkit/default.nix
index 21ccf77e4a24ac832be5ab1abe1ef8f05db7fda6..b6e2aea7eca583d4f48c1801fe056088d1b31acf 100644
--- a/pkgs/development/compilers/nvidia-cg-toolkit/default.nix
+++ b/pkgs/development/compilers/nvidia-cg-toolkit/default.nix
@@ -10,17 +10,17 @@ stdenv.mkDerivation rec {
name = "nvidia-cg-toolkit-${version}";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://developer.download.nvidia.com/cg/Cg_${version}/Cg-${version}_${date}_x86_64.tgz";
sha256 = "e8ff01e6cc38d1b3fd56a083f5860737dbd2f319a39037528fb1a74a89ae9878";
}
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "http://developer.download.nvidia.com/cg/Cg_${version}/Cg-${version}_${date}_x86.tgz";
sha256 = "cef3591e436f528852db0e8c145d3842f920e0c89bcfb219c466797cb7b18879";
}
- else throw "nvidia-cg-toolkit does not support platform ${stdenv.system}";
+ else throw "nvidia-cg-toolkit does not support platform ${stdenv.hostPlatform.system}";
installPhase = ''
for b in cgc cgfxcat cginfo
diff --git a/pkgs/development/compilers/obliv-c/default.nix b/pkgs/development/compilers/obliv-c/default.nix
index f5bd3430ae707ea9f38c5d4b722cffcadcc46be8..0d171a474a20a57811cb4307eee7e282bc2cb83c 100644
--- a/pkgs/development/compilers/obliv-c/default.nix
+++ b/pkgs/development/compilers/obliv-c/default.nix
@@ -1,15 +1,15 @@
{ stdenv, libgcrypt, fetchFromGitHub, ocamlPackages, perl }:
stdenv.mkDerivation rec {
name = "obliv-c-${version}";
- version = "0.0pre20170827";
+ version = "0.0pre20180624";
buildInputs = [ perl ]
++ (with ocamlPackages; [ ocaml findlib ocamlbuild ]);
propagatedBuildInputs = [ libgcrypt ];
src = fetchFromGitHub {
owner = "samee";
repo = "obliv-c";
- rev = "9a6be5a5f44d341bc357055e11922f6a4c4c3b65";
- sha256 = "0jz2ayadx62zv2b5ji947bkvw63axl4a2q70lwli86zgmcl390gf";
+ rev = "3d6804ca0fd85868207a0ccbd2509ec064723ac2";
+ sha256 = "1ib21ngn7zr58xxq4sjigrpaxb0wx35x3k9l4qvwflzrmvnman20";
};
patches = [ ./ignore-complex-float128.patch ];
diff --git a/pkgs/development/compilers/opendylan/bin.nix b/pkgs/development/compilers/opendylan/bin.nix
index 1abf44f23495cc376b10eaa6af81373a579ac91f..9b721312bb78cc50dd76a3d7d0c0e01d520c2d19 100644
--- a/pkgs/development/compilers/opendylan/bin.nix
+++ b/pkgs/development/compilers/opendylan/bin.nix
@@ -5,15 +5,15 @@
stdenv.mkDerivation {
name = "opendylan-2013.2";
- src = if stdenv.system == "x86_64-linux" then fetchurl {
+ src = if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl {
url = https://opendylan.org/downloads/opendylan/2013.2/opendylan-2013.2-x86_64-linux.tar.bz2;
sha256 = "035brbw3hm7zrs593q4zc42yglj1gmmkw3b1r7zzlw3ks4i2lg7h";
}
- else if stdenv.system == "i686-linux" then fetchurl {
+ else if stdenv.hostPlatform.system == "i686-linux" then fetchurl {
url = https://opendylan.org/downloads/opendylan/2013.2/opendylan-2013.2-x86-linux.tar.bz2;
sha256 = "0c61ihvblcsjrw6ncr8x8ylhskcrqs8pajs4mg5di36cvqw12nq5";
}
- else throw "platform ${stdenv.system} not supported.";
+ else throw "platform ${stdenv.hostPlatform.system} not supported.";
buildInputs = [ patchelf boehmgc gnused makeWrapper ];
diff --git a/pkgs/development/compilers/opendylan/default.nix b/pkgs/development/compilers/opendylan/default.nix
index 17d474359da4a7f0479e6ea4745a47797fb51892..8e732d7d8bf4ab27cda40dac10d3bdc4c354139b 100644
--- a/pkgs/development/compilers/opendylan/default.nix
+++ b/pkgs/development/compilers/opendylan/default.nix
@@ -11,11 +11,11 @@ stdenv.mkDerivation {
fetchSubmodules = true;
};
- buildInputs = (if stdenv.system == "i686-linux" then [ mps ] else [ boehmgc ]) ++ [
+ buildInputs = (if stdenv.hostPlatform.system == "i686-linux" then [ mps ] else [ boehmgc ]) ++ [
opendylan-bootstrap boehmgc gnused autoconf automake perl makeWrapper
];
- preConfigure = if stdenv.system == "i686-linux" then ''
+ preConfigure = if stdenv.hostPlatform.system == "i686-linux" then ''
mkdir -p $TMPDIR/mps
tar --strip-components=1 -xf ${mps.src} -C $TMPDIR/mps
./autogen.sh
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
'';
configureFlags = [
- (if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.out}")
+ (if stdenv.hostPlatform.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.out}")
];
buildPhase = "make 3-stage-bootstrap";
diff --git a/pkgs/development/compilers/openjdk/10.nix b/pkgs/development/compilers/openjdk/10.nix
index 6e8d9003bf431810571bcedbe400c49cd6c0b027..1c125fac62f1af8c854f1c21d2c4493fca6a472b 100644
--- a/pkgs/development/compilers/openjdk/10.nix
+++ b/pkgs/development/compilers/openjdk/10.nix
@@ -13,12 +13,12 @@ let
* The JRE libraries are in directories that depend on the CPU.
*/
architecture =
- if stdenv.system == "i686-linux" then
+ if stdenv.hostPlatform.system == "i686-linux" then
"i386"
else "amd64";
- update = "10.0.1";
- build = "10";
+ update = "10.0.2";
+ build = "13";
repover = "jdk-${update}+${build}";
paxflags = if stdenv.isi686 then "msp" else "m";
@@ -27,7 +27,7 @@ let
src = fetchurl {
url = "http://hg.openjdk.java.net/jdk-updates/jdk10u/archive/${repover}.tar.gz";
- sha256 = "1fg0rl5pd3f2y3v3bq8p3zdkrpa1pyslwdln4s64clyr7spvxkjw";
+ sha256 = "0y7hyzgvn6z8gyp3h9xvxwj6zda899y6i629jn6yxqzj96q56jpk";
};
outputs = [ "out" "jre" ];
diff --git a/pkgs/development/compilers/openjdk/darwin/10.nix b/pkgs/development/compilers/openjdk/darwin/10.nix
new file mode 100644
index 0000000000000000000000000000000000000000..4969c12bff2609d767f5fc778b371ce1a5a68b8e
--- /dev/null
+++ b/pkgs/development/compilers/openjdk/darwin/10.nix
@@ -0,0 +1,59 @@
+{ stdenv, fetchurl, unzip, setJavaClassPath, freetype }:
+let
+ jce-policies = fetchurl {
+ # Ugh, unversioned URLs... I hope this doesn't change often enough to cause pain before we move to a Darwin source build of OpenJDK!
+ url = "http://cdn.azul.com/zcek/bin/ZuluJCEPolicies.zip";
+ sha256 = "0nk7m0lgcbsvldq2wbfni2pzq8h818523z912i7v8hdcij5s48c0";
+ };
+
+ jdk = stdenv.mkDerivation {
+ name = "zulu10.3+5-jdk10";
+
+ src = fetchurl {
+ url = https://cdn.azul.com/zulu/bin/zulu10.3+5-jdk10.0.2-macosx_x64.zip;
+ sha256 = "05pxfjn8fqw6ddr8m5hzyphwzqgrq8w6b4h3lwc1s7ymh05xmspz";
+ curlOpts = "-H Referer:https://www.azul.com/downloads/zulu/zulu-linux/";
+ };
+
+ buildInputs = [ unzip freetype ];
+
+ installPhase = ''
+ mkdir -p $out
+ mv * $out
+
+ unzip ${jce-policies}
+ mv -f ZuluJCEPolicies/*.jar $out/lib/security/
+
+ # jni.h expects jni_md.h to be in the header search path.
+ ln -s $out/include/darwin/*_md.h $out/include/
+
+ if [ -f $out/LICENSE ]; then
+ install -D $out/LICENSE $out/share/zulu/LICENSE
+ rm $out/LICENSE
+ fi
+ '';
+
+ preFixup = ''
+ # Propagate the setJavaClassPath setup hook from the JRE so that
+ # any package that depends on the JRE has $CLASSPATH set up
+ # properly.
+ mkdir -p $out/nix-support
+ printWords ${setJavaClassPath} > $out/nix-support/propagated-build-inputs
+
+ install_name_tool -change /usr/X11/lib/libfreetype.6.dylib ${freetype}/lib/libfreetype.6.dylib $out/lib/libfontmanager.dylib
+
+ # Set JAVA_HOME automatically.
+ cat <> $out/nix-support/setup-hook
+ if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out; fi
+ EOF
+ '';
+
+ passthru = {
+ jre = jdk;
+ home = jdk;
+ };
+
+ meta.platforms = stdenv.lib.platforms.darwin;
+
+ };
+in jdk
diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
index baa136b798d98681bd7a4b1efdd647d8c5704162..5d55e0554e555845f86d93c93a72b65515b2ad32 100644
--- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
+++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
@@ -46,7 +46,7 @@ let
x86_64-linux = "amd64";
armv7l-linux = "arm";
aarch64-linux = "aarch64";
- }.${stdenv.system};
+ }.${stdenv.hostPlatform.system};
jce =
if installjce then
@@ -77,9 +77,9 @@ let result = stdenv.mkDerivation rec {
x86_64-linux = "jdk-${productVersion}u${patchVersion}-linux-x64.tar.gz";
armv7l-linux = "jdk-${productVersion}u${patchVersion}-linux-arm32-vfp-hflt.tar.gz";
aarch64-linux = "jdk-${productVersion}u${patchVersion}-linux-arm64-vfp-hflt.tar.gz";
- }.${stdenv.system};
+ }.${stdenv.hostPlatform.system};
url = downloadUrl;
- sha256 = sha256.${stdenv.system};
+ sha256 = sha256.${stdenv.hostPlatform.system};
};
nativeBuildInputs = [ file ]
diff --git a/pkgs/development/compilers/orc/default.nix b/pkgs/development/compilers/orc/default.nix
index 9fc9007abb9e3cb92c466a19f7321a0ec00f9f05..1a81a5ec20a786142267ce09dcfd7141f52cd869 100644
--- a/pkgs/development/compilers/orc/default.nix
+++ b/pkgs/development/compilers/orc/default.nix
@@ -16,14 +16,14 @@ stdenv.mkDerivation rec {
'';
# https://bugzilla.gnome.org/show_bug.cgi?id=728129#c15
- doCheck = stdenv.system != "i686-linux"; # not sure about cross-compiling
+ doCheck = stdenv.hostPlatform.system != "i686-linux"; # not sure about cross-compiling
meta = with stdenv.lib; {
description = "The Oil Runtime Compiler";
- homepage = http://code.entropywave.com/orc/;
+ homepage = https://gstreamer.freedesktop.org/projects/orc.html;
# The source code implementing the Marsenne Twister algorithm is licensed
# under the 3-clause BSD license. The rest is 2-clause BSD license.
- license = licenses.bsd3;
+ license = with licenses; [ bsd3 bsd2 ];
platforms = platforms.unix;
maintainers = [ maintainers.fuuzetsu ];
};
diff --git a/pkgs/development/compilers/picat/default.nix b/pkgs/development/compilers/picat/default.nix
index 8ee904a6ed6c445b2cd409c32deb74ad9ab2c846..b520a5e703c89c913ab2daac9290761383213726 100644
--- a/pkgs/development/compilers/picat/default.nix
+++ b/pkgs/development/compilers/picat/default.nix
@@ -8,8 +8,8 @@ stdenv.mkDerivation {
sha256 = "0wvl95gf4pjs93632g4wi0mw1glzzhjp9g4xg93ll2zxggbxibli";
};
- ARCH = if stdenv.system == "i686-linux" then "linux32"
- else if stdenv.system == "x86_64-linux" then "linux64"
+ ARCH = if stdenv.hostPlatform.system == "i686-linux" then "linux32"
+ else if stdenv.hostPlatform.system == "x86_64-linux" then "linux64"
else throw "Unsupported system";
hardeningDisable = [ "format" ];
diff --git a/pkgs/development/compilers/reason/default.nix b/pkgs/development/compilers/reason/default.nix
index 42969a5253ed1e9c746c65edaff19f5d51322a07..f4cc1cf2b650a03163a28e1a10ce2f15b08ee7e6 100644
--- a/pkgs/development/compilers/reason/default.nix
+++ b/pkgs/development/compilers/reason/default.nix
@@ -1,8 +1,9 @@
-{ stdenv, makeWrapper, buildOcaml, fetchFromGitHub,
- ocaml, opam, jbuilder, menhir, merlin_extend, ppx_tools_versioned, utop }:
+{ stdenv, makeWrapper, fetchFromGitHub, ocaml, findlib, jbuilder
+, menhir, merlin_extend, ppx_tools_versioned, utop
+}:
-buildOcaml rec {
- name = "reason";
+stdenv.mkDerivation rec {
+ name = "ocaml${ocaml.version}-reason-${version}";
version = "3.3.3";
src = fetchFromGitHub {
@@ -14,12 +15,10 @@ buildOcaml rec {
propagatedBuildInputs = [ menhir merlin_extend ppx_tools_versioned ];
- buildInputs = [ makeWrapper opam jbuilder utop menhir ];
+ buildInputs = [ makeWrapper ocaml findlib jbuilder utop menhir ];
buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed
- createFindlibDestdir = true;
-
installPhase = ''
for p in reason rtop
do
@@ -35,6 +34,7 @@ buildOcaml rec {
homepage = https://reasonml.github.io/;
description = "Facebook's friendly syntax to OCaml";
license = licenses.mit;
+ inherit (ocaml.meta) platforms;
maintainers = [ maintainers.volth ];
};
}
diff --git a/pkgs/development/compilers/rust/bootstrap.nix b/pkgs/development/compilers/rust/bootstrap.nix
index 563250097ae154fd37bcb444a6c9c575987d27a6..901675ff31b46c7edda064e33d7bc34e4ac67ec9 100644
--- a/pkgs/development/compilers/rust/bootstrap.nix
+++ b/pkgs/development/compilers/rust/bootstrap.nix
@@ -16,19 +16,19 @@ let
};
platform =
- if stdenv.system == "i686-linux"
+ if stdenv.hostPlatform.system == "i686-linux"
then "i686-unknown-linux-gnu"
- else if stdenv.system == "x86_64-linux"
+ else if stdenv.hostPlatform.system == "x86_64-linux"
then "x86_64-unknown-linux-gnu"
- else if stdenv.system == "armv7l-linux"
+ else if stdenv.hostPlatform.system == "armv7l-linux"
then "armv7-unknown-linux-gnueabihf"
- else if stdenv.system == "aarch64-linux"
+ else if stdenv.hostPlatform.system == "aarch64-linux"
then "aarch64-unknown-linux-gnu"
- else if stdenv.system == "i686-darwin"
+ else if stdenv.hostPlatform.system == "i686-darwin"
then "i686-apple-darwin"
- else if stdenv.system == "x86_64-darwin"
+ else if stdenv.hostPlatform.system == "x86_64-darwin"
then "x86_64-apple-darwin"
- else throw "missing bootstrap url for platform ${stdenv.system}";
+ else throw "missing bootstrap url for platform ${stdenv.hostPlatform.system}";
src = fetchurl {
url = "https://static.rust-lang.org/dist/rust-${version}-${platform}.tar.gz";
diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix
index 23aa750060a3944de8146f29dcd36e59752a8be8..9c9788ff4834509c8e19bf23874cf6c4ef5161cc 100644
--- a/pkgs/development/compilers/rust/rustc.nix
+++ b/pkgs/development/compilers/rust/rustc.nix
@@ -12,7 +12,6 @@
, targetToolchains
, doCheck ? true
, broken ? false
-, buildPlatform, hostPlatform
}:
let
diff --git a/pkgs/development/compilers/sbcl/bootstrap.nix b/pkgs/development/compilers/sbcl/bootstrap.nix
index 529123398a578fb48551761fd7eae700056c6d5b..ee662d39e4516f8decacf42ab1dc20d478d9dc4a 100644
--- a/pkgs/development/compilers/sbcl/bootstrap.nix
+++ b/pkgs/development/compilers/sbcl/bootstrap.nix
@@ -39,9 +39,9 @@ let
sha256 = "05c12fmac4ha72k1ckl6i780rckd7jh4g5s5hiic7fjxnf1kx8d0";
};
};
- cfg = options.${stdenv.system};
+ cfg = options.${stdenv.hostPlatform.system};
in
-assert builtins.hasAttr stdenv.system options;
+assert builtins.hasAttr stdenv.hostPlatform.system options;
stdenv.mkDerivation rec {
name = "sbcl-bootstrap-${version}";
version = cfg.version;
diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix
index 261a2fb6432cd56b511766bc8ccdc845be94ce25..a860aa7dc734f4323eaa6c406b9c6daf4dd0c65f 100644
--- a/pkgs/development/compilers/sbcl/default.nix
+++ b/pkgs/development/compilers/sbcl/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, writeText, sbclBootstrap
, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit"
-, threadSupport ? (stdenv.isi686 || stdenv.isx86_64 || "aarch64-linux" == stdenv.system)
+, threadSupport ? (stdenv.isi686 || stdenv.isx86_64 || "aarch64-linux" == stdenv.hostPlatform.system)
# Meant for sbcl used for creating binaries portable to non-NixOS via save-lisp-and-die.
# Note that the created binaries still need `patchelf --set-interpreter ...`
# to get rid of ${glibc} dependency.
diff --git a/pkgs/development/compilers/swift/default.nix b/pkgs/development/compilers/swift/default.nix
index 9c1a36585907bfe4d8032b7886b672b3ae674543..233eb6647c09a8fc4f5d99f27f0a283058af9196 100644
--- a/pkgs/development/compilers/swift/default.nix
+++ b/pkgs/development/compilers/swift/default.nix
@@ -36,9 +36,9 @@
}:
let
- v_major = "4.1";
- version = "${v_major}-RELEASE";
- version_friendly = "${v_major}";
+ v_base = "4.1.3";
+ version = "${v_base}-RELEASE";
+ version_friendly = "${v_base}";
tag = "refs/tags/swift-${version}";
fetch = { repo, sha256, fetchSubmodules ? false }:
@@ -58,7 +58,7 @@ let
};
llvm = fetch {
repo = "swift-llvm";
- sha256 = "03558f5zbchqvdabi3x9ahyz4xkmj7w69gazivz372832lgr9zfh";
+ sha256 = "0q5cv4iydm8c1kcax32573y3q2cbpihwgj5aa8ws1fnpy4jvq934";
};
compilerrt = fetch {
repo = "swift-compiler-rt";
@@ -70,7 +70,7 @@ let
};
lldb = fetch {
repo = "swift-lldb";
- sha256 = "09x3d3bc6rn9g6jpi3fb120c4r2carsmqla4bq4scjrs0867jz9m";
+ sha256 = "1d0pa7xm289bjb6r52hkkmlngkqkwbwgixnmm30bin2q18mkxk7s";
};
llbuild = fetch {
repo = "swift-llbuild";
@@ -86,7 +86,7 @@ let
};
foundation = fetch {
repo = "swift-corelibs-foundation";
- sha256 = "06pbhb7wg4q5qgprhiyzbqy6hssga7xxjclhlh81gd6rvfd6bxvw";
+ sha256 = "1bhrag63rmz41bg2g6ap01qrdpq37hislgf5hg6myy2v69q7mahx";
};
libdispatch = fetch {
repo = "swift-corelibs-libdispatch";
@@ -95,7 +95,7 @@ let
};
swift = fetch {
repo = "swift";
- sha256 = "1flvr12bg8m4k44yq0xy9qrllv5rpxgxisjgbpakk5p3myfsx7ky";
+ sha256 = "1ydx11pkvaasgjbr29lnha0lpnak758gd5l0aqzmp3q6mcyvfm7a";
};
};
@@ -287,6 +287,7 @@ stdenv.mkDerivation rec {
# Swift doesn't support 32bit Linux, unknown on other platforms.
platforms = platforms.linux;
badPlatforms = platforms.i686;
+ broken = stdenv.isAarch64; # 2018-09-04, never built on Hydra
};
}
diff --git a/pkgs/development/compilers/vala/default.nix b/pkgs/development/compilers/vala/default.nix
index 510688ef416469fcdd884c21a30052570667f76d..fb2d9fc535afd4249925d51222d20cb261134e40 100644
--- a/pkgs/development/compilers/vala/default.nix
+++ b/pkgs/development/compilers/vala/default.nix
@@ -43,41 +43,22 @@ let
};
in rec {
-
- vala_0_26 = generic {
- major = "0.26";
- minor = "2";
- sha256 = "1i03ds1z5hivqh4nhf3x80fg7n0zd22908w5minkpaan1i1kzw9p";
- };
-
- vala_0_28 = generic {
- major = "0.28";
- minor = "1";
- sha256 = "0isg327w6rfqqdjja6a8pc3xcdkj7pqrkdhw48bsyxab2fkaw3hw";
- };
-
- vala_0_32 = generic {
- major = "0.32";
- minor = "1";
- sha256 = "1ab1l44abf9fj1wznzq5956431ia136rl5049cggnk5393jlf3fx";
- };
-
vala_0_34 = generic {
major = "0.34";
- minor = "17";
- sha256 = "0wd2zxww4z1ys4iqz218lvzjqjjqwsaad4x2by8pcyy43sbr7qp2";
+ minor = "18";
+ sha256 = "1lhw3ghns059y5d6pdldy5p4yjwlhcls84k892i6qmbhxg34945q";
};
vala_0_36 = generic {
major = "0.36";
- minor = "13";
- sha256 = "0gxz7yisd9vh5d2889p60knaifz5zndgj98zkdfkkaykdfdq4m9k";
+ minor = "15";
+ sha256 = "11lnwjbhiz2l7g6y1f0jb0s81ymgssinlil3alibzcwmzpk175ix";
};
vala_0_38 = generic {
major = "0.38";
- minor = "9";
- sha256 = "1dh1qacfsc1nr6hxwhn9lqmhnq39rv8gxbapdmj1v65zs96j3fn3";
+ minor = "10";
+ sha256 = "1rdwwqs973qv225v8b5izcgwvqn56jxgr4pa3wxxbliar3aww5sw";
extraNativeBuildInputs = [ autoconf ] ++ lib.optional stdenv.isDarwin libtool;
};
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 61c2da2b419507e16bf697e6857d8393f9c4d9ec..ef55272d6e97eb19de5e1466bc3faf1385bea2c0 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -672,6 +672,9 @@ self: super: {
# https://github.com/bos/bloomfilter/issues/7
bloomfilter = appendPatch super.bloomfilter ./patches/bloomfilter-fix-on-32bit.patch;
+ # https://github.com/ashutoshrishi/hunspell-hs/pull/3
+ hunspell-hs = addPkgconfigDepend (dontCheck (appendPatch super.hunspell-hs ./patches/hunspell.patch)) pkgs.hunspell;
+
# https://github.com/pxqr/base32-bytestring/issues/4
base32-bytestring = dontCheck super.base32-bytestring;
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
index 6057538125ab8ecf4f472f615cacf430ffacff0e..3aee4857f99358b48618d1e5d3c70a606889f2e5 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -43,7 +43,7 @@ core-packages:
default-package-overrides:
# Newer versions require contravariant-1.5.*, which many builds refuse at the moment.
- base-compat-batteries ==0.10.1
- # LTS Haskell 12.6
+ # LTS Haskell 12.7
- abstract-deque ==0.3
- abstract-deque-tests ==0.3
- abstract-par ==0.3.3
@@ -76,7 +76,7 @@ default-package-overrides:
- alarmclock ==0.5.0.2
- alerts ==0.1.0.0
- alex ==3.2.4
- - alg ==0.2.5.0
+ - alg ==0.2.6.0
- algebra ==4.3.1
- Allure ==0.8.3.0
- almost-fix ==0.0.2
@@ -244,7 +244,7 @@ default-package-overrides:
- bench ==1.0.11
- bencode ==0.6.0.0
- between ==0.11.0.0
- - bhoogle ==0.1.3.4
+ - bhoogle ==0.1.3.5
- bibtex ==0.1.0.6
- bifunctors ==5.5.3
- bimap ==0.3.3
@@ -333,7 +333,7 @@ default-package-overrides:
- cabal2spec ==2.1.1
- cabal-doctest ==1.0.6
- cabal-rpm ==0.12.5
- - cache ==0.1.1.0
+ - cache ==0.1.1.1
- cachix ==0.1.1
- cachix-api ==0.1.0.1
- cairo ==0.13.5.0
@@ -410,7 +410,7 @@ default-package-overrides:
- codo-notation ==0.5.2
- coercible-utils ==0.0.0
- colonnade ==1.2.0.1
- - colorful-monoids ==0.2.1.1
+ - colorful-monoids ==0.2.1.2
- colorize-haskell ==1.0.1
- colour ==2.3.4
- combinatorial ==0.1
@@ -670,7 +670,7 @@ default-package-overrides:
- errors ==2.3.0
- errors-ext ==0.4.2
- error-util ==0.0.1.2
- - ersatz ==0.4.3
+ - ersatz ==0.4.4
- etc ==0.4.0.3
- event ==0.1.4
- eventful-core ==0.2.0
@@ -870,9 +870,9 @@ default-package-overrides:
- graph-wrapper ==0.2.5.1
- gravatar ==0.8.0
- graylog ==0.1.0.1
- - greskell ==0.2.0.3
+ - greskell ==0.2.1.0
- greskell-core ==0.1.2.2
- - greskell-websocket ==0.1.0.0
+ - greskell-websocket ==0.1.1.0
- groom ==0.1.2.1
- groups ==0.4.1.0
- gtk ==0.14.10
@@ -900,7 +900,7 @@ default-package-overrides:
- hashmap ==1.3.3
- hashtables ==1.2.3.1
- haskeline ==0.7.4.3
- - haskell-gi ==0.21.3
+ - haskell-gi ==0.21.4
- haskell-gi-base ==0.21.1
- haskell-gi-overloading ==1.0
- haskell-lexer ==1.0.1
@@ -1065,7 +1065,7 @@ default-package-overrides:
- hvect ==0.4.0.0
- hvega ==0.1.0.3
- hw-balancedparens ==0.2.0.2
- - hw-bits ==0.7.0.2
+ - hw-bits ==0.7.0.3
- hw-conduit ==0.2.0.3
- hw-diagnostics ==0.0.0.5
- hweblib ==0.6.3
@@ -1079,7 +1079,7 @@ default-package-overrides:
- hw-mquery ==0.1.0.1
- hworker ==0.1.0.1
- hw-parser ==0.0.0.3
- - hw-prim ==0.6.2.3
+ - hw-prim ==0.6.2.9
- hw-rankselect ==0.10.0.3
- hw-rankselect-base ==0.3.2.1
- hw-string-parse ==0.0.0.4
@@ -1098,7 +1098,7 @@ default-package-overrides:
- hybrid-vectors ==0.2.2
- hyperloglog ==0.4.2
- hyphenation ==0.7.1
- - hyraxAbif ==0.2.3.9
+ - hyraxAbif ==0.2.3.10
- iconv ==0.4.1.3
- identicon ==0.2.2
- ieee754 ==0.8.0
@@ -1134,7 +1134,7 @@ default-package-overrides:
- interpolation ==0.1.0.2
- IntervalMap ==0.6.0.0
- intervals ==0.8.1
- - intro ==0.3.1.0
+ - intro ==0.3.2.0
- invariant ==0.5.1
- invertible ==0.2.0.5
- invertible-grammar ==0.1.1
@@ -1354,7 +1354,7 @@ default-package-overrides:
- mmorph ==1.1.2
- mnist-idx ==0.1.2.8
- mockery ==0.3.5
- - modern-uri ==0.2.1.0
+ - modern-uri ==0.2.2.0
- moesocks ==1.0.0.44
- monad-control ==1.0.2.3
- monad-control-aligned ==0.0.1.1
@@ -1399,7 +1399,7 @@ default-package-overrides:
- mtl-prelude ==2.0.3.1
- multiarg ==0.30.0.10
- multimap ==1.2.1
- - multipart ==0.1.2
+ - multipart ==0.1.3
- multistate ==0.8.0.0
- murmur-hash ==0.1.0.9
- MusicBrainz ==0.4
@@ -1493,7 +1493,7 @@ default-package-overrides:
- open-browser ==0.2.1.0
- openexr-write ==0.1.0.1
- OpenGL ==3.0.2.2
- - OpenGLRaw ==3.3.0.2
+ - OpenGLRaw ==3.3.1.0
- openpgp-asciiarmor ==0.1.1
- opensource ==0.1.0.0
- openssl-streams ==1.2.1.3
@@ -1687,7 +1687,7 @@ default-package-overrides:
- range-set-list ==0.1.3
- rank1dynamic ==0.4.0
- rank2classes ==1.1.0.1
- - Rasterific ==0.7.3
+ - Rasterific ==0.7.4
- rasterific-svg ==0.3.3.1
- ratel ==1.0.5
- ratel-wai ==1.0.3
@@ -1743,7 +1743,7 @@ default-package-overrides:
- rest-stringmap ==0.2.0.7
- result ==0.2.6.0
- rethinkdb-client-driver ==0.0.25
- - retry ==0.7.6.2
+ - retry ==0.7.6.3
- rev-state ==0.1.2
- rfc5051 ==0.1.0.3
- rhine ==0.4.0.1
@@ -1774,7 +1774,7 @@ default-package-overrides:
- sampling ==0.3.3
- sandi ==0.4.2
- sandman ==0.2.0.1
- - say ==0.1.0.0
+ - say ==0.1.0.1
- sbp ==2.3.17
- scalendar ==1.2.0
- SCalendar ==1.1.0
@@ -1838,7 +1838,7 @@ default-package-overrides:
- servant-tracing ==0.1.0.2
- servant-websockets ==1.1.0
- servant-yaml ==0.1.0.0
- - serverless-haskell ==0.6.6
+ - serverless-haskell ==0.6.7
- serversession ==1.0.1
- serversession-frontend-wai ==1.0
- servius ==1.2.3.0
@@ -1918,7 +1918,7 @@ default-package-overrides:
- state-codes ==0.1.3
- stateref ==0.3
- statestack ==0.2.0.5
- - StateVar ==1.1.1.0
+ - StateVar ==1.1.1.1
- static-canvas ==0.2.0.3
- static-text ==0.2.0.2
- statistics ==0.14.0.2
@@ -2033,7 +2033,7 @@ default-package-overrides:
- texmath ==0.11.0.1
- text ==1.2.3.0
- text-binary ==0.2.1.1
- - text-builder ==0.5.3
+ - text-builder ==0.5.3.1
- text-conversions ==0.3.0
- text-icu ==0.7.0.1
- text-latin1 ==0.3.1
@@ -2113,7 +2113,7 @@ default-package-overrides:
- tuple-sop ==0.3.1.0
- tuple-th ==0.2.5
- turtle ==1.5.10
- - typed-process ==0.2.2.0
+ - typed-process ==0.2.3.0
- type-fun ==0.1.1
- type-hint ==0.1
- type-level-integers ==0.0.1
@@ -2220,7 +2220,7 @@ default-package-overrides:
- wai-conduit ==3.0.0.4
- wai-cors ==0.2.6
- wai-eventsource ==3.0.0
- - wai-extra ==3.0.24.0
+ - wai-extra ==3.0.24.1
- wai-handler-launch ==3.0.2.4
- wai-logger ==2.3.2
- wai-middleware-caching ==0.1.0.2
@@ -2265,8 +2265,8 @@ default-package-overrides:
- with-location ==0.1.0
- witness ==0.4
- wizards ==1.0.2
- - wl-pprint-annotated ==0.1.0.0
- - wl-pprint-console ==0.1.0.1
+ - wl-pprint-annotated ==0.1.0.1
+ - wl-pprint-console ==0.1.0.2
- wl-pprint-extras ==3.5.0.5
- wl-pprint-terminfo ==3.7.1.4
- wl-pprint-text ==1.2.0.0
@@ -2281,8 +2281,8 @@ default-package-overrides:
- 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
+ - writer-cps-mtl ==0.1.1.5
+ - writer-cps-transformers ==0.1.1.4
- ws ==0.0.4
- wuss ==1.1.10
- X11 ==1.9
@@ -4742,7 +4742,6 @@ dont-distribute-packages:
gi-gtkosxapplication: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-notify: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-poppler: [ i686-linux, x86_64-linux, x86_64-darwin ]
- gi-vte: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-wnck: [ 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 ]
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index 37916c0bba20627c3cbf6e6e4d9a892b2ac430bd..1b33954662db2b5b3e85c840e0cf7af989b58b15 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -1,10 +1,9 @@
{ stdenv, buildPackages, buildHaskellPackages, ghc
, jailbreak-cabal, hscolour, cpphs, nodejs
-, buildPlatform, hostPlatform
}:
let
- isCross = buildPlatform != hostPlatform;
+ isCross = stdenv.buildPlatform != stdenv.hostPlatform;
inherit (buildPackages)
fetchurl removeReferencesTo
pkgconfig coreutils gnugrep gnused glibcLocales;
@@ -32,8 +31,8 @@ in
, enableSharedExecutables ? false
, enableSharedLibraries ? (ghc.enableShared or false)
, enableDeadCodeElimination ? (!stdenv.isDarwin) # TODO: use -dead_strip for darwin
-, enableStaticLibraries ? !hostPlatform.isWindows
-, enableHsc2hsViaAsm ? hostPlatform.isWindows && stdenv.lib.versionAtLeast ghc.version "8.4"
+, enableStaticLibraries ? !stdenv.hostPlatform.isWindows
+, enableHsc2hsViaAsm ? stdenv.hostPlatform.isWindows && stdenv.lib.versionAtLeast ghc.version "8.4"
, extraLibraries ? [], librarySystemDepends ? [], executableSystemDepends ? []
# On macOS, statically linking against system frameworks is not supported;
# see https://developer.apple.com/library/content/qa/qa1118/_index.html
@@ -46,6 +45,10 @@ in
, isExecutable ? false, isLibrary ? !isExecutable
, jailbreak ? false
, license
+# We cannot enable -j parallelism for libraries because GHC is far more
+# likely to generate a non-determistic library ID in that case. Further
+# details are at .
+, enableParallelBuilding ? (stdenv.lib.versionOlder "7.8" ghc.version && !isLibrary) || stdenv.lib.versionOlder "8.0.1" ghc.version
, maintainers ? []
, doCoverage ? false
, doHaddock ? !(ghc.isHaLVM or false)
@@ -75,7 +78,7 @@ assert editedCabalFile != null -> revision != null;
# --enable-static does not work on windows. This is a bug in GHC.
# --enable-static will pass -staticlib to ghc, which only works for mach-o and elf.
-assert hostPlatform.isWindows -> enableStaticLibraries == false;
+assert stdenv.hostPlatform.isWindows -> enableStaticLibraries == false;
let
@@ -112,11 +115,6 @@ let
main = defaultMain
'';
- # We cannot enable -j parallelism for libraries because GHC is far more
- # likely to generate a non-determistic library ID in that case. Further
- # details are at .
- enableParallelBuilding = (versionOlder "7.8" ghc.version && !isLibrary) || versionOlder "8.0.1" ghc.version;
-
crossCabalFlags = [
"--with-ghc=${ghc.targetPrefix}ghc"
"--with-ghc-pkg=${ghc.targetPrefix}ghc-pkg"
@@ -145,7 +143,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 && !hostPlatform.isAarch32 && !hostPlatform.isAarch64 && (versionAtLeast "8.0.1" ghc.version)) "split-objs")
+ (enableFeature (enableDeadCodeElimination && !stdenv.hostPlatform.isAarch32 && !stdenv.hostPlatform.isAarch64 && (versionAtLeast "8.0.1" ghc.version)) "split-objs")
(enableFeature enableLibraryProfiling "library-profiling")
(optionalString ((enableExecutableProfiling || enableLibraryProfiling) && versionOlder "8" ghc.version) "--profiling-detail=${profilingDetail}")
(enableFeature enableExecutableProfiling (if versionOlder ghc.version "8" then "executable-profiling" else "profiling"))
@@ -164,7 +162,7 @@ let
] ++ optionals isGhcjs [
"--ghcjs"
] ++ optionals isCross ([
- "--configure-option=--host=${hostPlatform.config}"
+ "--configure-option=--host=${stdenv.hostPlatform.config}"
] ++ crossCabalFlags);
setupCompileFlags = [
@@ -286,7 +284,7 @@ stdenv.mkDerivation ({
fi
''
# It is not clear why --extra-framework-dirs does work fine on Linux
- + optionalString (!buildPlatform.isDarwin || versionAtLeast nativeGhc.version "8.0") ''
+ + optionalString (!stdenv.buildPlatform.isDarwin || versionAtLeast nativeGhc.version "8.0") ''
if [[ -d "$p/Library/Frameworks" ]]; then
configureFlags+=" --extra-framework-dirs=$p/Library/Frameworks"
fi
@@ -487,5 +485,5 @@ stdenv.mkDerivation ({
// optionalAttrs (postFixup != "") { inherit postFixup; }
// optionalAttrs (dontStrip) { inherit dontStrip; }
// optionalAttrs (hardeningDisable != []) { inherit hardeningDisable; }
-// optionalAttrs (buildPlatform.libc == "glibc"){ LOCALE_ARCHIVE = "${glibcLocales}/lib/locale/locale-archive"; }
+// optionalAttrs (stdenv.buildPlatform.libc == "glibc"){ 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 df117d1a55459056e393f94c090238d90da90ff1..c1fb70ee2e6e93bc7dd5c5c40fb773f17b5d1512 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -5401,6 +5401,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Fin_0_2_5_0" = callPackage
+ ({ mkDerivation, alg, base, foldable1, natural-induction, peano }:
+ mkDerivation {
+ pname = "Fin";
+ version = "0.2.5.0";
+ sha256 = "0jh64an111k7a3limqc03irk914s8asy6h4iik7layw4pagpsiyc";
+ libraryHaskellDepends = [
+ alg base foldable1 natural-induction peano
+ ];
+ description = "Finite totally-ordered sets";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"Finance-Quote-Yahoo" = callPackage
({ mkDerivation, base, bytestring, http-conduit, network
, old-locale, time
@@ -9921,8 +9935,8 @@ self: {
pname = "HsYAML";
version = "0.1.1.2";
sha256 = "1100yzyxbvin48q3dgmzpnhz1gbqaxnkpnwy7ywzj2wrvwrr8hjx";
- revision = "1";
- editedCabalFile = "1hnp2sqjvn524040m0dzvzyrr8kp4i49gdyrzwym66j71xi6ynkl";
+ revision = "2";
+ editedCabalFile = "0kxfvp899l06x3y6zhnnfjx7kw1mjb3c7g0flnkllndp9i9a3pkl";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -10950,6 +10964,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "Kulitta" = callPackage
+ ({ mkDerivation, array, base, deepseq, Euterpea, parallel, random
+ , UISF
+ }:
+ mkDerivation {
+ pname = "Kulitta";
+ version = "2.2.1";
+ sha256 = "1r5pjlv4a99dpbqqnixyw8s99z5h1fgw6rdc8bdhjij1bj6dc5qw";
+ libraryHaskellDepends = [
+ array base deepseq Euterpea parallel random UISF
+ ];
+ description = "Library for automated composition and musical learning";
+ license = "unknown";
+ }) {};
+
"KyotoCabinet" = callPackage
({ mkDerivation, base, bytestring, extensible-exceptions
, kyotocabinet
@@ -13665,22 +13694,6 @@ self: {
}) {};
"OpenGLRaw" = callPackage
- ({ mkDerivation, base, bytestring, containers, fixed, half, libGL
- , text, transformers
- }:
- mkDerivation {
- pname = "OpenGLRaw";
- version = "3.3.0.2";
- sha256 = "1jnn4v32qyf0xfy4s2pgrzca2bnr855m4vkzbmwr7dwam2xckcpq";
- libraryHaskellDepends = [
- base bytestring containers fixed half text transformers
- ];
- librarySystemDepends = [ libGL ];
- description = "A raw binding for the OpenGL graphics system";
- license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs) libGL;};
-
- "OpenGLRaw_3_3_1_0" = callPackage
({ mkDerivation, base, bytestring, containers, fixed, half, libGL
, text, transformers
}:
@@ -13694,7 +13707,6 @@ self: {
librarySystemDepends = [ libGL ];
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) libGL;};
"OpenGLRaw21" = callPackage
@@ -14536,6 +14548,17 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "Prelude" = callPackage
+ ({ mkDerivation, base-noprelude }:
+ mkDerivation {
+ pname = "Prelude";
+ version = "0.1.0.0";
+ sha256 = "0wcacpbqphb635pblqzbv44fhjwdnv0l90zr5i6c8x7mymqpcixj";
+ libraryHaskellDepends = [ base-noprelude ];
+ description = "A Prelude module replacement";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"PrimitiveArray" = callPackage
({ mkDerivation, aeson, base, binary, bits, cereal, cereal-vector
, containers, deepseq, DPutils, hashable, log-domain, OrderedBits
@@ -15391,23 +15414,6 @@ self: {
}) {};
"Rasterific" = callPackage
- ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity
- , free, JuicyPixels, mtl, primitive, transformers, vector
- , vector-algorithms
- }:
- mkDerivation {
- pname = "Rasterific";
- version = "0.7.3";
- sha256 = "0y92h3mjsr1vjcxc06lh1lvszicf53l1bzdaci5mjb5gmiq8f2px";
- libraryHaskellDepends = [
- base bytestring containers dlist FontyFruity free JuicyPixels mtl
- primitive transformers vector vector-algorithms
- ];
- description = "A pure haskell drawing engine";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "Rasterific_0_7_4" = callPackage
({ mkDerivation, base, bytestring, containers, dlist, FontyFruity
, free, JuicyPixels, mtl, primitive, transformers, vector
, vector-algorithms
@@ -15422,7 +15428,6 @@ self: {
];
description = "A pure haskell drawing engine";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ReadArgs" = callPackage
@@ -15706,8 +15711,8 @@ self: {
({ mkDerivation, base, Cabal, SDL, SDL_gfx }:
mkDerivation {
pname = "SDL-gfx";
- version = "0.6.1.0";
- sha256 = "0sicq48cp9j5b5hpa1s53y505ny0snn2k73f15a4gwh1n5abdxzm";
+ version = "0.6.2.0";
+ sha256 = "1y49wzy71ns7gwczmwvrx8d026y5nabqzvh8ymxxcy3brhay0shr";
enableSeparateDataOutput = true;
setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [ base SDL ];
@@ -17085,17 +17090,6 @@ self: {
}) {};
"StateVar" = callPackage
- ({ mkDerivation, base, stm, transformers }:
- mkDerivation {
- pname = "StateVar";
- version = "1.1.1.0";
- sha256 = "102f4x240zj3jwa7gx6vp813j76cjhlc3zbi9i5kiz6268kcv28s";
- libraryHaskellDepends = [ base stm transformers ];
- description = "State variables";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "StateVar_1_1_1_1" = callPackage
({ mkDerivation, base, stm, transformers }:
mkDerivation {
pname = "StateVar";
@@ -17104,7 +17098,6 @@ self: {
libraryHaskellDepends = [ base stm transformers ];
description = "State variables";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"StateVar-transformer" = callPackage
@@ -21755,6 +21748,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "aeson-generic-compat_0_0_1_3" = callPackage
+ ({ mkDerivation, aeson, base }:
+ mkDerivation {
+ pname = "aeson-generic-compat";
+ version = "0.0.1.3";
+ sha256 = "1kr3waa46k3619yvif0zh4lx7s0zhyghlr1c5kkrvg432i8wmdm6";
+ libraryHaskellDepends = [ aeson base ];
+ description = "Compatible generic class names of Aeson";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"aeson-injector" = callPackage
({ mkDerivation, aeson, base, bifunctors, containers, deepseq
, hashable, HUnit, lens, QuickCheck, quickcheck-text, scientific
@@ -22913,17 +22918,6 @@ self: {
}) {};
"alg" = callPackage
- ({ mkDerivation, base, util }:
- mkDerivation {
- pname = "alg";
- version = "0.2.5.0";
- sha256 = "014wrh4f58lq50n5ybdksr2k5lygs5qxsyxg48zpbzzz3p3494yx";
- libraryHaskellDepends = [ base util ];
- description = "Algebraic structures";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "alg_0_2_6_0" = callPackage
({ mkDerivation, base, util }:
mkDerivation {
pname = "alg";
@@ -22932,7 +22926,6 @@ self: {
libraryHaskellDepends = [ base util ];
description = "Algebraic structures";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alga" = callPackage
@@ -26870,8 +26863,8 @@ self: {
}:
mkDerivation {
pname = "antiope-athena";
- version = "6.0.0";
- sha256 = "13l8biwl66pn3n8jbbc2fbj3vk1w6rjnzrdmiimxl0nd7zm6vk4r";
+ version = "6.0.1";
+ sha256 = "0y8a3rs5sy2qv2pwqb6ap6bl64qhp7x0jqqy1q237vfm2w6vrj6v";
libraryHaskellDepends = [
amazonka amazonka-athena amazonka-core base lens resourcet text
unliftio-core
@@ -26890,8 +26883,8 @@ self: {
}:
mkDerivation {
pname = "antiope-core";
- version = "6.0.0";
- sha256 = "1cmfda3dfg282a8rg6hkqv17fzfia5c7vm4gh0jdib4ggl5yxcrv";
+ version = "6.0.1";
+ sha256 = "1h7yd3p5dqkq118xvmp9ifydgak311pfibkpgy3il0qj4gj2g8sa";
libraryHaskellDepends = [
amazonka amazonka-core base bytestring generic-lens http-client
lens monad-logger mtl resourcet transformers unliftio-core
@@ -26911,8 +26904,8 @@ self: {
}:
mkDerivation {
pname = "antiope-dynamodb";
- version = "6.0.0";
- sha256 = "1i45fvxn75yd7fpypzz183j7q3n0kvrrxw78kr310a08fdngapn8";
+ version = "6.0.1";
+ sha256 = "1f8ixkvh7f5dgxl76823f275c3r6f1xmwhx4rfcmd6z90dn8damm";
libraryHaskellDepends = [
amazonka amazonka-core amazonka-dynamodb antiope-core base
generic-lens lens text unliftio-core unordered-containers
@@ -26932,8 +26925,8 @@ self: {
}:
mkDerivation {
pname = "antiope-messages";
- version = "6.0.0";
- sha256 = "1km57vpm8q77lpxyvmpvgj6csrixf8kdxqnwxkg065ylk0cp1hw7";
+ version = "6.0.1";
+ sha256 = "1ib2j0jlcfzq89a4vs7r282hpmqnqg2gw8l1ibfiahl4ac91z7zn";
libraryHaskellDepends = [
aeson amazonka amazonka-core amazonka-s3 amazonka-sqs antiope-s3
base generic-lens lens lens-aeson monad-loops network-uri text
@@ -26956,8 +26949,8 @@ self: {
}:
mkDerivation {
pname = "antiope-s3";
- version = "6.0.0";
- sha256 = "1s4cixqkflf3s8g6x75783wwrr5973wls2axjj8raspa4qfl2zsn";
+ version = "6.0.1";
+ sha256 = "1cjvzd47vprn916d1fks6lf08plns326xircfhc69qblkzvqzljs";
libraryHaskellDepends = [
amazonka amazonka-core amazonka-s3 base bytestring conduit
conduit-extra exceptions generic-lens http-types lens monad-logger
@@ -26978,8 +26971,8 @@ self: {
}:
mkDerivation {
pname = "antiope-sns";
- version = "6.0.0";
- sha256 = "0fbkd7r8iq8sjfa0k6kv8clld323i1xhib5k7kpl2zlan4xfk2k9";
+ version = "6.0.1";
+ sha256 = "0hqvh3vzpdr9g6v778qn17nfrqvg8i2lszqgss9fb8290mlm8x01";
libraryHaskellDepends = [
aeson amazonka amazonka-core amazonka-sns base generic-lens lens
text unliftio-core
@@ -26999,8 +26992,8 @@ self: {
}:
mkDerivation {
pname = "antiope-sqs";
- version = "6.0.0";
- sha256 = "0xfaayajlzb9wvqnmlfwh990kzsy738qnscsyqnn07zp61047wxf";
+ version = "6.0.1";
+ sha256 = "0pfhhgc7dkp4dn2k0dxy2pkmbml9js351ab2y2hln5jpsni9qfc0";
libraryHaskellDepends = [
aeson amazonka amazonka-core amazonka-s3 amazonka-sqs
antiope-messages antiope-s3 base generic-lens lens lens-aeson
@@ -27735,6 +27728,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "appendmap" = callPackage
+ ({ mkDerivation, base, containers, hspec }:
+ mkDerivation {
+ pname = "appendmap";
+ version = "0.1.3";
+ sha256 = "1jssrwbsk0z9y4ialw9ly7vc95jrc64dr1idycwz1spgvn03adp6";
+ libraryHaskellDepends = [ base containers ];
+ testHaskellDepends = [ base containers hspec ];
+ description = "Map with a Semigroup and Monoid instances delegating to Semigroup of the elements";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"applicative-extras" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -31746,6 +31751,8 @@ self: {
pname = "axel";
version = "0.0.4";
sha256 = "0gg1q7nfwsdh0wr5mqyrjcrfga4i87j8q2f4n9nvpq6hmwnphpc3";
+ revision = "1";
+ editedCabalFile = "0ff8pi6x26wv6bp2hx92h3cs9iln1yj6230am1c2ygjhr16wfwna";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -33988,25 +33995,6 @@ self: {
}) {};
"bhoogle" = callPackage
- ({ mkDerivation, base, brick, bytestring, containers, directory
- , filepath, hoogle, lens, process, protolude, text, time
- , typed-process, vector, vty
- }:
- mkDerivation {
- pname = "bhoogle";
- version = "0.1.3.4";
- sha256 = "06b2fc8667axzk58hpgb5wdbxd0lj1xrgkxvygsksq4q9wdwc8qn";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base brick bytestring containers directory filepath hoogle lens
- process protolude text time typed-process vector vty
- ];
- description = "Simple terminal GUI for local hoogle";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "bhoogle_0_1_3_5" = callPackage
({ mkDerivation, base, brick, bytestring, containers, directory
, filepath, hoogle, lens, process, protolude, text, time
, typed-process, vector, vty
@@ -34023,7 +34011,6 @@ self: {
];
description = "Simple terminal GUI for local hoogle";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bibdb" = callPackage
@@ -35706,6 +35693,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bins" = callPackage
+ ({ mkDerivation, base, containers, finite-typelits
+ , ghc-typelits-knownnat, ghc-typelits-natnormalise, math-functions
+ , profunctors, reflection, tagged, vector-sized
+ }:
+ mkDerivation {
+ pname = "bins";
+ version = "0.1.1.0";
+ sha256 = "067df9dpb7kvn7v9y2mw0y3zb4jmxas27yd3ybrb9h94f9j8p9jk";
+ libraryHaskellDepends = [
+ base containers finite-typelits ghc-typelits-knownnat
+ ghc-typelits-natnormalise math-functions profunctors reflection
+ tagged vector-sized
+ ];
+ description = "Aggregate continuous values into discrete bins";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"bio" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, directory, mtl, parallel, parsec, QuickCheck, random, tagsoup
@@ -35814,8 +35819,8 @@ self: {
}:
mkDerivation {
pname = "biohazard";
- version = "1.0.2";
- sha256 = "0g954m7ch3lzcc2j49qcmpb7v4apdijq9km8d4r08qr9w6xq5pc8";
+ version = "1.0.3";
+ sha256 = "19pk2c52w300jxcnrxlnvc6m8qr4jj19vwppdz37c9nppm6q2252";
libraryHaskellDepends = [
async attoparsec base base-prelude bytestring containers exceptions
hashable primitive stm text transformers unix unordered-containers
@@ -38559,16 +38564,16 @@ self: {
"brainheck" = callPackage
({ mkDerivation, base, containers, criterion, lens, megaparsec, mtl
- , optparse-applicative, recursion-schemes, text, vector
+ , optparse-applicative, recursion, text, vector
}:
mkDerivation {
pname = "brainheck";
- version = "0.1.0.8";
- sha256 = "01jz6j37rjdj3jcs8j27xgwcqykx3sarkb9759qn63v1ln5kv5nj";
+ version = "0.1.0.9";
+ sha256 = "0wmkkamgzassvc63wrk7bmm3ljq056zbxqbgs223454iswk35hc8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base containers lens megaparsec mtl recursion-schemes text vector
+ base containers lens megaparsec mtl recursion text vector
];
executableHaskellDepends = [ base optparse-applicative text ];
benchmarkHaskellDepends = [ base criterion text ];
@@ -39468,10 +39473,10 @@ self: {
}:
mkDerivation {
pname = "bulletproofs";
- version = "0.1.0";
- sha256 = "1axm943r0hx5g8a36s4166sf1ifppbd8m6nx25xn7lf27fvsbw9q";
+ version = "0.2.0";
+ sha256 = "0njc7wd1vn6i9zw35vjzm73gzv20b6qn3zci61lpnp3zclbclnmb";
revision = "1";
- editedCabalFile = "08wgmhrlfv99zcgwd7mqjaz5hnhz4h3a3afzdxnclvzmmqd30njv";
+ editedCabalFile = "0im8y3699rvl0ak3smwry3rafyvrypxan9jb5d39xanwmny2qnky";
libraryHaskellDepends = [
arithmoi base containers cryptonite memory protolude text
];
@@ -40163,8 +40168,8 @@ self: {
({ mkDerivation, base, bytestring, deepseq, QuickCheck }:
mkDerivation {
pname = "bytestring-short";
- version = "0.1.0.0";
- sha256 = "19pwr57imsdvjkjhmnaj9lxmv1lk3d8f8j3gcb7qsx832jah7crr";
+ version = "0.1.0.2";
+ sha256 = "04y2yfsvicgs5bf0q2cyyg939g09q212rmnj9n11vh5fr86m1gsm";
libraryHaskellDepends = [ base bytestring deepseq ];
testHaskellDepends = [ base bytestring QuickCheck ];
description = "Backport copy of ShortByteString";
@@ -40862,35 +40867,36 @@ self: {
"cabal-helper" = callPackage
({ mkDerivation, base, bytestring, Cabal, cabal-install, cabal-plan
- , containers, directory, filepath, ghc, ghc-paths, mtl, process
- , semigroupoids, template-haskell, temporary, transformers, unix
- , unix-compat, utf8-string
+ , containers, directory, filepath, ghc, ghc-paths, mtl, pretty-show
+ , process, semigroupoids, template-haskell, temporary, text
+ , transformers, unix, unix-compat, utf8-string
}:
mkDerivation {
pname = "cabal-helper";
- version = "0.8.1.0";
- sha256 = "098jjdjzkzpr4lgb78fhy9k80r5m96shyj39km69m5x4ls16cj4g";
+ version = "0.8.1.2";
+ sha256 = "1pxyba12m9kyzfm4nn8qfd19fqwnq6kjy1967wic2xaz151x6nil";
isLibrary = true;
isExecutable = true;
+ setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [
base Cabal cabal-plan containers directory filepath mtl process
semigroupoids transformers unix unix-compat
];
executableHaskellDepends = [
- base bytestring Cabal directory filepath mtl process
- template-haskell temporary transformers unix unix-compat
- utf8-string
+ base bytestring Cabal cabal-plan containers directory filepath mtl
+ pretty-show process template-haskell temporary text transformers
+ unix unix-compat utf8-string
];
executableToolDepends = [ cabal-install ];
testHaskellDepends = [
- base bytestring Cabal directory filepath ghc ghc-paths mtl process
- template-haskell temporary transformers unix unix-compat
- utf8-string
+ base bytestring Cabal cabal-plan containers directory filepath ghc
+ ghc-paths mtl pretty-show process template-haskell temporary text
+ transformers unix unix-compat utf8-string
];
testToolDepends = [ cabal-install ];
doCheck = false;
description = "Simple interface to some of Cabal's configuration state, mainly used by ghc-mod";
- license = stdenv.lib.licenses.agpl3;
+ license = stdenv.lib.licenses.gpl3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -41449,8 +41455,8 @@ self: {
}:
mkDerivation {
pname = "cabal2nix";
- version = "2.10.2";
- sha256 = "15yvw4wnbsjir0rniwkwi3snyg6laynvacqcn66idcffx8pffy4g";
+ version = "2.11";
+ sha256 = "1wsxris61139j0bvrmzjmjqn186nmr5gvpddv098154d2w8hqn41";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -41662,22 +41668,6 @@ self: {
}) {cabocha = null;};
"cache" = callPackage
- ({ mkDerivation, base, clock, hashable, hspec, stm, transformers
- , unordered-containers
- }:
- mkDerivation {
- pname = "cache";
- version = "0.1.1.0";
- sha256 = "1zvq5dwckkngf6kzh04pa59kgxf44fx9kli0c7zaz4g9hf1nyx8l";
- libraryHaskellDepends = [
- base clock hashable stm transformers unordered-containers
- ];
- testHaskellDepends = [ base clock hspec stm transformers ];
- description = "An in-memory key/value store with expiration support";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "cache_0_1_1_1" = callPackage
({ mkDerivation, base, clock, hashable, hspec, stm, transformers
, unordered-containers
}:
@@ -41691,7 +41681,6 @@ self: {
testHaskellDepends = [ base clock hspec stm transformers ];
description = "An in-memory key/value store with expiration support";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cached-io" = callPackage
@@ -42459,6 +42448,42 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "capnp" = callPackage
+ ({ mkDerivation, array, base, binary, bytes, bytestring, cereal
+ , containers, cpu, data-default, data-default-instances-vector
+ , deepseq, directory, dlist, exceptions, filepath, heredoc, HUnit
+ , mtl, pretty-show, primitive, process, process-extras, QuickCheck
+ , quickcheck-instances, quickcheck-io, reinterpret-cast, resourcet
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , text, transformers, utf8-string, vector, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "capnp";
+ version = "0.1.0.0";
+ sha256 = "14my9py7vjvxq51cd7sys8bxzyvwm2196qwjp2027daqbh7975vl";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base bytes bytestring cpu data-default
+ data-default-instances-vector exceptions mtl primitive
+ reinterpret-cast text transformers vector
+ ];
+ executableHaskellDepends = [
+ array base binary bytes bytestring cereal containers directory
+ dlist exceptions filepath mtl primitive reinterpret-cast text
+ transformers utf8-string vector wl-pprint-text
+ ];
+ testHaskellDepends = [
+ array base binary bytes bytestring data-default deepseq directory
+ exceptions heredoc HUnit mtl pretty-show primitive process
+ process-extras QuickCheck quickcheck-instances quickcheck-io
+ reinterpret-cast resourcet test-framework test-framework-hunit
+ test-framework-quickcheck2 text transformers vector
+ ];
+ description = "Cap'n Proto for Haskell";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"capped-list" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -46706,15 +46731,12 @@ self: {
}) {};
"cli-setup" = callPackage
- ({ mkDerivation, base, bytestring, directory, file-embed, process
- }:
+ ({ mkDerivation, base, bytestring, directory, process }:
mkDerivation {
pname = "cli-setup";
- version = "0.2.0.4";
- sha256 = "0mkxm1kpbfsiv3khp8d96j9bcq7j4zbidd5ks89r69bxsmrp1z7i";
- libraryHaskellDepends = [
- base bytestring directory file-embed process
- ];
+ version = "0.2.0.5";
+ sha256 = "08lqx6nvwbjydjrb2gnjis1bfq9xcrhqvilzmbkbzq17lxcaax2c";
+ libraryHaskellDepends = [ base bytestring directory process ];
description = "Helper setup scripts for packaging command-line tools";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -47444,6 +47466,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cmark-gfm_0_1_5" = callPackage
+ ({ mkDerivation, base, blaze-html, bytestring, cheapskate
+ , criterion, discount, HUnit, markdown, sundown, text
+ }:
+ mkDerivation {
+ pname = "cmark-gfm";
+ version = "0.1.5";
+ sha256 = "13b0mqks5c1q989slgsa3ixr5vvkfyic4ynzgv00kgl5qrs7hqk7";
+ libraryHaskellDepends = [ base bytestring text ];
+ testHaskellDepends = [ base HUnit text ];
+ benchmarkHaskellDepends = [
+ base blaze-html cheapskate criterion discount markdown sundown text
+ ];
+ description = "Fast, accurate GitHub Flavored Markdown parser and renderer";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cmark-highlight" = callPackage
({ mkDerivation, base, blaze-html, cmark, highlighting-kate, text
}:
@@ -47490,8 +47530,8 @@ self: {
}:
mkDerivation {
pname = "cmark-sections";
- version = "0.3.0";
- sha256 = "1zc7gcncmbq5ph17hlwxdikjvx6ccywkbs60523ybp7dagch4cfs";
+ version = "0.3.0.1";
+ sha256 = "0k8mv6fa2xzm3ppirhxr2l7vrq1jhb4mp20fdy2pliy4n93rfvlv";
libraryHaskellDepends = [
base base-prelude cmark containers microlens split text
];
@@ -48365,18 +48405,6 @@ self: {
}) {};
"colorful-monoids" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "colorful-monoids";
- version = "0.2.1.1";
- sha256 = "0n1f9x6kyb3fcg1fbs80wrlm3c897l089ma4cxm47v1dcgczix8b";
- libraryHaskellDepends = [ base ];
- testHaskellDepends = [ base ];
- description = "Styled console text output using ANSI escape sequences";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "colorful-monoids_0_2_1_2" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "colorful-monoids";
@@ -48386,7 +48414,6 @@ self: {
testHaskellDepends = [ base ];
description = "Styled console text output using ANSI escape sequences";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"colorize-haskell" = callPackage
@@ -49608,6 +49635,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "composition-prelude_1_5_3_1" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "composition-prelude";
+ version = "1.5.3.1";
+ sha256 = "0dq4znxr3qy2avmv68lzw4xrbfccap19ri2hxmlkl6r8p2850k7d";
+ libraryHaskellDepends = [ base ];
+ description = "Higher-order function combinators";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"composition-tree" = callPackage
({ mkDerivation, base, doctest, QuickCheck }:
mkDerivation {
@@ -51026,6 +51065,42 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "configuration-tools_0_4_0" = callPackage
+ ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base
+ , base-unicode-symbols, base64-bytestring, bytestring, Cabal
+ , case-insensitive, connection, data-default, deepseq, directory
+ , dlist, enclosed-exceptions, filepath, http-client
+ , http-client-tls, http-types, monad-control, mtl, network-uri
+ , optparse-applicative, process, profunctors, semigroups, text, tls
+ , transformers, unordered-containers, wai, warp, warp-tls, x509
+ , x509-system, x509-validation, yaml
+ }:
+ mkDerivation {
+ pname = "configuration-tools";
+ version = "0.4.0";
+ sha256 = "0bsxvbdhcgrhz9dm32bs5fb7ywdjb68xii74wdli4s0axs4q5dpx";
+ setupHaskellDepends = [
+ base bytestring Cabal directory filepath process
+ ];
+ libraryHaskellDepends = [
+ aeson ansi-wl-pprint attoparsec base base-unicode-symbols
+ base64-bytestring bytestring Cabal case-insensitive connection
+ data-default deepseq directory dlist enclosed-exceptions filepath
+ http-client http-client-tls http-types monad-control mtl
+ network-uri optparse-applicative process profunctors semigroups
+ text tls transformers unordered-containers x509 x509-system
+ x509-validation yaml
+ ];
+ testHaskellDepends = [
+ base base-unicode-symbols bytestring Cabal enclosed-exceptions
+ http-types monad-control mtl text transformers unordered-containers
+ wai warp warp-tls yaml
+ ];
+ description = "Tools for specifying and parsing configurations";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"configurator" = callPackage
({ mkDerivation, attoparsec, base, bytestring, directory, filepath
, hashable, HUnit, test-framework, test-framework-hunit, text
@@ -51561,12 +51636,14 @@ self: {
}) {};
"container" = callPackage
- ({ mkDerivation, base, containers, convert, lens, text }:
+ ({ mkDerivation, base, containers, convert, lens, text, vector }:
mkDerivation {
pname = "container";
- version = "1.1.1";
- sha256 = "1kmi57bx9bahr2vc0b89rgy68r26vn0y531m53fs4avdcadnjl9q";
- libraryHaskellDepends = [ base containers convert lens text ];
+ version = "1.1.2";
+ sha256 = "1i2zf7hn5pg0dmgq93w0i2v3vjsdryn6895za6mzfpdk7vyxsxsj";
+ libraryHaskellDepends = [
+ base containers convert lens text vector
+ ];
description = "Containers abstraction and utilities";
license = stdenv.lib.licenses.asl20;
}) {};
@@ -52602,6 +52679,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "corecursive-main" = callPackage
+ ({ mkDerivation, base, process, unix }:
+ mkDerivation {
+ pname = "corecursive-main";
+ version = "0.1.0.0";
+ sha256 = "14ckdqmy3r06kqhlp7mpapmx01369vcfmaj78gjywlqznchpw6dk";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base process ];
+ executableHaskellDepends = [ base process unix ];
+ testHaskellDepends = [ base process ];
+ description = "Write your main like it can call itself back";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"corenlp-parser" = callPackage
({ mkDerivation, aeson, async, base, cryptonite, data-default
, directory, process, raw-strings-qq, rocksdb, rocksdb-haskell
@@ -52960,7 +53052,7 @@ self: {
description = "high-level CPLEX interface";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {cplex = null;};
+ }) {inherit (pkgs) cplex;};
"cplusplus-th" = callPackage
({ mkDerivation, base, bytestring, containers, process, QuickCheck
@@ -53177,6 +53269,34 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "cql-io_1_0_1_1" = callPackage
+ ({ mkDerivation, async, auto-update, base, bytestring, containers
+ , cql, cryptohash, data-default-class, Decimal, exceptions
+ , hashable, HsOpenSSL, iproute, lens, monad-control, mtl
+ , mwc-random, network, raw-strings-qq, retry, semigroups, stm
+ , tasty, tasty-hunit, text, time, tinylog, transformers
+ , transformers-base, unordered-containers, uuid, vector
+ }:
+ mkDerivation {
+ pname = "cql-io";
+ version = "1.0.1.1";
+ sha256 = "1kdv00fv21s8vbb3dfgzlgsrr0xxl4p2h655ga3q5cg47by564xc";
+ libraryHaskellDepends = [
+ async auto-update base bytestring containers cql cryptohash
+ data-default-class exceptions hashable HsOpenSSL iproute lens
+ monad-control mtl mwc-random network retry semigroups stm text time
+ tinylog transformers transformers-base unordered-containers uuid
+ vector
+ ];
+ testHaskellDepends = [
+ base containers cql Decimal iproute mtl raw-strings-qq tasty
+ tasty-hunit text time tinylog uuid
+ ];
+ description = "Cassandra CQL client";
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cqrs" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -53577,23 +53697,23 @@ self: {
"creatur" = callPackage
({ mkDerivation, array, base, binary, bytestring, cereal, cond
, directory, exceptions, filepath, gray-extended, hdaemonize
- , hsyslog, HUnit, MonadRandom, mtl, old-locale, process, QuickCheck
- , random, split, temporary, test-framework, test-framework-hunit
- , test-framework-quickcheck2, time, transformers, unix, zlib
+ , hsyslog, HUnit, MonadRandom, mtl, QuickCheck, random, split
+ , temporary, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, time, transformers, unix
}:
mkDerivation {
pname = "creatur";
- version = "5.9.23";
- sha256 = "04f66vjl1bpfgsf0j5dpz7wjvkvw22ia0f1d375mzhp5xmv4qw46";
+ version = "5.9.25";
+ sha256 = "00bhszbjz7in5z1bilb1m3ld5sdd6xk5s95h6cw882qz0i1dmlp5";
libraryHaskellDepends = [
array base binary bytestring cereal cond directory exceptions
- filepath gray-extended hdaemonize hsyslog MonadRandom mtl
- old-locale process random split time transformers unix zlib
+ filepath gray-extended hdaemonize hsyslog MonadRandom mtl random
+ split time transformers unix
];
testHaskellDepends = [
- array base binary cereal directory filepath hsyslog HUnit
- MonadRandom mtl QuickCheck temporary test-framework
- test-framework-hunit test-framework-quickcheck2
+ base cereal directory filepath HUnit MonadRandom mtl QuickCheck
+ temporary test-framework test-framework-hunit
+ test-framework-quickcheck2
];
description = "Framework for artificial life experiments";
license = stdenv.lib.licenses.bsd3;
@@ -54840,6 +54960,38 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "csg_0_1_0_5" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, containers
+ , criterion, doctest, doctest-driver-gen, gloss, gloss-raster
+ , QuickCheck, simple-vec3, strict, system-filepath, tasty
+ , tasty-hunit, tasty-quickcheck, transformers, turtle, vector
+ }:
+ mkDerivation {
+ pname = "csg";
+ version = "0.1.0.5";
+ sha256 = "12zwf2xiqiq4snwqhwvk1k3fl1bzlfbcd2vc2hsnv6v61ci6shq9";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ attoparsec base bytestring containers QuickCheck simple-vec3 strict
+ transformers
+ ];
+ executableHaskellDepends = [
+ base gloss gloss-raster QuickCheck simple-vec3 strict
+ system-filepath turtle
+ ];
+ testHaskellDepends = [
+ base bytestring doctest doctest-driver-gen simple-vec3 tasty
+ tasty-hunit tasty-quickcheck
+ ];
+ benchmarkHaskellDepends = [
+ base criterion simple-vec3 strict vector
+ ];
+ description = "Analytical CSG (Constructive Solid Geometry) library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"csound-catalog" = callPackage
({ mkDerivation, base, csound-expression, csound-sampler
, sharc-timbre, transformers
@@ -59185,6 +59337,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "debian-build_0_10_1_2" = callPackage
+ ({ mkDerivation, base, directory, filepath, process, split
+ , transformers
+ }:
+ mkDerivation {
+ pname = "debian-build";
+ version = "0.10.1.2";
+ sha256 = "0h8nxk9pir6ic65vh5y29jnlz7jrnq8inqg22h7nvlphk7qbblqw";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base directory filepath process split transformers
+ ];
+ executableHaskellDepends = [ base filepath transformers ];
+ description = "Debian package build sequence tools";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"debug" = callPackage
({ mkDerivation, aeson, base, bytestring, clock, containers
, deepseq, directory, extra, filepath, ghc-prim, hashable, Hoed
@@ -60865,6 +61036,8 @@ self: {
pname = "dhall-json";
version = "1.2.2";
sha256 = "13vap0x53c9i2cyggh3riq8fza46c2d9rqmbxmsjvsawxz2jfm9d";
+ revision = "1";
+ editedCabalFile = "0vkn5kivqjl640f4ifjgy3mgmlqhz8ir48n04lklr4mra7z95qw2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -61173,8 +61346,8 @@ self: {
}:
mkDerivation {
pname = "diagrams-braille";
- version = "0.1.0.1";
- sha256 = "11xq2mx4mmg12cyhs2r7brjn00jy7rh7rwh15gr7piynmx723xhl";
+ version = "0.1.0.2";
+ sha256 = "1jrhc8k0n9jabhg6rz22js9k3nj3v6r6klxskiksf6ajbqbzqg69";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -63102,6 +63275,8 @@ self: {
pname = "distributed-process";
version = "0.7.4";
sha256 = "01ck0vhy8rrilyph6ijpxdmh9jijfbx2ri7k2hmacbblwj4bzafq";
+ revision = "1";
+ editedCabalFile = "02b499kz94v9ls6l95q9wxh0f56nzfyq7rslq3jf6xp94ydcnhwy";
libraryHaskellDepends = [
base binary bytestring containers data-accessor deepseq
distributed-static exceptions hashable mtl network-transport random
@@ -63834,6 +64009,8 @@ self: {
pname = "djinn-lib";
version = "0.0.1.3";
sha256 = "0r1kby67flpyizj117r5q0q3sj61csqxd44za5r9292hj3cacd9v";
+ revision = "1";
+ editedCabalFile = "0zz4q631wpxdm4h499j0m1kin4n1ahnwzb0x2jh6vd463i89xlbk";
libraryHaskellDepends = [ base containers mtl pretty ];
description = "Generate Haskell code from a type. Library extracted from djinn package.";
license = stdenv.lib.licenses.bsd3;
@@ -68014,6 +68191,25 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "emacs-module" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, exceptions
+ , monad-control, mtl, prettyprinter, resourcet
+ , safe-exceptions-checked, template-haskell, text
+ , transformers-base, vector, void
+ }:
+ mkDerivation {
+ pname = "emacs-module";
+ version = "0.1.1";
+ sha256 = "1m6rcvhgdhlzzq86b4qhanbmymwl87r705jx9ih8s89fvsfgvq0y";
+ libraryHaskellDepends = [
+ base bytestring deepseq exceptions monad-control mtl prettyprinter
+ resourcet safe-exceptions-checked template-haskell text
+ transformers-base vector void
+ ];
+ description = "Utilities to write Emacs dynamic modules";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"email" = callPackage
({ mkDerivation, array, base, bytestring, encoding, HaskellNet
, hsemail, old-locale, old-time, parsec, process, time
@@ -68217,8 +68413,8 @@ self: {
}:
mkDerivation {
pname = "emd";
- version = "0.1.3.0";
- sha256 = "0p8ww7bxdrv5xpy9gslzp1c25iqamsdy0rfm4y2n0p71l7w960rw";
+ version = "0.1.4.0";
+ sha256 = "0mrkyy6fn4jsy6h4acqjkkq1bvp7c8yjpw5zyk9ycnk2izb7a9zw";
libraryHaskellDepends = [
base binary containers data-default-class finite-typelits
ghc-typelits-knownnat ghc-typelits-natnormalise transformers
@@ -69333,33 +69529,6 @@ self: {
}) {};
"ersatz" = callPackage
- ({ mkDerivation, array, attoparsec, base, bytestring, Cabal
- , cabal-doctest, containers, data-default, directory, doctest
- , filepath, lens, mtl, parsec, process, semigroups, temporary
- , transformers, unordered-containers
- }:
- mkDerivation {
- pname = "ersatz";
- version = "0.4.3";
- sha256 = "0c0yrh342682k47phy5xwc0gya4h9d07j53dakkwhnx0r4p6gjfn";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- array attoparsec base bytestring containers data-default lens mtl
- process semigroups temporary transformers unordered-containers
- ];
- executableHaskellDepends = [
- array base containers lens mtl parsec semigroups
- ];
- testHaskellDepends = [ array base directory doctest filepath mtl ];
- description = "A monad for expressing SAT or QSAT problems using observable sharing";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "ersatz_0_4_4" = callPackage
({ mkDerivation, array, attoparsec, base, bytestring, Cabal
, cabal-doctest, containers, data-default, directory, doctest
, filepath, lens, mtl, parsec, process, semigroups, temporary
@@ -69695,8 +69864,8 @@ self: {
}:
mkDerivation {
pname = "eternity";
- version = "0.1.2";
- sha256 = "0rjjdhr9cnpgm55mjvhlkgdvqvi5dmmzrr4vj0jmn9pg7zra34y6";
+ version = "0.1.3";
+ sha256 = "02kwd0zad4p762pk75784bbiv6klhy47g64lpxg8kscfryxrd3ma";
libraryHaskellDepends = [
attoparsec base cereal directory foldl potoki potoki-cereal text
];
@@ -69716,8 +69885,8 @@ self: {
}:
mkDerivation {
pname = "eternity-timestamped";
- version = "0.4";
- sha256 = "150xqf7kg4131qxnbjhly4ryy251gni1z6vyqcsy477hig2yv5gr";
+ version = "0.4.1";
+ sha256 = "09s26v4gi6w5am0nn7nwqkja7g74jddjfzsqjq2bbafng4dxnmwy";
libraryHaskellDepends = [
attoparsec base cereal directory eternity generic-random hashable
potoki QuickCheck text time timestamp
@@ -71683,6 +71852,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "extrapolate_0_3_2" = callPackage
+ ({ mkDerivation, base, leancheck, speculate, template-haskell }:
+ mkDerivation {
+ pname = "extrapolate";
+ version = "0.3.2";
+ sha256 = "1scfcjqz1q9pv37rvygbpdwx8j22469f5p2vf5ay68hd62d592gj";
+ libraryHaskellDepends = [
+ base leancheck speculate template-haskell
+ ];
+ testHaskellDepends = [ base leancheck speculate ];
+ description = "generalize counter-examples of test properties";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ez-couch" = callPackage
({ mkDerivation, aeson, attoparsec, attoparsec-conduit, base
, blaze-builder, bytestring, classy-prelude, classy-prelude-conduit
@@ -74408,8 +74592,8 @@ self: {
}:
mkDerivation {
pname = "fitspec";
- version = "0.4.5";
- sha256 = "0s4rifky7rswajc5z7a0kmmqyws3q6ryqca2h7riyh7xzkbxqfvk";
+ version = "0.4.7";
+ sha256 = "0ski62ndgl5ay9kbgx2v590pvfsn0wn0cx9h70fhvcrlsam01p5q";
libraryHaskellDepends = [
base cmdargs leancheck template-haskell
];
@@ -75090,6 +75274,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "flick-duration" = callPackage
+ ({ mkDerivation, base, clock, hspec, QuickCheck }:
+ mkDerivation {
+ pname = "flick-duration";
+ version = "1.0.0";
+ sha256 = "0lhfbdhgz1m5cw4d5bkzb0igk5d240k4zrxdyd7kw64qr8pvvkfy";
+ libraryHaskellDepends = [ base clock ];
+ testHaskellDepends = [ base clock hspec QuickCheck ];
+ description = "work with durations of time using the Flick as the smallest unit";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"flickr" = callPackage
({ mkDerivation, base, filepath, HTTP, mime, network, random
, utf8-string, xhtml, xml
@@ -80351,6 +80547,27 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "genvalidity-bytestring_0_3_0_0" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, genvalidity
+ , genvalidity-hspec, hspec, QuickCheck, validity
+ , validity-bytestring
+ }:
+ mkDerivation {
+ pname = "genvalidity-bytestring";
+ version = "0.3.0.0";
+ sha256 = "1jmy41mqjh3zj512fjikn6vqjvx81cdvi9llc9f0yp2h2rkmw4hf";
+ libraryHaskellDepends = [
+ base bytestring genvalidity QuickCheck validity validity-bytestring
+ ];
+ testHaskellDepends = [
+ base bytestring deepseq genvalidity genvalidity-hspec hspec
+ QuickCheck
+ ];
+ description = "GenValidity support for ByteString";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"genvalidity-containers" = callPackage
({ mkDerivation, base, containers, genvalidity, genvalidity-hspec
, hspec, QuickCheck, validity, validity-containers
@@ -80468,8 +80685,8 @@ self: {
}:
mkDerivation {
pname = "genvalidity-hspec-optics";
- version = "0.0.0.0";
- sha256 = "0nx1qfi6dq0vikpbab4spkhmpm7lyvbvg5k7ni9lh71ijqjynyv8";
+ version = "0.1.0.0";
+ sha256 = "08p7hv1wr6df8sng906rvys0998nk8j331r2q5v2abw2rg2609m5";
libraryHaskellDepends = [
base genvalidity genvalidity-hspec hspec microlens QuickCheck
];
@@ -80575,6 +80792,25 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "genvalidity-text_0_5_1_0" = callPackage
+ ({ mkDerivation, array, base, genvalidity, genvalidity-hspec, hspec
+ , QuickCheck, text, validity, validity-text
+ }:
+ mkDerivation {
+ pname = "genvalidity-text";
+ version = "0.5.1.0";
+ sha256 = "0j7fx2zzv6ljqk87148h1rq3yg6vvy0dsl7kfl3f2p6ghnz7wggg";
+ libraryHaskellDepends = [
+ array base genvalidity QuickCheck text validity validity-text
+ ];
+ testHaskellDepends = [
+ base genvalidity genvalidity-hspec hspec QuickCheck text
+ ];
+ description = "GenValidity support for Text";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"genvalidity-time" = callPackage
({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec
, QuickCheck, time, validity-time
@@ -81952,17 +82188,18 @@ self: {
"ghc-typelits-presburger" = callPackage
({ mkDerivation, base, containers, equational-reasoning, ghc
- , ghc-tcplugins-extra, pretty, reflection, singletons
+ , ghc-tcplugins-extra, mtl, pretty, reflection, singletons, syb
+ , transformers
}:
mkDerivation {
pname = "ghc-typelits-presburger";
- version = "0.2.0.3";
- sha256 = "15lywyh7sdfgqhz0bpi2hap1ix2s8dsfvn7vwzsci8l0w5vl5bn2";
+ version = "0.2.0.5";
+ sha256 = "03n6ddvn6p1nk6yw141zdw60iqda7k3sbaacc9s04mmnmshvia1n";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base containers equational-reasoning ghc ghc-tcplugins-extra pretty
- reflection singletons
+ base containers equational-reasoning ghc ghc-tcplugins-extra mtl
+ pretty reflection singletons syb transformers
];
description = "Presburger Arithmetic Solver for GHC Type-level natural numbers";
license = stdenv.lib.licenses.bsd3;
@@ -83067,24 +83304,24 @@ self: {
"gi-vte" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
, gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi
- , haskell-gi-base, haskell-gi-overloading, text, transformers, vte
+ , haskell-gi-base, haskell-gi-overloading, text, transformers
+ , vte_291
}:
mkDerivation {
pname = "gi-vte";
- version = "2.91.18";
- sha256 = "0rixrkw0k2vz59y20lsd8zw54n7l069mij0n76dnmah2bjjk1r7w";
+ version = "2.91.19";
+ sha256 = "1hnhidjr7jh7i826lj6kdn264i592sfl5kwvymnpiycmcb37dd4y";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject
gi-gtk gi-pango haskell-gi haskell-gi-base haskell-gi-overloading
text transformers
];
- libraryPkgconfigDepends = [ vte ];
+ libraryPkgconfigDepends = [ vte_291 ];
doHaddock = false;
description = "Vte bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs.gnome2) vte;};
+ }) {vte_291 = pkgs.gnome3.vte;};
"gi-webkit" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
@@ -83371,19 +83608,19 @@ self: {
}) {};
"git" = callPackage
- ({ mkDerivation, base, byteable, bytedump, bytestring, containers
- , cryptonite, hourglass, memory, patience, random, system-fileio
- , system-filepath, tasty, tasty-quickcheck, unix-compat
- , utf8-string, vector, zlib, zlib-bindings
+ ({ mkDerivation, base, basement, byteable, bytedump, bytestring
+ , containers, cryptonite, hourglass, memory, patience, random
+ , system-fileio, system-filepath, tasty, tasty-quickcheck
+ , unix-compat, utf8-string, vector, zlib, zlib-bindings
}:
mkDerivation {
pname = "git";
- version = "0.2.1";
- sha256 = "0j0hzlxb58g0q8fibg09ppag6bnhk7ym3nyzmqpwjbr6hxkdidsz";
+ version = "0.2.2";
+ sha256 = "18sn3rvmrqw8xy7xaqpv82inqj981z79sm6h1aw4jvvzsf6llzwa";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- base byteable bytestring containers cryptonite hourglass memory
- patience random system-fileio system-filepath unix-compat
+ base basement byteable bytestring containers cryptonite hourglass
+ memory patience random system-fileio system-filepath unix-compat
utf8-string vector zlib zlib-bindings
];
testHaskellDepends = [
@@ -84834,15 +85071,16 @@ self: {
}) {};
"gll" = callPackage
- ({ mkDerivation, array, base, containers, pretty, regex-applicative
- , text, TypeCompose
+ ({ mkDerivation, array, base, containers, pretty, random-strings
+ , regex-applicative, text, time, TypeCompose
}:
mkDerivation {
pname = "gll";
- version = "0.4.0.5";
- sha256 = "09z7i4h5zwgyh3gg5w0l6p0ch1lhzmsnbmk1yfbc9b21gbxna5js";
+ version = "0.4.0.11";
+ sha256 = "0vxi750q11q1ggf0s2yyjpr47fmpfvmqm5mjdh6i4z6bf5vlhfd8";
libraryHaskellDepends = [
- array base containers pretty regex-applicative text TypeCompose
+ array base containers pretty random-strings regex-applicative text
+ time TypeCompose
];
description = "GLL parser with simple combinator interface";
license = stdenv.lib.licenses.bsd3;
@@ -84985,6 +85223,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "gloss_1_13_0_1" = callPackage
+ ({ mkDerivation, base, bmp, bytestring, containers, ghc-prim
+ , gloss-rendering, GLUT, OpenGL
+ }:
+ mkDerivation {
+ pname = "gloss";
+ version = "1.13.0.1";
+ sha256 = "1f19vlx32nkgply25p83n7498lwdpshiibqg7nzkhb2kv7n0y71q";
+ libraryHaskellDepends = [
+ base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL
+ ];
+ description = "Painless 2D vector graphics, animations and simulations";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"gloss-accelerate" = callPackage
({ mkDerivation, accelerate, base, gloss, gloss-rendering }:
mkDerivation {
@@ -85000,8 +85254,8 @@ self: {
({ mkDerivation, base, containers, ghc-prim, gloss }:
mkDerivation {
pname = "gloss-algorithms";
- version = "1.12.0.0";
- sha256 = "00vji2mlakawarqsywgvl10yk32jmlxcj2d058a6psjqb0pkq0wb";
+ version = "1.13.0.1";
+ sha256 = "0vbqcsvyicb409a60fab0c0shixny4l5z2l15n8hrrr1dsvisf95";
libraryHaskellDepends = [ base containers ghc-prim gloss ];
description = "Data structures and algorithms for working with 2D graphics";
license = stdenv.lib.licenses.mit;
@@ -85040,8 +85294,8 @@ self: {
}:
mkDerivation {
pname = "gloss-examples";
- version = "1.12.0.0";
- sha256 = "1iimmphkq89h4k8iny52kgz1a0cq6lp8dzr0lkj4j5qnfaj65lhl";
+ version = "1.13.0.1";
+ sha256 = "071b75qlppjff9q7b8312wb382gry4dnz1b8p84sb8lxmxr2848w";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -85097,6 +85351,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "gloss-raster_1_13_0_1" = callPackage
+ ({ mkDerivation, base, containers, ghc-prim, gloss, gloss-rendering
+ , repa
+ }:
+ mkDerivation {
+ pname = "gloss-raster";
+ version = "1.13.0.1";
+ sha256 = "1dyj8r0b3gal54dgyq9jb4s5sqjhp152q63r8nkpzjh1c9d3cp9x";
+ libraryHaskellDepends = [
+ base containers ghc-prim gloss gloss-rendering repa
+ ];
+ description = "Parallel rendering of raster images";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"gloss-raster-accelerate" = callPackage
({ mkDerivation, accelerate, base, colour-accelerate, gloss
, gloss-accelerate
@@ -85128,6 +85398,20 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "gloss-rendering_1_13_0_2" = callPackage
+ ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL }:
+ mkDerivation {
+ pname = "gloss-rendering";
+ version = "1.13.0.2";
+ sha256 = "0ivzijqkxn0r4iqk0rmq0bzdzzgv9a8fgwy3gwnfibmvhhm9jfq0";
+ libraryHaskellDepends = [
+ base bmp bytestring containers GLUT OpenGL
+ ];
+ description = "Gloss picture data types and rendering functions";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"gloss-sodium" = callPackage
({ mkDerivation, base, gloss, sodium }:
mkDerivation {
@@ -88675,27 +88959,6 @@ self: {
}) {};
"greskell" = callPackage
- ({ mkDerivation, aeson, base, bytestring, doctest, doctest-discover
- , greskell-core, hint, hspec, semigroups, text, transformers
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "greskell";
- version = "0.2.0.3";
- sha256 = "13nqmpga35ri45rvssfj6mhzafkgdbg5077s8m847ny1sz10xg0x";
- libraryHaskellDepends = [
- aeson base greskell-core semigroups text transformers
- unordered-containers vector
- ];
- testHaskellDepends = [
- aeson base bytestring doctest doctest-discover greskell-core hint
- hspec text unordered-containers
- ];
- description = "Haskell binding for Gremlin graph query language";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "greskell_0_2_1_0" = callPackage
({ mkDerivation, aeson, base, bytestring, doctest, doctest-discover
, greskell-core, hint, hspec, semigroups, text, transformers
, unordered-containers, vector
@@ -88714,7 +88977,6 @@ self: {
];
description = "Haskell binding for Gremlin graph query language";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"greskell-core" = callPackage
@@ -88739,28 +89001,6 @@ self: {
}) {};
"greskell-websocket" = callPackage
- ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring
- , greskell-core, hashtables, hspec, safe-exceptions, stm, text
- , unordered-containers, uuid, vector, websockets
- }:
- mkDerivation {
- pname = "greskell-websocket";
- version = "0.1.0.0";
- sha256 = "171pr07dlsvkmj0jqr60dc6a4g8sfqaz0hvwwfagzklg31m961mq";
- libraryHaskellDepends = [
- aeson async base base64-bytestring bytestring greskell-core
- hashtables safe-exceptions stm text unordered-containers uuid
- vector websockets
- ];
- testHaskellDepends = [
- aeson base bytestring greskell-core hspec unordered-containers uuid
- vector
- ];
- description = "Haskell client for Gremlin Server using WebSocket serializer";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "greskell-websocket_0_1_1_0" = callPackage
({ mkDerivation, aeson, async, base, base64-bytestring, bytestring
, greskell-core, hashtables, hspec, safe-exceptions, stm, text
, unordered-containers, uuid, vector, websockets
@@ -88780,7 +89020,6 @@ self: {
];
description = "Haskell client for Gremlin Server using WebSocket serializer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"grid" = callPackage
@@ -91781,8 +92020,8 @@ self: {
}:
mkDerivation {
pname = "hadolint";
- version = "1.11.1";
- sha256 = "07mgv88whga78x6sa7c1iw8l6k6p5yb0b38wpvy6cs3rzk4x2dx2";
+ version = "1.11.2";
+ sha256 = "0xfhghpy0jmgmlyzc6plcg3nq26afbwp36bjjdc156rcwzsm9qyx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -93165,8 +93404,34 @@ self: {
pname = "hapistrano";
version = "0.3.5.9";
sha256 = "1jyzjj9m6vj9rlpvadaxnfxxl8ynrn8jp9xzyp3kwkzyv6cdi1ha";
- revision = "1";
- editedCabalFile = "0g48v24byay41jxhyszy9j00s77r9gsfdh3x6dvwv5shb558w95k";
+ revision = "2";
+ editedCabalFile = "1gfs133dm21jwv48v4wlr1dbr993fz49b9lviaahkymlv1d3j8gd";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ base filepath formatting gitrev mtl path process time transformers
+ ];
+ executableHaskellDepends = [
+ aeson async base formatting gitrev optparse-applicative path
+ path-io stm yaml
+ ];
+ testHaskellDepends = [
+ base directory filepath hspec mtl path path-io process temporary
+ ];
+ description = "A deployment library for Haskell applications";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "hapistrano_0_3_5_10" = callPackage
+ ({ 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.10";
+ sha256 = "1pkgbcpddk5ik0b1b684nnvwil68kla1w7660c1751dyhhh78ikw";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -93182,6 +93447,7 @@ self: {
];
description = "A deployment library for Haskell applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happindicator" = callPackage
@@ -95423,33 +95689,6 @@ self: {
}) {};
"haskell-gi" = 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.3";
- sha256 = "09smnzg6kqjyb7m281k8w3y6vabws41snp9wkh8449s0ya3ndbn0";
- 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 process ];
- description = "Generate Haskell bindings for GObject Introspection capable libraries";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib;
- inherit (pkgs.gnome3) gobjectIntrospection;};
-
- "haskell-gi_0_21_4" = callPackage
({ mkDerivation, attoparsec, base, bytestring, Cabal, containers
, directory, doctest, filepath, glib, gobjectIntrospection
, haskell-gi-base, mtl, pretty-show, process, regex-tdfa, safe
@@ -95473,7 +95712,6 @@ self: {
testHaskellDepends = [ base doctest process ];
description = "Generate Haskell bindings for GObject Introspection capable libraries";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib;
inherit (pkgs.gnome3) gobjectIntrospection;};
@@ -99813,6 +100051,8 @@ self: {
pname = "hdocs";
version = "0.5.3.0";
sha256 = "0gkv4xy7jr2ic22gn5fpj3vd6avgd1xqblv96gg1m0fhfsj92y5h";
+ revision = "1";
+ editedCabalFile = "0dy2jamwd0jxai8hcfq506xqczi0hn9c8p7z4dbmq62d29fm79yb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -100236,6 +100476,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hedis_0_10_4" = 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, tls, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "hedis";
+ version = "0.10.4";
+ sha256 = "1xsa6wgakmjhwz9s9fybbwsx6gxy6630bqyrai0sb4vmd9lnbxfx";
+ libraryHaskellDepends = [
+ async base bytestring bytestring-lexing deepseq errors HTTP mtl
+ network network-uri resource-pool scanner stm text time tls
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ async base bytestring doctest HUnit mtl slave-thread stm
+ test-framework test-framework-hunit text time
+ ];
+ benchmarkHaskellDepends = [ base mtl time ];
+ 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
@@ -101667,8 +101933,8 @@ self: {
}:
mkDerivation {
pname = "hfmt";
- version = "0.2.2";
- sha256 = "0xjh952djxb490nig2aj9y5461ka33d3qdlrfkxb7iz7pqmmr6fs";
+ version = "0.2.3.1";
+ sha256 = "178nr4k4jgl3xxlvds7cqg18qfmsak1zhwlkks6syviypbg5wb07";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -101716,6 +101982,8 @@ self: {
pname = "hformat";
version = "0.3.3.0";
sha256 = "0g9kjfssaksjj3cp0qiwk7v85yy3sb2ryhjnlrdznhm3mnkvp35j";
+ revision = "1";
+ editedCabalFile = "00924yrjyzy3v5l13f03v1qw45ra2600f98r9bgswjqrrn87m79i";
libraryHaskellDepends = [
ansi-terminal base base-unicode-symbols text
];
@@ -102246,20 +102514,19 @@ self: {
"hid-examples" = callPackage
({ mkDerivation, base, blaze-html, bytestring, cassava, Chart
- , Chart-diagrams, fmt, hint, optparse-applicative, safe, text, time
+ , Chart-diagrams, extra, fmt, hint, mtl, optparse-applicative
+ , random, safe, text, time
}:
mkDerivation {
pname = "hid-examples";
- version = "0.1.0.0";
- sha256 = "0x8i9532w5gxlajx4pw7n31qf6hbqf5335lsqwvwvk12igww7mg8";
- revision = "1";
- editedCabalFile = "0ifcgqm81vh7qidpxzgkx5g3wcyif0zgclz7svsnvw5vvpij350p";
+ version = "0.2";
+ sha256 = "1rp6v40z8i2slnsacw42adkqp98bg8fml573lpz9mz7ipn05gi9x";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
executableHaskellDepends = [
- base blaze-html bytestring cassava Chart Chart-diagrams fmt hint
- optparse-applicative safe text time
+ base blaze-html bytestring cassava Chart Chart-diagrams extra fmt
+ hint mtl optparse-applicative random safe text time
];
description = "Examples to accompany the book \"Haskell in Depth\"";
license = stdenv.lib.licenses.bsd3;
@@ -103808,8 +104075,8 @@ self: {
}:
mkDerivation {
pname = "hledger-iadd";
- version = "1.3.5";
- sha256 = "0mp8jhvf48173ixypqfm9vmsb2bsykfygxrxxfjpry6m5xqfh09c";
+ version = "1.3.6";
+ sha256 = "04gy5pvbcgkr3jg1a2dav3kcd7ih46knn0d39l8670bmwhx3y5br";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -106139,8 +106406,8 @@ self: {
({ mkDerivation, base, Cabal, containers, directory, filepath }:
mkDerivation {
pname = "hoppy-runtime";
- version = "0.5.0";
- sha256 = "089dqnnczknir9q9mwdh5z9jzb5wsw4bmqqi8spibxk8lna4cvqs";
+ version = "0.5.1";
+ sha256 = "0gh6kjfy9wcdppbq9ml5i2iz7bi12pbvnzqhj25sg9dy77iwc7cp";
libraryHaskellDepends = [
base Cabal containers directory filepath
];
@@ -106416,6 +106683,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hourglass_0_2_12" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, gauge, mtl, old-locale
+ , tasty, tasty-hunit, tasty-quickcheck, time
+ }:
+ mkDerivation {
+ pname = "hourglass";
+ version = "0.2.12";
+ sha256 = "0jnay5j13vpz6i1rkaj3j0d9v8jfpri499xn3l7wd01f81f5ncs4";
+ libraryHaskellDepends = [ base deepseq ];
+ testHaskellDepends = [
+ base deepseq mtl old-locale tasty tasty-hunit tasty-quickcheck time
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring deepseq gauge mtl old-locale time
+ ];
+ description = "simple performant time related library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hourglass-fuzzy-parsing" = callPackage
({ mkDerivation, base, hourglass, parsec }:
mkDerivation {
@@ -107439,8 +107726,8 @@ self: {
}:
mkDerivation {
pname = "hriemann";
- version = "0.3.2.0";
- sha256 = "1b0vyxkyz8qqzvdrb0nyni6x490rxqh5zlydjrn9pbqc6npz7m8p";
+ version = "0.3.3.0";
+ sha256 = "0apji56rwh1did67z9z0bcy5r9k2m6rrfkiv18rp4mbd863skg25";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -112516,16 +112803,16 @@ self: {
"http-conduit-downloader" = callPackage
({ mkDerivation, base, bytestring, conduit, connection
, data-default, HsOpenSSL, http-client, http-conduit, http-types
- , lifted-base, mtl, network, network-uri, resourcet, time, zlib
+ , mtl, network, network-uri, resourcet, text, time, zlib
}:
mkDerivation {
pname = "http-conduit-downloader";
- version = "1.0.30";
- sha256 = "1m0wwi34fcsppn8sj46jaaxdpdf3jzl1bhf9q1gxg9p1r9xgvv5a";
+ version = "1.0.31";
+ sha256 = "1ng41s2y176223blzxdywlv7hmbdh7i5nwr63la7jfnd9rcdr83c";
libraryHaskellDepends = [
base bytestring conduit connection data-default HsOpenSSL
- http-client http-conduit http-types lifted-base mtl network
- network-uri resourcet time zlib
+ http-client http-conduit http-types mtl network network-uri
+ resourcet text time zlib
];
description = "HTTP downloader tailored for web-crawler needs";
license = stdenv.lib.licenses.bsd3;
@@ -112620,6 +112907,25 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "http-io-streams" = callPackage
+ ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder
+ , bytestring, case-insensitive, containers, directory, HsOpenSSL
+ , io-streams, mtl, network, network-uri, openssl-streams, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "http-io-streams";
+ version = "0.1.0.0";
+ sha256 = "0fxz7p5n7gd99xjq9rwm6x74qzpfp4wdmhj1hm08c7hkinizdvgv";
+ libraryHaskellDepends = [
+ attoparsec base base64-bytestring blaze-builder bytestring
+ case-insensitive containers directory HsOpenSSL io-streams mtl
+ network network-uri openssl-streams text transformers
+ ];
+ description = "HTTP client based on io-streams";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"http-kinder" = callPackage
({ mkDerivation, aeson, base, bytestring, case-insensitive
, containers, http-media, http-types, HUnit, QuickCheck, singletons
@@ -113102,15 +113408,16 @@ self: {
"http2-client-grpc" = callPackage
({ mkDerivation, base, binary, bytestring, data-default-class
- , http2, http2-client, proto-lens, proto-lens-protoc, text, zlib
+ , http2, http2-client, http2-grpc-types, proto-lens
+ , proto-lens-protoc, text, zlib
}:
mkDerivation {
pname = "http2-client-grpc";
- version = "0.1.0.0";
- sha256 = "11ckgp56k6ypk4smc91909gs8cvlbqji8blsr48k8fbclhi5cqwv";
+ version = "0.2.0.0";
+ sha256 = "1bg4p6fy09mbi5r355vvrbmc0al7mcwbr3mx2lpkjkzm9cg53x2z";
libraryHaskellDepends = [
base binary bytestring data-default-class http2 http2-client
- proto-lens proto-lens-protoc text zlib
+ http2-grpc-types proto-lens proto-lens-protoc text zlib
];
testHaskellDepends = [ base ];
description = "Implement gRPC-over-HTTP2 clients";
@@ -113118,6 +113425,17 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "http2-grpc-types" = callPackage
+ ({ mkDerivation, base, binary, bytestring, proto-lens, zlib }:
+ mkDerivation {
+ pname = "http2-grpc-types";
+ version = "0.1.0.0";
+ sha256 = "0qj9bffznw8fawalj6hlvx8r0sj9smgks88wdqjq5ran02b6i2dl";
+ libraryHaskellDepends = [ base binary bytestring proto-lens zlib ];
+ description = "Types for gRPC over HTTP2 common for client and servers";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"httpd-shed" = callPackage
({ mkDerivation, base, network, network-uri }:
mkDerivation {
@@ -113538,17 +113856,17 @@ self: {
}) {};
"hunspell-hs" = callPackage
- ({ mkDerivation, base, criterion, hspec, hunspell, stm }:
+ ({ mkDerivation, base, criterion, deepseq, hspec, hunspell, stm }:
mkDerivation {
pname = "hunspell-hs";
- version = "0.1.0.0";
- sha256 = "0jiqgs4akny8kcpl3hdkj08hyknw2p0z96dci6lwq2fv5qprj77i";
+ version = "0.2.0.0";
+ sha256 = "0wifkv8i83lhi348l1rkjqidpr81zss02zn6brxlva938ir2ncp8";
libraryHaskellDepends = [ base stm ];
- librarySystemDepends = [ hunspell ];
+ libraryPkgconfigDepends = [ hunspell ];
testHaskellDepends = [ base hspec stm ];
- testSystemDepends = [ hunspell ];
- benchmarkHaskellDepends = [ base criterion stm ];
- benchmarkSystemDepends = [ hunspell ];
+ testPkgconfigDepends = [ hunspell ];
+ benchmarkHaskellDepends = [ base criterion deepseq stm ];
+ benchmarkPkgconfigDepends = [ hunspell ];
description = "Hunspell thread-safe FFI bindings for spell checking";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -113850,27 +114168,6 @@ self: {
}) {};
"hw-bits" = callPackage
- ({ mkDerivation, base, bytestring, criterion, hspec, hw-int
- , hw-prim, hw-string-parse, QuickCheck, safe, vector
- }:
- mkDerivation {
- pname = "hw-bits";
- version = "0.7.0.2";
- sha256 = "1s0as4d1a80hzx47zpa7qjiwdbgwzg1j4lgqd0grri5scq0iwqiq";
- revision = "1";
- editedCabalFile = "1gvv5ryx1lrgb3hk362fkqz98rggdxfmjp7fy0id7mqvdz6lk2av";
- libraryHaskellDepends = [
- base bytestring hw-int hw-prim hw-string-parse safe vector
- ];
- testHaskellDepends = [
- base bytestring hspec hw-prim QuickCheck vector
- ];
- benchmarkHaskellDepends = [ base criterion hw-prim vector ];
- description = "Bit manipulation";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hw-bits_0_7_0_3" = callPackage
({ mkDerivation, base, bytestring, criterion, hspec, hw-int
, hw-prim, hw-string-parse, QuickCheck, safe, vector
}:
@@ -113887,7 +114184,6 @@ self: {
benchmarkHaskellDepends = [ base criterion hw-prim vector ];
description = "Bit manipulation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hw-conduit" = callPackage
@@ -114085,6 +114381,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hw-ip_0_2_0_2" = callPackage
+ ({ mkDerivation, attoparsec, base, generic-lens, hedgehog, hspec
+ , hw-bits, hw-hspec-hedgehog, text
+ }:
+ mkDerivation {
+ pname = "hw-ip";
+ version = "0.2.0.2";
+ sha256 = "0c2nz9iq5x7mys90zy29ka4zkdggqngz77wjm51kv1jp7rsnpqn7";
+ libraryHaskellDepends = [
+ attoparsec base generic-lens hw-bits text
+ ];
+ testHaskellDepends = [
+ attoparsec base generic-lens hedgehog hspec hw-bits
+ hw-hspec-hedgehog text
+ ];
+ description = "Library for manipulating IP addresses and CIDR blocks";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hw-json" = callPackage
({ mkDerivation, ansi-wl-pprint, array, attoparsec, base
, bytestring, conduit, containers, criterion, dlist, hspec
@@ -114316,36 +114632,36 @@ self: {
"hw-prim" = callPackage
({ mkDerivation, base, bytestring, criterion, directory, exceptions
- , hedgehog, hspec, hw-hspec-hedgehog, mmap, QuickCheck
+ , hedgehog, hspec, hw-hspec-hedgehog, mmap, QuickCheck, semigroups
, transformers, vector
}:
mkDerivation {
pname = "hw-prim";
- version = "0.6.2.3";
- sha256 = "10sxa42bkrwfbqlkdhv62m1g2dy4zqpsp5iqyd1jx0hal1wlblfm";
+ version = "0.6.2.9";
+ sha256 = "1c2ykdxvrg0i1wbjgfc0mank5z7466crqcs5hdyddjc833xhmv2d";
libraryHaskellDepends = [
- base bytestring mmap transformers vector
+ base bytestring mmap semigroups transformers vector
];
testHaskellDepends = [
base bytestring directory exceptions hedgehog hspec
- hw-hspec-hedgehog mmap QuickCheck transformers vector
+ hw-hspec-hedgehog mmap QuickCheck semigroups transformers vector
];
benchmarkHaskellDepends = [
- base bytestring criterion mmap transformers vector
+ base bytestring criterion mmap semigroups transformers vector
];
description = "Primitive functions and data types";
license = stdenv.lib.licenses.bsd3;
}) {};
- "hw-prim_0_6_2_12" = callPackage
+ "hw-prim_0_6_2_13" = callPackage
({ mkDerivation, base, bytestring, criterion, directory, exceptions
, hedgehog, hspec, hw-hspec-hedgehog, mmap, QuickCheck, semigroups
, transformers, vector
}:
mkDerivation {
pname = "hw-prim";
- version = "0.6.2.12";
- sha256 = "10nbmpq8zm5j1jmn45w379rrmjvcssl213pmwh9p4zbnas71ba67";
+ version = "0.6.2.13";
+ sha256 = "0cvg99v9c86fzf76i4z3lilss0qgs1i91v1hsk2n22a79rmhpvnb";
libraryHaskellDepends = [
base bytestring mmap semigroups transformers vector
];
@@ -115682,29 +115998,6 @@ self: {
}) {};
"hyraxAbif" = callPackage
- ({ mkDerivation, base, binary, bytestring, directory, filepath
- , hedgehog, hscolour, pretty-show, protolude, text
- }:
- mkDerivation {
- pname = "hyraxAbif";
- version = "0.2.3.9";
- sha256 = "0y9n5mz5hkbbdkw2h979y274x6y45pa9cw9wzbfnfczsjqgxgxs1";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base binary bytestring directory filepath protolude text
- ];
- executableHaskellDepends = [
- base bytestring hscolour pretty-show protolude text
- ];
- testHaskellDepends = [
- base binary bytestring hedgehog protolude text
- ];
- description = "Modules for parsing, generating and manipulating AB1 files";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hyraxAbif_0_2_3_10" = callPackage
({ mkDerivation, base, binary, bytestring, directory, filepath
, hedgehog, hscolour, pretty-show, protolude, text
}:
@@ -115725,7 +116018,6 @@ self: {
];
description = "Modules for parsing, generating and manipulating AB1 files";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hzaif" = callPackage
@@ -119148,28 +119440,6 @@ self: {
}) {};
"intro" = callPackage
- ({ mkDerivation, base, binary, bytestring, containers, deepseq
- , dlist, extra, hashable, lens, mtl, QuickCheck, safe, text
- , transformers, unordered-containers, writer-cps-mtl
- }:
- mkDerivation {
- pname = "intro";
- 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
- ];
- testHaskellDepends = [
- base binary bytestring containers deepseq dlist extra hashable lens
- mtl QuickCheck safe text transformers unordered-containers
- writer-cps-mtl
- ];
- description = "\"Fixed Prelude\" - Mostly total and safe, provides Text and Monad transformers";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "intro_0_3_2_0" = callPackage
({ mkDerivation, base, binary, bytestring, containers, deepseq
, dlist, extra, hashable, lens, mtl, QuickCheck, safe, text
, transformers, unordered-containers, writer-cps-mtl
@@ -119189,7 +119459,6 @@ self: {
];
description = "\"Fixed Prelude\" - Mostly total and safe, provides Text and Monad transformers";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"intro-prelude" = callPackage
@@ -119682,18 +119951,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "ip_1_4_0" = callPackage
+ "ip_1_4_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, criterion
- , doctest, hashable, hspec, HUnit, primitive, QuickCheck
+ , deepseq, doctest, hashable, hspec, HUnit, primitive, QuickCheck
, quickcheck-classes, test-framework, test-framework-hunit
, test-framework-quickcheck2, text, vector
}:
mkDerivation {
pname = "ip";
- version = "1.4.0";
- sha256 = "12y9ym7gjdwlixp727z4hf0hmi8x021shvrv6vhg4s4bgn3rvch5";
+ version = "1.4.1";
+ sha256 = "0nzc2xb6xha2sql3aiwhchl2hhfzndlvdm1hc8pbrjw27jcz3hpi";
libraryHaskellDepends = [
- aeson attoparsec base bytestring hashable primitive text vector
+ aeson attoparsec base bytestring deepseq hashable primitive text
+ vector
];
testHaskellDepends = [
attoparsec base bytestring doctest hspec HUnit QuickCheck
@@ -120708,6 +120978,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ival" = callPackage
+ ({ mkDerivation, alg, base, smallcheck, tasty, tasty-smallcheck }:
+ mkDerivation {
+ pname = "ival";
+ version = "0.1.0.0";
+ sha256 = "16iffzyhqm160sy6qskfxr0wrbjic9bxrm8y9f1ych7gmzp3cdwk";
+ libraryHaskellDepends = [ alg base ];
+ testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ];
+ description = "Intervals";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ivar-simple" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -121832,8 +122114,8 @@ self: {
({ mkDerivation, base, haskeline, hspec, HUnit }:
mkDerivation {
pname = "jord";
- version = "0.3.1.0";
- sha256 = "09wf9yzf9jzh4w2iqs0r33hi80ralbriipydbqpb0gx0i2sgwqay";
+ version = "0.4.0.0";
+ sha256 = "0sa19hr49l71dlvm1wpkw6901zzws12higd4xksk8b81cwrgp8l2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base ];
@@ -121966,6 +122248,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "jps" = callPackage
+ ({ mkDerivation, base, containers, fingertree, lens, vector }:
+ mkDerivation {
+ pname = "jps";
+ version = "0.1.0.0";
+ sha256 = "0k31r994cw1w79v2zqkj64jhbfyym1j96vawvqc5pvw2mjk1f5in";
+ libraryHaskellDepends = [ base containers fingertree lens vector ];
+ description = "Jump point search for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"js-flot" = callPackage
({ mkDerivation, base, HTTP }:
mkDerivation {
@@ -122662,6 +122955,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "json-rpc-generic_0_2_1_5" = callPackage
+ ({ mkDerivation, aeson, aeson-generic-compat, base, containers
+ , dlist, QuickCheck, quickcheck-simple, scientific, text
+ , transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "json-rpc-generic";
+ version = "0.2.1.5";
+ sha256 = "1h1spyiq5xix3rbjdk37a28l6l46zygvxafdhaa466hyn2j7p4cz";
+ libraryHaskellDepends = [
+ aeson aeson-generic-compat base containers dlist scientific text
+ transformers unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base QuickCheck quickcheck-simple text
+ ];
+ description = "Generic encoder and decode for JSON-RPC";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"json-rpc-server" = callPackage
({ mkDerivation, aeson, base, bytestring, deepseq, HUnit, mtl
, test-framework, test-framework-hunit, text, unordered-containers
@@ -126342,10 +126656,8 @@ self: {
}:
mkDerivation {
pname = "language-ats";
- version = "1.7.0.2";
- sha256 = "1x5nm59nx2dwjxqrz8r0f6wg5szxcsvidqd9pjzh1znlxbzy3s6i";
- revision = "1";
- editedCabalFile = "0dzijl82zynk73ahd3rzkv7x86qpbn36hp558vwmcvd84qq0hbqf";
+ version = "1.7.0.3";
+ sha256 = "0lmqic0pwn1f5l5zm3830ipyfjv6cj799kzgx0ia0mdy9wh8pfg9";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
ansi-wl-pprint array base composition-prelude containers deepseq
@@ -126545,6 +126857,8 @@ self: {
pname = "language-docker";
version = "6.0.4";
sha256 = "1brlqlxa1h7iv2p17h4nb6ly7nr4dr9j815z3yiz0gbj91bgj4c1";
+ revision = "1";
+ editedCabalFile = "0la3l8m32zmgb4nk4fwchy1abip0k1b0x1i9205dih136g1iaq62";
libraryHaskellDepends = [
base bytestring containers free megaparsec mtl prettyprinter split
template-haskell text th-lift time
@@ -127147,6 +127461,51 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "language-puppet_1_3_20_1" = callPackage
+ ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base
+ , base16-bytestring, bytestring, case-insensitive, containers
+ , cryptonite, directory, exceptions, filecache, filepath
+ , formatting, Glob, hashable, hruby, hslogger, hspec
+ , hspec-megaparsec, http-api-data, http-client, lens, lens-aeson
+ , megaparsec, memory, mtl, operational, optparse-applicative
+ , parallel-io, parsec, pcre-utils, process, protolude, random
+ , regex-pcre-builtin, scientific, servant, servant-client, split
+ , stm, strict-base-types, temporary, text, time, transformers, unix
+ , unordered-containers, vector, yaml
+ }:
+ mkDerivation {
+ pname = "language-puppet";
+ version = "1.3.20.1";
+ sha256 = "0gak1v8p6fnrac7br2gvz3wg8mymm82gyv4wbdcp5rkj7ncm19vs";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring
+ case-insensitive containers cryptonite directory exceptions
+ filecache filepath formatting hashable hruby hslogger hspec
+ http-api-data http-client lens lens-aeson megaparsec memory mtl
+ operational parsec pcre-utils process protolude random
+ regex-pcre-builtin scientific servant servant-client split stm
+ strict-base-types text time transformers unix unordered-containers
+ vector yaml
+ ];
+ executableHaskellDepends = [
+ aeson ansi-wl-pprint base bytestring containers Glob hslogger
+ http-client lens megaparsec mtl optparse-applicative parallel-io
+ regex-pcre-builtin strict-base-types text transformers
+ unordered-containers vector yaml
+ ];
+ testHaskellDepends = [
+ base Glob hslogger hspec hspec-megaparsec lens megaparsec mtl
+ pcre-utils protolude scientific strict-base-types temporary text
+ transformers unordered-containers vector
+ ];
+ description = "Tools to parse and evaluate the Puppet DSL";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"language-python" = callPackage
({ mkDerivation, alex, array, base, containers, happy, monads-tf
, pretty, transformers, utf8-string
@@ -128178,6 +128537,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "leancheck_0_7_3" = callPackage
+ ({ mkDerivation, base, template-haskell }:
+ mkDerivation {
+ pname = "leancheck";
+ version = "0.7.3";
+ sha256 = "0lvyf82qsiprvhk40870c6pz13z9fv2qml1cvvw3ryc7y8xh89v9";
+ libraryHaskellDepends = [ base template-haskell ];
+ testHaskellDepends = [ base ];
+ description = "Enumerative property-based testing";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"leankit-api" = callPackage
({ mkDerivation, aeson, base, bytestring, colour, curl, split }:
mkDerivation {
@@ -132329,8 +132701,8 @@ self: {
({ mkDerivation, base, containers, doctest, hedgehog }:
mkDerivation {
pname = "loc";
- version = "0.1.3.2";
- sha256 = "1p8df8jyddma3mk54azgiqf6adlq0l4g00cjffdvx8bk30xnrank";
+ version = "0.1.3.3";
+ sha256 = "0vnnw8ix38r441czsgmcwn7iavvmy6v5c12qflhz0ah055ahl8xa";
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [ base containers doctest hedgehog ];
description = "Types representing line and column positions and ranges in text files";
@@ -132342,8 +132714,8 @@ self: {
({ mkDerivation, base, containers, hedgehog, loc }:
mkDerivation {
pname = "loc-test";
- version = "0.1.3.2";
- sha256 = "06yccmyxk7cvkxjra28ardxc61h6h59w0rw08d27llppfjh5bn01";
+ version = "0.1.3.3";
+ sha256 = "148nc6qy4afrw707kvq7k1052pfj717apsmr2b98x8w5xcc7f567";
libraryHaskellDepends = [ base containers hedgehog loc ];
description = "Test-related utilities related to the /loc/ package";
license = stdenv.lib.licenses.asl20;
@@ -134697,8 +135069,8 @@ self: {
}:
mkDerivation {
pname = "mackerel-client";
- version = "0.1.0";
- sha256 = "0x1i311281pswpcgwgjfhk4x2576h8ycg1i3ira29hyph1q0r7a0";
+ version = "0.2.0";
+ sha256 = "05x0c05h3k8c1qrxmmi4dlj1wxpmfqj6n3man5cqpqp0sxayxv9c";
libraryHaskellDepends = [
aeson base bytestring data-default directory filepath htoml
http-client http-client-tls http-types parsec split text
@@ -134764,8 +135136,8 @@ self: {
}:
mkDerivation {
pname = "madlang";
- version = "4.0.2.11";
- sha256 = "1s924yvbk89xsl0zlm1shpc942q6nzi7fqqki8mlhj3ymqrgsv1k";
+ version = "4.0.2.12";
+ sha256 = "0g3nciqjfqkhi6j5kcyp4zwrzbik3v9qrj0jpl374g4r1sw3piq9";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cli-setup ];
@@ -136592,6 +136964,8 @@ self: {
pname = "matrix";
version = "0.3.6.1";
sha256 = "0b1v17rc9q7ni44gkzp124kmc5d6xmlpiqvskgjrq54qpjinr5zs";
+ revision = "1";
+ editedCabalFile = "0iy0gdgg68ldhgm4lzvzl5pmzflx0r4brdbdkq75rkarm7cigawn";
libraryHaskellDepends = [
base deepseq loop primitive semigroups vector
];
@@ -138557,6 +138931,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "microlens-ghc_0_4_9_1" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, microlens
+ , transformers
+ }:
+ mkDerivation {
+ pname = "microlens-ghc";
+ version = "0.4.9.1";
+ sha256 = "03iwgg8zww9irv59l70c8yy7vzxir1zf66y12210xk91k5hq6jrj";
+ libraryHaskellDepends = [
+ array base bytestring containers microlens transformers
+ ];
+ description = "microlens + array, bytestring, containers, transformers";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"microlens-mtl" = callPackage
({ mkDerivation, base, microlens, mtl, transformers
, transformers-compat
@@ -138605,6 +138995,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "microlens-th_0_4_2_2" = callPackage
+ ({ mkDerivation, base, containers, microlens, template-haskell
+ , th-abstraction, transformers
+ }:
+ mkDerivation {
+ pname = "microlens-th";
+ version = "0.4.2.2";
+ sha256 = "02nj7lnl61yffi3c6wn341arxhld5r0vj6nzcb5zmqjhnqsv8c05";
+ libraryHaskellDepends = [
+ base containers microlens template-haskell th-abstraction
+ transformers
+ ];
+ testHaskellDepends = [ base microlens ];
+ description = "Automatic generation of record lenses for microlens";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"micrologger" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, hspec, lens
, text, text-format, time, transformers
@@ -139620,6 +140028,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "mixpanel-client" = callPackage
+ ({ mkDerivation, aeson, base, base64-bytestring, bytestring, hspec
+ , hspec-discover, http-client, http-client-tls, markdown-unlit
+ , servant, servant-client, string-conv, text, time
+ }:
+ mkDerivation {
+ pname = "mixpanel-client";
+ version = "0.1.0.0";
+ sha256 = "0m3l68b3mvpzsxr61rfvn89i5lym9yd3akvmwn001zdzqxk4l9v7";
+ libraryHaskellDepends = [
+ aeson base base64-bytestring bytestring http-client http-client-tls
+ servant servant-client string-conv text time
+ ];
+ testHaskellDepends = [
+ aeson base base64-bytestring bytestring hspec http-client
+ http-client-tls servant servant-client string-conv text time
+ ];
+ testToolDepends = [ hspec-discover markdown-unlit ];
+ description = "Mixpanel client";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"mkbndl" = callPackage
({ mkDerivation, base, directory, filepath, haskell98 }:
mkDerivation {
@@ -139730,8 +140160,8 @@ self: {
pname = "mmark";
version = "0.0.5.6";
sha256 = "0d0jxxj0b1jy9mym6389dmm6biiw8kzdh06zj2j0gsjczn2n60zw";
- revision = "5";
- editedCabalFile = "1m4l42g519hnzjaafsnbjcfr0nrf28x1lmc1kjh5swrg6qd3kf29";
+ revision = "6";
+ editedCabalFile = "13cn8nkqj0zl26rgs01rspb2mz6gq1a6ax3g5bygdphvwzraswc5";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base case-insensitive containers data-default-class deepseq
@@ -139945,33 +140375,6 @@ self: {
}) {};
"modern-uri" = 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.1.0";
- sha256 = "06lqkx91s0lvkamxxf070l990kh8g0c5f5yshh2lffjbk5zclnp6";
- revision = "5";
- editedCabalFile = "089smjciwx6iav6wqpxhwdzlm0d1jdmgcgjv0r2c4vqrwdd1wb4h";
- 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
- ];
- description = "Modern library for working with URIs";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "modern-uri_0_2_2_0" = callPackage
({ mkDerivation, base, bytestring, containers, contravariant
, criterion, deepseq, exceptions, hspec, hspec-discover
, hspec-megaparsec, megaparsec, mtl, profunctors, QuickCheck
@@ -139995,7 +140398,6 @@ self: {
];
description = "Modern library for working with URIs";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"modify-fasta" = callPackage
@@ -143363,17 +143765,6 @@ self: {
}) {};
"multipart" = callPackage
- ({ mkDerivation, base, bytestring, parsec }:
- mkDerivation {
- pname = "multipart";
- version = "0.1.2";
- sha256 = "0g04jhyw1ib1s7c9bcldyyn4n90qd9x7dmvic4vgq57bgcqgnhz5";
- libraryHaskellDepends = [ base bytestring parsec ];
- description = "HTTP multipart split out of the cgi package";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "multipart_0_1_3" = callPackage
({ mkDerivation, base, bytestring, parsec, stringsearch }:
mkDerivation {
pname = "multipart";
@@ -143382,7 +143773,6 @@ self: {
libraryHaskellDepends = [ base bytestring parsec stringsearch ];
description = "HTTP multipart split out of the cgi package";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"multipart-names" = callPackage
@@ -144251,8 +144641,8 @@ self: {
}:
mkDerivation {
pname = "mvc";
- version = "1.1.6";
- sha256 = "1n7mdyz781cr0mmfcrj8agx3zdd6qh7hlb98kd63bz9msri4zfrz";
+ version = "1.1.7";
+ sha256 = "1887z2im418rzkqin2mk7f839qgvv4snnxm2qzlcnym89hspz37w";
libraryHaskellDepends = [
async base contravariant foldl managed mmorph pipes
pipes-concurrency transformers
@@ -144941,11 +145331,11 @@ self: {
}) {};
"nakadi-client" = callPackage
- ({ mkDerivation, aeson, aeson-casing, async, async-timer, base
- , bytestring, classy-prelude, conduit, conduit-extra, containers
- , exceptions, fast-logger, hashable, http-client, http-client-tls
- , http-conduit, http-types, iso8601-time, lens, lens-aeson
- , lifted-async, monad-control, monad-logger, mtl, random, resourcet
+ ({ mkDerivation, aeson, aeson-casing, aeson-qq, async, async-timer
+ , base, bytestring, classy-prelude, conduit, conduit-extra
+ , containers, exceptions, fast-logger, hashable, http-client
+ , http-client-tls, http-conduit, http-types, iso8601-time, lens
+ , lens-aeson, monad-control, monad-logger, mtl, random, resourcet
, retry, safe-exceptions, say, scientific, split, stm, stm-chans
, stm-conduit, tasty, tasty-hunit, template-haskell, text, time
, transformers, transformers-base, unliftio, unliftio-core
@@ -144953,24 +145343,24 @@ self: {
}:
mkDerivation {
pname = "nakadi-client";
- version = "0.5.1.0";
- sha256 = "1g8jddskklbcirgb35b71lbgkm492rfhbx50kipi5wrnh0r4zh67";
+ version = "0.6.0.0";
+ sha256 = "15hcaccm25frzar2fwyrrhai9kpja7xdcpi2ibl6gf3drp6z65jy";
libraryHaskellDepends = [
- aeson aeson-casing async-timer base bytestring conduit
+ aeson aeson-casing async async-timer base bytestring conduit
conduit-extra containers exceptions hashable http-client
http-client-tls http-conduit http-types iso8601-time lens
monad-control monad-logger mtl resourcet retry safe-exceptions
- scientific split stm template-haskell text time transformers
- transformers-base unliftio unliftio-core unordered-containers uuid
- vector
+ scientific split stm stm-chans template-haskell text time
+ transformers transformers-base unliftio unliftio-core
+ unordered-containers uuid vector
];
testHaskellDepends = [
- aeson aeson-casing async async-timer base bytestring classy-prelude
- conduit conduit-extra containers exceptions fast-logger hashable
- http-client http-client-tls http-conduit http-types iso8601-time
- lens lens-aeson lifted-async monad-control monad-logger mtl random
- resourcet retry safe-exceptions say scientific split stm stm-chans
- stm-conduit tasty tasty-hunit template-haskell text time
+ aeson aeson-casing aeson-qq async async-timer base bytestring
+ classy-prelude conduit conduit-extra containers exceptions
+ fast-logger hashable http-client http-client-tls http-conduit
+ http-types iso8601-time lens lens-aeson monad-control monad-logger
+ mtl random resourcet retry safe-exceptions say scientific split stm
+ stm-chans stm-conduit tasty tasty-hunit template-haskell text time
transformers transformers-base unliftio unliftio-core
unordered-containers uuid vector wai warp
];
@@ -146459,8 +146849,8 @@ self: {
pname = "network";
version = "2.7.0.2";
sha256 = "1fsdcwz7w1g1gznr62a6za8jc2g8cq5asrcq2vc14x9plf31s2vf";
- revision = "1";
- editedCabalFile = "06pc3iybcn9dyvx7q3qh6cczalb0bfinbay8pjhcahg6mwvgf32s";
+ revision = "2";
+ editedCabalFile = "04h5wq6116brd2r3182g65crrbidn43wi43qz1n99gl042ydgf3w";
libraryHaskellDepends = [ base bytestring unix ];
testHaskellDepends = [
base bytestring directory doctest hspec HUnit
@@ -147879,23 +148269,23 @@ self: {
}) {};
"nirum" = callPackage
- ({ mkDerivation, base, blaze-html, blaze-markup, bytestring, cmark
- , containers, directory, email-validate, filepath, fsnotify
- , heterocephalus, hlint, hspec, hspec-core, hspec-meta, htoml
- , interpolatedstring-perl6, megaparsec, mtl, optparse-applicative
- , parsec, pretty, process, semigroups, semver, shakespeare, stm
- , string-qq, template-haskell, temporary, text, turtle
- , unordered-containers, uri
+ ({ mkDerivation, base, blaze-html, blaze-markup, bytestring
+ , cmark-gfm, containers, directory, email-validate, filepath
+ , fsnotify, heterocephalus, hlint, hspec, hspec-core, hspec-meta
+ , htoml, hxt, interpolatedstring-perl6, megaparsec, mtl
+ , optparse-applicative, parsec, pretty, process, semigroups, semver
+ , shakespeare, stm, string-qq, template-haskell, temporary, text
+ , turtle, unordered-containers, uri
}:
mkDerivation {
pname = "nirum";
- version = "0.3.3";
- sha256 = "0ilrhkfv1q2w49wsj27dssaavw8v5w77vyf2mynb5aam1yax3d3v";
+ version = "0.5.0";
+ sha256 = "1d754gn0ndfns4490ffiygiwqym8i8ikfabd5mf6yg86arimmvjc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base blaze-html blaze-markup bytestring cmark containers directory
- email-validate filepath fsnotify heterocephalus htoml
+ base blaze-html blaze-markup bytestring cmark-gfm containers
+ directory email-validate filepath fsnotify heterocephalus htoml
interpolatedstring-perl6 megaparsec mtl optparse-applicative parsec
pretty semver shakespeare stm template-haskell text
unordered-containers uri
@@ -147907,7 +148297,7 @@ self: {
];
testHaskellDepends = [
base blaze-html bytestring containers directory email-validate
- filepath hlint hspec hspec-core hspec-meta htoml
+ filepath hlint hspec hspec-core hspec-meta htoml hxt
interpolatedstring-perl6 megaparsec mtl parsec pretty process
semigroups semver string-qq temporary text turtle
unordered-containers
@@ -151508,6 +151898,28 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "opentok" = callPackage
+ ({ mkDerivation, aeson, aeson-casing, aeson-compat, base
+ , base-compat, base64-string, bytestring, containers, convertible
+ , either, hscolour, http-client, http-client-tls, http-conduit
+ , http-types, iproute, jose, lens, monad-time, SHA, strings, text
+ , time, transformers, unordered-containers, utf8-string, uuid
+ }:
+ mkDerivation {
+ pname = "opentok";
+ version = "0.0.4";
+ sha256 = "1wzl7ra1y3998kp54j9hpnv58kzk1ysx9qivi4fsg0psyvhqf17j";
+ libraryHaskellDepends = [
+ aeson aeson-casing aeson-compat base base-compat base64-string
+ bytestring containers convertible either hscolour http-client
+ http-client-tls http-conduit http-types iproute jose lens
+ monad-time SHA strings text time transformers unordered-containers
+ utf8-string uuid
+ ];
+ description = "An OpenTok SDK for Haskell";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"opentype" = callPackage
({ mkDerivation, base, binary, bytestring, containers, ghc
, microlens, microlens-th, mtl, pretty-hex, time
@@ -153026,6 +153438,8 @@ self: {
pname = "pandoc";
version = "2.2.1";
sha256 = "1dqin92w513l7whg5wdgrngnxsj5mb8gppfvn7kjgyv2pdgpy0zy";
+ revision = "1";
+ editedCabalFile = "16f2c7awxbs17xycl3z1x11h7gc7rfzvw7i3pslsn9nms7rz3s3v";
configureFlags = [ "-fhttps" "-f-trypandoc" ];
isLibrary = true;
isExecutable = true;
@@ -153211,22 +153625,22 @@ self: {
"pandoc-emphasize-code" = callPackage
({ mkDerivation, base, filepath, hashable, lucid, mtl, pandoc-types
- , process, tasty, tasty-discover, tasty-hspec, tasty-hunit, text
- , unordered-containers
+ , process, semigroups, tasty, tasty-discover, tasty-hspec
+ , tasty-hunit, text, unordered-containers
}:
mkDerivation {
pname = "pandoc-emphasize-code";
- version = "0.2.3";
- sha256 = "09jk13binvv6yqpdgkadx54npngn4vbg6z7k2q78cj4ypirbcpl0";
+ version = "0.2.4";
+ sha256 = "0fz0pkxx64d8bvrsg9s704mhhw9djq74x56dbv5w3y65nch8p3a5";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base filepath hashable lucid mtl pandoc-types process text
- unordered-containers
+ base filepath hashable lucid mtl pandoc-types process semigroups
+ text unordered-containers
];
executableHaskellDepends = [ base pandoc-types ];
testHaskellDepends = [
- base pandoc-types tasty tasty-discover tasty-hspec tasty-hunit
+ base pandoc-types tasty tasty-discover tasty-hspec tasty-hunit text
unordered-containers
];
testToolDepends = [ tasty-discover ];
@@ -155216,10 +155630,8 @@ self: {
({ mkDerivation, base, bytestring, path, safe-exceptions, text }:
mkDerivation {
pname = "path-text-utf8";
- version = "0.0.1.0";
- sha256 = "0z7k6wj4p9192blrxnnmq79km4f6sm8lagp01vznc1gmy1p0w4cg";
- revision = "1";
- editedCabalFile = "1m04dyqqamh9lkkmcbf2dg7ivd5kb2dxqh9b844lr7mk5qganar6";
+ version = "0.0.1.1";
+ sha256 = "0c572nkkanz9n862q87q5jfpmg17v6flhl4201i67r7fp5icihwr";
libraryHaskellDepends = [
base bytestring path safe-exceptions text
];
@@ -156896,6 +157308,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "persistent-mysql-haskell_0_4_2" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, conduit, containers
+ , io-streams, monad-logger, mysql-haskell, network, persistent
+ , persistent-template, resource-pool, resourcet, text, time, tls
+ , transformers, unliftio-core
+ }:
+ mkDerivation {
+ pname = "persistent-mysql-haskell";
+ version = "0.4.2";
+ sha256 = "012vnfxjqlp352jm5s8glvypgyjligsqfrhb3y0kpzvxlsw4a653";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring conduit containers io-streams monad-logger
+ mysql-haskell network persistent resource-pool resourcet text time
+ tls transformers unliftio-core
+ ];
+ executableHaskellDepends = [
+ base monad-logger persistent persistent-template transformers
+ ];
+ description = "A pure haskell backend for the persistent library using MySQL database server";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"persistent-odbc" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit, containers
, convertible, HDBC, HDBC-odbc, monad-control, monad-logger
@@ -157096,6 +157533,35 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {inherit (pkgs) sqlite;};
+ "persistent-sqlite_2_8_2" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, conduit, containers
+ , hspec, microlens-th, monad-logger, old-locale, persistent
+ , persistent-template, resource-pool, resourcet, sqlite, temporary
+ , text, time, transformers, unliftio-core, unordered-containers
+ }:
+ mkDerivation {
+ pname = "persistent-sqlite";
+ version = "2.8.2";
+ sha256 = "1chbmvjz46smhgnzhha3bbkhys3fys6dip1jr4v7xp1jf78zbyp6";
+ configureFlags = [ "-fsystemlib" ];
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring conduit containers microlens-th monad-logger
+ old-locale persistent resource-pool resourcet text time
+ transformers unliftio-core unordered-containers
+ ];
+ librarySystemDepends = [ sqlite ];
+ testHaskellDepends = [
+ base hspec persistent persistent-template temporary text time
+ transformers
+ ];
+ description = "Backend for the persistent library using sqlite3";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ maintainers = with stdenv.lib.maintainers; [ psibi ];
+ }) {inherit (pkgs) sqlite;};
+
"persistent-template" = callPackage
({ mkDerivation, aeson, aeson-compat, base, bytestring, containers
, ghc-prim, hspec, http-api-data, monad-control, monad-logger
@@ -160331,8 +160797,8 @@ self: {
}:
mkDerivation {
pname = "pointfree-fancy";
- version = "1.1.1.8";
- sha256 = "16n1yzjnfhwkdps8lcjhpnrmbbrvw2n6qsi90vzjxswkwsvp4hi3";
+ version = "1.1.1.11";
+ sha256 = "0kxk9kxqlxl0j1cq5jvcsgcfggc3xz0qi7a1qw6w1l83gs2vjjrk";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -161626,9 +162092,9 @@ self: {
"postgresql-query" = callPackage
({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
- , containers, data-default, derive, exceptions, file-embed
- , haskell-src-meta, hreader, hset, inflections, monad-control
- , monad-logger, mtl, postgresql-simple, QuickCheck
+ , containers, data-default, exceptions, file-embed
+ , generic-arbitrary, haskell-src-meta, hreader, hset, inflections
+ , monad-control, monad-logger, mtl, postgresql-simple, QuickCheck
, quickcheck-assertions, quickcheck-instances, resource-pool
, semigroups, tasty, tasty-hunit, tasty-quickcheck, tasty-th
, template-haskell, text, th-lift, th-lift-instances, time
@@ -161636,8 +162102,8 @@ self: {
}:
mkDerivation {
pname = "postgresql-query";
- version = "3.4.0";
- sha256 = "1f69rjwhww6knivk8gkx82b8xp8hkg0mhb9z2lm69vv3k5fxv8mb";
+ version = "3.5.0";
+ sha256 = "1sh8kgfqy1kipz99v74xkxzfggbxxjq2gwswa94m1spy6r7k7avp";
libraryHaskellDepends = [
aeson attoparsec base blaze-builder bytestring containers
data-default exceptions file-embed haskell-src-meta hreader hset
@@ -161647,7 +162113,7 @@ self: {
transformers-compat type-fun
];
testHaskellDepends = [
- attoparsec base derive postgresql-simple QuickCheck
+ attoparsec base generic-arbitrary postgresql-simple QuickCheck
quickcheck-assertions quickcheck-instances tasty tasty-hunit
tasty-quickcheck tasty-th text time
];
@@ -161912,43 +162378,44 @@ self: {
}) {};
"postgrest" = callPackage
- ({ mkDerivation, aeson, aeson-qq, ansi-wl-pprint, async, base
- , base64-bytestring, bytestring, case-insensitive, cassava
- , configurator-ng, containers, contravariant, cookie, either
- , gitrev, hasql, hasql-pool, hasql-transaction, heredoc
- , hjsonschema, hspec, hspec-wai, hspec-wai-json, HTTP, http-types
+ ({ mkDerivation, aeson, aeson-qq, ansi-wl-pprint, async
+ , auto-update, base, base64-bytestring, bytestring
+ , case-insensitive, cassava, configurator-ng, containers
+ , contravariant, contravariant-extras, 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
- , scientific, swagger2, text, transformers-base, unix
+ , scientific, swagger2, text, time, transformers-base, unix
, unordered-containers, vector, wai, wai-cors, wai-extra
, wai-middleware-static, warp
}:
mkDerivation {
pname = "postgrest";
- version = "0.4.4.0";
- sha256 = "1dj0gzwjq5psxqmjx0jhbvwa0jlf52dvsbdmbx6ry0yqhsa0yvjr";
+ version = "0.5.0.0";
+ sha256 = "1sixscxpx6dl7hj87yk6zz4a8rg4qwlcchqrxxg1m0gjhln0aqx3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson ansi-wl-pprint base base64-bytestring bytestring
case-insensitive cassava configurator-ng containers contravariant
- 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
+ contravariant-extras 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 time unordered-containers vector wai
+ wai-cors wai-extra wai-middleware-static
];
executableHaskellDepends = [
- base base64-bytestring bytestring hasql hasql-pool protolude retry
- text unix warp
+ auto-update base base64-bytestring bytestring hasql hasql-pool
+ protolude retry text time unix warp
];
testHaskellDepends = [
- aeson aeson-qq async base base64-bytestring bytestring
+ aeson aeson-qq async auto-update base base64-bytestring bytestring
case-insensitive cassava containers contravariant hasql hasql-pool
heredoc hjsonschema hspec hspec-wai hspec-wai-json http-types lens
- lens-aeson monad-control process protolude regex-tdfa
+ lens-aeson monad-control process protolude regex-tdfa time
transformers-base wai wai-extra
];
description = "REST API for any Postgres database";
@@ -162084,8 +162551,8 @@ self: {
({ mkDerivation, potoki-core }:
mkDerivation {
pname = "potoki";
- version = "2.0.5";
- sha256 = "1ik30rjpz5hr0n83nq0xdc381lrwir7z1iqcjmlwp3zan9hrnbk2";
+ version = "2.0.6";
+ sha256 = "1gjjs03kpvq544pada5a1r9vjv3dwiqkkgp7hb6ync41mpwvhssl";
libraryHaskellDepends = [ potoki-core ];
description = "Simple streaming in IO";
license = stdenv.lib.licenses.mit;
@@ -162124,8 +162591,8 @@ self: {
}:
mkDerivation {
pname = "potoki-core";
- version = "2.2.7";
- sha256 = "0pb20brgfc427gig317iyq6ln9z565aqanfm3cmkvgrzbvl9gf9q";
+ version = "2.2.8.2";
+ sha256 = "11d75dm2y1fw5kzbkf5vx55b0xa2sn1picbykfl6zypqbqmpa86g";
libraryHaskellDepends = [
acquire attoparsec base bytestring directory foldl hashable
primitive profunctors ptr scanner stm text transformers
@@ -162793,8 +163260,8 @@ self: {
({ mkDerivation, base, containers }:
mkDerivation {
pname = "preludeplus";
- version = "0.1.0.3";
- sha256 = "0fbxydbkf8j7v0gb6an5p1phd637xpzipiyq4nwlzdlpkdbpkaav";
+ version = "0.1.0.5";
+ sha256 = "08sxfgr8xh0rbg9nv3k93970mjcqgjyv1qy0kmwksl11fsih6sr3";
libraryHaskellDepends = [ base containers ];
description = "Generalizes List functions and replaces partials with NonEmpty equivalents";
license = stdenv.lib.licenses.bsd3;
@@ -163323,6 +163790,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "prim-instances" = callPackage
+ ({ mkDerivation, base, base-orphans, primitive, QuickCheck
+ , quickcheck-classes, quickcheck-instances, tasty, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "prim-instances";
+ version = "0.1.0.0";
+ sha256 = "1l2dvq5mrbxghzrcfd1ik49lzfvly3bq15jrmn1hilvjrsscx7nf";
+ libraryHaskellDepends = [ base primitive ];
+ testHaskellDepends = [
+ base base-orphans primitive QuickCheck quickcheck-classes
+ quickcheck-instances tasty tasty-quickcheck
+ ];
+ description = "prim typeclass instances";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"prim-ref" = callPackage
({ mkDerivation, base, ghc-prim, primitive, semigroups }:
mkDerivation {
@@ -164164,6 +164648,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "product-isomorphic_0_0_3_3" = callPackage
+ ({ mkDerivation, base, template-haskell, th-data-compat }:
+ mkDerivation {
+ pname = "product-isomorphic";
+ version = "0.0.3.3";
+ sha256 = "1fy1a7xvnz47120z7vq5hrdllgard7cd1whkwwmgpwdsmhn3my8y";
+ libraryHaskellDepends = [ base template-haskell th-data-compat ];
+ testHaskellDepends = [ base template-haskell ];
+ description = "Weaken applicative functor on products";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"product-profunctors" = callPackage
({ mkDerivation, base, bifunctors, contravariant, criterion
, deepseq, profunctors, tagged, template-haskell
@@ -164591,20 +165088,20 @@ self: {
({ mkDerivation, base, bifunctors, binary, comonad, cond, container
, convert, data-default, deepseq, deriving-compat, either, errors
, exceptions, functor-utils, ghc-prim, impossible, lens, lens-utils
- , monoid, mtl, neat-interpolation, placeholders, pointed
+ , monoid, mtl, neat-interpolation, placeholders, pointed, pretty
, pretty-show, primitive, raw-strings-qq, recursion-schemes
, semigroupoids, string-qq, template-haskell, text, transformers
, transformers-base, typelevel, vector
}:
mkDerivation {
pname = "prologue";
- version = "3.2.3";
- sha256 = "1a69283vmxr3ksak6b8hb8ys52gi5r7f1d59l32xfq1ilaswxxwm";
+ version = "3.2.4";
+ sha256 = "0smh3g9k2l4ic9gh1i7aq541nnacipvvc9c0v04xq5rk0rzrswmv";
libraryHaskellDepends = [
base bifunctors binary comonad cond container convert data-default
deepseq deriving-compat either errors exceptions functor-utils
ghc-prim impossible lens lens-utils monoid mtl neat-interpolation
- placeholders pointed pretty-show primitive raw-strings-qq
+ placeholders pointed pretty pretty-show primitive raw-strings-qq
recursion-schemes semigroupoids string-qq template-haskell text
transformers transformers-base typelevel vector
];
@@ -164764,14 +165261,16 @@ self: {
}) {};
"pronounce" = callPackage
- ({ mkDerivation, base, binary, containers, filepath, mtl, text }:
+ ({ mkDerivation, base, binary, containers, filepath, mtl, safe
+ , text
+ }:
mkDerivation {
pname = "pronounce";
- version = "1.1.0.3";
- sha256 = "1agxmm426v8520vbw8maibrsa3qpzf8h8x3i61fk2fflyb45yx8z";
+ version = "1.2.0.0";
+ sha256 = "10jhkgawgzddqgw1m8hfhzb35szmxy5smy0bapm5vjmqc90b6zw9";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- base binary containers filepath mtl text
+ base binary containers filepath mtl safe text
];
description = "A library for interfacing with the CMU Pronouncing Dictionary";
license = stdenv.lib.licenses.bsd3;
@@ -164986,6 +165485,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "proto-lens-arbitrary_0_1_2_2" = callPackage
+ ({ mkDerivation, base, bytestring, containers, lens-family
+ , proto-lens, QuickCheck, text
+ }:
+ mkDerivation {
+ pname = "proto-lens-arbitrary";
+ version = "0.1.2.2";
+ sha256 = "128r7g82yx4rs38yd9s4bwcpyiqm5yr4lyci3z88bhqsvkn4438i";
+ libraryHaskellDepends = [
+ base bytestring containers lens-family proto-lens QuickCheck text
+ ];
+ description = "Arbitrary instances for proto-lens";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"proto-lens-combinators" = callPackage
({ mkDerivation, base, Cabal, data-default-class, HUnit
, lens-family, lens-family-core, proto-lens, proto-lens-protoc
@@ -165008,6 +165523,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "proto-lens-combinators_0_1_0_11" = callPackage
+ ({ mkDerivation, base, Cabal, data-default-class, HUnit
+ , lens-family, lens-family-core, proto-lens, proto-lens-protoc
+ , test-framework, test-framework-hunit, transformers
+ }:
+ mkDerivation {
+ pname = "proto-lens-combinators";
+ version = "0.1.0.11";
+ sha256 = "1i2rbvhdvglqg6b4iwr5a0pk7iq78nap491bqg77y4dwd45ipcpb";
+ setupHaskellDepends = [ base Cabal proto-lens-protoc ];
+ libraryHaskellDepends = [
+ base data-default-class lens-family proto-lens-protoc transformers
+ ];
+ testHaskellDepends = [
+ base HUnit lens-family lens-family-core proto-lens
+ proto-lens-protoc test-framework test-framework-hunit
+ ];
+ description = "Utilities functions to proto-lens";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"proto-lens-descriptors" = callPackage
({ mkDerivation, base, bytestring, containers, data-default-class
, lens-family, lens-labels, proto-lens, text
@@ -165038,6 +165575,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "proto-lens-optparse_0_1_1_2" = callPackage
+ ({ mkDerivation, base, optparse-applicative, proto-lens, text }:
+ mkDerivation {
+ pname = "proto-lens-optparse";
+ version = "0.1.1.2";
+ sha256 = "1hagdb7m3wqv6w8m0aaf8cfsj4lryqighj2ah5qpmi8hspy1mg55";
+ libraryHaskellDepends = [
+ base optparse-applicative proto-lens text
+ ];
+ description = "Adapting proto-lens to optparse-applicative ReadMs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"proto-lens-protobuf-types_0_2_2_0" = callPackage
({ mkDerivation, base, Cabal, lens-family, proto-lens
, proto-lens-protoc, protobuf, text
@@ -165073,6 +165624,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) protobuf;};
+ "proto-lens-protobuf-types_0_3_0_2" = callPackage
+ ({ mkDerivation, base, Cabal, lens-labels, proto-lens
+ , proto-lens-protoc, protobuf, text
+ }:
+ mkDerivation {
+ pname = "proto-lens-protobuf-types";
+ version = "0.3.0.2";
+ sha256 = "0vslpjrhvkyz10g4fg1fbfkqggg7x0jd3vp68419aflgk293pgsx";
+ setupHaskellDepends = [ base Cabal proto-lens-protoc ];
+ libraryHaskellDepends = [
+ base lens-labels proto-lens proto-lens-protoc text
+ ];
+ libraryToolDepends = [ protobuf ];
+ description = "Basic protocol buffer message types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) protobuf;};
+
"proto-lens-protoc_0_2_2_3" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers
, data-default-class, directory, filepath, haskell-src-exts
@@ -165126,6 +165695,33 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) protobuf;};
+ "proto-lens-protoc_0_3_1_2" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers
+ , data-default-class, deepseq, directory, filepath
+ , haskell-src-exts, lens-family, lens-labels, pretty, process
+ , proto-lens, protobuf, temporary, text
+ }:
+ mkDerivation {
+ pname = "proto-lens-protoc";
+ version = "0.3.1.2";
+ sha256 = "15qypl2z5mccmxhq2bl86frzdalpcnsjiw6vypvnr6gxlr7mwhm7";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring Cabal containers data-default-class deepseq
+ directory filepath haskell-src-exts lens-family lens-labels pretty
+ process proto-lens temporary text
+ ];
+ libraryToolDepends = [ protobuf ];
+ executableHaskellDepends = [
+ base bytestring containers data-default-class deepseq filepath
+ haskell-src-exts lens-family proto-lens text
+ ];
+ description = "Protocol buffer compiler for the proto-lens library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) protobuf;};
+
"protobuf" = callPackage
({ mkDerivation, base, base-orphans, bytestring, cereal, containers
, data-binary-ieee754, deepseq, hex, HUnit, mtl, QuickCheck, tagged
@@ -165276,6 +165872,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "protocol-radius_0_0_1_1" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, containers, cryptonite
+ , dlist, memory, template-haskell, text, transformers
+ }:
+ mkDerivation {
+ pname = "protocol-radius";
+ version = "0.0.1.1";
+ sha256 = "0cd1qr5c2s25136lljqj2xfl8anrrc6m1yf8dpscjil2y4r27629";
+ libraryHaskellDepends = [
+ base bytestring cereal containers cryptonite dlist memory
+ template-haskell text transformers
+ ];
+ description = "parser and printer for radius protocol packet";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"protocol-radius-test" = callPackage
({ mkDerivation, base, bytestring, cereal, containers
, protocol-radius, QuickCheck, quickcheck-simple, transformers
@@ -165632,6 +166245,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "publicsuffix_0_20180825" = callPackage
+ ({ mkDerivation, base, criterion, filepath, hspec, random
+ , template-haskell
+ }:
+ mkDerivation {
+ pname = "publicsuffix";
+ version = "0.20180825";
+ sha256 = "0wyni1f9v647zb7hg70da4s30dplv6whywd0jwghph1vqdlzlbma";
+ libraryHaskellDepends = [ base filepath template-haskell ];
+ testHaskellDepends = [ base hspec ];
+ benchmarkHaskellDepends = [ base criterion random ];
+ 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
@@ -166145,13 +166774,26 @@ self: {
}) {};
"purescript-iso" = callPackage
- ({ mkDerivation, aeson, base, QuickCheck }:
+ ({ mkDerivation, aeson, async, attoparsec-uri, base, bytestring
+ , containers, monad-control, mtl, QuickCheck, quickcheck-instances
+ , stm, strict, tasty, tasty-quickcheck, text, time, utf8-string
+ , uuid, zeromq4-haskell, zeromq4-simple
+ }:
mkDerivation {
pname = "purescript-iso";
- version = "0.0.0";
- sha256 = "1vjq778l24waa24br59d3j4wdc3ajw1vk1fbi222vvkqvmcx5x9h";
- libraryHaskellDepends = [ aeson base QuickCheck ];
- testHaskellDepends = [ aeson base QuickCheck ];
+ version = "0.0.1.2";
+ sha256 = "0mlrj4q40d71r61lc5h9a7wfycmj1kgn6appaqbffrdjz64hmrfh";
+ libraryHaskellDepends = [
+ aeson async attoparsec-uri base bytestring containers monad-control
+ mtl QuickCheck quickcheck-instances stm strict text time
+ utf8-string uuid zeromq4-haskell zeromq4-simple
+ ];
+ testHaskellDepends = [
+ aeson async attoparsec-uri base bytestring containers monad-control
+ mtl QuickCheck quickcheck-instances stm strict tasty
+ tasty-quickcheck text time utf8-string uuid zeromq4-haskell
+ zeromq4-simple
+ ];
description = "Isomorphic trivial data type definitions over JSON";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -167660,21 +168302,32 @@ self: {
}) {};
"quickcheck-state-machine" = callPackage
- ({ mkDerivation, ansi-wl-pprint, async, base, containers
- , lifted-async, lifted-base, monad-control, mtl, QuickCheck
- , quickcheck-with-counterexamples, random, stm, template-haskell
- , th-abstraction
+ ({ mkDerivation, ansi-wl-pprint, async, base, bytestring
+ , containers, directory, exceptions, filelock, filepath
+ , http-client, lifted-async, lifted-base, matrix, monad-control
+ , monad-logger, mtl, network, persistent, persistent-postgresql
+ , persistent-template, pretty-show, process, QuickCheck
+ , quickcheck-instances, random, resourcet, servant, servant-client
+ , servant-server, split, stm, strict, string-conversions, tasty
+ , tasty-quickcheck, text, tree-diff, vector, wai, warp
}:
mkDerivation {
pname = "quickcheck-state-machine";
- version = "0.3.1";
- sha256 = "141rs0m67p830n2v30jkpvbqpygqc7i8cka9c9bbycxnwdax5jj4";
+ version = "0.4.0";
+ sha256 = "1dzkqpl873hj2by15hlkf61x6a7fjzkhl6h4cwhg9krj2bh2lv5q";
libraryHaskellDepends = [
- ansi-wl-pprint async base containers lifted-async lifted-base
- monad-control mtl QuickCheck quickcheck-with-counterexamples random
- stm template-haskell th-abstraction
+ ansi-wl-pprint async base containers exceptions lifted-async
+ lifted-base matrix monad-control mtl pretty-show QuickCheck random
+ split stm tree-diff vector
+ ];
+ testHaskellDepends = [
+ base bytestring directory filelock filepath http-client
+ lifted-async matrix monad-control monad-logger mtl network
+ persistent persistent-postgresql persistent-template process
+ QuickCheck quickcheck-instances random resourcet servant
+ servant-client servant-server strict string-conversions tasty
+ tasty-quickcheck text tree-diff vector wai warp
];
- testHaskellDepends = [ base ];
description = "Test monadic programs using state machine based models";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -168294,6 +168947,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "radix-tree" = callPackage
+ ({ mkDerivation, base, bytestring, containers, deepseq, gauge
+ , hashtables, HUnit, primitive, QuickCheck, tasty, tasty-hunit
+ , tasty-quickcheck, text, unordered-containers
+ }:
+ mkDerivation {
+ pname = "radix-tree";
+ version = "0.1";
+ sha256 = "0hdlj97gzqb5rgyj5ybb4kki9b6xrlavcbz7i9w8q81vwjyv8cka";
+ libraryHaskellDepends = [
+ base bytestring containers deepseq primitive
+ ];
+ testHaskellDepends = [
+ base bytestring containers HUnit QuickCheck tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring containers deepseq gauge hashtables text
+ unordered-containers
+ ];
+ description = "Radix tree data structive over short byte-strings";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"radixtree" = callPackage
({ mkDerivation, attoparsec, base, containers, criterion, deepseq
, microlens, mtl, parsers, QuasiText, smallcheck, store, tasty
@@ -169053,6 +169730,8 @@ self: {
pname = "rank1dynamic";
version = "0.4.0";
sha256 = "07dbfp0sc32q1p8xh4ap8m3b287r9hh4r8vfsrppdm5pabz4nhiw";
+ revision = "1";
+ editedCabalFile = "1idh1iz15pzdhrhy19584i9ahz41ijbmf56wbb2wns2kipy6w9lr";
libraryHaskellDepends = [ base binary ];
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
@@ -169982,8 +170661,8 @@ self: {
}:
mkDerivation {
pname = "reactive-banana-automation";
- version = "0.5.0";
- sha256 = "10lg4s6c29xb1j9icda1aywh64ybnk7d3hw3wl69rcwlqp52635a";
+ version = "0.5.1";
+ sha256 = "0wflw7rpknjj6qpf2ma1cxd03xg5v25rmfrmnli472h55jdcwdnz";
libraryHaskellDepends = [
base reactive-banana stm time transformers
];
@@ -170528,6 +171207,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "record-encode" = callPackage
+ ({ mkDerivation, base, generics-sop, hspec, QuickCheck, vector }:
+ mkDerivation {
+ pname = "record-encode";
+ version = "0.2.2";
+ sha256 = "1wdrvj2ilf5kqchfcfd3pnqgprc86fri7ajc5r0xqf6zc61s1fgk";
+ libraryHaskellDepends = [ base generics-sop vector ];
+ testHaskellDepends = [ base generics-sop hspec QuickCheck vector ];
+ description = "Generic encoding of records";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"record-gl" = callPackage
({ mkDerivation, base, base-prelude, containers, GLUtil, HUnit
, linear, OpenGL, record, tagged, template-haskell, test-framework
@@ -170648,8 +171339,8 @@ self: {
({ mkDerivation, base, composition-prelude }:
mkDerivation {
pname = "recursion";
- version = "1.1.0.0";
- sha256 = "02ibnagyll2zgr4v472rbmaj9vsp1amvhvd9pvd8d76nj99xwr9j";
+ version = "1.2.0.1";
+ sha256 = "1j36fyyfml7i0dxxfammaaqmg6yg1whdar1ffsvpkjg4b8lkxlr4";
libraryHaskellDepends = [ base composition-prelude ];
description = "A recursion schemes library for GHC";
license = stdenv.lib.licenses.bsd3;
@@ -172624,6 +173315,8 @@ self: {
pname = "relude";
version = "0.1.1";
sha256 = "034hldd9rsqqhhxmnpfabh6v2by47qc5kx1qv77bl8k73fybf9a0";
+ revision = "1";
+ editedCabalFile = "18vil2wa8xzpf0y5r5zdfylsqmphlappzc7a2ac9lmxngfkbzwyc";
libraryHaskellDepends = [
base bytestring containers deepseq ghc-prim hashable mtl stm text
transformers unordered-containers utf8-string
@@ -172649,6 +173342,8 @@ self: {
pname = "relude";
version = "0.2.0";
sha256 = "097kiflrwvkb3mxpkydh6a6x84azv4xla9nlm5qscacl4kn5z3q5";
+ revision = "1";
+ editedCabalFile = "10zqh8j0k7q6l5ag009c432has7zpwbi57drr12dpyqa1ldrk6h0";
libraryHaskellDepends = [
base bytestring containers deepseq ghc-prim hashable mtl stm text
transformers unordered-containers utf8-string
@@ -174321,26 +175016,6 @@ self: {
}) {};
"retry" = callPackage
- ({ mkDerivation, base, data-default-class, exceptions, ghc-prim
- , hedgehog, HUnit, mtl, random, stm, tasty, tasty-hedgehog
- , tasty-hunit, time, transformers
- }:
- mkDerivation {
- pname = "retry";
- version = "0.7.6.2";
- sha256 = "0bmrp2h6pf43hr7sd6562qixw755h2xgszj700157pk2hxcz16ad";
- libraryHaskellDepends = [
- base data-default-class exceptions ghc-prim random transformers
- ];
- testHaskellDepends = [
- base data-default-class exceptions ghc-prim hedgehog HUnit mtl
- random stm tasty tasty-hedgehog tasty-hunit time transformers
- ];
- description = "Retry combinators for monadic actions that may fail";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "retry_0_7_6_3" = callPackage
({ mkDerivation, base, data-default-class, exceptions, ghc-prim
, hedgehog, HUnit, mtl, random, stm, tasty, tasty-hedgehog
, tasty-hunit, time, transformers
@@ -174358,7 +175033,6 @@ self: {
];
description = "Retry combinators for monadic actions that may fail";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"retryer" = callPackage
@@ -174731,13 +175405,13 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "rhine_0_4_0_3" = callPackage
+ "rhine_0_4_0_4" = callPackage
({ mkDerivation, base, containers, dunai, free, time, transformers
}:
mkDerivation {
pname = "rhine";
- version = "0.4.0.3";
- sha256 = "1s88dga75c835ixw1j59chswiv512sdwwg09p0r5jgsl8lqjp6h7";
+ version = "0.4.0.4";
+ sha256 = "00s2rsj3h7wamlrh2p7a600pwqlrrishxy2q2f6av0pzyc8dkc89";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -174753,8 +175427,8 @@ self: {
({ mkDerivation, base, dunai, gloss, rhine }:
mkDerivation {
pname = "rhine-gloss";
- version = "0.4.0.1";
- sha256 = "054f7x6d2gi3ph9iw5fs8qxyl2jwv8q93794zhdkcnyz15371piq";
+ version = "0.4.0.4";
+ sha256 = "0xbmqhznacmxvcrx1gaq4cy6f98fb2p4f07g16qp50zhs9mb2a63";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base dunai gloss rhine ];
@@ -177055,6 +177729,113 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "safe-money_0_7" = callPackage
+ ({ mkDerivation, base, binary, bytestring, constraints, deepseq
+ , hashable, QuickCheck, tasty, tasty-hunit, tasty-quickcheck, text
+ , vector-space
+ }:
+ mkDerivation {
+ pname = "safe-money";
+ version = "0.7";
+ sha256 = "1cwha4s0dckdb7xrh1snxrismzr5gq586l9vmih9gmy2nrrw69y9";
+ libraryHaskellDepends = [
+ base binary constraints deepseq hashable QuickCheck text
+ vector-space
+ ];
+ testHaskellDepends = [
+ base binary bytestring constraints deepseq hashable tasty
+ tasty-hunit tasty-quickcheck text vector-space
+ ];
+ description = "Type-safe and lossless encoding and manipulation of money, fiat currencies, crypto currencies and precious metals";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "safe-money-aeson" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, safe-money, tasty
+ , tasty-hunit, tasty-quickcheck, text
+ }:
+ mkDerivation {
+ pname = "safe-money-aeson";
+ version = "0.1";
+ sha256 = "0qifhkyjgxfnfmbmysc4ma3hvyi2l0c238c75wlf5x1hz8q1ka8p";
+ libraryHaskellDepends = [ aeson base safe-money text ];
+ testHaskellDepends = [
+ aeson base bytestring safe-money tasty tasty-hunit tasty-quickcheck
+ text
+ ];
+ description = "Instances from the aeson library for the safe-money library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "safe-money-cereal" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, safe-money, tasty
+ , tasty-hunit, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "safe-money-cereal";
+ version = "0.1";
+ sha256 = "02bzl1r4vymnb0xyagzrcgb2kxr892wivyasp7dkn41shgafaqzb";
+ libraryHaskellDepends = [ base cereal safe-money ];
+ testHaskellDepends = [
+ base bytestring cereal safe-money tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ description = "Instances from the cereal library for the safe-money library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "safe-money-serialise" = callPackage
+ ({ mkDerivation, base, bytestring, safe-money, serialise, tasty
+ , tasty-hunit, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "safe-money-serialise";
+ version = "0.1";
+ sha256 = "16h8yf622szzc3v5xa2s7fsjaxk7cx9hqngjn796sdcg681g7xf5";
+ libraryHaskellDepends = [ base bytestring safe-money serialise ];
+ testHaskellDepends = [
+ base bytestring safe-money serialise tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ description = "Instances from the serialise library for the safe-money library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "safe-money-store" = callPackage
+ ({ mkDerivation, base, bytestring, safe-money, store, tasty
+ , tasty-hunit, tasty-quickcheck, text
+ }:
+ mkDerivation {
+ pname = "safe-money-store";
+ version = "0.1";
+ sha256 = "0hbqichsmxd3xw1abcdyyyg1rrzfkfmywgj47f4yv6pmmvihrkh8";
+ libraryHaskellDepends = [ base bytestring safe-money store ];
+ testHaskellDepends = [
+ base bytestring safe-money store tasty tasty-hunit tasty-quickcheck
+ text
+ ];
+ description = "Instances from the store library for the safe-money library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "safe-money-xmlbf" = callPackage
+ ({ mkDerivation, base, bytestring, safe-money, tasty, tasty-hunit
+ , tasty-quickcheck, text, xmlbf
+ }:
+ mkDerivation {
+ pname = "safe-money-xmlbf";
+ version = "0.1";
+ sha256 = "022mcl1gwvwjpjv56938bpklc15r9m6xvsyjhxmnb6d8apjzhpxk";
+ libraryHaskellDepends = [ base safe-money text xmlbf ];
+ testHaskellDepends = [
+ base bytestring safe-money tasty tasty-hunit tasty-quickcheck text
+ xmlbf
+ ];
+ description = "Instances from the xmlbf library for the safe-money library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"safe-plugins" = callPackage
({ mkDerivation, base, directory, filepath, haskell-src-exts
, plugins, Unixutils
@@ -177115,15 +177896,16 @@ self: {
"safecopy-migrate" = callPackage
({ mkDerivation, base, base-prelude, cereal, containers, extra
- , haskell-src-meta, microlens, safecopy, template-haskell, uniplate
+ , haskell-src-meta, microlens, safecopy, template-haskell
+ , th-abstraction, uniplate
}:
mkDerivation {
pname = "safecopy-migrate";
- version = "0.1.0.0";
- sha256 = "1bs41w8zkgsidns68xv4finsnwici6wrfc6xiy9vk0la96i4wcv5";
+ version = "0.2.0";
+ sha256 = "14v1zg78v16gs3m4wch134z8qi7bgiadq9f7mvk8vrhajcipjz2a";
libraryHaskellDepends = [
base base-prelude cereal containers extra haskell-src-meta
- microlens safecopy template-haskell uniplate
+ microlens safecopy template-haskell th-abstraction uniplate
];
description = "Making SafeCopy migrations easier";
license = stdenv.lib.licenses.publicDomain;
@@ -177883,23 +178665,6 @@ self: {
}) {};
"say" = callPackage
- ({ mkDerivation, base, bytestring, criterion, hspec, temporary
- , text, transformers
- }:
- mkDerivation {
- pname = "say";
- version = "0.1.0.0";
- sha256 = "0h7w49v9manw7yml2bms11sf6znsfkmdr87c7d8ax8l1xnadnvzj";
- libraryHaskellDepends = [ base bytestring text transformers ];
- testHaskellDepends = [ base bytestring hspec temporary text ];
- benchmarkHaskellDepends = [
- base bytestring criterion temporary text
- ];
- description = "Initial project template from stack";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "say_0_1_0_1" = callPackage
({ mkDerivation, base, bytestring, gauge, hspec, text, transformers
, unliftio
}:
@@ -177916,7 +178681,6 @@ self: {
];
description = "Send textual messages to a Handle in a thread-friendly way";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sbp" = callPackage
@@ -177945,6 +178709,33 @@ self: {
license = stdenv.lib.licenses.lgpl3;
}) {};
+ "sbp_2_4_0" = callPackage
+ ({ mkDerivation, aeson, array, base, base64-bytestring
+ , basic-prelude, binary, binary-conduit, bytestring, conduit
+ , conduit-extra, data-binary-ieee754, lens, lens-aeson, monad-loops
+ , resourcet, tasty, tasty-hunit, template-haskell, text, time, yaml
+ }:
+ mkDerivation {
+ pname = "sbp";
+ version = "2.4.0";
+ sha256 = "13g14lj3ihn55v3cf40hzhp8ypzrl9a6lzarlsmqhr76g6szlpg8";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson array base base64-bytestring basic-prelude binary bytestring
+ data-binary-ieee754 lens lens-aeson monad-loops template-haskell
+ text
+ ];
+ executableHaskellDepends = [
+ aeson base basic-prelude binary-conduit bytestring conduit
+ conduit-extra resourcet time yaml
+ ];
+ testHaskellDepends = [ base basic-prelude tasty tasty-hunit ];
+ description = "SwiftNav's SBP Library";
+ license = stdenv.lib.licenses.lgpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"sbp2udp" = callPackage
({ mkDerivation, base, basic-prelude, binary, binary-conduit
, bytestring, conduit, conduit-extra, network, optparse-generic
@@ -182263,6 +183054,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-ruby_0_8_0_2" = callPackage
+ ({ mkDerivation, base, casing, doctest, QuickCheck, servant-foreign
+ , text
+ }:
+ mkDerivation {
+ pname = "servant-ruby";
+ version = "0.8.0.2";
+ sha256 = "11h70gpar931qh3v1llp8zzk5922p31bmmfp5ynp7nzxv3zdrim6";
+ libraryHaskellDepends = [ base casing servant-foreign text ];
+ testHaskellDepends = [ base doctest QuickCheck ];
+ description = "Generate a Ruby client from a Servant API with Net::HTTP";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-scotty" = callPackage
({ mkDerivation, aeson, base, http-types, scotty, servant
, servant-response, text, transformers
@@ -182829,8 +183635,8 @@ self: {
}:
mkDerivation {
pname = "serverless-haskell";
- version = "0.6.6";
- sha256 = "068pjw05kn4wq3c7bh29c0kf7h19jz55fwxg9c0jnv0ygmw6k0bi";
+ version = "0.6.7";
+ sha256 = "0p34wd3g1gg7c6yp018164ky1rqz67wq5fcax6fis0hn3g8qgjm9";
libraryHaskellDepends = [
aeson aeson-casing aeson-extra amazonka-core amazonka-kinesis
amazonka-s3 base bytestring case-insensitive http-types iproute
@@ -183280,6 +184086,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "setlocale_1_0_0_8" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "setlocale";
+ version = "1.0.0.8";
+ sha256 = "0sdrsmkhw08483d73ysgm2926fdbhii61br03lqpqw0lfzj4ilbd";
+ libraryHaskellDepends = [ base ];
+ description = "Haskell bindings to setlocale";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"setoid" = callPackage
({ mkDerivation, base, containers, mtl, smallcheck, tasty
, tasty-discover, tasty-hunit, tasty-quickcheck, tasty-smallcheck
@@ -183806,8 +184624,8 @@ self: {
({ mkDerivation, base, shake }:
mkDerivation {
pname = "shake-elm";
- version = "0.1.0.0";
- sha256 = "1pd2ga35kjcx5zfkvmdwr4rjlcm5b5r8h0kjmjadk4qf5219rwc1";
+ version = "0.2.0.1";
+ sha256 = "057ph5ai8pswzymln8l6i2hdn1vgi3hwyji1z6s4bh71xnc0sn5r";
libraryHaskellDepends = [ base shake ];
description = "Elm builds in shake";
license = stdenv.lib.licenses.bsd3;
@@ -183817,8 +184635,8 @@ self: {
({ mkDerivation, base, directory, shake }:
mkDerivation {
pname = "shake-ext";
- version = "3.0.1.0";
- sha256 = "15n94922a4l74n65w59dj8jjpsv2vamm5lwnkii2hq6s1rpgccnm";
+ version = "3.1.0.0";
+ sha256 = "1lbdz4bv95d0rwfpk1l494lrfd5qp029awbfiv1wpydbvvspdvx6";
libraryHaskellDepends = [ base directory shake ];
description = "Helper functions for linting with shake";
license = stdenv.lib.licenses.bsd3;
@@ -184471,8 +185289,8 @@ self: {
({ mkDerivation, base, hspec, megaparsec, text }:
mkDerivation {
pname = "shellwords";
- version = "0.1.2.0";
- sha256 = "0w3fv5fv6ccd8r0rfl5i6cjnfkv4vbk8gcssn2inr8hihwg88kmy";
+ version = "0.1.2.1";
+ sha256 = "0r4a3m16bn60xg08439ikq99m6xz8vl3yxqmp7dij1xxijx8wwzn";
libraryHaskellDepends = [ base megaparsec text ];
testHaskellDepends = [ base hspec ];
description = "Parse strings into words, like a shell would";
@@ -184550,8 +185368,8 @@ self: {
}:
mkDerivation {
pname = "shift";
- version = "0.2.0.3";
- sha256 = "1k4fcb7j66fvdl1nqmx7315s6b9jmzv3dmcvc2sbkfh8m5wm2bby";
+ version = "0.2.1.0";
+ sha256 = "04949ljq0xi1s0k5llq56idykn6myr4l2hqai9vlqmcj47m5f23j";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -185492,6 +186310,8 @@ self: {
pname = "simple-log";
version = "0.9.6";
sha256 = "0cbzc5ib63x2m4xz88ks6xfg99c2plp2y6y7bzx3i3rrhd3y1pjn";
+ revision = "1";
+ editedCabalFile = "0qifmlqxd2pwh5rm7pzfwn6nq09yvjs7nfg8si4b3q7xlgal2sbx";
libraryHaskellDepends = [
async base base-unicode-symbols containers data-default deepseq
directory exceptions filepath hformat microlens microlens-platform
@@ -186451,8 +187271,8 @@ self: {
}:
mkDerivation {
pname = "sized-grid";
- version = "0.1.1.0";
- sha256 = "0qbn160pq5yz1916iir1s9hy1h4pkar8z50gh7i8v7j4nwhgiisk";
+ version = "0.1.1.1";
+ sha256 = "0v3350z1p9bmwancn205jbbqj1wwi7f6415jzz3fcypkmyq90bav";
libraryHaskellDepends = [
adjunctions aeson base comonad constraints distributive
generics-sop lens mtl random vector vector-space
@@ -189515,6 +190335,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "softfloat-hs" = callPackage
+ ({ mkDerivation, base, softfloat }:
+ mkDerivation {
+ pname = "softfloat-hs";
+ version = "0.1.0";
+ sha256 = "03ipzfr46gp6rz6vm8y3gwdpbpa6mxxmskcaz5ng8jpj570qq88k";
+ libraryHaskellDepends = [ base ];
+ librarySystemDepends = [ softfloat ];
+ description = "Haskell bindings for SoftFloat";
+ license = stdenv.lib.licenses.bsd3;
+ }) {softfloat = null;};
+
"solga" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, hashable
, hspec, hspec-wai, hspec-wai-json, http-types, QuickCheck
@@ -190186,8 +191018,8 @@ self: {
}:
mkDerivation {
pname = "spatial-math";
- version = "0.5.0.0";
- sha256 = "0hkvpr9l5x7gjwzskr0ci62mr3mzg0yfdbvdsjwrn37201cajmg2";
+ version = "0.5.0.1";
+ sha256 = "0454q9laaasdqrd74cjcxfcl5z7jcfvnzpdg81gl58y2ay8z4769";
libraryHaskellDepends = [
base binary cereal ghc-prim lens linear TypeCompose
];
@@ -190359,12 +191191,12 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "speculate_0_3_3" = callPackage
+ "speculate_0_3_4" = callPackage
({ mkDerivation, base, cmdargs, containers, leancheck }:
mkDerivation {
pname = "speculate";
- version = "0.3.3";
- sha256 = "1x0vikgx09j842h1q4gzmndq16yr5514np17qaqfrc8578g9wfkf";
+ version = "0.3.4";
+ sha256 = "10b6ka8rws62byxi4whncs77hl2jcx6pr3gibbh804v07dnl2dnv";
libraryHaskellDepends = [ base cmdargs containers leancheck ];
testHaskellDepends = [ base leancheck ];
benchmarkHaskellDepends = [ base leancheck ];
@@ -191742,8 +192574,8 @@ self: {
pname = "stache";
version = "1.2.1";
sha256 = "0fqipjyin2hpklm0gaab4qhcfj9gzkpb2g948sqzf1n6alkxvyvb";
- revision = "7";
- editedCabalFile = "08i636hsi0znrm3ma7z2wknma06aa4xzfqwy0z4x9d7vn7fscm48";
+ revision = "8";
+ editedCabalFile = "0jz9cg3w71nvxc4y6hrwjayxl2291q5xm5r4qrhz1ag1lvzk26yn";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base bytestring containers deepseq directory filepath
@@ -193292,8 +194124,8 @@ self: {
}:
mkDerivation {
pname = "stitch";
- version = "0.5.0.0";
- sha256 = "0dk9h9arldzwsfg8cad374w7lipi4w43ady7dsmima4jyg4724h9";
+ version = "0.6.0.0";
+ sha256 = "1pk2snnvdn9f7xpnhgffzdqxps4spgvmcrbhjdfwpjxrlnxgviq9";
libraryHaskellDepends = [ base containers text transformers ];
testHaskellDepends = [ base Cabal hspec text ];
benchmarkHaskellDepends = [ base criterion ];
@@ -194002,6 +194834,31 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "stratosphere_0_25_0" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
+ , hashable, hspec, hspec-discover, lens, template-haskell, text
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "stratosphere";
+ version = "0.25.0";
+ sha256 = "0blrdrqhjh3cfddx8y3ra3vzicrcp8zin8fxnjk8hpz546d3a5a4";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-pretty base bytestring containers hashable lens
+ template-haskell text unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson aeson-pretty base bytestring containers hashable hspec
+ hspec-discover lens template-haskell text unordered-containers
+ ];
+ testToolDepends = [ hspec-discover ];
+ description = "EDSL for AWS CloudFormation";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"stratum-tool" = callPackage
({ mkDerivation, aeson, async, base, bytestring, bytestring-builder
, cmdargs, connection, containers, curl, curl-aeson, network, stm
@@ -194720,8 +195577,8 @@ self: {
}:
mkDerivation {
pname = "strelka";
- version = "2.0.2.1";
- sha256 = "0wh702y5m7045jlr3qf2k852x68d7ylr16hanb6jjw2f476fnc7i";
+ version = "2.0.2.2";
+ sha256 = "14n4wk7xzqrl795flxvks7kzf9mm93b626r2x657xjsy7rwkw7y3";
libraryHaskellDepends = [
attoparsec attoparsec-data base base-prelude base64-bytestring
bifunctors bytestring bytestring-tree-builder hashable http-media
@@ -196462,8 +197319,8 @@ self: {
}:
mkDerivation {
pname = "sv-core";
- version = "0.2.1";
- sha256 = "00xzsx7ssii7i8h7m2g99vq54q8xb1191vi0sn8cg6a2bdfl74hd";
+ version = "0.2.2";
+ sha256 = "08wd9ajzzhkqg5ghqr3vilq1w8h8vypd3yy63ql6amnqdnjw02mf";
libraryHaskellDepends = [
attoparsec base bifunctors bytestring containers contravariant
deepseq lens mtl parsec profunctors readable semigroupoids
@@ -199837,6 +200694,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "tax" = callPackage
+ ({ mkDerivation, base, dollaridoos, profunctors, semigroups }:
+ mkDerivation {
+ pname = "tax";
+ version = "0.2.0.0";
+ sha256 = "13911rksr268v2jbdm7kkwlglni7s8lb417lryr7m2x9vfg31jqb";
+ libraryHaskellDepends = [
+ base dollaridoos profunctors semigroups
+ ];
+ description = "Types and combinators for taxes";
+ license = stdenv.lib.licenses.agpl3;
+ }) {};
+
"tbox" = callPackage
({ mkDerivation, array, base, binary, cautious-file, containers
, directory, filepath, IfElse, monad-loops, mtl, random
@@ -201063,8 +201933,8 @@ self: {
}:
mkDerivation {
pname = "termonad";
- version = "0.2.0.0";
- sha256 = "0y5f4k6f2cs6x7p8qrfi7nwy46arap8v87algxg3iixw30c325lc";
+ version = "0.2.1.0";
+ sha256 = "1js9sj0gj4igigdnbc5ygbn5l2wfhbrm1k565y3advi99imidsd3";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -201875,8 +202745,8 @@ self: {
}:
mkDerivation {
pname = "text-builder";
- version = "0.5.3";
- sha256 = "0488dy3x2gvwvnsmjs7g35pra9m1yqvqzw0klkhijsiaxnc4x95f";
+ version = "0.5.3.1";
+ sha256 = "04vqh30m4vi9d4b4g311fb861qijbmf9zmn9ldsrdb1rrgjk2y9q";
libraryHaskellDepends = [
base base-prelude bytestring semigroups text
];
@@ -201890,15 +202760,15 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "text-builder_0_5_3_1" = callPackage
+ "text-builder_0_5_4_1" = callPackage
({ mkDerivation, base, base-prelude, bytestring, criterion
, QuickCheck, quickcheck-instances, rerebase, semigroups, tasty
, tasty-hunit, tasty-quickcheck, text
}:
mkDerivation {
pname = "text-builder";
- version = "0.5.3.1";
- sha256 = "04vqh30m4vi9d4b4g311fb861qijbmf9zmn9ldsrdb1rrgjk2y9q";
+ version = "0.5.4.1";
+ sha256 = "1ipmfnjbkp2qllqdahdf9jwbks6vhalaw65clv9izbhp7d20gjai";
libraryHaskellDepends = [
base base-prelude bytestring semigroups text
];
@@ -202149,6 +203019,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "text-ldap_0_1_1_13" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, containers, dlist
+ , memory, QuickCheck, quickcheck-simple, random, transformers
+ }:
+ mkDerivation {
+ pname = "text-ldap";
+ version = "0.1.1.13";
+ sha256 = "0d1a7932999yx98hjvnrap1lpm9jcfg34m2m0hdy4j1m6cq4q5zc";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ attoparsec base bytestring containers dlist memory transformers
+ ];
+ executableHaskellDepends = [ base bytestring ];
+ testHaskellDepends = [
+ base bytestring QuickCheck quickcheck-simple random
+ ];
+ description = "Parser and Printer for LDAP text data stream";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"text-lens" = callPackage
({ mkDerivation, base, extra, hspec, lens, text }:
mkDerivation {
@@ -202355,6 +203247,8 @@ self: {
pname = "text-region";
version = "0.3.1.0";
sha256 = "1zy5zb7xg1343hlkwawnbca7f6gal9028ps1kp83fg2vmq1aqk57";
+ revision = "1";
+ editedCabalFile = "1z5l1hv8sc4ida5s4r03ihak612lrq0rf7sdfkw7gf05f67c622p";
libraryHaskellDepends = [
aeson base base-unicode-symbols bytestring groups lens text
];
@@ -202916,6 +203810,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "th-data-compat_0_0_2_7" = callPackage
+ ({ mkDerivation, base, template-haskell }:
+ mkDerivation {
+ pname = "th-data-compat";
+ version = "0.0.2.7";
+ sha256 = "0yjfz9iwz0n2wx2c7wjazhwh23ny43fmnjp7dn7m37p320jgzahk";
+ libraryHaskellDepends = [ base template-haskell ];
+ description = "Compatibility for data definition template of TH";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"th-desugar" = callPackage
({ mkDerivation, base, containers, hspec, HUnit, mtl, syb
, template-haskell, th-expand-syns, th-lift, th-orphans
@@ -203104,6 +204010,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "th-lift_0_7_11" = callPackage
+ ({ mkDerivation, base, ghc-prim, template-haskell, th-abstraction
+ }:
+ mkDerivation {
+ pname = "th-lift";
+ version = "0.7.11";
+ sha256 = "131360zxb0hazbqwbkk6ab2p77jkxr79bwwm618mrwrwkm3x2g6m";
+ libraryHaskellDepends = [
+ base ghc-prim template-haskell th-abstraction
+ ];
+ testHaskellDepends = [ base ghc-prim template-haskell ];
+ description = "Derive Template Haskell's Lift class for datatypes";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"th-lift-instances" = callPackage
({ mkDerivation, base, bytestring, containers, QuickCheck
, template-haskell, text, th-lift, vector
@@ -203216,6 +204138,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "th-reify-compat_0_0_1_5" = callPackage
+ ({ mkDerivation, base, template-haskell }:
+ mkDerivation {
+ pname = "th-reify-compat";
+ version = "0.0.1.5";
+ sha256 = "171m4fibjq4ml33xvbb0qdm625adknsdgz8flb4xhag075z2w6xg";
+ libraryHaskellDepends = [ base template-haskell ];
+ description = "Compatibility for the result type of TH reify";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"th-reify-many" = callPackage
({ mkDerivation, base, containers, mtl, safe, template-haskell
, th-expand-syns
@@ -204106,16 +205040,16 @@ self: {
"tidal" = callPackage
({ mkDerivation, base, colour, containers, hashable, hosc
- , mersenne-random-pure64, mtl, parsec, safe, tasty, tasty-hunit
- , text, time, websockets
+ , mersenne-random-pure64, monad-loops, mtl, parsec, safe, tasty
+ , tasty-hunit, text, time, websockets
}:
mkDerivation {
pname = "tidal";
- version = "0.9.9";
- sha256 = "1zpbnn1kw2ybmlg6g9yj39jhfp6sl12335rxqns0nfi8l2jjgbgr";
+ version = "0.9.10";
+ sha256 = "1fgana79fwmn2s3b50vs9wlri6z4f2b8lad5m4n4ggc4rginvlkw";
libraryHaskellDepends = [
- base colour containers hashable hosc mersenne-random-pure64 mtl
- parsec safe text time websockets
+ base colour containers hashable hosc mersenne-random-pure64
+ monad-loops mtl parsec safe text time websockets
];
testHaskellDepends = [ base tasty tasty-hunit ];
description = "Pattern language for improvised music";
@@ -204440,6 +205374,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "time-locale-compat_0_1_1_5" = callPackage
+ ({ mkDerivation, base, old-locale, time }:
+ mkDerivation {
+ pname = "time-locale-compat";
+ version = "0.1.1.5";
+ sha256 = "0b2hmj8wwrfkndwzgm11qr496ca2ahwdxcj3m0ii91bxvrk1bzq7";
+ libraryHaskellDepends = [ base old-locale time ];
+ description = "Compatibile module for time-format locale";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"time-locale-vietnamese" = callPackage
({ mkDerivation, base, time }:
mkDerivation {
@@ -205891,6 +206837,33 @@ self: {
license = stdenv.lib.licenses.mpl20;
}) {};
+ "tomland_0_4_0" = callPackage
+ ({ mkDerivation, base, hashable, hedgehog, hspec-megaparsec
+ , megaparsec, mtl, parser-combinators, tasty, tasty-discover
+ , tasty-hedgehog, tasty-hspec, text, time, transformers
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "tomland";
+ version = "0.4.0";
+ sha256 = "1rkdlq6js5ia807wh9hga6y9r92bxj8j5g7nynba1ilc3x70znfr";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base hashable megaparsec mtl parser-combinators text time
+ transformers unordered-containers
+ ];
+ executableHaskellDepends = [ base text time unordered-containers ];
+ testHaskellDepends = [
+ base hedgehog hspec-megaparsec megaparsec tasty tasty-hedgehog
+ tasty-hspec text time unordered-containers
+ ];
+ testToolDepends = [ tasty-discover ];
+ description = "Bidirectional TOML parser";
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"tomlcheck" = callPackage
({ mkDerivation, base, htoml-megaparsec, megaparsec
, optparse-generic, text
@@ -209519,25 +210492,6 @@ self: {
}) {};
"typed-process" = callPackage
- ({ mkDerivation, async, base, base64-bytestring, bytestring, hspec
- , process, stm, temporary, transformers
- }:
- mkDerivation {
- pname = "typed-process";
- version = "0.2.2.0";
- sha256 = "0c6gvgvjyncbni9a5bvpbglknd4yclr3d3hfg9bhgahmkj40dva2";
- libraryHaskellDepends = [
- async base bytestring process stm transformers
- ];
- testHaskellDepends = [
- async base base64-bytestring bytestring hspec process stm temporary
- transformers
- ];
- description = "Run external processes, with strong typing of streams";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "typed-process_0_2_3_0" = callPackage
({ mkDerivation, async, base, base64-bytestring, bytestring, hspec
, process, stm, temporary, transformers
}:
@@ -209554,7 +210508,6 @@ self: {
];
description = "Run external processes, with strong typing of streams";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"typed-spreadsheet" = callPackage
@@ -209781,8 +210734,10 @@ self: {
}:
mkDerivation {
pname = "typerep-map";
- version = "0.2.0";
- sha256 = "14r8rnx3akx1sr48ksmp2g88dyy73innn9bwbw2yjb7n76k5kfa4";
+ version = "0.3.0";
+ sha256 = "0d5a2zfb75fallp9q8sz1av8ncvsnmqg6dfjqcghz0grfpwmn7bf";
+ revision = "1";
+ editedCabalFile = "102lwg5rl1628j3v331xj93cgvr9ppmphyjlqli4gm5vxgrkwsfv";
libraryHaskellDepends = [
base containers ghc-prim primitive vector
];
@@ -209833,8 +210788,8 @@ self: {
}:
mkDerivation {
pname = "typesafe-precure";
- version = "0.6.3.1";
- sha256 = "16jysdh7v8336xkhl6vzni5zj301jsgawwxy8fcrd74p87am2k05";
+ version = "0.7.0.1";
+ sha256 = "1v8kzhjyxznj9xj4x5n34ybhzy5nmldsscawnmcaqf96f4w0i178";
libraryHaskellDepends = [
aeson aeson-pretty autoexporter base bytestring dlist
monad-skeleton template-haskell text th-data-compat
@@ -211472,6 +212427,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "unix-compat_0_5_1" = callPackage
+ ({ mkDerivation, base, unix }:
+ mkDerivation {
+ pname = "unix-compat";
+ version = "0.5.1";
+ sha256 = "0llwl7rp63fy2ychwdclz1afj45pbin5pfl01dvn6rwhvmwhr7d3";
+ libraryHaskellDepends = [ base unix ];
+ description = "Portable POSIX-compatibility layer";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"unix-fcntl" = callPackage
({ mkDerivation, base, foreign-var }:
mkDerivation {
@@ -212504,6 +213471,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "urlpath_9_0_0_1" = callPackage
+ ({ mkDerivation, attoparsec-uri, base, exceptions, mmorph
+ , monad-control, monad-control-aligned, monad-logger, mtl, path
+ , path-extra, resourcet, split, strict, text, transformers
+ , transformers-base, vector
+ }:
+ mkDerivation {
+ pname = "urlpath";
+ version = "9.0.0.1";
+ sha256 = "009836gw2gmmjb08nqqdklpr967gfnnnk1r5lpy3wjyspky03vgv";
+ libraryHaskellDepends = [
+ attoparsec-uri base exceptions mmorph monad-control
+ monad-control-aligned monad-logger mtl path path-extra resourcet
+ split strict text transformers transformers-base vector
+ ];
+ description = "Painfully simple URL deployment";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"urn" = callPackage
({ mkDerivation, base, hspec, parsec }:
mkDerivation {
@@ -212849,6 +213836,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "util_0_1_11_0" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "util";
+ version = "0.1.11.0";
+ sha256 = "16qi0w19hy7y4az4dxnsvn5cjc7lg5zb9vv0jjzifky9dkssbicb";
+ libraryHaskellDepends = [ base ];
+ description = "Utilities";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"util-exception" = callPackage
({ mkDerivation, base, basic, control, lifted-base-tf, util }:
mkDerivation {
@@ -212876,6 +213875,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "util-primitive" = callPackage
+ ({ mkDerivation, base, primitive }:
+ mkDerivation {
+ pname = "util-primitive";
+ version = "0.1.0.0";
+ sha256 = "193y0fvr0szpdhg7ysvj99mfm983yvrmvpq77gv994vyjigq4y6w";
+ libraryHaskellDepends = [ base primitive ];
+ description = "Primitive memory-related utilities";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"utility-ht" = callPackage
({ mkDerivation, base, QuickCheck }:
mkDerivation {
@@ -213541,6 +214551,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "validity-bytestring_0_4_0_0" = callPackage
+ ({ mkDerivation, base, bytestring, validity }:
+ mkDerivation {
+ pname = "validity-bytestring";
+ version = "0.4.0.0";
+ sha256 = "0zf722rm2s5p64bs1vl7fw1swa2svz2lk8w51bh235zds8bg11jc";
+ libraryHaskellDepends = [ base bytestring validity ];
+ description = "Validity instances for bytestring";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"validity-containers" = callPackage
({ mkDerivation, base, containers, validity }:
mkDerivation {
@@ -213568,6 +214590,34 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "validity-path_0_3_0_2" = callPackage
+ ({ mkDerivation, base, filepath, genvalidity-hspec, hspec, path
+ , validity
+ }:
+ mkDerivation {
+ pname = "validity-path";
+ version = "0.3.0.2";
+ sha256 = "0ip1qm6sip1yxbrcx9zn2saipd6bfs88cgn5jd3pw9ffkydxm74p";
+ libraryHaskellDepends = [ base filepath path validity ];
+ testHaskellDepends = [
+ base filepath genvalidity-hspec hspec path validity
+ ];
+ description = "Validity instances for Path";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "validity-primitive" = callPackage
+ ({ mkDerivation, base, primitive, validity }:
+ mkDerivation {
+ pname = "validity-primitive";
+ version = "0.0.0.0";
+ sha256 = "05y5zbirqyqjpdvvxhkaai60hzzwmvshzvkk7j376yjsg8sas4x0";
+ libraryHaskellDepends = [ base primitive validity ];
+ description = "Validity instances for primitive";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"validity-scientific" = callPackage
({ mkDerivation, base, scientific, validity }:
mkDerivation {
@@ -213579,6 +214629,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "validity-scientific_0_2_0_2" = callPackage
+ ({ mkDerivation, base, scientific, validity }:
+ mkDerivation {
+ pname = "validity-scientific";
+ version = "0.2.0.2";
+ sha256 = "1hcdv8s7qfcrgc8hn335dzxx3q5qqbviwp4bf4lwnzbw611slcl1";
+ libraryHaskellDepends = [ base scientific validity ];
+ description = "Validity instances for scientific";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"validity-text" = callPackage
({ mkDerivation, base, bytestring, text, validity }:
mkDerivation {
@@ -213590,6 +214652,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "validity-text_0_3_1_0" = callPackage
+ ({ mkDerivation, base, bytestring, text, validity }:
+ mkDerivation {
+ pname = "validity-text";
+ version = "0.3.1.0";
+ sha256 = "0r22pipimzlznkv164n3pw3063v7yxz2l04m74y5j1zajxpg5lzd";
+ libraryHaskellDepends = [ base bytestring text validity ];
+ description = "Validity instances for text";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"validity-time" = callPackage
({ mkDerivation, base, time, validity }:
mkDerivation {
@@ -213601,6 +214675,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "validity-time_0_2_0_2" = callPackage
+ ({ mkDerivation, base, time, validity }:
+ mkDerivation {
+ pname = "validity-time";
+ version = "0.2.0.2";
+ sha256 = "0rg28pgicn8ycdswszbc070587pblbxdzl6mc082l9rgz3g4mcji";
+ libraryHaskellDepends = [ base time validity ];
+ description = "Validity instances for time";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"validity-unordered-containers" = callPackage
({ mkDerivation, base, hashable, unordered-containers, validity }:
mkDerivation {
@@ -213614,6 +214700,20 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "validity-unordered-containers_0_2_0_2" = callPackage
+ ({ mkDerivation, base, hashable, unordered-containers, validity }:
+ mkDerivation {
+ pname = "validity-unordered-containers";
+ version = "0.2.0.2";
+ sha256 = "06qq6rdzcb0l145653fdrbyf18fci49v85mq8c0sjhhfr22pwm2h";
+ libraryHaskellDepends = [
+ base hashable unordered-containers validity
+ ];
+ description = "Validity instances for unordered-containers";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"validity-uuid" = callPackage
({ mkDerivation, base, uuid, validity }:
mkDerivation {
@@ -213625,6 +214725,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "validity-uuid_0_1_0_2" = callPackage
+ ({ mkDerivation, base, uuid, validity }:
+ mkDerivation {
+ pname = "validity-uuid";
+ version = "0.1.0.2";
+ sha256 = "0k2nkkc69m2j4aj3fjfd1i0cg4nli1g44nxdf5liv59hhvk33p4m";
+ libraryHaskellDepends = [ base uuid validity ];
+ description = "Validity instances for uuid";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"validity-vector" = callPackage
({ mkDerivation, base, hashable, validity, vector }:
mkDerivation {
@@ -213636,6 +214748,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "validity-vector_0_2_0_2" = callPackage
+ ({ mkDerivation, base, hashable, validity, vector }:
+ mkDerivation {
+ pname = "validity-vector";
+ version = "0.2.0.2";
+ sha256 = "0y6fhcdyd42nynf2lavdx9pnhy8ylqfkq1yickx2ap4w5hc61k57";
+ libraryHaskellDepends = [ base hashable validity vector ];
+ description = "Validity instances for vector";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"valor" = callPackage
({ mkDerivation, base, hspec, text, transformers }:
mkDerivation {
@@ -214165,6 +215289,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "vector-algorithms_0_7_0_4" = callPackage
+ ({ mkDerivation, base, bytestring, containers, primitive
+ , QuickCheck, vector
+ }:
+ mkDerivation {
+ pname = "vector-algorithms";
+ version = "0.7.0.4";
+ sha256 = "0mfa8ig9v69l41p2vb5jl4qmaln5y1rlzarr2mlgm8g1nvq8qqdg";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base bytestring primitive vector ];
+ testHaskellDepends = [
+ base bytestring containers QuickCheck vector
+ ];
+ description = "Efficient algorithms for vector arrays";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"vector-binary" = callPackage
({ mkDerivation, base, binary, vector }:
mkDerivation {
@@ -214531,8 +215674,8 @@ self: {
}:
mkDerivation {
pname = "vector-text";
- version = "1.1.3";
- sha256 = "00x35fv78vp8rffvd7hsccl8vdxzzdzjrqzwvj0mr6g1wmg3p4i3";
+ version = "1.1.5";
+ sha256 = "1gd7dg9icr1211rf298ny60yjgyyxbxa62l16q28yd5z160sr3ir";
libraryHaskellDepends = [
base binary prologue text vector vector-binary-instances
];
@@ -214700,14 +215843,34 @@ self: {
({ mkDerivation, aeson, base, bytestring, hspec, semigroupoids }:
mkDerivation {
pname = "versioning";
- version = "0.2.0.0";
- sha256 = "1c35s0hv6wgyr40ky7yh7ajv0jhphfb8m53zn9a59v7nibp476mq";
+ version = "0.3.0.0";
+ sha256 = "12d5xxc8i0ldbsb6y22f9gvk0d61nrgjz3yf7ppvqrzhilgs6yyf";
libraryHaskellDepends = [ aeson base bytestring semigroupoids ];
testHaskellDepends = [ aeson base bytestring hspec ];
description = "Type-safe data versioning";
license = stdenv.lib.licenses.asl20;
}) {};
+ "versioning-servant" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, hspec
+ , hspec-wai, http-media, servant, servant-server, versioning, wai
+ , wai-extra
+ }:
+ mkDerivation {
+ pname = "versioning-servant";
+ version = "0.1.0.0";
+ sha256 = "14a1fk2mgcjjlb1z01xb5ngf496kpfr2y588265zn72q54a7l08k";
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring http-media servant versioning
+ ];
+ testHaskellDepends = [
+ aeson base bytestring hspec hspec-wai servant servant-server
+ versioning wai wai-extra
+ ];
+ description = "Servant combinators for the versioning library";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"versions" = callPackage
({ mkDerivation, base, base-prelude, checkers, deepseq, hashable
, megaparsec, microlens, QuickCheck, tasty, tasty-hunit
@@ -215948,8 +217111,8 @@ self: {
}:
mkDerivation {
pname = "wai-extra";
- version = "3.0.24.0";
- sha256 = "0dxqvfnm7yr3dvsxr8jdfxaw46as4g6n1jniz2b0gfsjs59h3hkf";
+ version = "3.0.24.1";
+ sha256 = "0bb6837cgq4p9sn3mkaf6p9kf57k0mvkdjcc1vsnj87nvphls604";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -215967,7 +217130,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "wai-extra_3_0_24_1" = callPackage
+ "wai-extra_3_0_24_2" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring
, bytestring, case-insensitive, containers, cookie
, data-default-class, deepseq, directory, fast-logger, hspec
@@ -215978,8 +217141,8 @@ self: {
}:
mkDerivation {
pname = "wai-extra";
- version = "3.0.24.1";
- sha256 = "0bb6837cgq4p9sn3mkaf6p9kf57k0mvkdjcc1vsnj87nvphls604";
+ version = "3.0.24.2";
+ sha256 = "07gcgq59dki5drkjci9ka34xjsy3bqilbsx0lsc4905w9jlyfbci";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -218844,8 +220007,8 @@ self: {
}:
mkDerivation {
pname = "weeder";
- version = "1.0.6";
- sha256 = "07i84ypb0n1qnfcv5y2aksicl36lmxd2bmlmdn2riqj9bhy98vij";
+ version = "1.0.8";
+ sha256 = "1ylwq1087x6ppn5y5krvl6q6fxcln58y8fwbah3ygp0cpgm4w816";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -219607,22 +220770,6 @@ self: {
}) {};
"wl-pprint-annotated" = callPackage
- ({ mkDerivation, base, containers, deepseq, tasty, tasty-hunit
- , text
- }:
- mkDerivation {
- pname = "wl-pprint-annotated";
- version = "0.1.0.0";
- sha256 = "0c2996x5gdrif1l0lfwlqnka7xp5diac74rckv0jasv2i0333kmp";
- libraryHaskellDepends = [ base containers deepseq text ];
- testHaskellDepends = [
- base containers deepseq tasty tasty-hunit text
- ];
- description = "Wadler/Leijen pretty printer with annotations and slightly modernized API";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "wl-pprint-annotated_0_1_0_1" = callPackage
({ mkDerivation, base, containers, deepseq, tasty, tasty-hunit
, text
}:
@@ -219636,7 +220783,6 @@ self: {
];
description = "Pretty printer with annotation support";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wl-pprint-ansiterm" = callPackage
@@ -219657,23 +220803,6 @@ self: {
}) {};
"wl-pprint-console" = callPackage
- ({ mkDerivation, base, bytestring, colorful-monoids, text
- , wl-pprint-annotated
- }:
- mkDerivation {
- pname = "wl-pprint-console";
- version = "0.1.0.1";
- sha256 = "1z3h7g5ws83m0h42yfdifyrvzy3j711jk9p1malgd2zp2jmgdix7";
- revision = "1";
- editedCabalFile = "1mlbjjk5mhv3jxzqvfspm07di09pns0xfalhx68k2r39z4lj1fa5";
- libraryHaskellDepends = [
- base bytestring colorful-monoids text wl-pprint-annotated
- ];
- description = "Wadler/Leijen pretty printer supporting colorful console output";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "wl-pprint-console_0_1_0_2" = callPackage
({ mkDerivation, base, bytestring, colorful-monoids, text
, wl-pprint-annotated
}:
@@ -219686,7 +220815,6 @@ self: {
];
description = "Wadler/Leijen pretty printer supporting colorful console output";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wl-pprint-extras" = callPackage
@@ -220552,20 +221680,6 @@ self: {
}) {};
"writer-cps-mtl" = callPackage
- ({ mkDerivation, base, mtl, transformers, writer-cps-transformers
- }:
- mkDerivation {
- pname = "writer-cps-mtl";
- version = "0.1.1.4";
- sha256 = "0w2843z499d4nvx8jkq398rzp0zwqp4aydwqidpdrh2xdavv78v2";
- libraryHaskellDepends = [
- base mtl transformers writer-cps-transformers
- ];
- description = "MonadWriter orphan instances for writer-cps-transformers";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "writer-cps-mtl_0_1_1_5" = callPackage
({ mkDerivation, base, mtl, transformers, writer-cps-transformers
}:
mkDerivation {
@@ -220577,21 +221691,9 @@ self: {
];
description = "MonadWriter orphan instances for writer-cps-transformers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"writer-cps-transformers" = callPackage
- ({ mkDerivation, base, transformers }:
- mkDerivation {
- pname = "writer-cps-transformers";
- version = "0.1.1.3";
- sha256 = "1bjarnjz4v07wnkaqn46mrhxvy2f9anq6aw6lq3cf4xlzlr2i8la";
- libraryHaskellDepends = [ base transformers ];
- description = "WriteT and RWST monad transformers";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "writer-cps-transformers_0_1_1_4" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
pname = "writer-cps-transformers";
@@ -220600,7 +221702,6 @@ self: {
libraryHaskellDepends = [ base transformers ];
description = "WriteT and RWST monad transformers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wryte" = callPackage
@@ -222587,8 +223688,8 @@ self: {
}:
mkDerivation {
pname = "xmobar";
- version = "0.27";
- sha256 = "0agx490q6sbmv3vfq33ys8dsrgwizj3bmha4i1pkxz5wp5q8cx3l";
+ version = "0.28";
+ sha256 = "1xh87asg8y35srvp7d3gyyy4bkxsw122liihxgzgm8pqv2z3h4zd";
configureFlags = [
"-fwith_alsa" "-fwith_conduit" "-fwith_datezone" "-fwith_dbus"
"-fwith_inotify" "-fwith_iwlib" "-fwith_mpd" "-fwith_mpris"
@@ -222621,30 +223722,25 @@ self: {
"xmonad" = callPackage
({ mkDerivation, base, containers, data-default, directory
, extensible-exceptions, filepath, mtl, process, QuickCheck
- , semigroups, setlocale, unix, utf8-string, X11
+ , setlocale, unix, utf8-string, X11
}:
mkDerivation {
pname = "xmonad";
- version = "0.14";
- sha256 = "0lq3k0ap7jxrrswpd954mqa6h8diccbif5srcgbmr39y6y8x0mm4";
- revision = "1";
- editedCabalFile = "0jkqbbm8allsaa412h8kdb6v64qcwqnpr2p6qxy21zy0jqdkhkp5";
+ version = "0.14.2";
+ sha256 = "0gqyivpw8z1x73p1l1fpyq1wc013a1c07r6xn1a82liijs91b949";
isLibrary = true;
isExecutable = true;
- enableSeparateDataOutput = true;
libraryHaskellDepends = [
base containers data-default directory extensible-exceptions
- filepath mtl process semigroups setlocale unix utf8-string X11
+ filepath mtl process setlocale unix utf8-string X11
];
executableHaskellDepends = [ base mtl unix X11 ];
testHaskellDepends = [
base containers extensible-exceptions QuickCheck X11
];
postInstall = ''
- shopt -s globstar
- mkdir -p $doc/share/man/man1
- mv "$data/"**"/man/"*[0-9] $doc/share/man/man1/
- rm "$data/"**"/man/"*
+ install -D man/xmonad.1 $doc/share/man/man1/xmonad.1
+ install -D man/xmonad.hs $doc/share/doc/$name/sample-xmonad.hs
'';
description = "A tiling window manager";
license = stdenv.lib.licenses.bsd3;
@@ -222788,6 +223884,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "xmonad-spotify" = callPackage
+ ({ mkDerivation, base, containers, dbus, X11, xmonad
+ , xmonad-contrib
+ }:
+ mkDerivation {
+ pname = "xmonad-spotify";
+ version = "0.1.0.0";
+ sha256 = "1sl26ffaklasgyns8iz4jwm4736vfkflcv3gayn9bvb1kfr6g7rm";
+ libraryHaskellDepends = [
+ base containers dbus X11 xmonad xmonad-contrib
+ ];
+ description = "Bind media keys to work with Spotify";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"xmonad-utils" = callPackage
({ mkDerivation, base, ghc, random, unix, X11 }:
mkDerivation {
@@ -222802,21 +223913,22 @@ self: {
}) {};
"xmonad-vanessa" = callPackage
- ({ mkDerivation, base, composition-prelude, containers, hspec
- , process, X11, xmonad, xmonad-contrib
+ ({ mkDerivation, alsa-mixer, base, composition-prelude, containers
+ , hspec, process, X11, xmonad, xmonad-contrib, xmonad-spotify
+ , xmonad-volume
}:
mkDerivation {
pname = "xmonad-vanessa";
- version = "1.0.0.0";
- sha256 = "0ng624nf879da2skkw00m5x1v6kavcb7pkb57sxbq0dbyhpic50f";
+ version = "2.0.0.0";
+ sha256 = "1j1sd4lvhcg2g5s4bx9pmjnvsj495lksm3v6p4v8y8g5gc488njf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base composition-prelude containers process X11 xmonad
+ alsa-mixer base composition-prelude containers process X11 xmonad
xmonad-contrib
];
executableHaskellDepends = [
- base containers xmonad xmonad-contrib
+ base containers xmonad xmonad-contrib xmonad-spotify xmonad-volume
];
testHaskellDepends = [ base hspec xmonad ];
description = "Custom xmonad, which builds with stack or cabal";
@@ -222824,6 +223936,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "xmonad-volume" = callPackage
+ ({ mkDerivation, alsa-mixer, base, composition-prelude, containers
+ , X11, xmonad
+ }:
+ mkDerivation {
+ pname = "xmonad-volume";
+ version = "0.1.0.0";
+ sha256 = "0n517ddbjpy6ylg3d1amz7asgc6sww2yy0bxasp0xsd40jc77cfx";
+ libraryHaskellDepends = [
+ alsa-mixer base composition-prelude containers X11 xmonad
+ ];
+ description = "XMonad volume controls";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"xmonad-wallpaper" = callPackage
({ mkDerivation, base, magic, mtl, random, unix, xmonad }:
mkDerivation {
@@ -223498,9 +224625,9 @@ self: {
"yaml" = callPackage
({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
- , conduit, containers, directory, filepath, hspec, HUnit, mockery
- , resourcet, scientific, semigroups, template-haskell, temporary
- , text, transformers, unordered-containers, vector
+ , conduit, containers, directory, filepath, hspec, HUnit, libyaml
+ , mockery, resourcet, scientific, semigroups, template-haskell
+ , temporary, text, transformers, unordered-containers, vector
}:
mkDerivation {
pname = "yaml";
@@ -223514,6 +224641,7 @@ self: {
filepath resourcet scientific semigroups template-haskell text
transformers unordered-containers vector
];
+ librarySystemDepends = [ libyaml ];
testHaskellDepends = [
aeson attoparsec base base-compat bytestring conduit containers
directory filepath hspec HUnit mockery resourcet scientific
@@ -223522,36 +224650,38 @@ self: {
];
description = "Support for parsing and rendering YAML documents";
license = stdenv.lib.licenses.bsd3;
- }) {};
+ }) {inherit (pkgs) libyaml;};
- "yaml_0_9_0" = callPackage
+ "yaml_0_10_0" = callPackage
({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
- , conduit, containers, directory, filepath, hspec, HUnit, mockery
- , resourcet, scientific, semigroups, template-haskell, temporary
- , text, transformers, unordered-containers, vector
+ , conduit, containers, directory, filepath, hspec, HUnit, libyaml
+ , mockery, mtl, raw-strings-qq, resourcet, scientific, semigroups
+ , template-haskell, temporary, text, transformers
+ , unordered-containers, vector
}:
mkDerivation {
pname = "yaml";
- version = "0.9.0";
- sha256 = "05mw3d6k2dahdsajghgbqhlk84x6iym6bci1g1qhpy4k2cfjyjzc";
+ version = "0.10.0";
+ sha256 = "0kyfzcp3hlb44rpf28ipz0m5cpanj91hlhvr9kidvg71826s9xcm";
configureFlags = [ "-fsystem-libyaml" ];
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base bytestring conduit containers directory
- filepath resourcet scientific semigroups template-haskell text
+ filepath mtl resourcet scientific semigroups template-haskell text
transformers unordered-containers vector
];
+ librarySystemDepends = [ libyaml ];
testHaskellDepends = [
aeson attoparsec base base-compat bytestring conduit containers
- directory filepath hspec HUnit mockery resourcet scientific
- semigroups template-haskell temporary text transformers
+ directory filepath hspec HUnit mockery mtl raw-strings-qq resourcet
+ scientific semigroups template-haskell temporary text transformers
unordered-containers vector
];
description = "Support for parsing and rendering YAML documents";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
+ }) {inherit (pkgs) libyaml;};
"yaml-combinators" = callPackage
({ mkDerivation, aeson, base, bytestring, doctest, generics-sop
@@ -224678,8 +225808,8 @@ self: {
pname = "yesod-bin";
version = "1.6.0.3";
sha256 = "1p5f6bl4gynm47m1xg1x1xh9nz913i83iprh2xd207359idjknz4";
- revision = "2";
- editedCabalFile = "0h4nam6zkhz7km0z5z3zngnrgif7a42llvh013iava171kadn8xp";
+ revision = "3";
+ editedCabalFile = "0v3bwg26ghxa1wdvwyvrffd8wwxhv1qk9g8f64ax1n8gz53k6an7";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -227494,6 +228624,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "zeromq4-simple" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, constraints, hashable
+ , uuid, zeromq4-haskell
+ }:
+ mkDerivation {
+ pname = "zeromq4-simple";
+ version = "0.0.0";
+ sha256 = "04i8ksdyf19yywjb0gfkbc0mx90vzvrld5ba7lbnlxvx6iwmah66";
+ libraryHaskellDepends = [
+ aeson base bytestring constraints hashable uuid zeromq4-haskell
+ ];
+ description = "More constrained extensions to zeromq4-haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"zeroth" = callPackage
({ mkDerivation, base, Cabal, derive, directory, filepath
, haskell-src-exts, hskeleton, monoid-record, process, syb
diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix
index 54616abc4ba82bb1f39f2c682773ac5804fb74ea..8dae7c8d72c0f0375989e25cbdc2f4805a6ad69e 100644
--- a/pkgs/development/haskell-modules/lib.nix
+++ b/pkgs/development/haskell-modules/lib.nix
@@ -234,6 +234,7 @@ rec {
*/
justStaticExecutables = drv: overrideCabal drv (drv: {
enableSharedExecutables = false;
+ enableLibraryProfiling = false;
isLibrary = false;
doHaddock = false;
postFixup = "rm -rf $out/lib $out/nix-support $out/share/doc";
@@ -297,15 +298,18 @@ rec {
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:
+ # Get all of the build inputs of a haskell package, divided by category.
+ getBuildInputs = p:
(overrideCabal p (args: {
passthru = (args.passthru or {}) // {
- _getHaskellBuildInputs = (extractBuildInputs p.compiler args).haskellBuildInputs;
+ _getBuildInputs = extractBuildInputs p.compiler args;
};
- }))._getHaskellBuildInputs;
+ }))._getBuildInputs;
+
+ # Extract the haskell build inputs of a haskell package.
+ # This is useful to build environments for developing on that
+ # package.
+ getHaskellBuildInputs = p: (getBuildInputs p).haskellBuildInputs;
# Under normal evaluation, simply return the original package. Under
# nix-shell evaluation, return a nix-shell optimized environment.
diff --git a/pkgs/development/haskell-modules/make-package-set.nix b/pkgs/development/haskell-modules/make-package-set.nix
index 3f339030de559b256910e42b51f94136285868cf..608fb3625b297cf49eaf2ee5d1e16e0ebebba6d8 100644
--- a/pkgs/development/haskell-modules/make-package-set.nix
+++ b/pkgs/development/haskell-modules/make-package-set.nix
@@ -38,7 +38,7 @@ let
inherit (stdenv) buildPlatform hostPlatform;
inherit (stdenv.lib) fix' extends makeOverridable;
- inherit (haskellLib) overrideCabal getHaskellBuildInputs;
+ inherit (haskellLib) overrideCabal getBuildInputs;
mkDerivationImpl = pkgs.callPackage ./generic-builder.nix {
inherit stdenv;
@@ -257,7 +257,7 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
shellFor = { packages, withHoogle ? false, ... } @ args:
let
selected = packages self;
- packageInputs = builtins.map getHaskellBuildInputs selected;
+ packageInputs = builtins.map getBuildInputs selected;
haskellInputs =
builtins.filter
(input: pkgs.lib.all (p: input.outPath != p.outPath) selected)
diff --git a/pkgs/development/haskell-modules/patches/hunspell.patch b/pkgs/development/haskell-modules/patches/hunspell.patch
new file mode 100644
index 0000000000000000000000000000000000000000..cc115029a7addcb5a5fd226d49e7f59949425a2c
--- /dev/null
+++ b/pkgs/development/haskell-modules/patches/hunspell.patch
@@ -0,0 +1,30 @@
+diff -Naur hunspell-hs-0.1.0.0.orig/hunspell-hs.cabal hunspell-hs-0.1.0.0/hunspell-hs.cabal
+--- hunspell-hs-0.1.0.0.orig/hunspell-hs.cabal 2018-08-26 20:23:33.053763300 +0200
++++ hunspell-hs-0.1.0.0/hunspell-hs.cabal 2018-08-26 20:42:05.886074510 +0200
+@@ -37,7 +37,7 @@
+ base >=4.7 && <5
+ , stm
+ if os(linux)
+- extra-libraries:
++ pkgconfig-depends:
+ hunspell
+ if os(darwin)
+ include-dirs:
+@@ -63,7 +63,7 @@
+ , hunspell-hs
+ , stm
+ if os(linux)
+- extra-libraries:
++ pkgconfig-depends:
+ hunspell
+ if os(darwin)
+ include-dirs:
+@@ -88,7 +88,7 @@
+ , hunspell-hs
+ , stm
+ if os(linux)
+- extra-libraries:
++ pkgconfig-depends:
+ hunspell
+ if os(darwin)
+ include-dirs:
diff --git a/pkgs/development/haskell-modules/patches/xmonad-nix.patch b/pkgs/development/haskell-modules/patches/xmonad-nix.patch
index 2a9ec4bfedfb2fb10a98300c8299202db475c94c..cce011347f476f2eda255e54d5a21c6c3fb0a984 100644
--- a/pkgs/development/haskell-modules/patches/xmonad-nix.patch
+++ b/pkgs/development/haskell-modules/patches/xmonad-nix.patch
@@ -1,8 +1,8 @@
diff --git a/src/XMonad/Core.hs b/src/XMonad/Core.hs
-index 138d735..65b5a84 100644
+index 7810522..3262934 100644
--- a/src/XMonad/Core.hs
+++ b/src/XMonad/Core.hs
-@@ -51,6 +51,7 @@ import System.Posix.Types (ProcessID)
+@@ -53,6 +53,7 @@ import System.Posix.Types (ProcessID)
import System.Process
import System.Directory
import System.Exit
@@ -10,7 +10,7 @@ index 138d735..65b5a84 100644
import Graphics.X11.Xlib
import Graphics.X11.Xlib.Extras (getWindowAttributes, WindowAttributes, Event)
import Data.Typeable
-@@ -571,6 +572,7 @@ recompile force = io $ do
+@@ -601,6 +602,7 @@ recompile force = io $ do
lib = cfgdir > "lib"
buildscript = cfgdir > "build"
@@ -18,7 +18,7 @@ index 138d735..65b5a84 100644
libTs <- mapM getModTime . Prelude.filter isSource =<< allFiles lib
srcT <- getModTime src
binT <- getModTime bin
-@@ -586,7 +588,7 @@ recompile force = io $ do
+@@ -643,7 +645,7 @@ recompile force = io $ do
status <- bracket (openFile err WriteMode) hClose $ \errHandle ->
waitForProcess =<< if useBuildscript
then compileScript bin cfgdir buildscript errHandle
@@ -27,24 +27,24 @@ index 138d735..65b5a84 100644
-- re-enable SIGCHLD:
installSignalHandlers
-@@ -594,6 +596,7 @@ recompile force = io $ do
- -- now, if it fails, run xmessage to let the user know:
- when (status /= ExitSuccess) $ do
- ghcErr <- readFile err
-+ xmessage <- fromMaybe "xmessage" <$> liftIO (lookupEnv "XMONAD_XMESSAGE")
- let msg = unlines $
- ["Error detected while loading xmonad configuration file: " ++ src]
- ++ lines (if null ghcErr then show status else ghcErr)
-@@ -601,7 +604,7 @@ recompile force = io $ do
- -- nb, the ordering of printing, then forking, is crucial due to
- -- lazy evaluation
- hPutStrLn stderr msg
-- forkProcess $ executeFile "xmessage" True ["-default", "okay", replaceUnicode msg] Nothing
-+ forkProcess $ executeFile xmessage True ["-default", "okay", replaceUnicode msg] Nothing
- return ()
+@@ -653,6 +655,7 @@ recompile force = io $ do
+ then trace "XMonad recompilation process exited with success!"
+ else do
+ ghcErr <- readFile err
++ xmessage <- fromMaybe "xmessage" <$> liftIO (lookupEnv "XMONAD_XMESSAGE")
+ let msg = unlines $
+ ["Error detected while loading xmonad configuration file: " ++ src]
+ ++ lines (if null ghcErr then show status else ghcErr)
+@@ -660,7 +663,7 @@ recompile force = io $ do
+ -- nb, the ordering of printing, then forking, is crucial due to
+ -- lazy evaluation
+ hPutStrLn stderr msg
+- forkProcess $ executeFile "xmessage" True ["-default", "okay", replaceUnicode msg] Nothing
++ forkProcess $ executeFile xmessage True ["-default", "okay", replaceUnicode msg] Nothing
+ return ()
return (status == ExitSuccess)
else return True
-@@ -619,16 +622,16 @@ recompile force = io $ do
+@@ -678,16 +681,16 @@ recompile force = io $ do
'\8216' -> '`' -- ‘
'\8217' -> '`' -- ’
_ -> c
diff --git a/pkgs/development/haskell-modules/with-packages-wrapper.nix b/pkgs/development/haskell-modules/with-packages-wrapper.nix
index 1a29732b651a67f3711bf82354a2c3dd5d69a488..49beed8549db443de6d59632a93ee3cc54778025 100644
--- a/pkgs/development/haskell-modules/with-packages-wrapper.nix
+++ b/pkgs/development/haskell-modules/with-packages-wrapper.nix
@@ -1,4 +1,4 @@
-{ lib, targetPlatform, ghc, llvmPackages, packages, symlinkJoin, makeWrapper
+{ lib, stdenv, ghc, llvmPackages, packages, symlinkJoin, makeWrapper
, withLLVM ? false
, postBuild ? ""
, ghcLibdir ? null # only used by ghcjs, when resolving plugins
@@ -48,7 +48,7 @@ let
# https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/codegens.html#llvm-code-generator-fllvm
llvm = lib.makeBinPath
([ llvmPackages.llvm ]
- ++ lib.optional targetPlatform.isDarwin llvmPackages.clang);
+ ++ lib.optional stdenv.targetPlatform.isDarwin llvmPackages.clang);
in
if paths == [] && !withLLVM then ghc else
symlinkJoin {
@@ -105,7 +105,7 @@ symlinkJoin {
--set "NIX_${ghcCommandCaps}_LIBDIR" "${libDir}"
fi
- '' + (lib.optionalString (targetPlatform.isDarwin && !isGhcjs && !targetPlatform.isiOS) ''
+ '' + (lib.optionalString (stdenv.targetPlatform.isDarwin && !isGhcjs && !stdenv.targetPlatform.isiOS) ''
# 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"
diff --git a/pkgs/development/interpreters/dart/default.nix b/pkgs/development/interpreters/dart/default.nix
index ae7f8686b781af39ef03085ad1cfcbdd1c5d01ad..4c697ec4e802454c70dd90fa572e6c461ba0d758 100644
--- a/pkgs/development/interpreters/dart/default.nix
+++ b/pkgs/development/interpreters/dart/default.nix
@@ -45,7 +45,7 @@ stdenv.mkDerivation {
unzip
];
- src = sources."${version}-${stdenv.system}" or (throw "unsupported version/system: ${version}/${stdenv.system}");
+ src = sources."${version}-${stdenv.hostPlatform.system}" or (throw "unsupported version/system: ${version}/${stdenv.hostPlatform.system}");
installPhase = ''
mkdir -p $out
diff --git a/pkgs/development/interpreters/elixir/1.7.nix b/pkgs/development/interpreters/elixir/1.7.nix
index 321a41f50e11c78bd58bafe7f40e923f3e3dd8a1..d97d416bc27d0efb7979880752b2dd8646783c7b 100644
--- a/pkgs/development/interpreters/elixir/1.7.nix
+++ b/pkgs/development/interpreters/elixir/1.7.nix
@@ -1,7 +1,7 @@
{ mkDerivation }:
mkDerivation rec {
- version = "1.7.2";
- sha256 = "0wnrx6wlpmr23ypm8za0c4dl952nj4rjylcsdzz0xrma92ylrqfq";
+ version = "1.7.3";
+ sha256 = "0d7rj4khmvy76z12njzwzknm1j9rhjadgj9k1chjd4gnjffkb1aa";
minimumOTPVersion = "19";
}
diff --git a/pkgs/development/interpreters/guile/1.8.nix b/pkgs/development/interpreters/guile/1.8.nix
index 53db5949f02b8cbde17dac14e1a0630e64627584..13a0d45dbe4130c80bf06363936493cb018dd677 100644
--- a/pkgs/development/interpreters/guile/1.8.nix
+++ b/pkgs/development/interpreters/guile/1.8.nix
@@ -1,5 +1,4 @@
{ stdenv, buildPackages
-, buildPlatform, hostPlatform
, fetchurl, makeWrapper, gawk, pkgconfig
, libtool, readline, gmp
}:
@@ -23,7 +22,7 @@ stdenv.mkDerivation rec {
"--with-threads=no";
depsBuildBuild = [ buildPackages.stdenv.cc ]
- ++ stdenv.lib.optional (hostPlatform != buildPlatform)
+ ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
buildPackages.buildPackages.guile_1_8;
nativeBuildInputs = [ makeWrapper gawk pkgconfig ];
buildInputs = [ readline libtool ];
diff --git a/pkgs/development/interpreters/guile/2.0.nix b/pkgs/development/interpreters/guile/2.0.nix
index 848b8666f27de6f96fd29dc8550592bfe4e43145..ea34fd61f3b72661e307074b84c4bfd845d09061 100644
--- a/pkgs/development/interpreters/guile/2.0.nix
+++ b/pkgs/development/interpreters/guile/2.0.nix
@@ -1,5 +1,4 @@
{ stdenv, buildPackages
-, buildPlatform, hostPlatform
, fetchpatch, fetchurl, makeWrapper, gawk, pkgconfig
, libffi, libtool, readline, gmp, boehmgc, libunistring
, coverageAnalysis ? null
@@ -22,7 +21,7 @@
setOutputFlags = false; # $dev gets into the library otherwise
depsBuildBuild = [ buildPackages.stdenv.cc ]
- ++ stdenv.lib.optional (hostPlatform != buildPlatform)
+ ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
buildPackages.buildPackages.guile_2_0;
nativeBuildInputs = [ makeWrapper gawk pkgconfig ];
buildInputs = [ readline libtool libunistring libffi ];
diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix
index 8110598e17304b99c2a43c3a184ce3afe9fbbe5e..aacc5dc49a10aec577f38a87e82b968b9e9e7f3f 100644
--- a/pkgs/development/interpreters/guile/default.nix
+++ b/pkgs/development/interpreters/guile/default.nix
@@ -1,5 +1,4 @@
{ stdenv, buildPackages
-, buildPlatform, hostPlatform
, fetchurl, makeWrapper, gawk, pkgconfig
, libffi, libtool, readline, gmp, boehmgc, libunistring
, coverageAnalysis ? null
@@ -23,7 +22,7 @@
setOutputFlags = false; # $dev gets into the library otherwise
depsBuildBuild = [ buildPackages.stdenv.cc ]
- ++ stdenv.lib.optional (hostPlatform != buildPlatform)
+ ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
buildPackages.buildPackages.guile;
nativeBuildInputs = [ makeWrapper gawk pkgconfig ];
buildInputs = [ readline libtool libunistring libffi ];
diff --git a/pkgs/development/interpreters/python/cpython/2.7/default.nix b/pkgs/development/interpreters/python/cpython/2.7/default.nix
index fd84d924d7b80efc7c377376c66fa430d4596a32..df8e6ebf89ffde2930793da4e54c0ce53222c72a 100644
--- a/pkgs/development/interpreters/python/cpython/2.7/default.nix
+++ b/pkgs/development/interpreters/python/cpython/2.7/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, hostPlatform, buildPlatform, buildPackages, fetchurl
+{ stdenv, buildPackages, fetchurl
, bzip2
, gdbm
, fetchpatch
@@ -85,7 +85,7 @@ let
# libuuid, slowing down program startup a lot).
./no-ldconfig.patch
- ] ++ optionals hostPlatform.isCygwin [
+ ] ++ optionals stdenv.hostPlatform.isCygwin [
./2.5.2-ctypes-util-find_library.patch
./2.5.2-tkinter-x11.patch
./2.6.2-ssl-threads.patch
@@ -125,14 +125,14 @@ let
"--enable-shared"
"--with-threads"
"--enable-unicode=ucs${toString ucsEncoding}"
- ] ++ optionals (hostPlatform.isCygwin || hostPlatform.isAarch64) [
+ ] ++ optionals (stdenv.hostPlatform.isCygwin || stdenv.hostPlatform.isAarch64) [
"--with-system-ffi"
- ] ++ optionals hostPlatform.isCygwin [
+ ] ++ optionals stdenv.hostPlatform.isCygwin [
"--with-system-expat"
"ac_cv_func_bind_textdomain_codeset=yes"
] ++ optionals stdenv.isDarwin [
"--disable-toolbox-glue"
- ] ++ optionals (hostPlatform != buildPlatform) [
+ ] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"PYTHON_FOR_BUILD=${getBin buildPackages.python}/bin/python"
"ac_cv_buggy_getaddrinfo=no"
# Assume little-endian IEEE 754 floating point when cross compiling
@@ -157,18 +157,18 @@ let
]
# Never even try to use lchmod on linux,
# don't rely on detecting glibc-isms.
- ++ optional hostPlatform.isLinux "ac_cv_func_lchmod=no";
+ ++ optional stdenv.hostPlatform.isLinux "ac_cv_func_lchmod=no";
buildInputs =
optional (stdenv ? cc && stdenv.cc.libc != null) stdenv.cc.libc ++
[ bzip2 openssl zlib ]
- ++ optional (hostPlatform.isCygwin || hostPlatform.isAarch64) libffi
- ++ optional hostPlatform.isCygwin expat
+ ++ optional (stdenv.hostPlatform.isCygwin || stdenv.hostPlatform.isAarch64) libffi
+ ++ optional stdenv.hostPlatform.isCygwin expat
++ [ db gdbm ncurses sqlite readline ]
++ optionals x11Support [ tcl tk xlibsWrapper libX11 ]
++ optionals stdenv.isDarwin ([ CF ] ++ optional (configd != null) configd);
nativeBuildInputs =
- optionals (hostPlatform != buildPlatform)
+ optionals (stdenv.hostPlatform != stdenv.buildPlatform)
[ buildPackages.stdenv.cc buildPackages.python ];
mkPaths = paths: {
@@ -190,7 +190,7 @@ in stdenv.mkDerivation {
inherit (mkPaths buildInputs) C_INCLUDE_PATH LIBRARY_PATH;
NIX_CFLAGS_COMPILE = optionalString stdenv.isDarwin "-msse2"
- + optionalString hostPlatform.isMusl " -DTHREAD_STACK_SIZE=0x100000";
+ + optionalString stdenv.hostPlatform.isMusl " -DTHREAD_STACK_SIZE=0x100000";
DETERMINISTIC_BUILD = 1;
setupHook = python-setup-hook sitePackages;
@@ -235,7 +235,7 @@ in stdenv.mkDerivation {
find $out -name "*.py" | $out/bin/python -m compileall -q -f -x "lib2to3" -i -
find $out -name "*.py" | $out/bin/python -O -m compileall -q -f -x "lib2to3" -i -
find $out -name "*.py" | $out/bin/python -OO -m compileall -q -f -x "lib2to3" -i -
- '' + optionalString hostPlatform.isCygwin ''
+ '' + optionalString stdenv.hostPlatform.isCygwin ''
cp libpython2.7.dll.a $out/lib
'';
diff --git a/pkgs/development/interpreters/qnial/default.nix b/pkgs/development/interpreters/qnial/default.nix
index 0e368b31cdf4a34c2668e46f10bd2d0ddc12cabc..779039c6d6aa4bd2da4161246024c8a2e0815100 100644
--- a/pkgs/development/interpreters/qnial/default.nix
+++ b/pkgs/development/interpreters/qnial/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
meta = {
description = "An array language from Nial Systems";
- homepage = http://www.nial.com;
+ homepage = https://github.com/vrthra/qnial;
license = stdenv.lib.licenses.artistic1;
maintainers = [ stdenv.lib.maintainers.vrthra ];
platforms = stdenv.lib.platforms.linux;
diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix
index d002f6eb31c1e325ccdc72a95596e2a869156808..e8b6cc93c2c156b2bfb8ba3c46c44836f1a94370 100644
--- a/pkgs/development/interpreters/racket/default.nix
+++ b/pkgs/development/interpreters/racket/default.nix
@@ -36,7 +36,7 @@ in
stdenv.mkDerivation rec {
name = "racket-${version}";
- version = "6.12";
+ version = "7.0";
src = (stdenv.lib.makeOverridable ({ name, sha256 }:
fetchurl rec {
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
}
)) {
inherit name;
- sha256 = "0cwcypzjfl9py1s695mhqkiapff7c1w29llsmdj7qgn58wl0apk5";
+ sha256 = "1glv5amsp9xp480d4yr63hhm9kkyav06yl3a6p489nkr4cln0j9a";
};
FONTCONFIG_FILE = fontsConf;
diff --git a/pkgs/development/interpreters/racket/minimal.nix b/pkgs/development/interpreters/racket/minimal.nix
index c63d0040cfee1108fd29bd6c4b69352f5092c35e..ba4e94cbf13f8945a4351a1473ad6a62fe5ea222 100644
--- a/pkgs/development/interpreters/racket/minimal.nix
+++ b/pkgs/development/interpreters/racket/minimal.nix
@@ -5,7 +5,7 @@ racket.overrideAttrs (oldAttrs: rec {
name = "racket-minimal-${oldAttrs.version}";
src = oldAttrs.src.override {
inherit name;
- sha256 = "0c565jy2y3gjl5lncd5adjsrj8c24p4i062kphv26ni5q1nn5ip5";
+ sha256 = "0ivpr1a2w1ln1lx91q11rj9wp3rbfq33acrz2gxxvd80qqaq3zyh";
};
meta = oldAttrs.meta // {
diff --git a/pkgs/development/interpreters/ruby/patchsets.nix b/pkgs/development/interpreters/ruby/patchsets.nix
index e53f231884d935b7d4a4da0e6d717202cd6ec756..ca180b3c2294fb99663a7454e0a297318f237e65 100644
--- a/pkgs/development/interpreters/ruby/patchsets.nix
+++ b/pkgs/development/interpreters/ruby/patchsets.nix
@@ -1,11 +1,6 @@
{ patchSet, useRailsExpress, ops, patchLevel }:
rec {
- "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.7" = 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"
diff --git a/pkgs/development/interpreters/spidermonkey/1.8.5.nix b/pkgs/development/interpreters/spidermonkey/1.8.5.nix
index bd53450de4ef4b1af398d9b4598bd2d26b0dc7ef..4663719558681501c152e20af2ec2ce68c847755 100644
--- a/pkgs/development/interpreters/spidermonkey/1.8.5.nix
+++ b/pkgs/development/interpreters/spidermonkey/1.8.5.nix
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
# of polkit, which is what matters most, it does not override the allocator
# so the failure of that test does not matter much.
configureFlags = [ "--enable-threadsafe" "--with-system-nspr" ] ++
- stdenv.lib.optionals (stdenv.system == "armv5tel-linux") [
+ stdenv.lib.optionals (stdenv.hostPlatform.system == "armv5tel-linux") [
"--with-cpu-arch=armv5t"
"--disable-tracejit" ];
diff --git a/pkgs/development/libraries/LASzip/default.nix b/pkgs/development/libraries/LASzip/default.nix
index 4a166242eb3af49f65e6c5cd786c4a2310591ac8..9522038df6af75f819d5fd5b3b2f21da9c9d628b 100644
--- a/pkgs/development/libraries/LASzip/default.nix
+++ b/pkgs/development/libraries/LASzip/default.nix
@@ -8,12 +8,12 @@ stdenv.mkDerivation rec {
url = "https://github.com/LASzip/LASzip/archive/v${version}.tar.gz";
sha256 = "b8e8cc295f764b9d402bc587f3aac67c83ed8b39f1cb686b07c168579c61fbb2";
};
-
+
buildInputs = [cmake];
meta = {
description = "Turn quickly bulky LAS files into compact LAZ files without information loss";
- homepage = https://www.laszip.org;
+ homepage = https://laszip.org;
license = stdenv.lib.licenses.lgpl2;
maintainers = [ stdenv.lib.maintainers.michelk ];
platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/development/libraries/SDL/default.nix b/pkgs/development/libraries/SDL/default.nix
index c7e4a9c29ac83b8061a1d393c0e9b279d70338bd..7bbb1a5e1c92e54bbf1e5583aadf9bd861c90161 100644
--- a/pkgs/development/libraries/SDL/default.nix
+++ b/pkgs/development/libraries/SDL/default.nix
@@ -1,10 +1,9 @@
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, audiofile, libcap, libiconv
, openglSupport ? false, libGL, libGLU
, alsaSupport ? true, alsaLib
-, x11Support ? hostPlatform == buildPlatform, libXext, libICE, libXrandr
+, x11Support ? stdenv.hostPlatform == stdenv.buildPlatform, libXext, libICE, libXrandr
, pulseaudioSupport ? true, libpulseaudio
, OpenGL, CoreAudio, CoreServices, AudioUnit, Kernel, Cocoa
-, hostPlatform, buildPlatform
}:
# NOTE: When editing this expression see if the same change applies to
@@ -41,7 +40,7 @@ stdenv.mkDerivation rec {
++ optional stdenv.isDarwin Cocoa;
buildInputs = [ ]
- ++ optional (!hostPlatform.isMinGW) audiofile
+ ++ optional (!stdenv.hostPlatform.isMinGW) audiofile
++ optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreServices Kernel OpenGL ];
configureFlags = [
diff --git a/pkgs/development/libraries/apr/default.nix b/pkgs/development/libraries/apr/default.nix
index 7d7acf90a95c25b18720fc39b8645ee96506fe58..705f61445b59f1beec8f50fdb431279e8613997c 100644
--- a/pkgs/development/libraries/apr/default.nix
+++ b/pkgs/development/libraries/apr/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
configureFlags =
# Including the Windows headers breaks unistd.h.
# Based on ftp://sourceware.org/pub/cygwin/release/libapr1/libapr1-1.3.8-2-src.tar.bz2
- stdenv.lib.optional (stdenv.system == "i686-cygwin") "ac_cv_header_windows_h=no";
+ stdenv.lib.optional (stdenv.hostPlatform.system == "i686-cygwin") "ac_cv_header_windows_h=no";
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/armadillo/default.nix b/pkgs/development/libraries/armadillo/default.nix
index c61e960e051d64747a75759aadfb0f4a657d6fd1..16ba6b32382a23e6da27d511d1baea3257787727 100644
--- a/pkgs/development/libraries/armadillo/default.nix
+++ b/pkgs/development/libraries/armadillo/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
stdenv.mkDerivation rec {
- version = "8.600.0";
+ version = "9.100.5";
name = "armadillo-${version}";
src = fetchurl {
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
- sha256 = "0h3bj93s7pr7nfwgjx6c49hgf6jlp5ninp921a8krhkzx4swf02z";
+ sha256 = "1ka1vd9fcmvp12qkcm4888dkfqwnalvv00x04wy29f3nx3qwczby";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/libraries/arrow-cpp/default.nix b/pkgs/development/libraries/arrow-cpp/default.nix
index 8e89aeb21a2430a1024c9c08daabefa7cdfa791b..952f7435c0694376584b99ba1ab81552430d58d3 100644
--- a/pkgs/development/libraries/arrow-cpp/default.nix
+++ b/pkgs/development/libraries/arrow-cpp/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "arrow-cpp-${version}";
- version = "0.10.0";
+ version = "0.9.0";
src = fetchurl {
url = "mirror://apache/arrow/arrow-${version}/apache-arrow-${version}.tar.gz";
- sha256 = "0bc4krapz1kzdm16npzmgdz7zvg9lip6rnqbwph8vfn7zji0fcll";
+ sha256 = "16l91fixb5dgx3v6xc73ipn1w1hjgbmijyvs81j7ywzpna2cdcdy";
};
sourceRoot = "apache-arrow-${version}/cpp";
diff --git a/pkgs/development/libraries/attr/default.nix b/pkgs/development/libraries/attr/default.nix
index 96fe5b89a18ceac12f8fe8a201aa61a385469f36..944f33b7a3f99c44f773e7fab83c4c739a5c8ac5 100644
--- a/pkgs/development/libraries/attr/default.nix
+++ b/pkgs/development/libraries/attr/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, gettext, hostPlatform }:
+{ stdenv, fetchurl, gettext }:
stdenv.mkDerivation rec {
name = "attr-2.4.47";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
installTargets = [ "install" "install-lib" "install-dev" ];
- patches = if (hostPlatform.libc == "musl") then [ ./fix-headers-musl.patch ] else null;
+ patches = if (stdenv.hostPlatform.libc == "musl") then [ ./fix-headers-musl.patch ] else null;
postPatch = ''
for script in install-sh include/install-sh; do
diff --git a/pkgs/development/libraries/audio/jamomacore/default.nix b/pkgs/development/libraries/audio/jamomacore/default.nix
index 4e316ff1c99119b3c94d89cc53b90d89426616d9..b79d85bcd7c950c82aa1ca746a1dcc2eb49e06e8 100644
--- a/pkgs/development/libraries/audio/jamomacore/default.nix
+++ b/pkgs/development/libraries/audio/jamomacore/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
meta = {
description = "A C++ platform for building dynamic and reflexive systems with an emphasis on audio and media";
- homepage = https://jamoma.org;
+ homepage = http://www.jamoma.org;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.magnetophon ];
platforms = stdenv.lib.platforms.linux;
diff --git a/pkgs/development/libraries/audio/libbass/default.nix b/pkgs/development/libraries/audio/libbass/default.nix
index ec93e2f64671f42dfa7befd1df98b2ca175fe5d0..390ca6bb04b733b5a8bafd07dc4b960e01583c54 100644
--- a/pkgs/development/libraries/audio/libbass/default.nix
+++ b/pkgs/development/libraries/audio/libbass/default.nix
@@ -41,8 +41,8 @@ let
dontBuild = true;
installPhase =
let so =
- if bass.so ? ${stdenv.system} then bass.so.${stdenv.system}
- else throw "${name} not packaged for ${stdenv.system} (yet).";
+ if bass.so ? ${stdenv.hostPlatform.system} then bass.so.${stdenv.hostPlatform.system}
+ else throw "${name} not packaged for ${stdenv.hostPlatform.system} (yet).";
in ''
mkdir -p $out/{lib,include}
install -m644 -t $out/lib/ ${so}
diff --git a/pkgs/development/libraries/aws-sdk-cpp/default.nix b/pkgs/development/libraries/aws-sdk-cpp/default.nix
index 9f41bf1af47ce938dedcfed659a0f867f12cc6be..9afb03e0d0c60774455a7276a769b08e8541c3c3 100644
--- a/pkgs/development/libraries/aws-sdk-cpp/default.nix
+++ b/pkgs/development/libraries/aws-sdk-cpp/default.nix
@@ -15,13 +15,13 @@ let
else throw "Unsupported system!";
in stdenv.mkDerivation rec {
name = "aws-sdk-cpp-${version}";
- version = "1.4.82";
+ version = "1.5.17";
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-sdk-cpp";
rev = version;
- sha256 = "1m5xylcwx5vhz0q3srlq9rbr4x9kydd77mf45agd60clq25sxs69";
+ sha256 = "0mmzf3js6090kk9vdwrmib5cjny43mqf044iynkhkglzvwhadc8z";
};
# FIXME: might be nice to put different APIs in different outputs
diff --git a/pkgs/development/libraries/boehm-gc/default.nix b/pkgs/development/libraries/boehm-gc/default.nix
index c11d6689624d384a5e32ad9a0ed14bf5961bd4e6..da71e40187f4a36d3fec8d657d52feeb723f6b2f 100644
--- a/pkgs/development/libraries/boehm-gc/default.nix
+++ b/pkgs/development/libraries/boehm-gc/default.nix
@@ -1,6 +1,5 @@
{ lib, stdenv, fetchurl, fetchpatch, pkgconfig, libatomic_ops
, enableLargeConfig ? false # doc: https://github.com/ivmai/bdwgc/blob/v7.6.6/doc/README.macros#L179
-, buildPlatform, hostPlatform
}:
stdenv.mkDerivation rec {
@@ -30,7 +29,7 @@ stdenv.mkDerivation rec {
sha256 = "1gydwlklvci30f5dpp5ccw2p2qpph5y41r55wx9idamjlq66fbb3";
}) ] ++
# https://github.com/ivmai/bdwgc/pull/208
- lib.optional hostPlatform.isRiscV ./riscv.patch;
+ lib.optional stdenv.hostPlatform.isRiscV ./riscv.patch;
configureFlags =
[ "--enable-cplusplus" ]
@@ -40,7 +39,7 @@ stdenv.mkDerivation rec {
doCheck = true; # not cross;
# Don't run the native `strip' when cross-compiling.
- dontStrip = hostPlatform != buildPlatform;
+ dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/boost/1.66.nix b/pkgs/development/libraries/boost/1.66.nix
index 932ebdcb463a227f5c09136953fb7459c01fd2ea..e8321c8023591a266c25705ca8e644cd06b6e049 100644
--- a/pkgs/development/libraries/boost/1.66.nix
+++ b/pkgs/development/libraries/boost/1.66.nix
@@ -1,4 +1,4 @@
-{ stdenv, callPackage, fetchurl, hostPlatform, buildPlatform, ... } @ args:
+{ stdenv, callPackage, fetchurl, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.66_0";
diff --git a/pkgs/development/libraries/boost/1.67.nix b/pkgs/development/libraries/boost/1.67.nix
index 150272df6ca3f871ce28f1b166d48830ef7d1c08..0f341217dcab4fe4eedcedf16da264fd72d266f2 100644
--- a/pkgs/development/libraries/boost/1.67.nix
+++ b/pkgs/development/libraries/boost/1.67.nix
@@ -1,4 +1,4 @@
-{ stdenv, callPackage, fetchurl, fetchpatch, hostPlatform, buildPlatform, ... } @ args:
+{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.67_0";
diff --git a/pkgs/development/libraries/boost/1.68.nix b/pkgs/development/libraries/boost/1.68.nix
index 081b105e2d20516d5178cae728dd1f7c90f33e51..97879051a67cf1b7099d1b5eda36f8fa001e548b 100644
--- a/pkgs/development/libraries/boost/1.68.nix
+++ b/pkgs/development/libraries/boost/1.68.nix
@@ -1,4 +1,4 @@
-{ stdenv, callPackage, fetchurl, fetchpatch, hostPlatform, buildPlatform, ... } @ args:
+{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.68_0";
diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix
index dab6fac6f0ccfa6f73a15e7253ccadc12be91194..32899b748113569d8a93a08e4f5ddb8c6fe50a9d 100644
--- a/pkgs/development/libraries/boost/generic.nix
+++ b/pkgs/development/libraries/boost/generic.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, fixDarwinDylibNames, libiconv
, which
-, buildPackages, buildPlatform, hostPlatform
+, buildPackages
, toolset ? /**/ if stdenv.cc.isClang then "clang"
else null
, enableRelease ? true
, enableDebug ? false
, enableSingleThreaded ? false
, enableMultiThreaded ? true
-, enableShared ? !(hostPlatform.libc == "msvcrt") # problems for now
+, enableShared ? !(stdenv.hostPlatform.libc == "msvcrt") # problems for now
, enableStatic ? !enableShared
, enablePython ? false
, enableNumpy ? false
@@ -24,7 +24,7 @@
assert enableShared || enableStatic;
# Python isn't supported when cross-compiling
-assert enablePython -> hostPlatform == buildPlatform;
+assert enablePython -> stdenv.hostPlatform == stdenv.buildPlatform;
assert enableNumpy -> enablePython;
with stdenv.lib;
@@ -59,23 +59,24 @@ let
"-sEXPAT_LIBPATH=${expat.out}/lib"
# TODO: make this unconditional
- ] ++ optionals (hostPlatform != buildPlatform) [
- "address-model=${toString hostPlatform.parsed.cpu.bits}"
- "architecture=${toString hostPlatform.parsed.cpu.family}"
- "binary-format=${toString hostPlatform.parsed.kernel.execFormat.name}"
- "target-os=${toString hostPlatform.parsed.kernel.name}"
+ ] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
+ "address-model=${toString stdenv.hostPlatform.parsed.cpu.bits}"
+ "architecture=${toString stdenv.hostPlatform.parsed.cpu.family}"
+ "binary-format=${toString stdenv.hostPlatform.parsed.kernel.execFormat.name}"
+ "target-os=${toString stdenv.hostPlatform.parsed.kernel.name}"
# adapted from table in boost manual
# https://www.boost.org/doc/libs/1_66_0/libs/context/doc/html/context/architectures.html
- "abi=${if hostPlatform.parsed.cpu.family == "arm" then "aapcs"
- else if hostPlatform.isWindows then "ms"
- else if hostPlatform.isMips then "o32"
+ "abi=${if stdenv.hostPlatform.parsed.cpu.family == "arm" then "aapcs"
+ else if stdenv.hostPlatform.isWindows then "ms"
+ else if stdenv.hostPlatform.isMips then "o32"
else "sysv"}"
] ++ optional (link != "static") "runtime-link=${runtime-link}"
++ 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") [
+ ++ optional (!enablePython) "--without-python"
+ ++ optional (mpi != null || stdenv.hostPlatform != stdenv.buildPlatform) "--user-config=user-config.jam"
+ ++ optionals (stdenv.hostPlatform.libc == "msvcrt") [
"threadapi=win32"
]);
@@ -86,10 +87,10 @@ stdenv.mkDerivation {
inherit src;
- patchFlags = optionalString (hostPlatform.libc == "msvcrt") "-p0";
+ patchFlags = optionalString (stdenv.hostPlatform.libc == "msvcrt") "-p0";
patches = patches
++ optional stdenv.isDarwin ./darwin-no-system-python.patch
- ++ optional (hostPlatform.libc == "msvcrt") (fetchurl {
+ ++ optional (stdenv.hostPlatform.libc == "msvcrt") (fetchurl {
url = "https://svn.boost.org/trac/boost/raw-attachment/tickaet/7262/"
+ "boost-mingw.patch";
sha256 = "0s32kwll66k50w6r5np1y5g907b7lcpsjhfgr7rsw7q5syhzddyj";
@@ -113,7 +114,7 @@ stdenv.mkDerivation {
cat << EOF >> user-config.jam
using mpi : ${mpi}/bin/mpiCC ;
EOF
- '' + optionalString (hostPlatform != buildPlatform) ''
+ '' + optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
cat << EOF >> user-config.jam
using gcc : cross : ${stdenv.cc.targetPrefix}c++ ;
EOF
@@ -126,7 +127,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ which buildPackages.stdenv.cc ];
buildInputs = [ expat zlib bzip2 libiconv ]
- ++ optional (hostPlatform == buildPlatform) icu
+ ++ optional (stdenv.hostPlatform == stdenv.buildPlatform) icu
++ optional stdenv.isDarwin fixDarwinDylibNames
++ optional enablePython python
++ optional enableNumpy python.pkgs.numpy;
@@ -137,7 +138,7 @@ stdenv.mkDerivation {
"--includedir=$(dev)/include"
"--libdir=$(out)/lib"
] ++ optional enablePython "--with-python=${python.interpreter}"
- ++ [ (if hostPlatform == buildPlatform then "--with-icu=${icu.dev}" else "--without-icu") ]
+ ++ [ (if stdenv.hostPlatform == stdenv.buildPlatform then "--with-icu=${icu.dev}" else "--without-icu") ]
++ optional (toolset != null) "--with-toolset=${toolset}";
buildPhase = ''
@@ -157,7 +158,7 @@ stdenv.mkDerivation {
# 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") ''
+ '' + optionalString (stdenv.hostPlatform.libc == "msvcrt") ''
$RANLIB "$out/lib/"*.a
'';
diff --git a/pkgs/development/libraries/bootil/default.nix b/pkgs/development/libraries/bootil/default.nix
index 160f6230594525e9820ff567759ab85d688bb087..b64cdd5245fd3c309e66dedb3aaca8fbec23b57f 100644
--- a/pkgs/development/libraries/bootil/default.nix
+++ b/pkgs/development/libraries/bootil/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
platform =
if stdenv.isLinux then "linux"
else if stdenv.isDarwin then "macosx"
- else throw "unrecognized system ${stdenv.system}";
+ else throw "unrecognized system ${stdenv.hostPlatform.system}";
buildInputs = [ premake4 ];
diff --git a/pkgs/development/libraries/bwidget/default.nix b/pkgs/development/libraries/bwidget/default.nix
index 76c041e2ad565a12878ac871309d0339398d5076..99168fbe9e3ea3ae762b340d7b8f7689ed934733 100644
--- a/pkgs/development/libraries/bwidget/default.nix
+++ b/pkgs/development/libraries/bwidget/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
buildInputs = [ tcl ];
meta = {
- homepage = http://tcl.activestate.com/software/tcllib/;
+ homepage = https://sourceforge.net/projects/tcllib;
description = "High-level widget set for Tcl/Tk";
license = stdenv.lib.licenses.tcltk;
platforms = stdenv.lib.platforms.linux;
diff --git a/pkgs/development/libraries/c-ares/default.nix b/pkgs/development/libraries/c-ares/default.nix
index 17624549117999a107bb573ab548e6588ad3fa29..1835356e627d7300a0c888630c040b39bd9bd368 100644
--- a/pkgs/development/libraries/c-ares/default.nix
+++ b/pkgs/development/libraries/c-ares/default.nix
@@ -1,4 +1,4 @@
-{ targetPlatform, stdenv, fetchurl, writeTextDir }:
+{ stdenv, fetchurl, writeTextDir }:
let self =
stdenv.mkDerivation rec {
@@ -40,8 +40,8 @@ stdenv.mkDerivation rec {
)
set_property(TARGET c-ares::cares APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(c-ares::cares PROPERTIES
- IMPORTED_LOCATION_RELEASE "${self}/lib/libcares${targetPlatform.extensions.sharedLibrary}"
- IMPORTED_SONAME_RELEASE "libcares${targetPlatform.extensions.sharedLibrary}"
+ IMPORTED_LOCATION_RELEASE "${self}/lib/libcares${stdenv.targetPlatform.extensions.sharedLibrary}"
+ IMPORTED_SONAME_RELEASE "libcares${stdenv.targetPlatform.extensions.sharedLibrary}"
)
add_library(c-ares::cares_shared INTERFACE IMPORTED)
set_target_properties(c-ares::cares_shared PROPERTIES INTERFACE_LINK_LIBRARIES "c-ares::cares")
diff --git a/pkgs/development/libraries/clipper/default.nix b/pkgs/development/libraries/clipper/default.nix
index 31af3758782119f22dc810b231cd6c8b48e41f0d..086816655d3b6ea94a3ba85c339f888a9c0517ab 100644
--- a/pkgs/development/libraries/clipper/default.nix
+++ b/pkgs/development/libraries/clipper/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
The Clipper library performs line & polygon clipping - intersection, union, difference & exclusive-or,
and line & polygon offsetting. The library is based on Vatti's clipping algorithm.
'';
- homepage = https://www.angusj.com/delphi/clipper.php;
+ homepage = https://sourceforge.net/projects/polyclipping;
license = licenses.boost;
maintainers = with maintainers; [ mpickering ];
platforms = with platforms; unix;
diff --git a/pkgs/development/libraries/cmrt/default.nix b/pkgs/development/libraries/cmrt/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..8044d7165f75772f6725914f9e4eebe3eabd9756
--- /dev/null
+++ b/pkgs/development/libraries/cmrt/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, autoreconfHook, pkgconfig, libdrm, libva }:
+
+stdenv.mkDerivation rec {
+ name = "cmrt-${version}";
+ version = "1.0.6";
+
+ src = fetchurl {
+ url = "https://github.com/intel/cmrt/archive/${version}.tar.gz";
+ sha256 = "1q7651nvvcqhph5rgfhklm71zqd0c405mrh3wx0cfzvil82yj8na";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+ buildInputs = [ libdrm libva ];
+
+ meta = with stdenv.lib; {
+ homepage = https://01.org/linuxmedia;
+ description = "Intel C for Media Runtime";
+ longDescription = "Media GPU kernel manager for Intel G45 & HD Graphics family";
+ license = licenses.mit;
+ maintainers = with maintainers; [ tadfisher ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/libraries/crypto++/default.nix b/pkgs/development/libraries/crypto++/default.nix
index ba5b2aa43718a1db7ece74c2f48a3e1d36822247..cbd3e40541599aef6e398e8db85c0811d5d3f8ca 100644
--- a/pkgs/development/libraries/crypto++/default.nix
+++ b/pkgs/development/libraries/crypto++/default.nix
@@ -12,9 +12,10 @@ stdenv.mkDerivation rec {
sha256 = "1yk7jyf4va9425cg05llskpls2jm7n3jwy2hj5jm74zkr4mwpvl7";
};
- patches = with stdenv;
- lib.optional (system != "i686-cygwin") ./dll.patch
- ++ lib.optional isDarwin ./GNUmakefile-darwin.patch;
+ patches = stdenv.lib.concatLists [
+ (stdenv.lib.optional (stdenv.hostPlatform.system != "i686-cygwin") ./dll.patch)
+ (stdenv.lib.optional stdenv.hostPlatform.isDarwin ./GNUmakefile-darwin.patch)
+ ];
configurePhase = let
diff --git a/pkgs/development/libraries/dbxml/default.nix b/pkgs/development/libraries/dbxml/default.nix
index 0bab58b242d03f0d08854516fe87a1ca5294996f..da7549aeea362065d5975b70e02360629eb56f4b 100644
--- a/pkgs/development/libraries/dbxml/default.nix
+++ b/pkgs/development/libraries/dbxml/default.nix
@@ -15,7 +15,11 @@ stdenv.mkDerivation rec {
];
buildInputs = [
- db62 xercesc xqilla
+ xercesc xqilla
+ ];
+
+ propagatedBuildInputs = [
+ db62
];
configureFlags = [
diff --git a/pkgs/development/libraries/ffmpeg-full/default.nix b/pkgs/development/libraries/ffmpeg-full/default.nix
index e413e29e7ca1c20cdcc647ad39409ad257fee21b..4c1ad34f6da3742a291c09dbdbd64494d9069eac 100644
--- a/pkgs/development/libraries/ffmpeg-full/default.nix
+++ b/pkgs/development/libraries/ffmpeg-full/default.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchurl, pkgconfig, perl, texinfo, yasm
-, hostPlatform
/*
* Licensing options (yes some are listed twice, filters and such are not listed)
*/
@@ -253,8 +252,8 @@ stdenv.mkDerivation rec {
configurePlatforms = [];
configureFlags = [
- "--target_os=${hostPlatform.parsed.kernel.name}"
- "--arch=${hostPlatform.parsed.cpu.name}"
+ "--target_os=${stdenv.hostPlatform.parsed.kernel.name}"
+ "--arch=${stdenv.hostPlatform.parsed.cpu.name}"
/*
* Licensing flags
*/
diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix
index 4bb995ff0743e44100ba5898e3bc3a4d3cce2bae..89e06f8b8d922e805c60efd37bd160f9c979fb9e 100644
--- a/pkgs/development/libraries/ffmpeg/generic.nix
+++ b/pkgs/development/libraries/ffmpeg/generic.nix
@@ -1,8 +1,7 @@
{ stdenv, fetchurl, pkgconfig, perl, texinfo, yasm
, alsaLib, bzip2, fontconfig, freetype, gnutls, libiconv, lame, libass, libogg
-, libtheora, libva, libvorbis, libvpx, lzma, libpulseaudio, soxr
-, x264, x265, xvidcore, zlib, libopus
-, hostPlatform
+, libssh, libtheora, libva, libvorbis, libvpx, lzma, libpulseaudio, soxr
+, x264, x265, xvidcore, zlib, libopus, speex
, openglSupport ? false, libGLU_combined ? null
# Build options
, runtimeCpuDetectBuild ? true # Detect CPU capabilities at runtime
@@ -83,8 +82,8 @@ stdenv.mkDerivation rec {
configurePlatforms = [];
configureFlags = [
- "--arch=${hostPlatform.parsed.cpu.name}"
- "--target_os=${hostPlatform.parsed.kernel.name}"
+ "--arch=${stdenv.hostPlatform.parsed.cpu.name}"
+ "--target_os=${stdenv.hostPlatform.parsed.kernel.name}"
# License
"--enable-gpl"
"--enable-version3"
@@ -129,6 +128,7 @@ stdenv.mkDerivation rec {
"--enable-libmp3lame"
(ifMinVer "1.2" "--enable-iconv")
"--enable-libtheora"
+ "--enable-libssh"
(ifMinVer "0.6" (enableFeature vaapiSupport "vaapi"))
"--enable-vdpau"
"--enable-libvorbis"
@@ -142,6 +142,7 @@ stdenv.mkDerivation rec {
"--enable-libxvid"
"--enable-zlib"
(ifMinVer "2.8" "--enable-libopus")
+ "--enable-libspeex"
(ifMinVer "2.8" "--enable-libx265")
# Developer flags
(enableFeature debugDeveloper "debug")
@@ -158,8 +159,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ perl pkgconfig texinfo yasm ];
buildInputs = [
- bzip2 fontconfig freetype gnutls libiconv lame libass libogg libtheora
- libvdpau libvorbis lzma soxr x264 x265 xvidcore zlib libopus
+ bzip2 fontconfig freetype gnutls libiconv lame libass libogg libssh libtheora
+ libvdpau libvorbis lzma soxr x264 x265 xvidcore zlib libopus speex
] ++ optional openglSupport libGLU_combined
++ optional vpxSupport libvpx
++ optionals (!isDarwin && !isAarch32) [ libpulseaudio ] # Need to be fixed on Darwin and ARM
diff --git a/pkgs/development/libraries/fontconfig/2.10.nix b/pkgs/development/libraries/fontconfig/2.10.nix
index eae93d96f453f7ae88975a34fac9417532a91bd4..1d66735569d59c07ebad488067ddbd46966f8116 100644
--- a/pkgs/development/libraries/fontconfig/2.10.nix
+++ b/pkgs/development/libraries/fontconfig/2.10.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchurl, pkgconfig, freetype, expat
-, hostPlatform
}:
stdenv.mkDerivation rec {
@@ -17,13 +16,13 @@ stdenv.mkDerivation rec {
buildInputs = [ expat ];
configureFlags = [
- "--with-arch=${hostPlatform.parsed.cpu.name}"
+ "--with-arch=${stdenv.hostPlatform.parsed.cpu.name}"
"--sysconfdir=/etc"
"--with-cache-dir=/var/cache/fontconfig"
"--disable-docs"
"--with-default-fonts="
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
- "--with-arch=${hostPlatform.parsed.cpu.name}"
+ "--with-arch=${stdenv.hostPlatform.parsed.cpu.name}"
];
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/fontconfig/default.nix b/pkgs/development/libraries/fontconfig/default.nix
index 01c4140f3b5ca1cb07315e438539cf062f844762..1a028526726c7357f682f5a4a321c812e9cb6994 100644
--- a/pkgs/development/libraries/fontconfig/default.nix
+++ b/pkgs/development/libraries/fontconfig/default.nix
@@ -1,6 +1,5 @@
{ stdenv, substituteAll, fetchurl
, pkgconfig, freetype, expat, libxslt, gperf, dejavu_fonts
-, hostPlatform
}:
/** Font configuration scheme
@@ -40,13 +39,13 @@ stdenv.mkDerivation rec {
buildInputs = [ expat ];
configureFlags = [
- "--with-arch=${hostPlatform.parsed.cpu.name}"
+ "--with-arch=${stdenv.hostPlatform.parsed.cpu.name}"
"--with-cache-dir=/var/cache/fontconfig" # otherwise the fallback is in $out/
"--disable-docs"
# just <1MB; this is what you get when loading config fails for some reason
"--with-default-fonts=${dejavu_fonts.minimal}"
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
- "--with-arch=${hostPlatform.parsed.cpu.name}"
+ "--with-arch=${stdenv.hostPlatform.parsed.cpu.name}"
];
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/gbenchmark/default.nix b/pkgs/development/libraries/gbenchmark/default.nix
index d700c3d3c16045d595146a78f72f19cfe6cedf81..5ce08cbe636f5c9e0aa4cb238947d3b7c4bce023 100644
--- a/pkgs/development/libraries/gbenchmark/default.nix
+++ b/pkgs/development/libraries/gbenchmark/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
description = "A microbenchmark support library";
homepage = https://github.com/google/benchmark;
license = licenses.asl20;
- platforms = platforms.linux;
+ platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ abbradar ];
};
}
diff --git a/pkgs/development/libraries/gcc/libgcc/default.nix b/pkgs/development/libraries/gcc/libgcc/default.nix
index 0a29ab6927f74dc8b5a39ed0584e627c70ebce8c..d638c2bb2788c58506a877dc10d8c5ab5454fe59 100644
--- a/pkgs/development/libraries/gcc/libgcc/default.nix
+++ b/pkgs/development/libraries/gcc/libgcc/default.nix
@@ -1,4 +1,4 @@
-{ stdenvNoLibs, buildPackages, buildPlatform, hostPlatform
+{ stdenvNoLibs, buildPackages
, gcc, glibc
, libiberty
}:
@@ -29,8 +29,8 @@ stdenvNoLibs.mkDerivation rec {
# Drop in libiberty, as external builds are not expected
+ ''
(
- mkdir -p build-${buildPlatform.config}/libiberty/
- cd build-${buildPlatform.config}/libiberty/
+ mkdir -p build-${stdenvNoLibs.buildPlatform.config}/libiberty/
+ cd build-${stdenvNoLibs.buildPlatform.config}/libiberty/
ln -s ${buildPackages.libiberty}/lib/libiberty.a ./
)
''
@@ -83,8 +83,8 @@ stdenvNoLibs.mkDerivation rec {
''
# Preparing to configure + build libgcc itself
+ ''
- mkdir -p "$buildRoot/gcc/${hostPlatform.config}/libgcc"
- cd "$buildRoot/gcc/${hostPlatform.config}/libgcc"
+ mkdir -p "$buildRoot/gcc/${stdenvNoLibs.hostPlatform.config}/libgcc"
+ cd "$buildRoot/gcc/${stdenvNoLibs.hostPlatform.config}/libgcc"
configureScript=$sourceRoot/configure
chmod +x "$configureScript"
@@ -107,9 +107,9 @@ stdenvNoLibs.mkDerivation rec {
'';
gccConfigureFlags = [
- "--build=${buildPlatform.config}"
- "--host=${buildPlatform.config}"
- "--target=${hostPlatform.config}"
+ "--build=${stdenvNoLibs.buildPlatform.config}"
+ "--host=${stdenvNoLibs.buildPlatform.config}"
+ "--target=${stdenvNoLibs.hostPlatform.config}"
"--disable-bootstrap"
"--disable-multilib" "--with-multilib-list="
@@ -128,7 +128,7 @@ stdenvNoLibs.mkDerivation rec {
"--disable-vtable-verify"
"--with-system-zlib"
- ] ++ stdenvNoLibs.lib.optional (hostPlatform.libc == "glibc")
+ ] ++ stdenvNoLibs.lib.optional (stdenvNoLibs.hostPlatform.libc == "glibc")
"--with-glibc-version=${glibc.version}";
configurePlatforms = [ "build" "host" ];
@@ -144,9 +144,9 @@ stdenvNoLibs.mkDerivation rec {
makeFlags = [ "MULTIBUILDTOP:=../" ];
postInstall = ''
- moveToOutput "lib/gcc/${hostPlatform.config}/${version}/include" "$dev"
+ moveToOutput "lib/gcc/${stdenvNoLibs.hostPlatform.config}/${version}/include" "$dev"
mkdir -p "$out/lib" "$dev/include"
- ln -s "$out/lib/gcc/${hostPlatform.config}/${version}"/* "$out/lib"
- ln -s "$dev/lib/gcc/${hostPlatform.config}/${version}/include"/* "$dev/include/"
+ ln -s "$out/lib/gcc/${stdenvNoLibs.hostPlatform.config}/${version}"/* "$out/lib"
+ ln -s "$dev/lib/gcc/${stdenvNoLibs.hostPlatform.config}/${version}/include"/* "$dev/include/"
'';
}
diff --git a/pkgs/development/libraries/gdbm/default.nix b/pkgs/development/libraries/gdbm/default.nix
index bbebcca6e2f062862de97d9e3ac4356be6ab597e..685775e2918da76bd00bd9dbbb01ce2e2fd81f21 100644
--- a/pkgs/development/libraries/gdbm/default.nix
+++ b/pkgs/development/libraries/gdbm/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, buildPlatform, fetchurl }:
+{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
name = "gdbm-1.17";
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
# Disable dbmfetch03.at test because it depends on unlink()
# failing on a link in a chmod -w directory, which cygwin
# apparently allows.
- postPatch = lib.optionalString buildPlatform.isCygwin ''
+ postPatch = lib.optionalString stdenv.buildPlatform.isCygwin ''
substituteInPlace tests/Makefile.in --replace \
'_LDADD = ../src/libgdbm.la ../compat/libgdbm_compat.la' \
'_LDADD = ../compat/libgdbm_compat.la ../src/libgdbm.la'
diff --git a/pkgs/development/libraries/geoclue/default.nix b/pkgs/development/libraries/geoclue/default.nix
index 8417719b7063025cbfdbb957c230a9f5d4ab6a76..da7041b6786f59d1f8d472744889754b05c26c11 100644
--- a/pkgs/development/libraries/geoclue/default.nix
+++ b/pkgs/development/libraries/geoclue/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, intltool, pkgconfig, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, json-glib, libsoup, libnotify, gdk_pixbuf
+{ fetchurl, stdenv, fetchpatch, intltool, pkgconfig, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, json-glib, libsoup, libnotify, gdk_pixbuf
, modemmanager, avahi, glib-networking, wrapGAppsHook, gobjectIntrospection
, withDemoAgent ? false
}:
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
pkgconfig intltool wrapGAppsHook gobjectIntrospection
# devdoc
- gtk-doc docbook_xsl docbook_xml_dtd_412
+ gtk-doc docbook_xsl docbook_xml_dtd_412
];
buildInputs = [
@@ -30,6 +30,14 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ glib glib-networking ];
+ # Whitelist elementary's agent
+ patches = [
+ (fetchpatch {
+ url = "https://gitlab.freedesktop.org/geoclue/geoclue/commit/2b0491e408be1ebcdbe8751bb2637c1acb78f71e.patch";
+ sha256 = "0pac94y55iksk340dlx3gkhb9lrci90mxqqy5fnh1zbjw9bqxfn4";
+ })
+ ];
+
configureFlags = [
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
"--enable-introspection"
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix
index 469dcbf75bbe1fa859171ffd8517605cfb900bb6..1b2f6bbc22254347039ecab83de56e4e603cf37b 100644
--- a/pkgs/development/libraries/gettext/default.nix
+++ b/pkgs/development/libraries/gettext/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, hostPlatform, fetchurl, libiconv, xz }:
+{ stdenv, lib, fetchurl, libiconv, xz }:
stdenv.mkDerivation rec {
name = "gettext-${version}";
@@ -35,22 +35,23 @@ stdenv.mkDerivation rec {
substituteInPlace gettext-tools/projects/KDE/trigger --replace "/bin/pwd" pwd
substituteInPlace gettext-tools/projects/GNOME/trigger --replace "/bin/pwd" pwd
substituteInPlace gettext-tools/src/project-id --replace "/bin/pwd" pwd
- '' + lib.optionalString hostPlatform.isCygwin ''
+ '' + lib.optionalString stdenv.hostPlatform.isCygwin ''
sed -i -e "s/\(cldr_plurals_LDADD = \)/\\1..\/gnulib-lib\/libxml_rpl.la /" gettext-tools/src/Makefile.in
sed -i -e "s/\(libgettextsrc_la_LDFLAGS = \)/\\1..\/gnulib-lib\/libxml_rpl.la /" gettext-tools/src/Makefile.in
'';
nativeBuildInputs = [ xz xz.bin ];
# HACK, see #10874 (and 14664)
- buildInputs = stdenv.lib.optional (!stdenv.isLinux && !hostPlatform.isCygwin) libiconv;
+ buildInputs = stdenv.lib.optional (!stdenv.isLinux && !stdenv.hostPlatform.isCygwin) libiconv;
setupHooks = [
../../../build-support/setup-hooks/role.bash
./gettext-setup-hook.sh
];
- gettextNeedsLdflags = hostPlatform.libc != "glibc" && !hostPlatform.isMusl;
+ gettextNeedsLdflags = stdenv.hostPlatform.libc != "glibc" && !stdenv.hostPlatform.isMusl;
enableParallelBuilding = true;
+ enableParallelChecking = false; # fails sometimes
meta = with lib; {
description = "Well integrated set of translation tools and documentation";
diff --git a/pkgs/development/libraries/glew/1.10.nix b/pkgs/development/libraries/glew/1.10.nix
index af0830ab7042154c248f248549339cef35ae26eb..b265cfcc016865bd6a1f4e33dbfaa9ee3ce59a61 100644
--- a/pkgs/development/libraries/glew/1.10.nix
+++ b/pkgs/development/libraries/glew/1.10.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchurl, libGLU, xlibsWrapper, libXmu, libXi
-, buildPlatform, hostPlatform
, AGL ? null
}:
@@ -19,7 +18,7 @@ stdenv.mkDerivation rec {
patchPhase = ''
sed -i 's|lib64|lib|' config/Makefile.linux
- ${optionalString (hostPlatform != buildPlatform) ''
+ ${optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
sed -i -e 's/\(INSTALL.*\)-s/\1/' Makefile
''}
'';
@@ -39,7 +38,7 @@ stdenv.mkDerivation rec {
'';
makeFlags = [
- "SYSTEM=${if hostPlatform.isMinGW then "mingw" else hostPlatform.parsed.kernel.name}"
+ "SYSTEM=${if stdenv.hostPlatform.isMinGW then "mingw" else stdenv.hostPlatform.parsed.kernel.name}"
];
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/glew/default.nix b/pkgs/development/libraries/glew/default.nix
index a8add880090f25611464a0ace0fe7baeab9c9028..ec56c544cac33a4015195097c8ea57dcc8027a0e 100644
--- a/pkgs/development/libraries/glew/default.nix
+++ b/pkgs/development/libraries/glew/default.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchurl, libGLU, xlibsWrapper, libXmu, libXi
-, buildPlatform, hostPlatform
}:
with stdenv.lib;
@@ -20,7 +19,7 @@ stdenv.mkDerivation rec {
patchPhase = ''
sed -i 's|lib64|lib|' config/Makefile.linux
substituteInPlace config/Makefile.darwin --replace /usr/local "$out"
- ${optionalString (hostPlatform != buildPlatform) ''
+ ${optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
sed -i -e 's/\(INSTALL.*\)-s/\1/' Makefile
''}
'';
@@ -41,7 +40,7 @@ stdenv.mkDerivation rec {
'';
makeFlags = [
- "SYSTEM=${if hostPlatform.isMinGW then "mingw" else hostPlatform.parsed.kernel.name}"
+ "SYSTEM=${if stdenv.hostPlatform.isMinGW then "mingw" else stdenv.hostPlatform.parsed.kernel.name}"
];
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/glib-networking/default.nix b/pkgs/development/libraries/glib-networking/default.nix
index e0bbae69c4ffe79b0361bb2ebd54d295f72e5899..3deaf28373dd9ab603d1cc29a9112fd329c73b81 100644
--- a/pkgs/development/libraries/glib-networking/default.nix
+++ b/pkgs/development/libraries/glib-networking/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
})
];
- PKG_CONFIG_GIO_2_0_GIOMODULEDIR = "lib/gio/modules";
+ PKG_CONFIG_GIO_2_0_GIOMODULEDIR = "${placeholder "out"}/lib/gio/modules";
postPatch = ''
chmod +x meson_post_install.py # patchShebangs requires executable file
diff --git a/pkgs/development/libraries/glib/default.nix b/pkgs/development/libraries/glib/default.nix
index 428b9ee482ec0435822fb493a81bb9998be30059..f03ddfc48b2e1bdcd80ccfac8c803cdf0cba2272 100644
--- a/pkgs/development/libraries/glib/default.nix
+++ b/pkgs/development/libraries/glib/default.nix
@@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
./gobject_init_on_demand.patch
] ++ [ ./schema-override-variable.patch ];
- outputs = [ "out" "dev" "devdoc" ];
+ outputs = [ "bin" "out" "dev" "devdoc" ];
outputBin = "dev";
setupHook = ./setup-hook.sh;
@@ -104,12 +104,16 @@ stdenv.mkDerivation rec {
DETERMINISTIC_BUILD = 1;
postInstall = ''
+ mkdir -p $bin/bin
+ for app in gapplication gdbus gio gsettings; do
+ mv "$dev/bin/$app" "$bin/bin"
+ done
+
moveToOutput "share/glib-2.0" "$dev"
substituteInPlace "$dev/bin/gdbus-codegen" --replace "$out" "$dev"
sed -i "$dev/bin/glib-gettextize" -e "s|^gettext_dir=.*|gettext_dir=$dev/share/glib-2.0/gettext|"
- ''
- # This file is *included* in gtk3 and would introduce runtime reference via __FILE__.
- + ''
+
+ # This file is *included* in gtk3 and would introduce runtime reference via __FILE__.
sed '1i#line 1 "${name}/include/glib-2.0/gobject/gobjectnotifyqueue.c"' \
-i "$dev"/include/glib-2.0/gobject/gobjectnotifyqueue.c
'';
diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix
index 8b4a213aae0517887559514afdb7431b2e58b1af..1eecfa902790c6082a3ff99f60acc05d532096dd 100644
--- a/pkgs/development/libraries/glibc/common.nix
+++ b/pkgs/development/libraries/glibc/common.nix
@@ -18,7 +18,6 @@
*/
{ stdenv, lib
-, buildPlatform, hostPlatform
, buildPackages
, fetchurl ? null
, linuxHeaders ? null
@@ -119,12 +118,12 @@ stdenv.mkDerivation ({
else "--disable-profile")
] ++ lib.optionals withLinuxHeaders [
"--enable-kernel=3.2.0" # can't get below with glibc >= 2.26
- ] ++ lib.optionals (hostPlatform != buildPlatform) [
- (if hostPlatform.platform.gcc.float or (hostPlatform.parsed.abi.float or "hard") == "soft"
+ ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
+ (if stdenv.hostPlatform.platform.gcc.float or (stdenv.hostPlatform.parsed.abi.float or "hard") == "soft"
then "--without-fp"
else "--with-fp")
"--with-__thread"
- ] ++ lib.optionals (hostPlatform == buildPlatform && hostPlatform.isAarch32) [
+ ] ++ lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform && stdenv.hostPlatform.isAarch32) [
"--host=arm-linux-gnueabi"
"--build=arm-linux-gnueabi"
@@ -176,7 +175,7 @@ stdenv.mkDerivation ({
}
- '' + lib.optionalString (hostPlatform != buildPlatform) ''
+ '' + lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
sed -i s/-lgcc_eh//g "../$sourceRoot/Makeconfig"
cat > config.cache << "EOF"
@@ -210,7 +209,7 @@ stdenv.mkDerivation ({
} // meta;
}
-// lib.optionalAttrs (hostPlatform != buildPlatform) {
+// lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform) {
preInstall = null; # clobber the native hook
dontStrip = true;
diff --git a/pkgs/development/libraries/gmp/6.x.nix b/pkgs/development/libraries/gmp/6.x.nix
index 04c57d94666f10d3401277650fc869d6bcaca13c..23a69282b41c59962ae737804e44124a5fb67b2d 100644
--- a/pkgs/development/libraries/gmp/6.x.nix
+++ b/pkgs/development/libraries/gmp/6.x.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, m4, cxx ? !hostPlatform.useAndroidPrebuilt
-, buildPackages, hostPlatform
+{ stdenv, fetchurl, m4, cxx ? !stdenv.hostPlatform.useAndroidPrebuilt
+, buildPackages
, withStatic ? false }:
let inherit (stdenv.lib) optional optionalString; in
diff --git a/pkgs/development/libraries/gpgme/default.nix b/pkgs/development/libraries/gpgme/default.nix
index b3b00a1c722644e1be2216be922f176a415b4783..71fe23ea6b0d101e013f5cb3537981e5f10cc9f0 100644
--- a/pkgs/development/libraries/gpgme/default.nix
+++ b/pkgs/development/libraries/gpgme/default.nix
@@ -7,7 +7,10 @@
, withPython ? false, swig2 ? null, python ? null
}:
-let inherit (stdenv) lib system; in
+let
+ inherit (stdenv) lib;
+ inherit (stdenv.hostPlatform) system;
+in
stdenv.mkDerivation rec {
name = "gpgme-${version}";
diff --git a/pkgs/development/libraries/granite/default.nix b/pkgs/development/libraries/granite/default.nix
index b8f35c8539ac343705f12489a5b8b10e9024d11d..1ee0970ffad2305b7713f696ee2f01b15a9ea1fa 100644
--- a/pkgs/development/libraries/granite/default.nix
+++ b/pkgs/development/libraries/granite/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "granite-${version}";
- version = "5.0";
+ version = "5.1.0";
src = fetchFromGitHub {
owner = "elementary";
repo = "granite";
rev = version;
- sha256 = "015hkclcxirssg7a8s6mkns5xdk77m1jnkshlyfdw041nzyc5jh1";
+ sha256 = "1v1yhz6rp616xi417m9r8072s6mpz5i8vkdyj264b73p0lgjwh40";
};
cmakeFlags = [
diff --git a/pkgs/development/libraries/gsl/default.nix b/pkgs/development/libraries/gsl/default.nix
index 37d4843db8d45f09970d52320e039355999f2340..8a419d6786553bfac3349c228eb410e808d566b4 100644
--- a/pkgs/development/libraries/gsl/default.nix
+++ b/pkgs/development/libraries/gsl/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
];
# https://lists.gnu.org/archive/html/bug-gsl/2015-11/msg00012.html
- doCheck = stdenv.system != "i686-linux" && stdenv.system != "aarch64-linux";
+ doCheck = stdenv.hostPlatform.system != "i686-linux" && stdenv.hostPlatform.system != "aarch64-linux";
meta = {
description = "The GNU Scientific Library, a large numerical library";
diff --git a/pkgs/development/libraries/gtkd/default.nix b/pkgs/development/libraries/gtkd/default.nix
index c0dc0753cd01317968eb2d423142c694fa35b381..d89b00af4ced5f9cb97cdf0ca4476e9358a36f2f 100644
--- a/pkgs/development/libraries/gtkd/default.nix
+++ b/pkgs/development/libraries/gtkd/default.nix
@@ -37,8 +37,8 @@ stdenv.mkDerivation rec {
--replace libpango-1.0.0.dylib ${pango.out}/lib/libpango-1.0.0.dylib \
--replace libpangocairo-1.0.0.dylib ${pango.out}/lib/libpangocairo-1.0.0.dylib
substituteInPlace generated/gtkd/gobject/c/functions.d \
- --replace libgobject-2.0.so.0 ${glib}/lib/libgobject-2.0.so.0 \
- --replace libgobject-2.0.0.dylib ${glib}/lib/libgobject-2.0.0.dylib
+ --replace libgobject-2.0.so.0 ${glib.out}/lib/libgobject-2.0.so.0 \
+ --replace libgobject-2.0.0.dylib ${glib.out}/lib/libgobject-2.0.0.dylib
substituteInPlace generated/gtkd/rsvg/c/functions.d \
--replace librsvg-2.so.2 ${librsvg}/lib/librsvg-2.so.2 \
--replace librsvg-2.2.dylib ${librsvg}/lib/librsvg-2.2.dylib
@@ -63,15 +63,15 @@ stdenv.mkDerivation rec {
--replace libgtksourceview-3.0.so.1 ${gtksourceview}/lib/libgtksourceview-3.0.so.1 \
--replace libgtksourceview-3.0.1.dylib ${gtksourceview}/lib/libgtksourceview-3.0.1.dylib
substituteInPlace generated/gtkd/glib/c/functions.d \
- --replace libglib-2.0.so.0 ${glib}/lib/libglib-2.0.so.0 \
- --replace libgmodule-2.0.so.0 ${glib}/lib/libgmodule-2.0.so.0 \
- --replace libgobject-2.0.so.0 ${glib}/lib/libgobject-2.0.so.0 \
- --replace libglib-2.0.0.dylib ${glib}/lib/libglib-2.0.0.dylib \
- --replace libgmodule-2.0.0.dylib ${glib}/lib/libgmodule-2.0.0.dylib \
- --replace libgobject-2.0.0.dylib ${glib}/lib/libgobject-2.0.0.dylib
+ --replace libglib-2.0.so.0 ${glib.out}/lib/libglib-2.0.so.0 \
+ --replace libgmodule-2.0.so.0 ${glib.out}/lib/libgmodule-2.0.so.0 \
+ --replace libgobject-2.0.so.0 ${glib.out}/lib/libgobject-2.0.so.0 \
+ --replace libglib-2.0.0.dylib ${glib.out}/lib/libglib-2.0.0.dylib \
+ --replace libgmodule-2.0.0.dylib ${glib.out}/lib/libgmodule-2.0.0.dylib \
+ --replace libgobject-2.0.0.dylib ${glib.out}/lib/libgobject-2.0.0.dylib
substituteInPlace generated/gtkd/gio/c/functions.d \
- --replace libgio-2.0.so.0 ${glib}/lib/libgio-2.0.so.0 \
- --replace libgio-2.0.0.dylib ${glib}/lib/libgio-2.0.0.dylib
+ --replace libgio-2.0.so.0 ${glib.out}/lib/libgio-2.0.so.0 \
+ --replace libgio-2.0.0.dylib ${glib.out}/lib/libgio-2.0.0.dylib
substituteInPlace generated/gstreamer/gstreamer/c/functions.d \
--replace libgstreamer-1.0.so.0 ${gstreamer}/lib/libgstreamer-1.0.so.0 \
--replace libgstreamer-1.0.0.dylib ${gstreamer}/lib/libgstreamer-1.0.0.dylib
diff --git a/pkgs/development/libraries/gtkimageview/default.nix b/pkgs/development/libraries/gtkimageview/default.nix
index 20584c3850ad5ecdf170db9543eab155e0054392..d6d32c26a509a1704adc87bd04bb6cbeb049dfaf 100644
--- a/pkgs/development/libraries/gtkimageview/default.nix
+++ b/pkgs/development/libraries/gtkimageview/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = {
- homepage = http://trac.bjourne.webfactional.com/;
+ homepage = "https://wiki.gnome.org/Projects/GTK%2B/GtkImageView";
description = "Image viewer widget for GTK+";
diff --git a/pkgs/development/libraries/gvfs/default.nix b/pkgs/development/libraries/gvfs/default.nix
index 86cbd01a60261466fa61d86e2503ae7169e99413..360c1fb41f4e5fce60c14c82a7cefef08eeba1bb 100644
--- a/pkgs/development/libraries/gvfs/default.nix
+++ b/pkgs/development/libraries/gvfs/default.nix
@@ -63,9 +63,9 @@ stdenv.mkDerivation rec {
# Uncomment when switching back to meson
# mesonFlags = [
- # "-Dgio_module_dir=lib/gio/modules"
- # "-Dsystemduserunitdir=lib/systemd/user"
- # "-Ddbus_service_dir=share/dbus-1/services"
+ # "-Dgio_module_dir=${placeholder "out"}/lib/gio/modules"
+ # "-Dsystemduserunitdir=${placeholder "out"}/lib/systemd/user"
+ # "-Ddbus_service_dir=${placeholder "out"}/share/dbus-1/services"
# "-Dtmpfilesdir=no"
# ] ++ stdenv.lib.optionals (!gnomeSupport) [
# "-Dgcr=false" "-Dgoa=false" "-Dkeyring=false" "-Dhttp=false"
diff --git a/pkgs/development/libraries/hamlib/default.nix b/pkgs/development/libraries/hamlib/default.nix
index 9825d6ed64a9219fb6237d344e96465597143419..b9cd31432fc3fa29eae18a631e0c40b45c9616b3 100644
--- a/pkgs/development/libraries/hamlib/default.nix
+++ b/pkgs/development/libraries/hamlib/default.nix
@@ -3,12 +3,12 @@
stdenv.mkDerivation rec {
pname = "hamlib";
- version = "3.2";
+ version = "3.3";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
- sha256 = "07ddsykbliiv0p717z1h5vzmvsx6lm75j32rhvmwqxp8m3kbap5m";
+ sha256 = "10788mgrhbc57zpzakcxv5aqnr2819pcshml6fbh8zvnkja562y9";
};
buildInputs = [ perl perlPackages.ExtUtilsMakeMaker python2 swig gd libxml2
diff --git a/pkgs/development/libraries/icu/base.nix b/pkgs/development/libraries/icu/base.nix
index b8ad48326b2bf336485d5e272be64ac7c5db3e30..8ad58c5f90b0259700a2e72640fcd74913f5f7c8 100644
--- a/pkgs/development/libraries/icu/base.nix
+++ b/pkgs/development/libraries/icu/base.nix
@@ -1,7 +1,7 @@
{ version, sha256, patches ? [], patchFlags ? "" }:
{ stdenv, fetchurl, fixDarwinDylibNames
# Cross-compiled icu4c requires a build-root of a native compile
-, buildRootOnly ? false, nativeBuildRoot, buildPlatform, hostPlatform
+, buildRootOnly ? false, nativeBuildRoot
}:
let
@@ -38,7 +38,7 @@ let
configureFlags = [ "--disable-debug" ]
++ stdenv.lib.optional (stdenv.isFreeBSD || stdenv.isDarwin) "--enable-rpath"
- ++ stdenv.lib.optional (buildPlatform != hostPlatform) "--with-cross-build=${nativeBuildRoot}";
+ ++ stdenv.lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--with-cross-build=${nativeBuildRoot}";
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/igraph/default.nix b/pkgs/development/libraries/igraph/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..4ac3ebc098891a75ee7421d469347f6371d94f92
--- /dev/null
+++ b/pkgs/development/libraries/igraph/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, lib, fetchFromGitHub,
+ pkgconfig, autoreconfHook,
+ flex, yacc, zlib, libxml2 }:
+
+stdenv.mkDerivation rec {
+ name = "igraph";
+ version = "0.7.1";
+
+ src = fetchFromGitHub {
+ owner = "igraph";
+ repo = name;
+ rev = version;
+ sha256 = "1wsy0r511gk069il6iqjs27q8cjvqz20gf0a7inybx1bw84845z8";
+ };
+
+ nativeBuildInputs = [ pkgconfig autoreconfHook ];
+ buildInputs = [ flex yacc zlib libxml2 ];
+
+ # This file is normally generated by igraph's bootstrap.sh, but we can do it
+ # ourselves. ~ C.
+ postPatch = ''
+ echo "${version}" > VERSION
+ '';
+
+ meta = {
+ description = "The network analysis package";
+ homepage = http://igraph.org/;
+ license = lib.licenses.gpl2;
+ maintainers = [ lib.maintainers.MostAwesomeDude ];
+ };
+}
diff --git a/pkgs/development/libraries/ilixi/default.nix b/pkgs/development/libraries/ilixi/default.nix
index 99f6df9c5f0657e57439d78c2a3d36483d6dd3b3..bb6e23937c05cd7d0070af302ddfb0289a69deed 100644
--- a/pkgs/development/libraries/ilixi/default.nix
+++ b/pkgs/development/libraries/ilixi/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Lightweight C++ GUI toolkit for embedded Linux systems";
- homepage = http://ilixi.org/;
+ homepage = https://github.com/ilixi/ilixi;
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
diff --git a/pkgs/development/libraries/iso-codes/default.nix b/pkgs/development/libraries/iso-codes/default.nix
index d78c59e9c25a02475dcb3368539293de05252397..80154f504d41bc49d922282d64b8c16a29d855f9 100644
--- a/pkgs/development/libraries/iso-codes/default.nix
+++ b/pkgs/development/libraries/iso-codes/default.nix
@@ -17,9 +17,9 @@ stdenv.mkDerivation rec {
buildInputs = [ gettext python3 ];
meta = with stdenv.lib; {
- homepage = http://pkg-isocodes.alioth.debian.org/;
+ homepage = https://salsa.debian.org/iso-codes-team/iso-codes;
description = "Various ISO codes packaged as XML files";
- maintainers = [ ];
+ license = licenses.lgpl21;
platforms = platforms.all;
};
}
diff --git a/pkgs/development/libraries/itk/default.nix b/pkgs/development/libraries/itk/default.nix
index 5f6a6f51a52202f12f7f751e4b7bea41a80c59ba..df016d9fcac0e298ebcd159b9b031ac6bd0bc4aa 100644
--- a/pkgs/development/libraries/itk/default.nix
+++ b/pkgs/development/libraries/itk/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, cmake, libX11, libuuid, xz, vtk }:
stdenv.mkDerivation rec {
- name = "itk-4.13.0";
+ name = "itk-4.13.1";
src = fetchurl {
- url = mirror://sourceforge/itk/InsightToolkit-4.13.0.tar.xz;
- sha256 = "09d1gmqx3wbdfgwf7r91r12m2vknviv0i8wxwh2q9w1vrpizrczy";
+ url = mirror://sourceforge/itk/InsightToolkit-4.13.1.tar.xz;
+ sha256 = "0p4cspgbnjsnkjz8nfg092yaxz8qkqi2nkxjdv421d0zrmi0i2al";
};
cmakeFlags = [
diff --git a/pkgs/development/libraries/java/jzmq/default.nix b/pkgs/development/libraries/java/jzmq/default.nix
index 7d229d2577abf6234e465917db6f810eb94ca725..402f893034b6e017f4623b6a186cac7fd0aa771a 100644
--- a/pkgs/development/libraries/java/jzmq/default.nix
+++ b/pkgs/development/libraries/java/jzmq/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildInputs = [ zeromq3 jdk ];
preConfigure = ''
- ${if stdenv.system == "x86_64-darwin" then
+ ${if stdenv.hostPlatform.system == "x86_64-darwin" then
'' sed -i -e 's~/Headers~/include~' -e 's~_JNI_INC_SUBDIRS=\".*\"~_JNI_INC_SUBDIRS=\"darwin\"~' configure
'' else ""}
'';
diff --git a/pkgs/development/libraries/java/swt/default.nix b/pkgs/development/libraries/java/swt/default.nix
index 1a7153f99e67d2de9ea660a9b9dc00bd6e80ffce..0aa20f8b014fb8e883c9d61a55269471b0155f35 100644
--- a/pkgs/development/libraries/java/swt/default.nix
+++ b/pkgs/development/libraries/java/swt/default.nix
@@ -16,7 +16,7 @@ let
sha256 = "00k1mfbncvyh8klgmk0891w8jwnd5niqb16j1j8yacrm2smmlb05"; };
};
- metadata = assert platformMap ? ${stdenv.system}; platformMap.${stdenv.system};
+ metadata = assert platformMap ? ${stdenv.hostPlatform.system}; platformMap.${stdenv.hostPlatform.system};
in stdenv.mkDerivation rec {
version = "4.5";
diff --git a/pkgs/development/libraries/jbig2dec/default.nix b/pkgs/development/libraries/jbig2dec/default.nix
index cc838be0f4f0fe67c5efe6c2fb71c71602125b9d..04a165866faf69e1d5d6393bb396444dfaab7fca 100644
--- a/pkgs/development/libraries/jbig2dec/default.nix
+++ b/pkgs/development/libraries/jbig2dec/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "jbig2dec-0.14";
src = fetchurl {
- url = "http://downloads.ghostscript.com/public/jbig2dec/${name}.tar.gz";
+ url = "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs922/${name}.tar.gz";
sha256 = "0k01hp0q4275fj4rbr1gy64svfraw5w7wvwl08yjhvsnpb1rid11";
};
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
doCheck = false; # fails 1 of 4 tests
meta = {
- homepage = https://www.ghostscript.com/jbig2dec.html;
+ homepage = https://www.jbig2dec.com/;
description = "Decoder implementation of the JBIG2 image compression format";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/development/libraries/kde-frameworks/default.nix b/pkgs/development/libraries/kde-frameworks/default.nix
index d780fc30a4c2eb4a5aac30a689cc080b19b296ad..ea8f30f0bba2ddde8accaf27ce908acb1b0f6904 100644
--- a/pkgs/development/libraries/kde-frameworks/default.nix
+++ b/pkgs/development/libraries/kde-frameworks/default.nix
@@ -173,6 +173,7 @@ let
kxmlgui = callPackage ./kxmlgui.nix {};
kxmlrpcclient = callPackage ./kxmlrpcclient.nix {};
plasma-framework = callPackage ./plasma-framework.nix {};
+ kpurpose = callPackage ./purpose.nix {};
# TIER 4
frameworkintegration = callPackage ./frameworkintegration.nix {};
diff --git a/pkgs/development/libraries/kde-frameworks/purpose.nix b/pkgs/development/libraries/kde-frameworks/purpose.nix
new file mode 100644
index 0000000000000000000000000000000000000000..147c4123a105ef63615e909f566b382327477322
--- /dev/null
+++ b/pkgs/development/libraries/kde-frameworks/purpose.nix
@@ -0,0 +1,14 @@
+{
+ mkDerivation, lib, extra-cmake-modules, qtbase
+, qtdeclarative, kconfig, kcoreaddons, ki18n, kio
+}:
+
+mkDerivation {
+ name = "purpose";
+ meta = { maintainers = [ lib.maintainers.bkchr ]; };
+ nativeBuildInputs = [ extra-cmake-modules ];
+ buildInputs = [
+ qtbase qtdeclarative kconfig kcoreaddons
+ ki18n kio
+ ];
+}
diff --git a/pkgs/development/libraries/lensfun/default.nix b/pkgs/development/libraries/lensfun/default.nix
index 21cdd9cd0964a1f63514f9ed39478c04f5a9f2d6..824c685ce932eddff5eed24e897ab4e3934f709d 100644
--- a/pkgs/development/libraries/lensfun/default.nix
+++ b/pkgs/development/libraries/lensfun/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, pkgconfig, glib, zlib, libpng, gnumake3, cmake }:
stdenv.mkDerivation rec {
- version = "0.3.2";
+ version = "0.3.95";
name = "lensfun-${version}";
src = fetchurl {
url = "mirror://sourceforge/lensfun/${version}/${name}.tar.gz";
- sha256 = "0cfk8jjhs9nbfjfdy98plrj9ayi59aph0nx6ppslgjhlcvacm2xf";
+ sha256 = "0218f3xrlln0jmh4gcf1zbpvi2bidgl3b2mblf6c810n7j1rrhl2";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/libraries/libLAS/default.nix b/pkgs/development/libraries/libLAS/default.nix
index de796307de1a96d2f2806046fdd1b5ec7ad8e4df..7bd2a1ec5738e87ed00a1f74cf0d03fbaf8d2720 100644
--- a/pkgs/development/libraries/libLAS/default.nix
+++ b/pkgs/development/libraries/libLAS/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = {
description = "LAS 1.0/1.1/1.2 ASPRS LiDAR data translation toolset";
- homepage = https://www.liblas.org;
+ homepage = https://liblas.org;
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.michelk ];
diff --git a/pkgs/development/libraries/libav/default.nix b/pkgs/development/libraries/libav/default.nix
index 5eb90aaf05c910c64739aa6f6fdb3282d02de87b..1ef453f24cdbf5455b4690ed11594f81670b318e 100644
--- a/pkgs/development/libraries/libav/default.nix
+++ b/pkgs/development/libraries/libav/default.nix
@@ -13,7 +13,6 @@
, SDL # only for avplay in $bin, adds nontrivial closure to it
, enableGPL ? true # ToDo: some additional default stuff may need GPL
, enableUnfree ? faacSupport
-, hostPlatform
}:
assert faacSupport -> enableUnfree;
@@ -53,8 +52,8 @@ let
configurePlatforms = [];
configureFlags = assert stdenv.lib.all (x: x!=null) buildInputs; [
- "--arch=${hostPlatform.parsed.cpu.name}"
- "--target_os=${hostPlatform.parsed.kernel.name}"
+ "--arch=${stdenv.hostPlatform.parsed.cpu.name}"
+ "--target_os=${stdenv.hostPlatform.parsed.kernel.name}"
#"--enable-postproc" # it's now a separate package in upstream
"--disable-avserver" # upstream says it's in a bad state
"--enable-avplay"
diff --git a/pkgs/development/libraries/libb2/default.nix b/pkgs/development/libraries/libb2/default.nix
index 58961a18df17e0380da104bc9ae14367319b0c0c..f7fffa8b29872fe1d5c843940366a9e0f7a72f1c 100644
--- a/pkgs/development/libraries/libb2/default.nix
+++ b/pkgs/development/libraries/libb2/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, hostPlatform, fetchurl, autoconf, automake, libtool }:
+{ stdenv, fetchurl, autoconf, automake, libtool }:
stdenv.mkDerivation rec {
name = "libb2-${version}";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
./autogen.sh
'';
- configureFlags = stdenv.lib.optional hostPlatform.isx86 "--enable-fat=yes";
+ configureFlags = stdenv.lib.optional stdenv.hostPlatform.isx86 "--enable-fat=yes";
nativeBuildInputs = [ autoconf automake libtool ];
diff --git a/pkgs/development/libraries/libconfuse/default.nix b/pkgs/development/libraries/libconfuse/default.nix
index 29398ac8aac5d72dcdf86fc92e625bdbf378c141..ee3f511d4359046f9fa0ab790266c33dea3487ef 100644
--- a/pkgs/development/libraries/libconfuse/default.nix
+++ b/pkgs/development/libraries/libconfuse/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "libconfuse-${version}";
- version = "3.2.1";
+ version = "3.2.2";
src = fetchFromGitHub {
- sha256 = "1pb74wpg1cxz9hpp0p8i1qq6anaq06mh4xljd8dllm653fxvbjdz";
+ sha256 = "0djjq7j9iiyqxqqrlzm476xkibjasqvgzjwkalgj1l3f2smi53aw";
rev = "v${version}";
repo = "libconfuse";
owner = "martinh";
diff --git a/pkgs/development/libraries/libelf/default.nix b/pkgs/development/libraries/libelf/default.nix
index bb1dbe51765e63b51ffa7ffe19b4c0d582512d59..5adafece353515b0fd964fdf6c33fded63540a03 100644
--- a/pkgs/development/libraries/libelf/default.nix
+++ b/pkgs/development/libraries/libelf/default.nix
@@ -1,6 +1,5 @@
{ stdenv
, fetchurl, autoreconfHook, gettext
-, buildPlatform, hostPlatform
}:
stdenv.mkDerivation rec {
@@ -20,17 +19,17 @@ stdenv.mkDerivation rec {
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"
+ ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.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";
+ ++ stdenv.lib.optional stdenv.hostPlatform.isDarwin "--disable-nls";
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;
+ ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) autoreconfHook;
meta = {
description = "ELF object file access library";
diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix
index 6f1aeefa6758f5025eb142c087478d74374b917f..215f587bb6b4a1ddf3b38b9ba62f3907b70ae8fd 100644
--- a/pkgs/development/libraries/libffi/default.nix
+++ b/pkgs/development/libraries/libffi/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, fetchpatch
-, buildPlatform, hostPlatform, autoreconfHook
+, autoreconfHook
# libffi is used in darwin stdenv
# we cannot run checks within it
@@ -19,12 +19,12 @@ stdenv.mkDerivation rec {
url = https://src.fedoraproject.org/rpms/libffi/raw/ccffc1700abfadb0969495a6e51b964117fc03f6/f/libffi-aarch64-rhbz1174037.patch;
sha256 = "1vpirrgny43hp0885rswgv3xski8hg7791vskpbg3wdjdpb20wbc";
})
- ++ stdenv.lib.optional hostPlatform.isMusl (fetchpatch {
+ ++ stdenv.lib.optional stdenv.hostPlatform.isMusl (fetchpatch {
name = "gnu-linux-define.patch";
url = "https://git.alpinelinux.org/cgit/aports/plain/main/libffi/gnu-linux-define.patch?id=bb024fd8ec6f27a76d88396c9f7c5c4b5800d580";
sha256 = "11pvy3xkhyvnjfyy293v51f1xjy3x0azrahv1nw9y9mw8bifa2j2";
})
- ++ stdenv.lib.optional hostPlatform.isRiscV (fetchpatch {
+ ++ stdenv.lib.optional stdenv.hostPlatform.isRiscV (fetchpatch {
name = "riscv-support.patch";
url = https://github.com/sorear/libffi-riscv/commit/e46492e8bb1695a19bc1053ed869e6c2bab02ff2.patch;
sha256 = "1vl1vbvdkigs617kckxvj8j4m2cwg62kxm1clav1w5rnw9afxg0y";
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" "man" "info" ];
- nativeBuildInputs = stdenv.lib.optional hostPlatform.isRiscV autoreconfHook;
+ nativeBuildInputs = stdenv.lib.optional stdenv.hostPlatform.isRiscV autoreconfHook;
configureFlags = [
"--with-gcc-arch=generic" # no detection of -march= or -mtune=
@@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
inherit doCheck;
- dontStrip = hostPlatform != buildPlatform; # Don't run the native `strip' when cross-compiling.
+ dontStrip = stdenv.hostPlatform != stdenv.buildPlatform; # Don't run the native `strip' when cross-compiling.
# Install headers and libs in the right places.
postFixup = ''
diff --git a/pkgs/development/libraries/libfm/default.nix b/pkgs/development/libraries/libfm/default.nix
index ce1d3b138f88af8da96c22b21fa4b45b6bf55464..796c03dab5ee8816c20b8d97e0071a14d806d280 100644
--- a/pkgs/development/libraries/libfm/default.nix
+++ b/pkgs/development/libraries/libfm/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, glib, intltool, menu-cache, pango, pkgconfig, vala_0_34
+{ stdenv, fetchurl, glib, intltool, menu-cache, pango, pkgconfig, vala
, extraOnly ? false
, withGtk3 ? false, gtk2, gtk3 }:
let
@@ -16,12 +16,11 @@ stdenv.mkDerivation rec {
sha256 = "0wkwbi1nyvqza3r1dhrq846axiiq0fy0dqgngnagh76fjrwnzl0q";
};
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ glib gtk intltool pango vala_0_34 ]
- ++ optional (!extraOnly) menu-cache;
+ nativeBuildInputs = [ vala pkgconfig intltool ];
+ buildInputs = [ glib gtk pango ] ++ optional (!extraOnly) menu-cache;
- configureFlags = [ (optional extraOnly "--with-extra-only")
- (optional withGtk3 "--with-gtk=3") ];
+ configureFlags = optional extraOnly "--with-extra-only"
+ ++ optional withGtk3 "--with-gtk=3";
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/libgpg-error/default.nix b/pkgs/development/libraries/libgpg-error/default.nix
index ccac20c907743a2324a9ab32d4f9e70fbd3d65a5..52d0f6f05cce5852834a681a06dd7fca648ad9aa 100644
--- a/pkgs/development/libraries/libgpg-error/default.nix
+++ b/pkgs/development/libraries/libgpg-error/default.nix
@@ -17,24 +17,16 @@
};
in stdenv.mkDerivation (rec {
name = "libgpg-error-${version}";
- version = "1.28";
+ version = "1.32";
src = fetchurl {
url = "mirror://gnupg/libgpg-error/${name}.tar.bz2";
- sha256 = "0jfsfnh9bxlxiwxws60yah4ybjw2hshmvqp31pri4m4h8ivrbnry";
+ sha256 = "1jj08ns4sh1hmafqp1giskvdicdz18la516va26jycy27kkwaif3";
};
- patches = [
- # Fix builds on ARM, AArch64
- (fetchpatch {
- url = "https://github.com/gpg/libgpg-error/commit/791177de023574223eddf7288eb7c5a0721ac623.patch";
- sha256 = "0vqfw0ak1j37wf6sk9y9vmdyk3kxdxkldhs0bv2waa76s11cmdx0";
- })
- ];
-
postPatch = ''
sed '/BUILD_TIMESTAMP=/s/=.*/=1970-01-01T00:01+0000/' -i ./configure
- '' + lib.optionalString (stdenv.hostPlatform.isArm && stdenv.buildPlatform != stdenv.hostPlatform ) ''
+ '' + lib.optionalString (stdenv.hostPlatform.isAarch32 && stdenv.buildPlatform != stdenv.hostPlatform) ''
ln -s lock-obj-pub.arm-unknown-linux-gnueabi.h src/syscfg/lock-obj-pub.linux-gnueabihf.h
'' + lib.optionalString stdenv.hostPlatform.isMusl ''
ln -s lock-obj-pub.x86_64-pc-linux-musl.h src/syscfg/lock-obj-pub.linux-musl.h
diff --git a/pkgs/development/libraries/libgrss/default.nix b/pkgs/development/libraries/libgrss/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..548114b642fa52def60ed717e99c9229f8a5bc1f
--- /dev/null
+++ b/pkgs/development/libraries/libgrss/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl, pkgconfig, vala, gobjectIntrospection, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, libxml2, libsoup, gnome3 }:
+
+let
+ version = "0.7.0";
+ pname = "libgrss";
+in
+stdenv.mkDerivation {
+ name = "${pname}-${version}";
+
+ outputs = [ "out" "dev" "devdoc" ];
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
+ sha256 = "1nalslgyglvhpva3px06fj6lv5zgfg0qmj0sbxyyl5d963vc02b7";
+ };
+
+ nativeBuildInputs = [ pkgconfig vala gobjectIntrospection gtk-doc docbook_xsl docbook_xml_dtd_412 ];
+ buildInputs = [ glib libxml2 libsoup ];
+
+ configureFlags = [
+ "--enable-gtk-doc"
+ ];
+
+ doCheck = true;
+
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ };
+ };
+
+ meta = with stdenv.lib; {
+ description = "Glib abstaction to handle feeds in RSS, Atom and other formats";
+ homepage = https://wiki.gnome.org/Projects/Libgrss;
+ license = licenses.lgpl3Plus;
+ maintainers = gnome3.maintainers;
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/libraries/libgsf/default.nix b/pkgs/development/libraries/libgsf/default.nix
index 20a08885142a6d914b72154aef8c6fa36d1af9b8..bcd37396bf7f4513d82a40ebaa4a03c6750ce2e9 100644
--- a/pkgs/development/libraries/libgsf/default.nix
+++ b/pkgs/development/libraries/libgsf/default.nix
@@ -2,11 +2,11 @@
, python, perl, gdk_pixbuf, libiconv, libintl }:
stdenv.mkDerivation rec {
- name = "libgsf-1.14.42";
+ name = "libgsf-1.14.44";
src = fetchurl {
url = "mirror://gnome/sources/libgsf/1.14/${name}.tar.xz";
- sha256 = "1hhdz0ymda26q6bl5ygickkgrh998lxqq4z9i8dzpcvqna3zpzr9";
+ sha256 = "1ppzfk3zmmgrg9jh8vc4dacddbfngjslq2wpj94pcr3i0c8dxgk8";
};
nativeBuildInputs = [ pkgconfig intltool libintl ];
diff --git a/pkgs/development/libraries/libguestfs/appliance.nix b/pkgs/development/libraries/libguestfs/appliance.nix
index d47b0902818d9617de9c42efee503e455fbe7e16..9c2b317ab086ff859585fae28458e1932dccf889 100644
--- a/pkgs/development/libraries/libguestfs/appliance.nix
+++ b/pkgs/development/libraries/libguestfs/appliance.nix
@@ -4,4 +4,8 @@ fetchzip {
name = "libguestfs-appliance-1.38.0";
url = "http://libguestfs.org/download/binaries/appliance/appliance-1.38.0.tar.xz";
sha256 = "15rxwj5qjflizxk7slpbrj9lcwkd2lgm52f5yv101qba4yyn3g76";
+
+ meta = {
+ hydraPlatforms = []; # Hydra fails with "Output limit exceeded"
+ };
}
diff --git a/pkgs/development/libraries/libiconv/default.nix b/pkgs/development/libraries/libiconv/default.nix
index 24dd4f2465c6a167c8987de5a8dac52dbf5f1dc6..d9773a1be4d8ba1580df4f45f7dbde4a582bc0e7 100644
--- a/pkgs/development/libraries/libiconv/default.nix
+++ b/pkgs/development/libraries/libiconv/default.nix
@@ -1,10 +1,9 @@
{ fetchurl, stdenv, lib
-, buildPlatform, hostPlatform
, enableStatic ? stdenv.hostPlatform.useAndroidPrebuilt
, enableShared ? !stdenv.hostPlatform.useAndroidPrebuilt
}:
-# assert !stdenv.isLinux || hostPlatform != buildPlatform; # TODO: improve on cross
+# assert !stdenv.hostPlatform.isLinux || stdenv.hostPlatform != stdenv.buildPlatform; # TODO: improve on cross
stdenv.mkDerivation rec {
name = "libiconv-${version}";
@@ -21,7 +20,7 @@ stdenv.mkDerivation rec {
];
postPatch =
- lib.optionalString ((hostPlatform != buildPlatform && hostPlatform.libc == "msvcrt") || stdenv.cc.nativeLibc)
+ lib.optionalString ((stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.libc == "msvcrt") || stdenv.cc.nativeLibc)
''
sed '/^_GL_WARN_ON_USE (gets/d' -i srclib/stdio.in.h
''
diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix
index 5498a32e7091be308f2e84e63a8bc8ddc8d399d5..d42bd315d22f8e065d292532fd0562425ee58e41 100644
--- a/pkgs/development/libraries/libinput/default.nix
+++ b/pkgs/development/libraries/libinput/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
sha256 = "01nb1shnl871d939wgfd7nc9svclcnfjfhlq64b4yns2dvcr24gk";
};
- outputs = [ "out" "dev" ];
+ outputs = [ "bin" "out" "dev" ];
mesonFlags = [
(mkFlag documentationSupport "documentation")
@@ -31,6 +31,10 @@ stdenv.mkDerivation rec {
(mkFlag testsSupport "tests")
];
+ preConfigure = ''
+ mesonFlags="$mesonFlags --libexecdir=$bin/libexec"
+ '';
+
nativeBuildInputs = [ pkgconfig meson ninja ]
++ optionals documentationSupport [ doxygen graphviz ]
++ optionals testsSupport [ check valgrind python3Packages.pyparsing ];
diff --git a/pkgs/development/libraries/libircclient/default.nix b/pkgs/development/libraries/libircclient/default.nix
index 612de78b741dc5bc2f9fdc2a53e95640023207d7..71238dda1620caee3b133f00398510881336673f 100644
--- a/pkgs/development/libraries/libircclient/default.nix
+++ b/pkgs/development/libraries/libircclient/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
- version = "1.9";
+ version = "1.10";
pname = "libircclient";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}/${version}/${name}.tar.gz";
- sha256 = "0r60i76jh4drjh2jgp5sx71chagqllmkaq49zv67nrhqwvp9ghw1";
+ sha256 = "0b9wa0h3xc31wpqlvgxgnvqp5wgx3kwsf5s9432m5cj8ycx6zcmv";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/development/libraries/libivykis/default.nix b/pkgs/development/libraries/libivykis/default.nix
index af3ab3a7c4eed46383f0a06a4965159a87fe952b..9419046db4ed5e577b1c6bbb2770cb7363ef46ea 100644
--- a/pkgs/development/libraries/libivykis/default.nix
+++ b/pkgs/development/libraries/libivykis/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "libivykis-${version}";
- version = "0.42.2";
+ version = "0.42.3";
src = fetchurl {
url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
- sha256 = "14vb613j4xas70wr7g5z9c9z871xhayd4zliywwf88myd41jcsw8";
+ sha256 = "1v0ajkm531v4zxzn2x90yb5ab81ssqv2y0fib24wbsggbkajbc69";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
diff --git a/pkgs/development/libraries/libjpeg-turbo/default.nix b/pkgs/development/libraries/libjpeg-turbo/default.nix
index e4f70b792fd54b0c476f1e1ed456c33451a2109e..84c6c96ea5de317bcf44e5b981492879ac95f7a5 100644
--- a/pkgs/development/libraries/libjpeg-turbo/default.nix
+++ b/pkgs/development/libraries/libjpeg-turbo/default.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchurl, nasm
-, hostPlatform
}:
stdenv.mkDerivation rec {
@@ -12,7 +11,7 @@ stdenv.mkDerivation rec {
}; # github releases still need autotools, surprisingly
patches =
- stdenv.lib.optional (hostPlatform.libc or null == "msvcrt")
+ stdenv.lib.optional (stdenv.hostPlatform.libc or null == "msvcrt")
./mingw-boolean.patch;
outputs = [ "bin" "dev" "out" "man" "doc" ];
diff --git a/pkgs/development/libraries/libmanette/default.nix b/pkgs/development/libraries/libmanette/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..51d2e49eb3503df4f9e8461aef98363d180d30d4
--- /dev/null
+++ b/pkgs/development/libraries/libmanette/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, ninja, meson, pkgconfig, vala, gobjectIntrospection
+, glib, libgudev, libevdev, gnome3 }:
+
+let
+ version = "0.2.1";
+ pname = "libmanette";
+in
+stdenv.mkDerivation {
+ name = "${pname}-${version}";
+
+ outputs = [ "out" "dev" ];
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
+ sha256 = "14vqz30p4693yy3yxs0gj858x25sl2kawib1g9lj8g5frgl0hd82";
+ };
+
+ nativeBuildInputs = [ meson ninja pkgconfig vala gobjectIntrospection ];
+ buildInputs = [ glib libgudev libevdev ];
+
+ doCheck = true;
+
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ };
+ };
+
+ meta = with stdenv.lib; {
+ description = "A simple GObject game controller library";
+ homepage = https://wiki.gnome.org/Apps/Builder;
+ license = licenses.lgpl21Plus;
+ maintainers = gnome3.maintainers;
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/libraries/libmowgli/default.nix b/pkgs/development/libraries/libmowgli/default.nix
index b23701837fa0ad7bcf2f848218514547da9d5a34..512add5616a028621ae8baf6355de12f8742772f 100644
--- a/pkgs/development/libraries/libmowgli/default.nix
+++ b/pkgs/development/libraries/libmowgli/default.nix
@@ -3,15 +3,16 @@
stdenv.mkDerivation rec {
name = "libmowgli-${version}";
version = "2.1.3";
-
+
src = fetchurl {
url = "https://github.com/atheme/libmowgli-2/archive/v${version}.tar.gz";
sha256 = "0xx4vndmwz40pxa5gikl8z8cskpdl9a30i2i5fjncqzlp4pspymp";
};
-
- meta = {
+
+ meta = with stdenv.lib; {
description = "A development framework for C providing high performance and highly flexible algorithms";
- homepage = http://www.atheme.org/projects/mowgli.shtml;
- platforms = stdenv.lib.platforms.unix;
+ homepage = https://github.com/atheme/libmowgli-2;
+ license = licenses.isc;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/libndtypes/default.nix b/pkgs/development/libraries/libndtypes/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..685518efbd229e07a43fa7659141350b9c6bdf17
--- /dev/null
+++ b/pkgs/development/libraries/libndtypes/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+}:
+
+stdenv.mkDerivation rec {
+ name = "libndtypes-${version}";
+ version = "0.2.0dev3";
+
+ src = fetchFromGitHub {
+ owner = "plures";
+ repo = "ndtypes";
+ rev = "v${version}";
+ sha256 = "0dpvv13mrid8l5zkjlz18qvirz3nr0v98agx9bcvkqbiahlfgjli";
+ };
+
+ makeFlags = [ "CONFIGURE_LDFLAGS='-shared'" ];
+
+ meta = {
+ description = "Dynamic types for data description and in-memory computations";
+ homepage = https://xnd.io/;
+ license = lib.licenses.bsdOriginal;
+ maintainers = with lib.maintainers; [ costrouc ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/libraries/libnfsidmap/default.nix b/pkgs/development/libraries/libnfsidmap/default.nix
deleted file mode 100644
index ce21cda4a5d4c2bd6caf27f5e4f9973910299216..0000000000000000000000000000000000000000
--- a/pkgs/development/libraries/libnfsidmap/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
- name = "libnfsidmap-0.25";
-
- src = fetchurl {
- url = "http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/${name}.tar.gz";
- sha256 = "1kzgwxzh83qi97rblcm9qj80cdvnv8kml2plz0q103j0hifj8vb5";
- };
-
- postPatch = ''
- sed -i '1i#include ' cfg.h
- '';
-
- preConfigure =
- ''
- configureFlags="--with-pluginpath=$out/lib/libnfsidmap"
- '';
-
- meta = {
- homepage = http://www.citi.umich.edu/projects/nfsv4/linux/;
- description = "Library for holding mulitiple methods of mapping names to id's and visa versa, mainly for NFSv4";
- license = "BSD";
- platforms = stdenv.lib.platforms.unix;
- };
-}
diff --git a/pkgs/development/libraries/libpng/12.nix b/pkgs/development/libraries/libpng/12.nix
index 0153ff8327b67aa5fe7e44a7d150b235b7bee2e9..2cd8c1debaf2e81f2641d80fdec5a39ec1d138a8 100644
--- a/pkgs/development/libraries/libpng/12.nix
+++ b/pkgs/development/libraries/libpng/12.nix
@@ -1,8 +1,6 @@
-{ stdenv, fetchurl, zlib
-, buildPlatform, hostPlatform
-}:
+{ stdenv, fetchurl, zlib }:
-assert hostPlatform == buildPlatform -> zlib != null;
+assert stdenv.hostPlatform == stdenv.buildPlatform -> zlib != null;
stdenv.mkDerivation rec {
name = "libpng-1.2.57";
diff --git a/pkgs/development/libraries/libsigcxx/1.2.nix b/pkgs/development/libraries/libsigcxx/1.2.nix
index 9fc6ff86773ba1d41e68906d3e632dc4ff937ad9..38e5ffcb4de042e39ef0c4b51020be781f9e4e40 100644
--- a/pkgs/development/libraries/libsigcxx/1.2.nix
+++ b/pkgs/development/libraries/libsigcxx/1.2.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [ m4];
meta = {
- homepage = http://libsigc.sourceforge.net/;
+ homepage = https://libsigcplusplus.github.io/libsigcplusplus/;
description = "A typesafe callback system for standard C++";
branch = "1.2";
platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/development/libraries/libsigcxx/default.nix b/pkgs/development/libraries/libsigcxx/default.nix
index def5ee0e19a21a3ffd68b231e1a436382df75903..8eba5377bc34f514fc226449c163e47c173ae701 100644
--- a/pkgs/development/libraries/libsigcxx/default.nix
+++ b/pkgs/development/libraries/libsigcxx/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = with stdenv.lib; {
- homepage = http://libsigc.sourceforge.net/;
+ homepage = https://libsigcplusplus.github.io/libsigcplusplus/;
description = "A typesafe callback system for standard C++";
license = licenses.lgpl21;
platforms = platforms.all;
diff --git a/pkgs/development/libraries/libsignal-protocol-c/default.nix b/pkgs/development/libraries/libsignal-protocol-c/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..379361a7031e6534b89071f80ec2e714e6d225b5
--- /dev/null
+++ b/pkgs/development/libraries/libsignal-protocol-c/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchFromGitHub, cmake, openssl }:
+
+stdenv.mkDerivation rec {
+ name = "libsignal-protocol-c";
+ version = "2.3.2";
+
+ src = fetchFromGitHub {
+ owner = "signalapp";
+ repo = "libsignal-protocol-c";
+ rev = "v${version}";
+ sha256 = "1qj2w4csy6j9jg1jy66n1qwysx7hgjywk4n35hlqcnh1kpa14k3p";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ buildInputs = [ openssl ];
+
+ cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
+
+ outputs = [ "out" "dev" ];
+
+ meta = with stdenv.lib; {
+ description = "Signal Protocol C Library";
+ homepage = https://github.com/signalapp/libsignal-protocol-c;
+ license = licenses.gpl3;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ orivej ];
+ };
+}
diff --git a/pkgs/development/libraries/libspotify/default.nix b/pkgs/development/libraries/libspotify/default.nix
index 3a01ff2944dbb09feed9b305b9c238e00a370153..e472fe014ee751ec387d9a54bd9391a86d8a8175 100644
--- a/pkgs/development/libraries/libspotify/default.nix
+++ b/pkgs/development/libraries/libspotify/default.nix
@@ -2,26 +2,26 @@
let
version = "12.1.51";
- isLinux = (stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux");
+ isLinux = (stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "i686-linux");
in
-if (stdenv.system != "x86_64-linux" && stdenv.system != "x86_64-darwin" && stdenv.system != "i686-linux")
+if (stdenv.hostPlatform.system != "x86_64-linux" && stdenv.hostPlatform.system != "x86_64-darwin" && stdenv.hostPlatform.system != "i686-linux")
then throw "Check https://developer.spotify.com/technologies/libspotify/ for a tarball for your system and add it here"
else stdenv.mkDerivation {
name = "libspotify-${version}";
src =
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://developer.spotify.com/download/libspotify/libspotify-${version}-Linux-x86_64-release.tar.gz";
sha256 = "0n0h94i4xg46hfba95n3ypah93crwb80bhgsg00f6sms683lx8a3";
}
- else if stdenv.system == "x86_64-darwin" then
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then
fetchurl {
url = "https://developer.spotify.com/download/libspotify/libspotify-${version}-Darwin-universal.zip";
sha256 = "1gcgrc8arim3hnszcc886lmcdb4iigc08abkaa02l6gng43ky1c0";
}
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "https://developer.spotify.com/download/libspotify/libspotify-${version}-Linux-i686-release.tar.gz";
sha256 = "1bjmn64gbr4p9irq426yap4ipq9rb84zsyhjjr7frmmw22xb86ll";
@@ -46,7 +46,7 @@ else stdenv.mkDerivation {
# darwin-specific
- buildInputs = stdenv.lib.optional (stdenv.system == "x86_64-darwin") unzip;
+ buildInputs = stdenv.lib.optional (stdenv.hostPlatform.system == "x86_64-darwin") unzip;
# linux-specific
installFlags = stdenv.lib.optionalString (isLinux)
diff --git a/pkgs/development/libraries/libssh2/default.nix b/pkgs/development/libraries/libssh2/default.nix
index f85b709cf397bd4f0980c38d7804cbdf7bacae55..a6802a7f51838a0e89cefec8d38e439c6a3dd1ec 100644
--- a/pkgs/development/libraries/libssh2/default.nix
+++ b/pkgs/development/libraries/libssh2/default.nix
@@ -1,6 +1,4 @@
-{ stdenv, fetchurlBoot, openssl, zlib, windows
-, hostPlatform
-}:
+{ stdenv, fetchurlBoot, openssl, zlib, windows }:
stdenv.mkDerivation rec {
name = "libssh2-1.8.0";
@@ -13,7 +11,7 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" "devdoc" ];
buildInputs = [ openssl zlib ]
- ++ stdenv.lib.optional hostPlatform.isMinGW windows.mingw_w64;
+ ++ stdenv.lib.optional stdenv.hostPlatform.isMinGW windows.mingw_w64;
meta = {
description = "A client-side C library implementing the SSH2 protocol";
diff --git a/pkgs/development/libraries/libtar/default.nix b/pkgs/development/libraries/libtar/default.nix
index 8123bf7ba84ed2feb1c9ee59f5bf71ce562394ae..481e7ad83cc304181b475dc2549725bb9e0c87f2 100644
--- a/pkgs/development/libraries/libtar/default.nix
+++ b/pkgs/development/libraries/libtar/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "C library for manipulating POSIX tar files";
- homepage = http://www.feep.net/libtar/;
+ homepage = http://repo.or.cz/libtar;
license = licenses.bsd3;
platforms = with platforms; linux ++ darwin;
maintainers = [ maintainers.bjornfor ];
diff --git a/pkgs/development/libraries/libtensorflow/default.nix b/pkgs/development/libraries/libtensorflow/default.nix
index e6cd140c4e4bbcbedd923b221bbc943b3477d559..b4e616409c4f762b03c0fe3c69d0767957f9188f 100644
--- a/pkgs/development/libraries/libtensorflow/default.nix
+++ b/pkgs/development/libraries/libtensorflow/default.nix
@@ -31,19 +31,19 @@ let
in stdenv.mkDerivation rec {
pname = "libtensorflow";
- version = "1.9.0";
+ version = "1.10.0";
name = "${pname}-${version}";
src = fetchurl {
url = "https://storage.googleapis.com/tensorflow/${pname}/${pname}-${tfType}-${system}-${version}.tar.gz";
sha256 =
if system == "linux-x86_64" then
if cudaSupport
- then "1q3mh06x344im25z7r3vgrfksfdsi8fh8ldn6y2mf86h4d11yxc3"
- else "0l9ps115ng5ffzdwphlqmj3jhidps2v5afppdzrbpzmy41xz0z21"
+ then "0v66sscxpyixjrf9yjshl001nix233i6chc61akx0kx7ial4l1wn"
+ else "11sbpcbgdzj8v17mdppfv7v1fn3nbzkdad60gc42y2j6knjbmwxb"
else if system == "darwin-x86_64" then
if cudaSupport
then unavailable
- else "1qj0v1706w6mczycdsh38h2glyv5d25v62kdn98wxd5rw8f9v657"
+ else "11p0f77m4wycpc024mh7jx0kbdhgm0wp6ir6dsa8lkcpdb59bn59"
else unavailable;
};
diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix
index a0ace84bc67d29bb2b13d3f11d32303a7666a460..9ee934cd78bbb8ee15bbb12434a05499e0b3e8a7 100644
--- a/pkgs/development/libraries/libuv/default.nix
+++ b/pkgs/development/libraries/libuv/default.nix
@@ -1,14 +1,14 @@
{ stdenv, lib, fetchpatch, fetchFromGitHub, autoconf, automake, libtool, pkgconfig }:
stdenv.mkDerivation rec {
- version = "1.21.0";
+ version = "1.23.0";
name = "libuv-${version}";
src = fetchFromGitHub {
owner = "libuv";
repo = "libuv";
rev = "v${version}";
- sha256 = "1jjg34ppnlrnb634q9mla7whl7rm9xmjgnzckrznqcycwzir074b";
+ sha256 = "1yfx99f7qnq3qvcgbnih27dgwfg6c51xw6n6n2c3c1wb3mh95im0";
};
patches = [
diff --git a/pkgs/development/libraries/libvpx/default.nix b/pkgs/development/libraries/libvpx/default.nix
index 515aa25374434a72fbecc754109c38b2922ac635..cd0cc9798fa08d4919afa97b2f0c5973f0d2fcc1 100644
--- a/pkgs/development/libraries/libvpx/default.nix
+++ b/pkgs/development/libraries/libvpx/default.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchFromGitHub, perl, yasm
-, hostPlatform
, vp8DecoderSupport ? true # VP8 decoder
, vp8EncoderSupport ? true # VP8 encoder
, vp9DecoderSupport ? true # VP9 decoder
@@ -141,17 +140,17 @@ stdenv.mkDerivation rec {
# libvpx darwin targets include darwin version (ie. ARCH-darwinXX-gcc, XX being the darwin version)
# See all_platforms: https://github.com/webmproject/libvpx/blob/master/configure
# Darwin versions: 10.4=8, 10.5=9, 10.6=10, 10.7=11, 10.8=12, 10.9=13, 10.10=14
- "--force-target=${hostPlatform.config}${
- if hostPlatform.isDarwin then
- if hostPlatform.osxMinVersion == "10.10" then "14"
- else if hostPlatform.osxMinVersion == "10.9" then "13"
- else if hostPlatform.osxMinVersion == "10.8" then "12"
- else if hostPlatform.osxMinVersion == "10.7" then "11"
- else if hostPlatform.osxMinVersion == "10.6" then "10"
- else if hostPlatform.osxMinVersion == "10.5" then "9"
+ "--force-target=${stdenv.hostPlatform.config}${
+ if stdenv.hostPlatform.isDarwin then
+ if stdenv.hostPlatform.osxMinVersion == "10.10" then "14"
+ else if stdenv.hostPlatform.osxMinVersion == "10.9" then "13"
+ else if stdenv.hostPlatform.osxMinVersion == "10.8" then "12"
+ else if stdenv.hostPlatform.osxMinVersion == "10.7" then "11"
+ else if stdenv.hostPlatform.osxMinVersion == "10.6" then "10"
+ else if stdenv.hostPlatform.osxMinVersion == "10.5" then "9"
else "8"
else ""}-gcc"
- (if hostPlatform.isCygwin then "--enable-static-msvcrt" else "")
+ (if stdenv.hostPlatform.isCygwin then "--enable-static-msvcrt" else "")
] # Experimental features
++ optional experimentalSpatialSvcSupport "--enable-spatial-svc"
++ optional experimentalFpMbStatsSupport "--enable-fp-mb-stats"
diff --git a/pkgs/development/libraries/libvpx/git.nix b/pkgs/development/libraries/libvpx/git.nix
index fb7f828f61f05f13e0c9ee74b78a82710aec701d..a39113e05b67c45a839c4203c151c5d40f3ab14d 100644
--- a/pkgs/development/libraries/libvpx/git.nix
+++ b/pkgs/development/libraries/libvpx/git.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchgit, perl, yasm
-, hostPlatform
, vp8DecoderSupport ? true # VP8 decoder
, vp8EncoderSupport ? true # VP8 encoder
, vp9DecoderSupport ? true # VP9 decoder
@@ -148,17 +147,17 @@ stdenv.mkDerivation rec {
# libvpx darwin targets include darwin version (ie. ARCH-darwinXX-gcc, XX being the darwin version)
# See all_platforms: https://github.com/webmproject/libvpx/blob/master/configure
# Darwin versions: 10.4=8, 10.5=9, 10.6=10, 10.7=11, 10.8=12, 10.9=13, 10.10=14
- "--force-target=${hostPlatform.config}${
- if hostPlatform.isDarwin then
- if hostPlatform.osxMinVersion == "10.10" then "14"
- else if hostPlatform.osxMinVersion == "10.9" then "13"
- else if hostPlatform.osxMinVersion == "10.8" then "12"
- else if hostPlatform.osxMinVersion == "10.7" then "11"
- else if hostPlatform.osxMinVersion == "10.6" then "10"
- else if hostPlatform.osxMinVersion == "10.5" then "9"
+ "--force-target=${stdenv.hostPlatform.config}${
+ if stdenv.hostPlatform.isDarwin then
+ if stdenv.hostPlatform.osxMinVersion == "10.10" then "14"
+ else if stdenv.hostPlatform.osxMinVersion == "10.9" then "13"
+ else if stdenv.hostPlatform.osxMinVersion == "10.8" then "12"
+ else if stdenv.hostPlatform.osxMinVersion == "10.7" then "11"
+ else if stdenv.hostPlatform.osxMinVersion == "10.6" then "10"
+ else if stdenv.hostPlatform.osxMinVersion == "10.5" then "9"
else "8"
else ""}-gcc"
- (if hostPlatform.isCygwin then "--enable-static-msvcrt" else "")
+ (if stdenv.hostPlatform.isCygwin then "--enable-static-msvcrt" else "")
] # Experimental features
++ optional experimentalSpatialSvcSupport "--enable-spatial-svc"
++ optional experimentalFpMbStatsSupport "--enable-fp-mb-stats"
diff --git a/pkgs/development/libraries/libwebsockets/default.nix b/pkgs/development/libraries/libwebsockets/default.nix
index 1147c9606ad4d1177444121b7137661cb5363f6a..9cd0aabcf097ed5c3ed603c9bf4df9b2872b2889 100644
--- a/pkgs/development/libraries/libwebsockets/default.nix
+++ b/pkgs/development/libraries/libwebsockets/default.nix
@@ -21,9 +21,8 @@ stdenv.mkDerivation rec {
use minimal CPU and memory resources, and provide fast
throughput in both directions.
'';
- homepage = https://libwebsockets.org/trac/libwebsockets;
+ homepage = https://libwebsockets.org;
license = stdenv.lib.licenses.lgpl21;
- maintainers = [ ];
platforms = stdenv.lib.platforms.all;
};
}
diff --git a/pkgs/development/libraries/libwnck/3.x.nix b/pkgs/development/libraries/libwnck/3.x.nix
index 8efd908584e1b11667aa48406b0867bbcfb4aa63..f2d05d14d6931ae5ccde8d45b9e304cc1c707f6a 100644
--- a/pkgs/development/libraries/libwnck/3.x.nix
+++ b/pkgs/development/libraries/libwnck/3.x.nix
@@ -19,8 +19,8 @@ in stdenv.mkDerivation rec{
nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ];
propagatedBuildInputs = [ libX11 gtk3 ];
- PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "$(dev)/share/gir-1.0";
- PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "$(out)/lib/girepository-1.0";
+ PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "${placeholder "dev"}/share/gir-1.0";
+ PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "${placeholder "out"}/lib/girepository-1.0";
passthru = {
updateScript = gnome3.updateScript {
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index 2f0f0f1425d18ea837de74e4ff9a9ebfb303f757..c359ea10b6651b825b308dafd23d2ec8ecc58a77 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -1,9 +1,8 @@
{ stdenv, lib, fetchurl, fetchpatch
, zlib, xz, python2, findXMLCatalogs
-, buildPlatform, hostPlatform
-, pythonSupport ? buildPlatform == hostPlatform
+, pythonSupport ? stdenv.buildPlatform == stdenv.hostPlatform
, icuSupport ? false, icu ? null
-, enableShared ? hostPlatform.libc != "msvcrt"
+, enableShared ? stdenv.hostPlatform.libc != "msvcrt"
, enableStatic ? !enableShared,
}:
@@ -56,7 +55,7 @@ in stdenv.mkDerivation rec {
enableParallelBuilding = true;
doCheck = (stdenv.hostPlatform == stdenv.buildPlatform) && !stdenv.isDarwin &&
- hostPlatform.libc != "musl";
+ stdenv.hostPlatform.libc != "musl";
preInstall = lib.optionalString pythonSupport
''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"'';
diff --git a/pkgs/development/libraries/libxnd/default.nix b/pkgs/development/libraries/libxnd/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..c99c3f42bfc197fa67700b7b6b35541a2a28e3e3
--- /dev/null
+++ b/pkgs/development/libraries/libxnd/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, libndtypes
+}:
+
+stdenv.mkDerivation rec {
+ name = "libxnd-${version}";
+ version = "0.2.0dev3";
+
+ src = fetchFromGitHub {
+ owner = "plures";
+ repo = "xnd";
+ rev = "v${version}";
+ sha256 = "0byq7jspyr2wxrhihw4q7nf0y4sb6j5ax0ndd5dnq5dz88c7qqm2";
+ };
+
+ buildInputs = [ libndtypes ];
+
+ configureFlags = [ "XND_INCLUDE='-I${libndtypes}/include'"
+ "XND_LINK='-L${libndtypes}/lib'" ];
+
+ makeFlags = [ "CONFIGURE_LDFLAGS='-shared'" ];
+
+ meta = {
+ description = "General container that maps a wide range of Python values directly to memory";
+ homepage = https://xnd.io/;
+ license = lib.licenses.bsdOriginal;
+ maintainers = with lib.maintainers; [ costrouc ];
+ };
+}
diff --git a/pkgs/development/libraries/libxslt/default.nix b/pkgs/development/libraries/libxslt/default.nix
index 4dfdea582a2531d5945b4522cdec2cdf3ab0d1ab..6dc40bd45a0a9e5bf002f5dbc2de2135e53b9c4e 100644
--- a/pkgs/development/libraries/libxslt/default.nix
+++ b/pkgs/development/libraries/libxslt/default.nix
@@ -1,7 +1,6 @@
{ stdenv, fetchurl, libxml2, findXMLCatalogs, python2
-, buildPlatform, hostPlatform
, cryptoSupport ? false
-, pythonSupport ? buildPlatform == hostPlatform
+, pythonSupport ? stdenv.buildPlatform == stdenv.hostPlatform
}:
assert pythonSupport -> python2 != null;
@@ -22,7 +21,7 @@ stdenv.mkDerivation rec {
patches = stdenv.lib.optional stdenv.isSunOS ./patch-ah.patch;
# fixes: can't build x86_64-unknown-cygwin shared library unless -no-undefined is specified
- postPatch = optionalString hostPlatform.isCygwin ''
+ postPatch = optionalString stdenv.hostPlatform.isCygwin ''
substituteInPlace tests/plugins/Makefile.in \
--replace 'la_LDFLAGS =' 'la_LDFLAGS = $(WIN32_EXTRA_LDFLAGS)'
'';
diff --git a/pkgs/development/libraries/libyaml/default.nix b/pkgs/development/libraries/libyaml/default.nix
index 45e15c82966ef4df2a47753443df481af2a6680e..671c077b034706eeefa4496aaecc753cff915900 100644
--- a/pkgs/development/libraries/libyaml/default.nix
+++ b/pkgs/development/libraries/libyaml/default.nix
@@ -1,16 +1,31 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, fetchpatch }:
+
let
- # 0.2.1 broke the tests of pythonPackages.pyyaml 3.13
- version = "0.1.7";
+
+ version = "0.2.1";
+
+ # https://github.com/yaml/pyyaml/issues/214
+ p1 = fetchpatch {
+ url = https://github.com/yaml/libyaml/commit/8ee83c0da22fe9aa7dea667be8f899a7e32ffb83.patch;
+ sha256 = "00jh39zww6s4gyhxfmlxwb6lz90nl3p51k5h1qm6z3ymik5vljmz";
+ };
+ p2 = fetchpatch {
+ url = https://github.com/yaml/libyaml/commit/56f4b17221868593d6903ee58d6d679b690cf4df.patch;
+ sha256 = "0najcay1y4kgfpsidj7dnyafnwjbav5jyawhyv215zl9gg3386n0";
+ };
+
in
+
stdenv.mkDerivation {
name = "libyaml-${version}";
src = fetchurl {
url = "https://pyyaml.org/download/libyaml/yaml-${version}.tar.gz";
- sha256 = "0a87931cx5m14a1x8rbjix3nz7agrcgndf4h392vm62a4rby9240";
+ sha256 = "1karpcfgacgppa82wm2drcfn2kb6q2wqfykf5nrhy20sci2i2a3q";
};
+ patches = [ p1 p2 ]; # remove when the next release comes out
+
meta = with stdenv.lib; {
homepage = https://pyyaml.org/;
description = "A YAML 1.1 parser and emitter written in C";
diff --git a/pkgs/development/libraries/live555/default.nix b/pkgs/development/libraries/live555/default.nix
index e0cf3328bac27ff42e019843306609e300488fe0..4dd5d8bcd26f932275a3d3d33938e60af8c0f1d0 100644
--- a/pkgs/development/libraries/live555/default.nix
+++ b/pkgs/development/libraries/live555/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation {
i686-linux = "linux";
x86_64-linux = "linux-64bit";
aarch64-linux = "linux-64bit";
- }.${stdenv.system}}
+ }.${stdenv.hostPlatform.system}}
'';
installPhase = ''
diff --git a/pkgs/development/libraries/mac/default.nix b/pkgs/development/libraries/mac/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..8a8a004a5e69a4715aecbba306d7ea3d90c48215
--- /dev/null
+++ b/pkgs/development/libraries/mac/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, fetchpatch, yasm }:
+
+stdenv.mkDerivation rec {
+ name = "mac-${version}";
+ version = "4.11-u4-b5-s7";
+
+ src = fetchurl {
+ url = "https://www.deb-multimedia.org/pool/main/m/monkeys-audio/monkeys-audio_${version}.orig.tar.gz";
+ sha256 = "16i96cw5r3xbsivjigqp15vv32wa38k86mxq11qx1pzmpryqpqkk";
+ };
+
+ patches = [
+ (fetchpatch {
+ name = "mac-4.11.4.5.7-gcc6.patch";
+ url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-sound/mac/files/mac-4.11.4.5.7-gcc6.patch?id=1bd4e0e30e4d8a8862217d7067323851b34c7fe4";
+ sha256 = "093b8m8p8s6dmc62fc8vb4hlmjc2ncb4rdgc82g0a8gg6w5kcj8x";
+ })
+ (fetchpatch {
+ name = "mac-4.11.4.5.7-output.patch";
+ url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-sound/mac/files/mac-4.11.4.5.7-output.patch?id=1bd4e0e30e4d8a8862217d7067323851b34c7fe4";
+ sha256 = "0njmwj6d9jqi4pz4fax02w37gk22vda0grszrs2nn97zzmjl36zk";
+ })
+ ];
+
+ CXXFLAGS = "-DSHNTOOL";
+
+ nativeBuildInputs = [ yasm ];
+
+ meta = with stdenv.lib; {
+ description = "APE codec and decompressor";
+ homepage = http://www.deb-multimedia.org/dists/testing/main/binary-amd64/package/monkeys-audio.php;
+ license = licenses.unfreeRedistributable;
+ platforms = [ "x86_64-linux" ];
+ maintainers = with maintainers; [ jfrankenau ];
+ };
+}
diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix
index d771ba7ee8fcbf55f236a3980e9e2dd711c43203..fb02366f1c1b57201b76b7288f560b05588387f7 100644
--- a/pkgs/development/libraries/mesa/default.nix
+++ b/pkgs/development/libraries/mesa/default.nix
@@ -25,7 +25,7 @@
with stdenv.lib;
-if ! lists.elem stdenv.system platforms.mesaPlatforms then
+if ! lists.elem stdenv.hostPlatform.system platforms.mesaPlatforms then
throw "unsupported platform for Mesa"
else
@@ -67,7 +67,7 @@ let
in
let
- version = "18.1.5";
+ version = "18.1.7";
branch = head (splitString "." version);
in
@@ -81,7 +81,7 @@ let self = 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 = "69dbe6f1a6660386f5beb85d4fcf003ee23023ed7b9a603de84e9a37e8d98dea";
+ sha256 = "655e3b32ce3bdddd5e6e8768596e5d4bdef82d0dd37067c324cc4b2daa207306";
};
prePatch = "patchShebangs .";
@@ -108,6 +108,7 @@ let self = stdenv.mkDerivation {
"--with-gallium-drivers=${concatStringsSep "," galliumDrivers}"
"--with-dri-drivers=${concatStringsSep "," driDrivers}"
"--with-vulkan-drivers=${concatStringsSep "," vulkanDrivers}"
+ "--enable-texture-float"
(enableFeature stdenv.isLinux "dri3")
(enableFeature stdenv.isLinux "nine") # Direct3D in Wine
"--enable-libglvnd"
diff --git a/pkgs/development/libraries/microsoft_gsl/default.nix b/pkgs/development/libraries/microsoft_gsl/default.nix
index 1c10bd6f8fcda78676460fdb3bed72f8192c1091..c4c4d8e3a57759a6a905e5f5d9a92a78bff49af0 100644
--- a/pkgs/development/libraries/microsoft_gsl/default.nix
+++ b/pkgs/development/libraries/microsoft_gsl/default.nix
@@ -1,9 +1,8 @@
{ stdenv, fetchgit, cmake
-, hostPlatform, buildPlatform
}:
let
- nativeBuild = hostPlatform == buildPlatform;
+ nativeBuild = stdenv.hostPlatform == stdenv.buildPlatform;
in
stdenv.mkDerivation rec {
name = "microsoft_gsl-${version}";
diff --git a/pkgs/development/libraries/mpfr/default.nix b/pkgs/development/libraries/mpfr/default.nix
index afb44dd80f914e53a126d97ef458d06bd813c56e..ea94a55a61995d7974b7dc0b13710ed7eebbdf15 100644
--- a/pkgs/development/libraries/mpfr/default.nix
+++ b/pkgs/development/libraries/mpfr/default.nix
@@ -1,6 +1,4 @@
-{ stdenv, fetchurl, gmp
-, hostPlatform
-}:
+{ stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
version = "4.0.1";
@@ -17,8 +15,8 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ gmp ];
configureFlags =
- stdenv.lib.optional hostPlatform.isSunOS "--disable-thread-safe" ++
- stdenv.lib.optional hostPlatform.is64bit "--with-pic";
+ stdenv.lib.optional stdenv.hostPlatform.isSunOS "--disable-thread-safe" ++
+ stdenv.lib.optional stdenv.hostPlatform.is64bit "--with-pic";
doCheck = true; # not cross;
diff --git a/pkgs/development/libraries/msgpack/generic.nix b/pkgs/development/libraries/msgpack/generic.nix
index 67418b6666d4e8123fafb4d2717bbc770d228f7c..306becf0c180c77672ce4c13fe67a874631dca3a 100644
--- a/pkgs/development/libraries/msgpack/generic.nix
+++ b/pkgs/development/libraries/msgpack/generic.nix
@@ -1,6 +1,5 @@
{ stdenv, cmake
, version, src, patches ? [ ]
-, hostPlatform
, ...
}:
@@ -16,7 +15,7 @@ stdenv.mkDerivation rec {
cmakeFlags = []
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
"-DMSGPACK_BUILD_EXAMPLES=OFF"
- ++ stdenv.lib.optional (hostPlatform.libc == "msvcrt")
+ ++ stdenv.lib.optional (stdenv.hostPlatform.libc == "msvcrt")
"-DCMAKE_SYSTEM_NAME=Windows"
;
diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix
index 861b387a993ab8e7cd35ae71ae5ca0bd982bd2e9..6293efcca8b249b38f7619b8361e465843f82777 100644
--- a/pkgs/development/libraries/ncurses/default.nix
+++ b/pkgs/development/libraries/ncurses/default.nix
@@ -8,7 +8,6 @@
, gpm
-, buildPlatform, hostPlatform
, buildPackages
}:
@@ -36,7 +35,7 @@ stdenv.mkDerivation rec {
] ++ lib.optional unicode "--enable-widec"
++ lib.optional (!withCxx) "--without-cxx"
++ lib.optional (abiVersion == "5") "--with-abi-version=5"
- ++ lib.optionals hostPlatform.isWindows [
+ ++ lib.optionals stdenv.hostPlatform.isWindows [
"--enable-sp-funcs"
"--enable-term-driver"
];
@@ -47,7 +46,7 @@ stdenv.mkDerivation rec {
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [
pkgconfig
- ] ++ lib.optionals (buildPlatform != hostPlatform) [
+ ] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
buildPackages.ncurses
];
buildInputs = lib.optional (mouseSupport && stdenv.isLinux) gpm;
@@ -137,7 +136,7 @@ stdenv.mkDerivation rec {
moveToOutput "bin/infotocap" "$out"
'';
- preFixup = lib.optionalString (!hostPlatform.isCygwin && !enableStatic) ''
+ preFixup = lib.optionalString (!stdenv.hostPlatform.isCygwin && !enableStatic) ''
rm "$out"/lib/*.a
'';
diff --git a/pkgs/development/libraries/nettle/generic.nix b/pkgs/development/libraries/nettle/generic.nix
index 3af93469cf16c4fe7b6e1aa5e18e73d63955d3a8..2ef367b6c53acf763acbd8ec613219986c21d1a6 100644
--- a/pkgs/development/libraries/nettle/generic.nix
+++ b/pkgs/development/libraries/nettle/generic.nix
@@ -16,11 +16,11 @@ stdenv.mkDerivation (rec {
nativeBuildInputs = [ gnum4 ];
propagatedBuildInputs = [ gmp ];
- doCheck = (stdenv.system != "i686-cygwin" && !stdenv.isDarwin);
+ doCheck = (stdenv.hostPlatform.system != "i686-cygwin" && !stdenv.isDarwin);
enableParallelBuilding = true;
- patches = stdenv.lib.optional (stdenv.system == "i686-cygwin")
+ patches = stdenv.lib.optional (stdenv.hostPlatform.system == "i686-cygwin")
./cygwin.patch;
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/nlohmann_json/default.nix b/pkgs/development/libraries/nlohmann_json/default.nix
index 0221722e4875dc7ca3bd00de996d6c1468bc9a25..15bdbb1b48e891b5ee6fe7850b82b46d2032c5f0 100644
--- a/pkgs/development/libraries/nlohmann_json/default.nix
+++ b/pkgs/development/libraries/nlohmann_json/default.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchFromGitHub, cmake
-, hostPlatform
}:
stdenv.mkDerivation rec {
@@ -19,7 +18,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [
"-DBuildTests=${if doCheck then "ON" else "OFF"}"
- ] ++ stdenv.lib.optionals (hostPlatform.libc == "msvcrt") [
+ ] ++ stdenv.lib.optionals (stdenv.hostPlatform.libc == "msvcrt") [
"-DCMAKE_SYSTEM_NAME=Windows"
];
diff --git a/pkgs/development/libraries/opencolorio/default.nix b/pkgs/development/libraries/opencolorio/default.nix
index 751d845f773edaf01842cde33ccc4808a56d74f3..42c0de4d493c26c34882a8b9dfa3935abe7d655d 100644
--- a/pkgs/development/libraries/opencolorio/default.nix
+++ b/pkgs/development/libraries/opencolorio/default.nix
@@ -1,22 +1,39 @@
-{ stdenv, lib, fetchurl, cmake, unzip, boost }:
+{ stdenv, lib, fetchFromGitHub, cmake, boost, pkgconfig, lcms2, tinyxml, git }:
+
+with lib;
stdenv.mkDerivation rec {
name = "opencolorio-${version}";
version = "1.1.0";
- src = fetchurl {
- url = "https://github.com/imageworks/OpenColorIO/archive/v1.0.9.zip";
- sha256 = "1vi5pcgj7gv8fp6cdnhszwfh7lh38rl2rk4c5yzsvmgcb7xf48bx";
+ src = fetchFromGitHub {
+ owner = "imageworks";
+ repo = "OpenColorIO";
+ rev = "v${version}";
+ sha256 = "0cjsyn681xsg89lirlll5pqlsqg2vnk1278iiicmzjy2a2v8x7zq";
};
outputs = [ "bin" "out" "dev" ];
- buildInputs = [ cmake unzip ] ++ lib.optional stdenv.isDarwin boost;
+ # TODO: Investigate whether git can be dropped: It's only used to apply patches
+ nativeBuildInputs = [ cmake pkgconfig git ];
+
+ buildInputs = [ lcms2 tinyxml ] ++ optional stdenv.isDarwin boost;
+
+ postPatch = ''
+ substituteInPlace src/core/CMakeLists.txt --replace "-Werror" ""
+ substituteInPlace src/pyglue/CMakeLists.txt --replace "-Werror" ""
+ '';
- cmakeFlags = lib.optional stdenv.isDarwin "-DOCIO_USE_BOOST_PTR=ON";
+ cmakeFlags = [
+ "-DUSE_EXTERNAL_LCMS=ON"
+ "-DUSE_EXTERNAL_TINYXML=ON"
+ # External libyamlcpp 0.6.* not compatible: https://github.com/imageworks/OpenColorIO/issues/517
+ "-DUSE_EXTERNAL_YAML=OFF"
+ ] ++ optional stdenv.isDarwin "-DOCIO_USE_BOOST_PTR=ON"
+ ++ optional (!stdenv.hostPlatform.isi686 && !stdenv.hostPlatform.isx86_64) "-DOCIO_USE_SSE=OFF";
postInstall = ''
- rm $out/lib/*.a
mkdir -p $bin/bin; mv $out/bin $bin/
'';
diff --git a/pkgs/development/libraries/opencv/3.x.nix b/pkgs/development/libraries/opencv/3.x.nix
index e97aa0d391e0111ad1a5e21ff8ec297285a17f5c..dd87fa932604af1ef7919fd888052fa7f7ef054d 100644
--- a/pkgs/development/libraries/opencv/3.x.nix
+++ b/pkgs/development/libraries/opencv/3.x.nix
@@ -35,20 +35,20 @@
}:
let
- version = "3.4.2";
+ version = "3.4.3";
src = fetchFromGitHub {
owner = "opencv";
repo = "opencv";
rev = version;
- sha256 = "0q752s1ir6iyqbp3pn425fi215fi7bzjl4aa3arvgh6sridda9lx";
+ sha256 = "138q3wiv4g4xvqzsp93xaqayv7kz7bl2vrgppp8jm8w6m25cd4i2";
};
contribSrc = fetchFromGitHub {
owner = "opencv";
repo = "opencv_contrib";
rev = version;
- sha256 = "1fbgbf9xdby9a5yy6bmnkzchdsfii0jagfd373y015cjpr1mrlvz";
+ sha256 = "1f334glf39nk42mpqq6j732h3ql2mpz89jd4mcl678s8n73nfjh2";
};
# Contrib must be built in order to enable Tesseract support:
@@ -63,11 +63,11 @@ let
sha256 = "1ys9mshfpm8iy8h4ml792gnqrq959dsrcv26axx14niivxyjbji8";
} + "/ippicv";
files = let name = platform : "ippicv_2017u3_${platform}_general_20180518.tgz"; in
- if stdenv.system == "x86_64-linux" then
+ if stdenv.hostPlatform.system == "x86_64-linux" then
{ ${name "lnx_intel64"} = "b7cc351267db2d34b9efa1cd22ff0572"; }
- else if stdenv.system == "i686-linux" then
+ else if stdenv.hostPlatform.system == "i686-linux" then
{ ${name "lnx_ia32"} = "ea72de74dae3c604eb6348395366e78e"; }
- else if stdenv.system == "x86_64-darwin" then
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then
{ ${name "mac_intel64"} = "3ae52b9be0fe73dd45bc5e9429cd3732"; }
else
throw "ICV is not available for this platform (or not yet supported by this package)";
@@ -145,11 +145,6 @@ stdenv.mkDerivation rec {
cp --no-preserve=mode -r "${contribSrc}/modules" "$NIX_BUILD_TOP/opencv_contrib"
'';
- # TODO: remove the following patch once commit
- # https://github.com/opencv/opencv/commit/e2b5d112909b9dfd764f14833b82e38e4bc2f81f
- # is released.
- patches = [ ./fix-dnn.patch ];
-
# This prevents cmake from using libraries in impure paths (which
# causes build failure on non NixOS)
# Also, work around https://github.com/NixOS/nixpkgs/issues/26304 with
diff --git a/pkgs/development/libraries/opencv/fix-dnn.patch b/pkgs/development/libraries/opencv/fix-dnn.patch
deleted file mode 100644
index 62234a43e4616c6714335efec7a1a9ac1db916f3..0000000000000000000000000000000000000000
--- a/pkgs/development/libraries/opencv/fix-dnn.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/modules/dnn/src/caffe/caffe_io.cpp b/modules/dnn/src/caffe/caffe_io.cpp
-index 730c752ce..abbce0453 100644
---- a/modules/dnn/src/caffe/caffe_io.cpp
-+++ b/modules/dnn/src/caffe/caffe_io.cpp
-@@ -1120,7 +1120,7 @@ bool ReadProtoFromTextFile(const char* filename, Message* proto) {
- std::ifstream fs(filename, std::ifstream::in);
- CHECK(fs.is_open()) << "Can't open \"" << filename << "\"";
- IstreamInputStream input(&fs);
-- return google::protobuf::TextFormat::Parser(true).Parse(&input, proto);
-+ return google::protobuf::TextFormat::Parser().Parse(&input, proto);
- }
-
- bool ReadProtoFromBinaryFile(const char* filename, Message* proto) {
diff --git a/pkgs/development/libraries/opendht/default.nix b/pkgs/development/libraries/opendht/default.nix
index bd7d252e1a0872b6d3a45fcfba8253ce50f60805..49d70bc211a63bf0e7007246546805c86b9da8ed 100644
--- a/pkgs/development/libraries/opendht/default.nix
+++ b/pkgs/development/libraries/opendht/default.nix
@@ -1,14 +1,6 @@
-{ stdenv
-, fetchFromGitHub
-, autoconf
-, automake
-, libtool
-, pkgconfig
-, nettle
-, gnutls
-, msgpack
-, readline
-, libargon2
+{ stdenv, fetchFromGitHub
+, autoreconfHook, pkgconfig
+, nettle, gnutls, msgpack, readline, libargon2
}:
stdenv.mkDerivation rec {
@@ -22,27 +14,26 @@ stdenv.mkDerivation rec {
sha256 = "1wqib5plak9bw2bla7y4qyjqi0b00kf8mfwlml16qj3i0aq6h2cp";
};
- buildInputs = [
- autoconf
- automake
- libtool
- pkgconfig
- nettle
- gnutls
- msgpack
- readline
- libargon2
- ];
+ nativeBuildInputs =
+ [ autoreconfHook
+ pkgconfig
+ ];
- preConfigure = ''
- ./autogen.sh
- '';
+ buildInputs =
+ [ nettle
+ gnutls
+ msgpack
+ readline
+ libargon2
+ ];
+
+ outputs = [ "out" "lib" "dev" "man" ];
meta = with stdenv.lib; {
description = "A C++11 Kademlia distributed hash table implementation";
- homepage = https://github.com/savoirfairelinux/opendht;
- license = licenses.gpl3Plus;
- maintainers = with maintainers; [ taeer olynch ];
- platforms = platforms.linux;
+ homepage = https://github.com/savoirfairelinux/opendht;
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ taeer olynch thoughtpolice ];
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/openslp/default.nix b/pkgs/development/libraries/openslp/default.nix
index 3e178d92013eff5b050e8c375aa69f7a6ff7e3d0..537b67c5a3c32c2050712524eced3d5c5e558831 100644
--- a/pkgs/development/libraries/openslp/default.nix
+++ b/pkgs/development/libraries/openslp/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
];
meta = with stdenv.lib; {
- homepage = http://openslp.org/;
+ homepage = http://www.openslp.org/;
description = "An open-source implementation of the IETF Service Location Protocol";
maintainers = with maintainers; [ ttuegel ];
license = licenses.bsd3;
diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix
index 380c0c4af6381c7cc985f8becb3dbfc5ba01b7e4..de13f963b674928cc025efbbdd23f93a0773a5ef 100644
--- a/pkgs/development/libraries/openssl/default.nix
+++ b/pkgs/development/libraries/openssl/default.nix
@@ -1,5 +1,4 @@
{ stdenv, fetchurl, buildPackages, perl
-, buildPlatform, hostPlatform
, withCryptodev ? false, cryptodevHeaders
, enableSSL2 ? false
, static ? false
@@ -20,8 +19,8 @@ let
(args.patches or [])
++ [ ./nix-ssl-cert-file.patch ]
++ optional (versionOlder version "1.1.0")
- (if hostPlatform.isDarwin then ./use-etc-ssl-certs-darwin.patch else ./use-etc-ssl-certs.patch)
- ++ optional (versionOlder version "1.0.2" && hostPlatform.isDarwin)
+ (if stdenv.hostPlatform.isDarwin then ./use-etc-ssl-certs-darwin.patch else ./use-etc-ssl-certs.patch)
+ ++ optional (versionOlder version "1.0.2" && stdenv.hostPlatform.isDarwin)
./darwin-arch.patch;
postPatch = ''
@@ -40,7 +39,7 @@ let
outputs = [ "bin" "dev" "out" "man" ];
setOutputFlags = false;
- separateDebugInfo = hostPlatform.isLinux;
+ separateDebugInfo = stdenv.hostPlatform.isLinux;
nativeBuildInputs = [ perl ];
buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;
@@ -50,19 +49,19 @@ let
configureScript = {
"x86_64-darwin" = "./Configure darwin64-x86_64-cc";
"x86_64-solaris" = "./Configure solaris64-x86_64-gcc";
- }.${hostPlatform.system} or (
- if hostPlatform == buildPlatform
+ }.${stdenv.hostPlatform.system} or (
+ if stdenv.hostPlatform == stdenv.buildPlatform
then "./config"
- else if hostPlatform.isMinGW
+ else if stdenv.hostPlatform.isMinGW
then "./Configure mingw${optionalString
- (hostPlatform.parsed.cpu.bits != 32)
- (toString hostPlatform.parsed.cpu.bits)}"
- else if hostPlatform.isLinux
- then "./Configure linux-generic${toString hostPlatform.parsed.cpu.bits}"
- else if hostPlatform.isiOS
- then "./Configure ios${toString hostPlatform.parsed.cpu.bits}-cross"
+ (stdenv.hostPlatform.parsed.cpu.bits != 32)
+ (toString stdenv.hostPlatform.parsed.cpu.bits)}"
+ else if stdenv.hostPlatform.isLinux
+ then "./Configure linux-generic${toString stdenv.hostPlatform.parsed.cpu.bits}"
+ else if stdenv.hostPlatform.isiOS
+ then "./Configure ios${toString stdenv.hostPlatform.parsed.cpu.bits}-cross"
else
- throw "Not sure what configuration to use for ${hostPlatform.config}"
+ throw "Not sure what configuration to use for ${stdenv.hostPlatform.config}"
);
configureFlags = [
@@ -73,7 +72,7 @@ let
"-DHAVE_CRYPTODEV"
"-DUSE_CRYPTODEV_DIGESTS"
] ++ stdenv.lib.optional enableSSL2 "enable-ssl2"
- ++ stdenv.lib.optional (versionAtLeast version "1.1.0" && hostPlatform.isAarch64) "no-afalgeng";
+ ++ stdenv.lib.optional (versionAtLeast version "1.1.0" && stdenv.hostPlatform.isAarch64) "no-afalgeng";
makeFlags = [ "MANDIR=$(man)/share/man" ];
diff --git a/pkgs/development/libraries/openvdb/default.nix b/pkgs/development/libraries/openvdb/default.nix
index be28c84e3e426a0ce017c4c9d87ec84bfbde7163..c11a93373dd116683b9653bc5142b11e3876ab62 100644
--- a/pkgs/development/libraries/openvdb/default.nix
+++ b/pkgs/development/libraries/openvdb/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec
{
name = "openvdb-${version}";
- version = "5.1.0";
+ version = "5.2.0";
src = fetchFromGitHub {
owner = "dreamworksanimation";
repo = "openvdb";
rev = "v${version}";
- sha256 = "1als53dnbnwa66k16vy95h1rhpdzz6i80c0gc2g3i17qbasl6ni5";
+ sha256 = "1yykrbc3nnnmpmmk0dz4b4y5xl4hl3ayjpqw0baq8yx2614r46b5";
};
outputs = [ "out" ];
diff --git a/pkgs/development/libraries/oracle-instantclient/default.nix b/pkgs/development/libraries/oracle-instantclient/default.nix
index 0c05e2ec5f6137ffe9e9bcf96e901c43a992e93a..fe260e0c2ad2d9cd3398dbbf087a4d396ac79234 100644
--- a/pkgs/development/libraries/oracle-instantclient/default.nix
+++ b/pkgs/development/libraries/oracle-instantclient/default.nix
@@ -14,12 +14,12 @@ let
sha256 = hash;
});
- throwSystem = throw "Unsupported system: ${stdenv.system}";
+ throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
arch = {
"x86_64-linux" = "linux.x64";
"x86_64-darwin" = "macos.x64";
- }."${stdenv.system}" or throwSystem;
+ }."${stdenv.hostPlatform.system}" or throwSystem;
srcs = {
"x86_64-linux" = [
@@ -32,7 +32,7 @@ let
(requireSource "sdk" arch version "2" "e0befca9c4e71ebc9f444957ffa70f01aeeec5976ea27c40406471b04c34848b")
(requireSource "sqlplus" arch version "2" "d147cbb5b2a954fdcb4b642df4f0bd1153fd56e0f56e7fa301601b4f7e2abe0e") ]
++ optional odbcSupport (requireSource "odbc" arch version "2" "1805c1ab6c8c5e8df7bdcc35d7f2b94c329ecf4dff9bde55d5f9b159ecd8b64e");
- }."${stdenv.system}" or throwSystem;
+ }."${stdenv.hostPlatform.system}" or throwSystem;
extLib = stdenv.hostPlatform.extensions.sharedLibrary;
in stdenv.mkDerivation rec {
diff --git a/pkgs/development/libraries/pagmo2/default.nix b/pkgs/development/libraries/pagmo2/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..367cef46dc4455559439e4d8e01bf8506d21823b
--- /dev/null
+++ b/pkgs/development/libraries/pagmo2/default.nix
@@ -0,0 +1,46 @@
+{ lib
+, fetchFromGitHub
+, stdenv
+, cmake
+, eigen
+, nlopt
+, ipopt
+, boost
+, writeText
+}:
+
+stdenv.mkDerivation rec {
+ name = "pagmo2-${version}";
+ version = "2.8";
+
+ src = fetchFromGitHub {
+ owner = "esa";
+ repo = "pagmo2";
+ rev = "v${version}";
+ sha256 = "1xwxamcn3fkwr62jn6bkanrwy0cvsksf75hfwx4fvl56awnbz41z";
+ };
+
+ buildInputs = [ cmake eigen nlopt ipopt boost ];
+
+ preBuild = ''
+ cp -r $src/* .
+ '';
+
+ cmakeFlags = [ "-DPAGMO_BUILD_TESTS=no"
+ "-DPAGMO_WITH_EIGEN3=yes" "-DPAGMO_WITH_NLOPT=yes"
+ "-DNLOPT_LIBRARY=${nlopt}/lib/libnlopt_cxx.so" "-DPAGMO_WITH_IPOPT=yes"
+ "-DCMAKE_CXX_FLAGS='-fuse-ld=gold'" ];
+
+ checkPhase = ''
+ ctest
+ '';
+
+ # All but one test pass skip for now (tests also take about 30 min to compile)
+ doCheck = false;
+
+ meta = {
+ homepage = https://esa.github.io/pagmo2/;
+ description = "Scientific library for massively parallel optimization";
+ license = stdenv.lib.licenses.gpl3Plus;
+ };
+}
diff --git a/pkgs/development/libraries/pango/default.nix b/pkgs/development/libraries/pango/default.nix
index 28f8a221700d7aeb9233cb493ac8d7d95d3c0ae1..6b5a0a359715f4f4b75368179024e8aaf02db4ab 100644
--- a/pkgs/development/libraries/pango/default.nix
+++ b/pkgs/development/libraries/pango/default.nix
@@ -1,37 +1,45 @@
{ stdenv, fetchurl, pkgconfig, libXft, cairo, harfbuzz
-, libintl, gobjectIntrospection, darwin, fribidi
+, libintl, gobjectIntrospection, darwin, fribidi, gnome3
+, gtk-doc, docbook_xsl, docbook_xml_dtd_43, makeFontsConf, freefont_ttf
}:
with stdenv.lib;
let
- ver_maj = "1.42";
- ver_min = "1";
-in
-stdenv.mkDerivation rec {
- name = "pango-${ver_maj}.${ver_min}";
+ pname = "pango";
+ version = "1.42.4";
+in stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
src = fetchurl {
- url = "mirror://gnome/sources/pango/${ver_maj}/${name}.tar.xz";
- sha256 = "0cnfgcya3wbs9m8g44cl5ww6wbp6qbw96qvsgkr8ymwqn9b6fnli";
+ url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
+ sha256 = "17bwb7dgbncrfsmchlib03k9n3xaalirb39g3yb43gg8cg6p8aqx";
};
outputs = [ "bin" "dev" "out" "devdoc" ];
- buildInputs = [ gobjectIntrospection ];
- nativeBuildInputs = [ pkgconfig ]
- ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
- Carbon
- CoreGraphics
- CoreText
- ]);
+ nativeBuildInputs = [ pkgconfig gobjectIntrospection gtk-doc docbook_xsl docbook_xml_dtd_43 ];
+ buildInputs = optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
+ Carbon
+ CoreGraphics
+ CoreText
+ ]);
propagatedBuildInputs = [ cairo harfbuzz libXft libintl fribidi ];
enableParallelBuilding = true;
- configureFlags = optional stdenv.isDarwin "--without-x";
+ # Fontconfig error: Cannot load default config file
+ FONTCONFIG_FILE = makeFontsConf {
+ fontDirectories = [ freefont_ttf ];
+ };
+
+ doCheck = false; # /layout/valid-1.markup: FAIL
- doCheck = false; # fails 1 out of 12 tests with "Fontconfig error: Cannot load default config file"
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ };
+ };
meta = with stdenv.lib; {
description = "A library for laying out and rendering of text, with an emphasis on internationalization";
diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix
index 04104346748e3a34926c1b2c80b3cac06f231d0b..f9bd4ae91b4654272904ae04cdd5fbf01889377e 100644
--- a/pkgs/development/libraries/pcre/default.nix
+++ b/pkgs/development/libraries/pcre/default.nix
@@ -1,6 +1,5 @@
{ stdenv, fetchurl
, pcre, windows ? null
-, buildPlatform, hostPlatform
, variant ? null
}:
@@ -24,13 +23,13 @@ in stdenv.mkDerivation rec {
outputs = [ "bin" "dev" "out" "doc" "man" ];
- configureFlags = optional (!hostPlatform.isRiscV) "--enable-jit" ++ [
+ configureFlags = optional (!stdenv.hostPlatform.isRiscV) "--enable-jit" ++ [
"--enable-unicode-properties"
"--disable-cpp"
]
++ optional (variant != null) "--enable-${variant}";
- buildInputs = optional (hostPlatform.libc == "msvcrt") windows.mingw_w64_pthreads;
+ buildInputs = optional (stdenv.hostPlatform.libc == "msvcrt") windows.mingw_w64_pthreads;
# https://bugs.exim.org/show_bug.cgi?id=2173
patches = [ ./stacksize-detection.patch ];
@@ -39,7 +38,7 @@ in stdenv.mkDerivation rec {
patchShebangs RunGrepTest
'';
- doCheck = !(with hostPlatform; isCygwin || isFreeBSD) && hostPlatform == buildPlatform;
+ doCheck = !(with stdenv.hostPlatform; isCygwin || isFreeBSD) && stdenv.hostPlatform == stdenv.buildPlatform;
# XXX: test failure on Cygwin
# we are running out of stack on both freeBSDs on Hydra
diff --git a/pkgs/development/libraries/physics/geant4/fetch.nix b/pkgs/development/libraries/physics/geant4/fetch.nix
index 7dc4c86562797b6dbc3e2f83466efe82b194ba7e..5d539b480d7d6d11d91cdc138a41d98df1d6cce1 100644
--- a/pkgs/development/libraries/physics/geant4/fetch.nix
+++ b/pkgs/development/libraries/physics/geant4/fetch.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl }:
let
- fetch = { version, src ? builtins.getAttr stdenv.system sources, sources ? null }:
+ fetch = { version, src ? builtins.getAttr stdenv.hostPlatform.system sources, sources ? null }:
{
inherit version src;
};
diff --git a/pkgs/development/libraries/pipewire/default.nix b/pkgs/development/libraries/pipewire/default.nix
index c50fc9fb35c8f35dfc1a6fa14a4f51d29e3591f1..e87ed8e48a9852b7b3122465d1675f839566ea40 100644
--- a/pkgs/development/libraries/pipewire/default.nix
+++ b/pkgs/development/libraries/pipewire/default.nix
@@ -34,7 +34,7 @@ in stdenv.mkDerivation rec {
"-Denable_gstreamer=true"
];
- PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "lib/systemd/user";
+ PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
FONTCONFIG_FILE = fontsConf; # Fontconfig error: Cannot load default config file
diff --git a/pkgs/development/libraries/podofo/default.nix b/pkgs/development/libraries/podofo/default.nix
index 9a43470de3b72422a61d966c5c782176d3670181..bcc57f09af452782ed5360931938b35b6e489670 100644
--- a/pkgs/development/libraries/podofo/default.nix
+++ b/pkgs/development/libraries/podofo/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig
-, openssl, libpng, lua5, pkgconfig, libidn, expat
+, openssl, libpng, lua5, pkgconfig, libidn, expat, fetchpatch
, gcc5 # TODO(@Dridus) remove this at next hash break
}:
@@ -13,6 +13,15 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ zlib freetype libjpeg libtiff fontconfig openssl libpng libidn expat ];
+ patches = [
+ # https://sourceforge.net/p/podofo/tickets/24/
+ (fetchpatch {
+ url = "https://sourceforge.net/p/podofo/tickets/24/attachment/podofo-cmake-3.12.patch";
+ extraPrefix = "";
+ sha256 = "087h51x60zrakzx09baan77hwz99cwb5l1j802r5g4wj7pbjz0mb";
+ })
+ ];
+
# TODO(@Dridus) remove the ++ ghc5 at next hash break
nativeBuildInputs = [ cmake pkgconfig ] ++ stdenv.lib.optional stdenv.isLinux gcc5;
diff --git a/pkgs/development/libraries/poker-eval/default.nix b/pkgs/development/libraries/poker-eval/default.nix
index f6e7ed56adc4bc2187bf75239972a94247c5bcaa..51cc72ffd4029ee4e7536450effb5dec34bad0e7 100644
--- a/pkgs/development/libraries/poker-eval/default.nix
+++ b/pkgs/development/libraries/poker-eval/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- homepage = http://pokersource.org/poker-eval/;
+ homepage = http://pokersource.sourceforge.net;
description = "Poker hand evaluator";
license = stdenv.lib.licenses.gpl3;
maintainers = [stdenv.lib.maintainers.mtreskin];
diff --git a/pkgs/development/libraries/poppler/0.61.nix b/pkgs/development/libraries/poppler/0.61.nix
index 4456cd7ff28581ecb7bf98b5a8d6edaab2cfca2f..1e86b19ad5af54712e281c690ada3059fe1a49fc 100644
--- a/pkgs/development/libraries/poppler/0.61.nix
+++ b/pkgs/development/libraries/poppler/0.61.nix
@@ -1,5 +1,5 @@
{ stdenv, lib, fetchurl, cmake, ninja, pkgconfig, libiconv, libintl
-, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
+, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg, fetchpatch
, withData ? true, poppler_data
, qt5Support ? false, qtbase ? null
, introspectionSupport ? false, gobjectIntrospection ? null
@@ -21,6 +21,14 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" ];
+ patches = [
+ (fetchpatch {
+ name = "CVE-2018-13988";
+ url = "https://cgit.freedesktop.org/poppler/poppler/patch/?id=004e3c10df0abda214f0c293f9e269fdd979c5ee";
+ sha256 = "1l8713s57xc6g81bldw934rsfm140fqc7ggd50ha5mxdl1b3app2";
+ })
+ ];
+
buildInputs = [ libiconv libintl ] ++ lib.optional withData poppler_data;
# TODO: reduce propagation to necessary libs
diff --git a/pkgs/development/libraries/qpdf/default.nix b/pkgs/development/libraries/qpdf/default.nix
index 0aa39532325d838e5c7669dee02848f09b50a641..79deb482161f6246b35160c34492b78ffc452eeb 100644
--- a/pkgs/development/libraries/qpdf/default.nix
+++ b/pkgs/development/libraries/qpdf/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, fetchpatch, libjpeg, zlib, perl }:
-let version = "8.1.0";
+let version = "8.2.1";
in
stdenv.mkDerivation rec {
name = "qpdf-${version}";
src = fetchurl {
url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz";
- sha256 = "1m3hcgip6bzjx4gd7wq1328p8zi3pq5savzncdyln6l0lcklh7vx";
+ sha256 = "1jdb0jj72fjdp6xip4m7yz31r5x13zs7h4smnxsycgw3vbmx6igl";
};
nativeBuildInputs = [ perl ];
diff --git a/pkgs/development/libraries/qt-3/default.nix b/pkgs/development/libraries/qt-3/default.nix
index 32841c9b93316e291ad416977a88056b8e29c2db..0691f26b47126d6ac487f6036777f58fdf74f501 100644
--- a/pkgs/development/libraries/qt-3/default.nix
+++ b/pkgs/development/libraries/qt-3/default.nix
@@ -34,27 +34,39 @@ stdenv.mkDerivation {
hardeningDisable = [ "format" ];
- configureFlags = "
- -v
- -system-zlib -system-libpng -system-libjpeg
- -qt-gif
- -I${xextproto}/include
- ${if openglSupport then "-dlopen-opengl
- -L${libGLU_combined}/lib -I${libGLU_combined}/include
- -L${libXmu.out}/lib -I${libXmu.dev}/include" else ""}
- ${if threadSupport then "-thread" else "-no-thread"}
- ${if xrenderSupport then "-xrender -L${libXrender.out}/lib -I${libXrender.dev}/include" else "-no-xrender"}
- ${if xrandrSupport then "-xrandr
- -L${libXrandr.out}/lib -I${libXrandr.dev}/include
- -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${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
- -L${libXft.fontconfig.lib}/lib -I${libXft.fontconfig.dev}/include" else "-no-xft"}
- ";
+ configureFlags = let
+ mk = cond: name: "-${stdenv.lib.optionalString (!cond) "no-"}${name}";
+ in [
+ "-v"
+ "-system-zlib" "-system-libpng" "-system-libjpeg"
+ "-qt-gif"
+ "-I${xextproto}/include"
+ (mk threadSupport "thread")
+ (mk xrenderSupport "xrender")
+ (mk xrandrSupport "xrandr")
+ (mk xineramaSupport "xinerama")
+ (mk xrandrSupport "xrandr")
+ (mk xftSupport "xft")
+ ] ++ stdenv.lib.optionals openglSupport [
+ "-dlopen-opengl"
+ "-L${libGLU_combined}/lib" "-I${libGLU_combined}/include"
+ "-L${libXmu.out}/lib" "-I${libXmu.dev}/include"
+ ] ++ stdenv.lib.optionals xrenderSupport [
+ "-L${libXrender.out}/lib" "-I${libXrender.dev}/include"
+ ] ++ stdenv.lib.optionals xrandrSupport [
+ "-L${libXrandr.out}/lib" "-I${libXrandr.dev}/include"
+ "-I${randrproto}/include"
+ ] ++ stdenv.lib.optionals xineramaSupport [
+ "-L${libXinerama.out}/lib" "-I${libXinerama.dev}/include"
+ ] ++ stdenv.lib.optionals cursorSupport [
+ "-L${libXcursor.out}/lib -I${libXcursor.dev}/include"
+ ] ++ stdenv.lib.optionals mysqlSupport [
+ "-qt-sql-mysql" "-L${mysql.connector-c}/lib/mysql" "-I${mysql.connector-c}/include/mysql"
+ ] ++ stdenv.lib.optionals xftSupport [
+ "-L${libXft.out}/lib" "-I${libXft.dev}/include"
+ "-L${libXft.freetype.out}/lib" "-I${libXft.freetype.dev}/include"
+ "-L${libXft.fontconfig.lib}/lib" "-I${libXft.fontconfig.dev}/include"
+ ];
patches = [
# Don't strip everything so we can get useful backtraces.
diff --git a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix
index 7d342330491c9a06440fab0fac09b9ec565ab7bd..aae15c62d73c72f704ee114832fe80bbe3257c61 100644
--- a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix
+++ b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix
@@ -13,6 +13,7 @@
, systemd
, enableProprietaryCodecs ? true
, gn, darwin, openbsm
+, ffmpeg ? null
, lib, stdenv # lib.optional, needsPax
}:
@@ -115,7 +116,9 @@ EOF
fi
'';
- qmakeFlags = optional enableProprietaryCodecs "-- -proprietary-codecs";
+ qmakeFlags = if stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64
+ then [ "--" "-system-ffmpeg" ] ++ optional enableProprietaryCodecs "-proprietary-codecs"
+ else optional enableProprietaryCodecs "-- -proprietary-codecs";
propagatedBuildInputs = [
# Image formats
@@ -131,6 +134,8 @@ EOF
harfbuzz icu
libevent
+ ] ++ optionals (stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64) [
+ ffmpeg
] ++ optionals (!stdenv.isDarwin) [
dbus zlib minizip snappy nss protobuf jsoncpp
diff --git a/pkgs/development/libraries/readline/6.2.nix b/pkgs/development/libraries/readline/6.2.nix
index 2c800e23b27fb1f562119233434592303878fe8d..e97b31896c1d5c758e069d39062df34e542e507f 100644
--- a/pkgs/development/libraries/readline/6.2.nix
+++ b/pkgs/development/libraries/readline/6.2.nix
@@ -1,5 +1,4 @@
{ fetchurl, stdenv, ncurses
-, buildPlatform, hostPlatform
}:
stdenv.mkDerivation (rec {
@@ -59,6 +58,6 @@ stdenv.mkDerivation (rec {
//
# Don't run the native `strip' when cross-compiling.
-(if hostPlatform != buildPlatform
+(if stdenv.hostPlatform != stdenv.buildPlatform
then { dontStrip = true; }
else { }))
diff --git a/pkgs/development/libraries/readline/6.3.nix b/pkgs/development/libraries/readline/6.3.nix
index 75c25e12d667bebfaa0ec8fce24b5d57c6594288..cfa70f423db3c2a7e9ef61cf26a47d94100188d1 100644
--- a/pkgs/development/libraries/readline/6.3.nix
+++ b/pkgs/development/libraries/readline/6.3.nix
@@ -1,6 +1,4 @@
-{ fetchurl, stdenv, ncurses
-, buildPlatform, hostPlatform
-}:
+{ fetchurl, stdenv, ncurses }:
stdenv.mkDerivation rec {
name = "readline-6.3p08";
@@ -37,7 +35,7 @@ stdenv.mkDerivation rec {
import ./readline-6.3-patches.nix patch);
# Don't run the native `strip' when cross-compiling.
- dontStrip = hostPlatform != buildPlatform;
+ dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
bash_cv_func_sigsetjmp = if stdenv.isCygwin then "missing" else null;
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/readline/7.0.nix b/pkgs/development/libraries/readline/7.0.nix
index a7306010a8b501d5e398c30f66cdfea50b37ef72..9c0c3d31b4b6f5d6ba7a778f88bc6935b39816b9 100644
--- a/pkgs/development/libraries/readline/7.0.nix
+++ b/pkgs/development/libraries/readline/7.0.nix
@@ -1,5 +1,4 @@
{ fetchurl, stdenv, ncurses
-, buildPlatform, hostPlatform
}:
stdenv.mkDerivation rec {
@@ -34,7 +33,7 @@ stdenv.mkDerivation rec {
++ upstreamPatches;
# Don't run the native `strip' when cross-compiling.
- dontStrip = hostPlatform != buildPlatform;
+ dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
bash_cv_func_sigsetjmp = if stdenv.isCygwin then "missing" else null;
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/science/math/openblas/default.nix b/pkgs/development/libraries/science/math/openblas/default.nix
index 18483f9e327cde4107ff84a8072d07ada39908ec..2efabcdd05e07d71ae22762a91026b74038e7da6 100644
--- a/pkgs/development/libraries/science/math/openblas/default.nix
+++ b/pkgs/development/libraries/science/math/openblas/default.nix
@@ -67,15 +67,15 @@ in
let
config =
- configs.${stdenv.system}
- or (throw "unsupported system: ${stdenv.system}");
+ configs.${stdenv.hostPlatform.system}
+ or (throw "unsupported system: ${stdenv.hostPlatform.system}");
in
let
blas64 =
if blas64_ != null
then blas64_
- else hasPrefix "x86_64" stdenv.system;
+ else hasPrefix "x86_64" stdenv.hostPlatform.system;
in
stdenv.mkDerivation rec {
name = "openblas-${version}";
@@ -136,6 +136,20 @@ stdenv.mkDerivation rec {
doCheck = true;
checkTarget = "tests";
+ postInstall = ''
+ # Write pkgconfig aliases. Upstream report:
+ # https://github.com/xianyi/OpenBLAS/issues/1740
+ for alias in blas cblas lapack; do
+ cat < $out/lib/pkgconfig/$alias.pc
+Name: $alias
+Version: ${version}
+Description: $alias provided by the OpenBLAS package.
+Cflags: -I$out/include
+Libs: -L$out/lib -lopenblas
+EOF
+ done
+ '';
+
meta = with stdenv.lib; {
description = "Basic Linear Algebra Subprograms";
license = licenses.bsd3;
diff --git a/pkgs/development/libraries/science/math/sympow/default.nix b/pkgs/development/libraries/science/math/sympow/default.nix
index c34701e3f9136b64dd5b0699dd47b21d5062ec10..f421755b618222dd880fa956a1695b3cc2f5989b 100644
--- a/pkgs/development/libraries/science/math/sympow/default.nix
+++ b/pkgs/development/libraries/science/math/sympow/default.nix
@@ -34,13 +34,11 @@ stdenv.mkDerivation rec {
makeWrapper "$out/share/sympow/sympow" "$out/bin/sympow" \
--run 'export SYMPOW_LOCAL="$HOME/.local/share/sympow"' \
--run 'if [ ! -d "$SYMPOW_LOCAL" ]; then
- mkdir -p "$SYMPOW_LOCAL"
- cp -r @out@/share/sympow/* "$SYMPOW_LOCAL"
+ mkdir -p "$SYMPOW_LOCAL"
+ cp -r ${placeholder "out"}/share/sympow/* "$SYMPOW_LOCAL"
chmod -R +xw "$SYMPOW_LOCAL"
fi' \
--run 'cd "$SYMPOW_LOCAL"'
- substituteInPlace $out/bin/sympow --subst-var out
-
runHook postInstall
'';
diff --git a/pkgs/development/libraries/scmccid/default.nix b/pkgs/development/libraries/scmccid/default.nix
index f88bd64f597be5ffcdfebbbd05612b5014ce6960..b305fecc39334e6c1cac0e54175741853f5b74bb 100644
--- a/pkgs/development/libraries/scmccid/default.nix
+++ b/pkgs/development/libraries/scmccid/default.nix
@@ -5,11 +5,11 @@ assert stdenv ? cc && stdenv.cc.libc != null;
stdenv.mkDerivation rec {
name = "scmccid-5.0.11";
- src = if stdenv.system == "i686-linux" then (fetchurl {
+ src = if stdenv.hostPlatform.system == "i686-linux" then (fetchurl {
url = "http://www.scmmicro.com/support/download/scmccid_5.0.11_linux.tar.gz";
sha256 = "1r5wkarhzl09ncgj55baizf573czw0nplh1pgddzx9xck66kh5bm";
})
- else if stdenv.system == "x86_64-linux" then (fetchurl {
+ else if stdenv.hostPlatform.system == "x86_64-linux" then (fetchurl {
url = "http://www.scmmicro.com/support/download/scmccid_5.0.11_linux_x64.tar.gz";
sha256 = "0k9lzlk01sl4ycfqgrqqy3bildz0mcr1r0kkicgjz96l4s0jgz0i";
})
diff --git a/pkgs/development/libraries/skalibs/default.nix b/pkgs/development/libraries/skalibs/default.nix
index b3f5e12b0ecd52ec8d9d7efb11eebc2ff6de336a..9d5bd170e20db41cbde06be5d44d33e258054b3b 100644
--- a/pkgs/development/libraries/skalibs/default.nix
+++ b/pkgs/development/libraries/skalibs/default.nix
@@ -33,7 +33,7 @@ in stdenv.mkDerivation rec {
# Explicitly setting target ensures code can be compiled against a skalibs
# binary built on a different version of darwin.
# http://www.skarnet.org/cgi-bin/archive.cgi?1:mss:623:heiodchokfjdkonfhdph
- ++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.system}");
+ ++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.hostPlatform.system}");
postInstall = ''
mkdir -p $doc/share/doc/skalibs
diff --git a/pkgs/development/libraries/soqt/default.nix b/pkgs/development/libraries/soqt/default.nix
index fdad4e21b0b683a3e419e4dca0993431b712ba5a..9769596621b1e32fa0837025f4127a26d2f361fe 100644
--- a/pkgs/development/libraries/soqt/default.nix
+++ b/pkgs/development/libraries/soqt/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
meta = {
- homepage = http://www.coin3d.org/;
+ homepage = https://bitbucket.org/Coin3D/coin/wiki/Home;
license = stdenv.lib.licenses.gpl2Plus;
description = "Glue between Coin high-level 3D visualization library and Qt";
diff --git a/pkgs/development/libraries/soxt/default.nix b/pkgs/development/libraries/soxt/default.nix
index 13f037960b0824d0889671dee7649e3f93d357b0..c219d5bfb3624ae5fdf5315972f6bcce1ced28d8 100644
--- a/pkgs/development/libraries/soxt/default.nix
+++ b/pkgs/development/libraries/soxt/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [ coin3d motif xlibsWrapper libGLU_combined ];
meta = with stdenv.lib; {
- homepage = http://www.coin3d.org/;
+ homepage = https://bitbucket.org/Coin3D/coin/wiki/Home;
license = licenses.bsd3;
description = "A GUI binding for using Open Inventor with Xt/Motif";
maintainers = with maintainers; [ tmplt ];
diff --git a/pkgs/development/libraries/spice-gtk/default.nix b/pkgs/development/libraries/spice-gtk/default.nix
index f4f10978ec13d595b42f34cbd29e302e531c1888..f5258c1cd6d8e3813cb5e3a340c65dd0f5bddf67 100644
--- a/pkgs/development/libraries/spice-gtk/default.nix
+++ b/pkgs/development/libraries/spice-gtk/default.nix
@@ -52,7 +52,7 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig gettext libsoup autoreconfHook vala gobjectIntrospection ];
- PKG_CONFIG_POLKIT_GOBJECT_1_POLICYDIR = "$(out)/share/polkit-1/actions";
+ PKG_CONFIG_POLKIT_GOBJECT_1_POLICYDIR = "${placeholder "out"}/share/polkit-1/actions";
configureFlags = [
"--with-gtk3"
diff --git a/pkgs/development/libraries/tachyon/default.nix b/pkgs/development/libraries/tachyon/default.nix
index d5d12e44df0a894a2cf4d721e3b3652780c26b5c..27ac0fdd5ff90edee8a3a67d60ff1835d6a6e4ee 100644
--- a/pkgs/development/libraries/tachyon/default.nix
+++ b/pkgs/development/libraries/tachyon/default.nix
@@ -34,15 +34,15 @@ stdenv.mkDerivation rec {
export USEPNG=" -DUSEPNG"
export PNGLIB=" -lpng -lz"
'';
- arch = if stdenv.system == "x86_64-linux" then "linux-64-thr" else
- if stdenv.system == "i686-linux" then "linux-thr" else
- if stdenv.system == "aarch64-linux" then "linux-arm-thr" else
- if stdenv.system == "armv7l-linux" then "linux-arm-thr" else
- if stdenv.system == "x86_64-darwin" then "macosx-thr" else
- if stdenv.system == "i686-darwin" then "macosx-64-thr" else
- if stdenv.system == "i686-cygwin" then "win32" else
- if stdenv.system == "x86_64-freebsd" then "bsd" else
- if stdenv.system == "x686-freebsd" then "bsd" else
+ arch = if stdenv.hostPlatform.system == "x86_64-linux" then "linux-64-thr" else
+ if stdenv.hostPlatform.system == "i686-linux" then "linux-thr" else
+ if stdenv.hostPlatform.system == "aarch64-linux" then "linux-arm-thr" else
+ if stdenv.hostPlatform.system == "armv7l-linux" then "linux-arm-thr" else
+ if stdenv.hostPlatform.system == "x86_64-darwin" then "macosx-thr" else
+ if stdenv.hostPlatform.system == "i686-darwin" then "macosx-64-thr" else
+ if stdenv.hostPlatform.system == "i686-cygwin" then "win32" else
+ if stdenv.hostPlatform.system == "x86_64-freebsd" then "bsd" else
+ if stdenv.hostPlatform.system == "x686-freebsd" then "bsd" else
throw "Don't know what arch to select for tachyon build";
makeFlags = "${arch}";
patches = [
diff --git a/pkgs/development/libraries/tcllib/default.nix b/pkgs/development/libraries/tcllib/default.nix
index 6ffbe5dc60c5ca5b18facc0d9644ad628eb16715..24b1d477b8a07452f6245f78a497e6167b295da9 100644
--- a/pkgs/development/libraries/tcllib/default.nix
+++ b/pkgs/development/libraries/tcllib/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
buildInputs = [ tcl ];
meta = {
- homepage = http://tcl.activestate.com/software/tcllib/;
+ homepage = https://sourceforge.net/projects/tcllib/;
description = "Tcl-only library of standard routines for Tcl";
license = stdenv.lib.licenses.tcltk;
platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/development/libraries/ti-rpc/default.nix b/pkgs/development/libraries/ti-rpc/default.nix
index 24251cf0cc1d2039a285697315b0b206321e9813..77c0b4a1a46098158e293fcb5747232e7cfb8bc1 100644
--- a/pkgs/development/libraries/ti-rpc/default.nix
+++ b/pkgs/development/libraries/ti-rpc/default.nix
@@ -1,11 +1,11 @@
{ fetchurl, stdenv, autoreconfHook, libkrb5 }:
stdenv.mkDerivation rec {
- name = "libtirpc-1.0.3";
+ name = "libtirpc-1.1.4";
src = fetchurl {
url = "mirror://sourceforge/libtirpc/${name}.tar.bz2";
- sha256 = "0ppxl3k3nsz0qdakq844i2kj4fvh9h937lhx26bgmpmxq67sghw6";
+ sha256 = "07anqypf7c719x9y683qz65cxllmzlgmlab2hlahrqcj4bq2k99c";
};
postPatch = ''
diff --git a/pkgs/development/libraries/udunits/default.nix b/pkgs/development/libraries/udunits/default.nix
index b02ac8852371ae780c04eb3404b599b0b461d056..664bc29a72de3264c4d26f08841d2d04ad927c93 100644
--- a/pkgs/development/libraries/udunits/default.nix
+++ b/pkgs/development/libraries/udunits/default.nix
@@ -1,22 +1,26 @@
-{ stdenv, fetchurl,
- bison, flex, expat, file
+{ stdenv, fetchFromGitHub, autoreconfHook,
+ texinfo, bison, flex, expat, file
}:
stdenv.mkDerivation rec {
- name = "udunits-2.2.26";
- src = fetchurl {
- url = "ftp://ftp.unidata.ucar.edu/pub/udunits/${name}.tar.gz";
- sha256 = "0v9mqw4drnkzkm57331ail6yvs9485jmi37s40lhvmf7r5lli3rn";
- };
+ name = "udunits-${version}";
+ version = "2.2.27.6";
+
+ src = fetchFromGitHub {
+ owner = "Unidata";
+ repo = "UDUNITS-2";
+ rev = "v${version}";
+ sha256 = "0621pac24c842dyipzaa59rh6pza9phdqi3snd4cq4pib0wjw6gm";
+ };
- nativeBuildInputs = [ bison flex file ];
- buildInputs = [ expat ];
+ nativeBuildInputs = [ autoreconfHook texinfo bison flex file ];
+ buildInputs = [ expat ];
- meta = with stdenv.lib; {
- homepage = https://www.unidata.ucar.edu/software/udunits/;
- description = "A C-based package for the programatic handling of units of physical quantities";
- license = licenses.bsdOriginal;
- platforms = platforms.linux;
- maintainers = with maintainers; [ pSub ];
- };
+ meta = with stdenv.lib; {
+ homepage = https://www.unidata.ucar.edu/software/udunits/;
+ description = "A C-based package for the programatic handling of units of physical quantities";
+ license = licenses.bsdOriginal;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ pSub ];
+ };
}
diff --git a/pkgs/development/libraries/umockdev/default.nix b/pkgs/development/libraries/umockdev/default.nix
index 1ff71fa18114601c52660e18c8d3be350c071600..912bcac55cd028e99e03ce926f451083affe5b3d 100644
--- a/pkgs/development/libraries/umockdev/default.nix
+++ b/pkgs/development/libraries/umockdev/default.nix
@@ -1,15 +1,17 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, libtool
+{ stdenv, fetchFromGitHub, autoreconfHook, umockdev, gobjectIntrospection
, pkgconfig, glib, systemd, libgudev, vala }:
stdenv.mkDerivation rec {
name = "umockdev-${version}";
- version = "0.11.3";
+ version = "0.12";
+
+ outputs = [ "bin" "out" "dev" "doc" ];
src = fetchFromGitHub {
owner = "martinpitt";
repo = "umockdev";
rev = version;
- sha256 = "1z101yw7clxz39im3y435s3rj1gna3kp0fkj9wd62vxqvk68lhik";
+ sha256 = "1j7kkxpqs991w3qdlb779gzv38l1vpnlk3laabi2ndk83j1wl5k2";
};
# autoreconfHook complains if we try to build the documentation
@@ -19,7 +21,7 @@ stdenv.mkDerivation rec {
buildInputs = [ glib systemd libgudev ];
- nativeBuildInputs = [ autoreconfHook libtool pkgconfig vala ];
+ nativeBuildInputs = [ autoreconfHook pkgconfig vala gobjectIntrospection ];
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/v8/3.14.nix b/pkgs/development/libraries/v8/3.14.nix
index ce666becc85535951517c62d1d5b8eed3ebff4de..827274251ed9a737edd620221f43a7051bb9646c 100644
--- a/pkgs/development/libraries/v8/3.14.nix
+++ b/pkgs/development/libraries/v8/3.14.nix
@@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
installPhase = ''
install -vD out/Release/d8 "$out/bin/d8"
- ${if stdenv.system == "x86_64-darwin" then ''
+ ${if stdenv.hostPlatform.system == "x86_64-darwin" then ''
install -vD out/Release/lib.target/libv8.dylib "$out/lib/libv8.dylib"
'' else ''
install -vD out/Release/lib.target/libv8.so "$out/lib/libv8.so"
diff --git a/pkgs/development/libraries/vaapi-intel-hybrid/default.nix b/pkgs/development/libraries/vaapi-intel-hybrid/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..56ded2c56447f98e0ccac0d55090d13c5afbcb74
--- /dev/null
+++ b/pkgs/development/libraries/vaapi-intel-hybrid/default.nix
@@ -0,0 +1,47 @@
+{ stdenv, fetchurl, autoreconfHook, pkgconfig, cmrt, libdrm, libva, libX11, libGL, wayland }:
+
+stdenv.mkDerivation rec {
+ name = "intel-hybrid-driver-${version}";
+ version = "1.0.2";
+
+ src = fetchurl {
+ url = "https://github.com/01org/intel-hybrid-driver/archive/${version}.tar.gz";
+ sha256 = "0ywdhbvzwzzrq4qhylnw1wc8l3j67h26l0cs1rncwhw05s3ndk8n";
+ };
+
+ patches = [
+ # driver_init: load libva-x11.so for any ABI version
+ (fetchurl {
+ url = https://github.com/01org/intel-hybrid-driver/pull/26.diff;
+ sha256 = "1ql4mbi5x1d2a5c8mkjvciaq60zj8nhx912992winbhfkyvpb3gx";
+ })
+ ];
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+ buildInputs = [ cmrt libdrm libva libX11 libGL wayland ];
+
+ enableParallelBuilding = true;
+
+ configureFlags = [
+ "--enable-drm"
+ "--enable-x11"
+ "--enable-wayland"
+ ];
+
+ postPatch = ''
+ patchShebangs ./src/shaders/gpp.py
+ '';
+
+ preConfigure = ''
+ sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://01.org/linuxmedia;
+ description = "Intel driver for the VAAPI library with partial HW acceleration";
+ license = licenses.mit;
+ maintainers = with maintainers; [ tadfisher ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/libraries/vaapi-intel/default.nix b/pkgs/development/libraries/vaapi-intel/default.nix
index 4e729db4671e10a7dabcde3d8600b5fcdf7952cc..ba763e33490545f9a0906204bfdbf1760fc2f81e 100644
--- a/pkgs/development/libraries/vaapi-intel/default.nix
+++ b/pkgs/development/libraries/vaapi-intel/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchFromGitHub, autoreconfHook, gnum4, pkgconfig, python2
, intel-gpu-tools, libdrm, libva, libX11, libGL, wayland, libXext
+, enableHybridCodec ? false, vaapi-intel-hybrid
}:
stdenv.mkDerivation rec {
@@ -7,8 +8,8 @@ stdenv.mkDerivation rec {
inherit (libva) version;
src = fetchFromGitHub {
- owner = "01org";
- repo = "libva-intel-driver";
+ owner = "intel";
+ repo = "intel-vaapi-driver";
rev = version;
sha256 = "15ag4al9h6b8f8sw1zpighyhsmr5qfqp1882q7r3gsh5g4cnj763";
};
@@ -21,20 +22,25 @@ stdenv.mkDerivation rec {
sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
'';
+ postInstall = stdenv.lib.optionalString enableHybridCodec ''
+ ln -s ${vaapi-intel-hybrid}/lib/dri/* $out/lib/dri/
+ '';
+
configureFlags = [
"--enable-drm"
"--enable-x11"
"--enable-wayland"
- ];
+ ] ++ stdenv.lib.optional enableHybridCodec "--enable-hybrid-codec";
nativeBuildInputs = [ autoreconfHook gnum4 pkgconfig python2 ];
- buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext libGL wayland ];
+ buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext libGL wayland ]
+ ++ stdenv.lib.optional enableHybridCodec vaapi-intel-hybrid;
enableParallelBuilding = true;
meta = with stdenv.lib; {
- homepage = https://cgit.freedesktop.org/vaapi/intel-driver/;
+ homepage = https://01.org/linuxmedia;
license = licenses.mit;
description = "Intel driver for the VAAPI library";
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/vapoursynth-mvtools/default.nix b/pkgs/development/libraries/vapoursynth-mvtools/default.nix
index c2ab61c6bd17fa533e7321d204bfebf3cdc1349b..ecc6b7c30fc7b0a613ab6174b53a1e81a4c32587 100644
--- a/pkgs/development/libraries/vapoursynth-mvtools/default.nix
+++ b/pkgs/development/libraries/vapoursynth-mvtools/default.nix
@@ -1,22 +1,22 @@
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook,
- vapoursynth, yasm, fftwFloat
+ vapoursynth, nasm, fftwFloat
}:
stdenv.mkDerivation rec {
name = "vapoursynth-mvtools-${version}";
- version = "19";
+ version = "20";
src = fetchFromGitHub {
- owner = "dubhater";
- repo = "vapoursynth-mvtools";
+ owner = "dubhater";
+ repo = "vapoursynth-mvtools";
rev = "v${version}";
- sha256 = "1wjwf1lgfkqz87s0j251g625mw9xmx79zzgrjyhq3wlii73m6qwp";
+ sha256 = "0nbq04wbmz7xqfcfpdvgg0p8xhh2xdcwhhx5gwr4j8bm611v0npz";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
autoreconfHook
- yasm vapoursynth fftwFloat
+ nasm vapoursynth fftwFloat
];
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
diff --git a/pkgs/development/libraries/vapoursynth/default.nix b/pkgs/development/libraries/vapoursynth/default.nix
index 7344f3a7e2bb2fe482c35f66e67c50f4a02fd971..2d3af9b70c5781d919c917a1565f65e752caa649 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 = "R43";
+ version = "R44";
src = fetchFromGitHub {
owner = "vapoursynth";
repo = "vapoursynth";
rev = version;
- sha256 = "01yzxggjxr6fz3wj81z6vgp9m4jqddyk73i22kz2x620cpdgb9j9";
+ sha256 = "1270cggvk9nvy5g2z289nwhyvl4364yzirfn5jsa9i9ljfp00qml";
};
nativeBuildInputs = [ pkgconfig autoreconfHook nasm ];
diff --git a/pkgs/development/libraries/vigra/default.nix b/pkgs/development/libraries/vigra/default.nix
index 4a002becdb3b1505689538c313a598c7e2fb5f85..12c166beacbd2c3185644ce47eca8e09bff51b6f 100644
--- a/pkgs/development/libraries/vigra/default.nix
+++ b/pkgs/development/libraries/vigra/default.nix
@@ -21,7 +21,7 @@ in stdenv.mkDerivation rec {
preConfigure = "cmakeFlags+=\" -DVIGRANUMPY_INSTALL_DIR=$out/lib/${python.libPrefix}/site-packages\"";
cmakeFlags = [ "-DWITH_OPENEXR=1" ]
- ++ stdenv.lib.optionals (stdenv.system == "x86_64-linux")
+ ++ stdenv.lib.optionals (stdenv.hostPlatform.system == "x86_64-linux")
[ "-DCMAKE_CXX_FLAGS=-fPIC" "-DCMAKE_C_FLAGS=-fPIC" ];
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/vrpn/default.nix b/pkgs/development/libraries/vrpn/default.nix
index ddeecce21c6147253d6363e8b625302de0ae1ba4..0ae5ba147cb737bd6d16ababf23971ac9cda2475 100644
--- a/pkgs/development/libraries/vrpn/default.nix
+++ b/pkgs/development/libraries/vrpn/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
set of physical devices (tracker, etc.) used in a virtual-reality
(VR) system.
'';
- homepage = http://www.vrpn.org/;
+ homepage = https://github.com/vrpn/vrpn;
license = licenses.boost; # see https://github.com/vrpn/vrpn/wiki/License
platforms = platforms.linux;
maintainers = with maintainers; [ ludo ];
diff --git a/pkgs/development/libraries/vulkan-headers/default.nix b/pkgs/development/libraries/vulkan-headers/default.nix
index e154403697fec96cfbcca97521a835b72bd7865a..2a07eba261b796e89ebbabc5b46a6e4fa1d969ac 100644
--- a/pkgs/development/libraries/vulkan-headers/default.nix
+++ b/pkgs/development/libraries/vulkan-headers/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "vulkan-headers-${version}";
- version = "1.1.77.0";
+ version = "1.1.82.0";
buildInputs = [ cmake ];
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
owner = "KhronosGroup";
repo = "Vulkan-Headers";
rev = "sdk-${version}";
- sha256 = "1k01y5cj154mw7853w5xh135b2jp6k83kzwknw0dbs5adj4dx0kf";
+ sha256 = "1pp0kmgd89g8rz6qqfqmdmv209s0d6hbsshrzrlwrdm6dc25f20p";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/vulkan-loader/default.nix b/pkgs/development/libraries/vulkan-loader/default.nix
index e44a678194ae808b7604d202d75d41d9175b4399..5ffdc43753739433dcd4a437767ec6e210c895d7 100644
--- a/pkgs/development/libraries/vulkan-loader/default.nix
+++ b/pkgs/development/libraries/vulkan-loader/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, cmake, python3, vulkan-headers, pkgconfig,
xlibsWrapper, libxcb, libXrandr, libXext, wayland, libGL_driver }:
-let version = "1.1.77.0"; in
+let version = "1.1.82.0"; in
assert version == vulkan-headers.version;
stdenv.mkDerivation rec {
name = "vulkan-loader-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
owner = "KhronosGroup";
repo = "Vulkan-Loader";
rev = "sdk-${version}";
- sha256 = "1nzzkqh0i3j1d3h7kgmaxzi748l338m2p31lxkwxm4y81xp56a94";
+ sha256 = "16i4s1adfh822ahj3ywp279lv6szwd2sn2q5pmvpg2kk6mbh410d";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/libraries/vxl/default.nix b/pkgs/development/libraries/vxl/default.nix
index b9f3c0e64d6ca38b2634e114bc7f7c6a2441ae43..777b8bb1f4039044b891ed82d499a059cb65ad42 100644
--- a/pkgs/development/libraries/vxl/default.nix
+++ b/pkgs/development/libraries/vxl/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
# in stdenv linux headers
# BUILD_BRL fails to find open()
cmakeFlags = "-DBUILD_TESTING=OFF -DBUILD_OUL=OFF -DBUILD_BRL=OFF -DBUILD_CONTRIB=OFF "
- + (if stdenv.system == "x86_64-linux" then
+ + (if stdenv.hostPlatform.system == "x86_64-linux" then
"-DCMAKE_CXX_FLAGS=-fPIC -DCMAKE_C_FLAGS=-fPIC"
else
"");
diff --git a/pkgs/development/libraries/wayland/default.nix b/pkgs/development/libraries/wayland/default.nix
index fce0dae6c7313ed98a77f2af589e5bb1f67e71d2..866b1232aef52805e81442c832675fb02f0fe2c9 100644
--- a/pkgs/development/libraries/wayland/default.nix
+++ b/pkgs/development/libraries/wayland/default.nix
@@ -8,11 +8,11 @@ assert expat != null;
stdenv.mkDerivation rec {
name = "wayland-${version}";
- version = "1.15.0";
+ version = "1.16.0";
src = fetchurl {
url = "https://wayland.freedesktop.org/releases/${name}.tar.xz";
- sha256 = "1c5fnys8hi71cnzjv5k7j0r8gx80p0yyqlrpmn06mmarhnxvwgzb";
+ sha256 = "1xajhxad43izq9f7sbww1hlg42nayijy8xnp21kgpk09c6sw4wjf";
};
configureFlags = [ "--with-scanner" "--disable-documentation" ];
diff --git a/pkgs/development/libraries/wt/default.nix b/pkgs/development/libraries/wt/default.nix
index 99f73add795a19aefb8c9de011daf51cef6cf295..aec64c9c33c6e9a1a1398e9c892048fe9bb63599 100644
--- a/pkgs/development/libraries/wt/default.nix
+++ b/pkgs/development/libraries/wt/default.nix
@@ -43,12 +43,12 @@ let
};
in {
wt3 = generic {
- version = "3.3.10";
- sha256 = "1y25mhghgbgjgycpny0x4z95xn98q0wraab1c5gkwnay097bgwdy";
+ version = "3.3.11";
+ sha256 = "1s1bwg3s7brnspr9ya1vg5mr29dbvhf05s606fiv409b7ladqvxq";
};
wt4 = generic {
- version = "4.0.3";
- sha256 = "01xch5dkpcanwhr515236wa9mdmnq2a2j13dn7smyhwzqgbpknsg";
+ version = "4.0.4";
+ sha256 = "17kq9fxc0xqx7q7kyryiph3mg0d3hnd3jw0rl55zvzfsdd71220w";
};
}
diff --git a/pkgs/development/libraries/wtk/default.nix b/pkgs/development/libraries/wtk/default.nix
index 0ed4f24ef86ba0b62fe06ea3cb1bf5d721c9fd34..2791c97f5ae6a3fb803fbfee82760e10a4d1a6b9 100644
--- a/pkgs/development/libraries/wtk/default.nix
+++ b/pkgs/development/libraries/wtk/default.nix
@@ -1,6 +1,6 @@
{ stdenv, requireFile, unzip, xorg }:
-assert stdenv.system == "i686-linux";
+assert stdenv.hostPlatform.system == "i686-linux";
stdenv.mkDerivation rec {
name = "sun-java-wtk-2.5.2_01";
diff --git a/pkgs/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix
index fa6b8fb13b5a3cb14e2e3a60073d45234d2ee0a5..d3fb0970cd00e220e831734072839f8e25231ad9 100644
--- a/pkgs/development/libraries/zlib/default.nix
+++ b/pkgs/development/libraries/zlib/default.nix
@@ -1,6 +1,5 @@
{ stdenv
, fetchurl
-, buildPlatform, hostPlatform
, static ? false
}:
@@ -16,9 +15,9 @@ stdenv.mkDerivation rec {
sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1";
};
- patches = stdenv.lib.optional hostPlatform.isCygwin ./disable-cygwin-widechar.patch;
+ patches = stdenv.lib.optional stdenv.hostPlatform.isCygwin ./disable-cygwin-widechar.patch;
- postPatch = stdenv.lib.optionalString hostPlatform.isDarwin ''
+ postPatch = stdenv.lib.optionalString stdenv.hostPlatform.isDarwin ''
substituteInPlace configure \
--replace '/usr/bin/libtool' 'ar' \
--replace 'AR="libtool"' 'AR="ar"' \
@@ -37,25 +36,25 @@ stdenv.mkDerivation rec {
# jww (2015-01-06): Sometimes this library install as a .so, even on
# Darwin; others time it installs as a .dylib. I haven't yet figured out
# what causes this difference.
- + stdenv.lib.optionalString hostPlatform.isDarwin ''
+ + stdenv.lib.optionalString stdenv.hostPlatform.isDarwin ''
for file in $out/lib/*.so* $out/lib/*.dylib* ; do
install_name_tool -id "$file" $file
done
''
# Non-typical naming confuses libtool which then refuses to use zlib's DLL
# in some cases, e.g. when compiling libpng.
- + stdenv.lib.optionalString (hostPlatform.libc == "msvcrt") ''
+ + stdenv.lib.optionalString (stdenv.hostPlatform.libc == "msvcrt") ''
ln -s zlib1.dll $out/bin/libz.dll
'';
# As zlib takes part in the stdenv building, we don't want references
# to the bootstrap-tools libgcc (as uses to happen on arm/mips)
- NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (!hostPlatform.isDarwin) "-static-libgcc";
+ NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (!stdenv.hostPlatform.isDarwin) "-static-libgcc";
- dontStrip = hostPlatform != buildPlatform && static;
+ dontStrip = stdenv.hostPlatform != stdenv.buildPlatform && static;
configurePlatforms = [];
- installFlags = stdenv.lib.optionals (hostPlatform.libc == "msvcrt") [
+ installFlags = stdenv.lib.optionals (stdenv.hostPlatform.libc == "msvcrt") [
"BINARY_PATH=$(out)/bin"
"INCLUDE_PATH=$(dev)/include"
"LIBRARY_PATH=$(out)/lib"
@@ -63,7 +62,7 @@ stdenv.mkDerivation rec {
makeFlags = [
"PREFIX=${stdenv.cc.targetPrefix}"
- ] ++ stdenv.lib.optionals (hostPlatform.libc == "msvcrt") [
+ ] ++ stdenv.lib.optionals (stdenv.hostPlatform.libc == "msvcrt") [
"-f" "win32/Makefile.gcc"
] ++ stdenv.lib.optionals (!static) [
"SHARED_MODE=1"
diff --git a/pkgs/development/misc/amdapp-sdk/default.nix b/pkgs/development/misc/amdapp-sdk/default.nix
index 7da0fc148d42a89e7fe3e88be074be8487c423c2..79651db23ea4d991693f255c5d62358134d71ec3 100644
--- a/pkgs/development/misc/amdapp-sdk/default.nix
+++ b/pkgs/development/misc/amdapp-sdk/default.nix
@@ -5,10 +5,10 @@
let
- bits = if stdenv.system == "x86_64-linux" then "64"
+ bits = if stdenv.hostPlatform.system == "x86_64-linux" then "64"
else "32";
- arch = if stdenv.system == "x86_64-linux" then "x86_64"
+ arch = if stdenv.hostPlatform.system == "x86_64-linux" then "x86_64"
else "x86";
src_info = {
diff --git a/pkgs/development/mobile/androidenv/androidndk-pkgs.nix b/pkgs/development/mobile/androidenv/androidndk-pkgs.nix
index 0f43705c0d424189ea5261b595bfb8f86cabed3c..9bc252ce6f67e325ef6571f3ef2ba9e374a03d8a 100644
--- a/pkgs/development/mobile/androidenv/androidndk-pkgs.nix
+++ b/pkgs/development/mobile/androidenv/androidndk-pkgs.nix
@@ -1,4 +1,4 @@
-{ lib, hostPlatform, targetPlatform
+{ lib, stdenv
, makeWrapper
, runCommand, wrapBintoolsWith, wrapCCWith
, buildAndroidndk, androidndk, targetAndroidndkPkgs
@@ -33,8 +33,8 @@ let
}.${config} or
(throw "Android NDK doesn't support ${config}, as far as we know");
- hostInfo = ndkInfoFun hostPlatform;
- targetInfo = ndkInfoFun targetPlatform;
+ hostInfo = ndkInfoFun stdenv.hostPlatform;
+ targetInfo = ndkInfoFun stdenv.targetPlatform;
in
@@ -51,7 +51,7 @@ rec {
mkdir -p $out/bin
for prog in ${ndkBinDir}/${targetInfo.triple}-*; do
prog_suffix=$(basename $prog | sed 's/${targetInfo.triple}-//')
- ln -s $prog $out/bin/${targetPlatform.config}-$prog_suffix
+ ln -s $prog $out/bin/${stdenv.targetPlatform.config}-$prog_suffix
done
'';
@@ -68,11 +68,11 @@ rec {
bintools = binutils;
libc = targetAndroidndkPkgs.libraries;
extraBuildCommands = ''
- echo "-D__ANDROID_API__=${targetPlatform.sdkVer}" >> $out/nix-support/cc-cflags
+ echo "-D__ANDROID_API__=${stdenv.targetPlatform.sdkVer}" >> $out/nix-support/cc-cflags
''
- + lib.optionalString targetPlatform.isAarch32 (let
- p = targetPlatform.platform.gcc or {}
- // targetPlatform.parsed.abi;
+ + lib.optionalString stdenv.targetPlatform.isAarch32 (let
+ p = stdenv.targetPlatform.platform.gcc or {}
+ // stdenv.targetPlatform.parsed.abi;
flags = lib.concatLists [
(lib.optional (p ? arch) "-march=${p.arch}")
(lib.optional (p ? cpu) "-mcpu=${p.cpu}")
@@ -84,10 +84,10 @@ rec {
];
in ''
sed -E -i \
- $out/bin/${targetPlatform.config}-cc \
- $out/bin/${targetPlatform.config}-c++ \
- $out/bin/${targetPlatform.config}-gcc \
- $out/bin/${targetPlatform.config}-g++ \
+ $out/bin/${stdenv.targetPlatform.config}-cc \
+ $out/bin/${stdenv.targetPlatform.config}-c++ \
+ $out/bin/${stdenv.targetPlatform.config}-gcc \
+ $out/bin/${stdenv.targetPlatform.config}-g++ \
-e '130i extraBefore+=(-Wl,--fix-cortex-a8)' \
-e 's|^(extraBefore=)\(\)$|\1(${builtins.toString flags})|'
'')
@@ -107,10 +107,10 @@ rec {
libraries =
let
includePath = if buildAndroidndk.version == "10e" then
- "${buildAndroidndk}/libexec/${buildAndroidndk.name}/platforms/android-${hostPlatform.sdkVer}/arch-${hostInfo.arch}/usr/include/"
+ "${buildAndroidndk}/libexec/${buildAndroidndk.name}/platforms/android-${stdenv.hostPlatform.sdkVer}/arch-${hostInfo.arch}/usr/include/"
else
"${buildAndroidndk}/libexec/${buildAndroidndk.name}/sysroot/usr/include";
- libPath = "${buildAndroidndk}/libexec/${buildAndroidndk.name}/platforms/android-${hostPlatform.sdkVer}/arch-${hostInfo.arch}/usr/lib/";
+ libPath = "${buildAndroidndk}/libexec/${buildAndroidndk.name}/platforms/android-${stdenv.hostPlatform.sdkVer}/arch-${hostInfo.arch}/usr/lib/";
in
runCommand "bionic-prebuilt" {} ''
mkdir -p $out
diff --git a/pkgs/development/mobile/androidenv/androidndk.nix b/pkgs/development/mobile/androidenv/androidndk.nix
index 972c8a5dfbceba41f825125ae42d643b20ea668b..3ccdb237f894091bda07a4a1cd54bff83ffe25b7 100644
--- a/pkgs/development/mobile/androidenv/androidndk.nix
+++ b/pkgs/development/mobile/androidenv/androidndk.nix
@@ -10,10 +10,10 @@ stdenv.mkDerivation rec {
name = "android-ndk-r${version}";
inherit version;
- src = if stdenv.system == "x86_64-linux" then fetchurl {
+ src = if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl {
url = "https://dl.google.com/android/repository/${name}-linux-x86_64.zip";
inherit sha256;
- } else throw "platform ${stdenv.system} not supported!";
+ } else throw "platform ${stdenv.hostPlatform.system} not supported!";
phases = "buildPhase";
diff --git a/pkgs/development/mobile/androidenv/androidndk_r8e.nix b/pkgs/development/mobile/androidenv/androidndk_r8e.nix
index 3c12e16277d9195be887290d2f13f0f0ea024c44..68d2150f972ea4d501fe39d351716eea9ef7618a 100644
--- a/pkgs/development/mobile/androidenv/androidndk_r8e.nix
+++ b/pkgs/development/mobile/androidenv/androidndk_r8e.nix
@@ -9,16 +9,16 @@
stdenv.mkDerivation rec {
name = "android-ndk-r8e";
- src = if stdenv.system == "i686-linux"
+ src = if stdenv.hostPlatform.system == "i686-linux"
then fetchurl {
url = "http://dl.google.com/android/ndk/${name}-linux-x86.tar.bz2";
sha256 = "c2c4e0c8b3037149a0f5dbb08d72f814a52af4da9fff9d80328c675457e95a98";
}
- else if stdenv.system == "x86_64-linux" then fetchurl {
+ else if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl {
url = "http://dl.google.com/android/ndk/${name}-linux-x86_64.tar.bz2";
sha256 = "093gf55zbh38p2gk5bdykj1vg9p5l774wjdzw5mhk4144jm1wdq7";
}
- else throw "platform ${stdenv.system} not supported!";
+ else throw "platform ${stdenv.hostPlatform.system} not supported!";
phases = "buildPhase";
diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix
index 503e4f5c889b4c0bddf9619e16e727e885f328aa..5f61f25d54eeaf8f129bfa12275fadd22bf9c029 100644
--- a/pkgs/development/mobile/androidenv/androidsdk.nix
+++ b/pkgs/development/mobile/androidenv/androidsdk.nix
@@ -22,16 +22,16 @@ stdenv.mkDerivation rec {
name = "android-sdk-${version}";
version = "25.2.5";
- src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
+ src = if (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux")
then fetchurl {
url = "https://dl.google.com/android/repository/tools_r${version}-linux.zip";
sha256 = "0gnk49pkwy4m0nqwm1xnf3w4mfpi9w0kk7841xlawpwbkj0icxap";
}
- else if stdenv.system == "x86_64-darwin" then fetchurl {
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then fetchurl {
url = "http://dl.google.com/android/repository/tools_r${version}-macosx.zip";
sha256 = "0yg7wjmyw70xsh8k4hgbqb5rilam2a94yc8dwbh7fjwqcmpxgwqb";
}
- else throw "platform not ${stdenv.system} supported!";
+ else throw "platform not ${stdenv.hostPlatform.system} supported!";
buildCommand = ''
mkdir -p $out/libexec
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
sed -i -e "s|/bin/ls|${coreutils}/bin/ls|" "$f"
done
- ${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
+ ${stdenv.lib.optionalString (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux")
''
# There are a number of native binaries. We must patch them to let them find the interpreter and libstdc++
@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
patchelf --set-rpath ${stdenv_32bit.cc.cc.lib}/lib $i
done
- ${stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
+ ${stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux") ''
for i in bin64/{mkfs.ext4,fsck.ext4,e2fsck,tune2fs,resize2fs}
do
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 $i
@@ -62,7 +62,7 @@ stdenv.mkDerivation rec {
done
''}
- ${stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
+ ${stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux") ''
# We must also patch the 64-bit emulator instances, if needed
for i in emulator emulator64-arm emulator64-mips emulator64-x86 emulator64-crash-service emulator-check qemu/linux-x86_64/qemu-system-*
@@ -89,7 +89,7 @@ stdenv.mkDerivation rec {
# The emulators need additional libraries, which are dynamically loaded => let's wrap them
- ${stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
+ ${stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux") ''
for i in emulator emulator64-arm emulator64-mips emulator64-x86 emulator64-crash-service
do
wrapProgram `pwd`/$i \
@@ -102,7 +102,7 @@ stdenv.mkDerivation rec {
patchShebangs .
- ${if stdenv.system == "i686-linux" then
+ ${if stdenv.hostPlatform.system == "i686-linux" then
''
# The monitor requires some more patching
@@ -115,7 +115,7 @@ stdenv.mkDerivation rec {
cd ../..
''
- else if stdenv.system == "x86_64-linux" then
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
''
# The monitor requires some more patching
diff --git a/pkgs/development/mobile/androidenv/build-tools.nix b/pkgs/development/mobile/androidenv/build-tools.nix
index 457a9b6720aff70539cd369047c6b5d95e44d25b..85e604bd3f4405871513c30494cb315da46d6167 100644
--- a/pkgs/development/mobile/androidenv/build-tools.nix
+++ b/pkgs/development/mobile/androidenv/build-tools.nix
@@ -3,16 +3,16 @@
stdenv.mkDerivation rec {
version = "26.0.2";
name = "android-build-tools-r${version}";
- src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
+ src = if (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux")
then fetchurl {
url = "https://dl.google.com/android/repository/build-tools_r${version}-linux.zip";
sha256 = "1kii880bwhjkc343zwx1ysxyisxhczrwhphnxbwsgi45mjgq8lm7";
}
- else if stdenv.system == "x86_64-darwin" then fetchurl {
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then fetchurl {
url = "https://dl.google.com/android/repository/build-tools_r${version}-macosx.zip";
sha256 = "1x0ycprl6hgsm23kck5ind7x00hzydc5k3h3ch4a13407xbpvzvx";
}
- else throw "System ${stdenv.system} not supported!";
+ else throw "System ${stdenv.hostPlatform.system} not supported!";
buildCommand = ''
mkdir -p $out/build-tools
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
unzip $src
mv android-* ${version}
- ${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
+ ${stdenv.lib.optionalString (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux")
''
cd ${version}
diff --git a/pkgs/development/mobile/androidenv/default.nix b/pkgs/development/mobile/androidenv/default.nix
index 7d7c92cd0f570eee4dc407086782bdb5a80e1542..8e108f24088e7d1453b48d82d03d91a90a974a32 100644
--- a/pkgs/development/mobile/androidenv/default.nix
+++ b/pkgs/development/mobile/androidenv/default.nix
@@ -25,15 +25,15 @@ rec {
inherit (pkgs) stdenv fetchurl unzip;
};
- platforms = if (pkgs.stdenv.system == "i686-linux" || pkgs.stdenv.system == "x86_64-linux")
+ platforms = if (pkgs.stdenv.hostPlatform.system == "i686-linux" || pkgs.stdenv.hostPlatform.system == "x86_64-linux")
then import ./platforms-linux.nix {
inherit (pkgs) stdenv fetchurl unzip;
}
- else if pkgs.stdenv.system == "x86_64-darwin"
+ else if pkgs.stdenv.hostPlatform.system == "x86_64-darwin"
then import ./platforms-macosx.nix {
inherit (pkgs) stdenv fetchurl unzip;
}
- else throw "Platform: ${pkgs.stdenv.system} not supported!";
+ else throw "Platform: ${pkgs.stdenv.hostPlatform.system} not supported!";
sysimages = import ./sysimages.nix {
inherit (pkgs) stdenv fetchurl unzip;
@@ -281,7 +281,7 @@ rec {
inherit (buildPackages)
makeWrapper;
inherit (pkgs)
- lib hostPlatform targetPlatform
+ lib stdenv
runCommand wrapBintoolsWith wrapCCWith;
# buildPackages.foo rather than buildPackages.buildPackages.foo would work,
# but for splicing messing up on infinite recursion for the variants we
@@ -297,7 +297,7 @@ rec {
inherit (buildPackages)
makeWrapper;
inherit (pkgs)
- lib hostPlatform targetPlatform
+ lib stdenv
runCommand wrapBintoolsWith wrapCCWith;
# buildPackages.foo rather than buildPackages.buildPackages.foo would work,
# but for splicing messing up on infinite recursion for the variants we
diff --git a/pkgs/development/mobile/androidenv/platform-tools.nix b/pkgs/development/mobile/androidenv/platform-tools.nix
index f5e5799428469ebdcc06e974cbefe9374306bf9d..22b5cd81f8704e078257e7276a9e1da1f6b73f92 100644
--- a/pkgs/development/mobile/androidenv/platform-tools.nix
+++ b/pkgs/development/mobile/androidenv/platform-tools.nix
@@ -8,16 +8,16 @@ in
stdenv.mkDerivation rec {
version = "26.0.2";
name = "android-platform-tools-r${version}";
- src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
+ src = if (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux")
then fetchurl {
url = "https://dl.google.com/android/repository/platform-tools_r${version}-linux.zip";
sha256 = "0695npvxljbbh8xwfm65k34fcpyfkzvfkssgnp46wkmnq8w5mcb3";
}
- else if stdenv.system == "x86_64-darwin" then fetchurl {
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then fetchurl {
url = "https://dl.google.com/android/repository/platform-tools_r${version}-darwin.zip";
sha256 = "0gy7apw9pmnnm41z6ywglw5va4ghmny4j57778may4q7ar751l56";
}
- else throw "System ${stdenv.system} not supported!";
+ else throw "System ${stdenv.hostPlatform.system} not supported!";
buildCommand = ''
mkdir -p $out
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
unzip $src
cd platform-tools
- ${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
+ ${stdenv.lib.optionalString (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux")
''
for i in adb dmtracedump fastboot hprof-conv sqlite3
do
diff --git a/pkgs/development/mobile/cocoapods/Gemfile.lock b/pkgs/development/mobile/cocoapods/Gemfile.lock
index 7ca6e40406a44882f6fcff340d23961ff5524e9e..31820eff7e5387c33c90705fbe5c2053f7ff040d 100644
--- a/pkgs/development/mobile/cocoapods/Gemfile.lock
+++ b/pkgs/development/mobile/cocoapods/Gemfile.lock
@@ -7,12 +7,12 @@ GEM
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
- atomos (0.1.2)
+ atomos (0.1.3)
claide (1.0.2)
- cocoapods (1.5.0)
+ cocoapods (1.5.3)
activesupport (>= 4.0.2, < 5)
claide (>= 1.0.2, < 2.0)
- cocoapods-core (= 1.5.0)
+ cocoapods-core (= 1.5.3)
cocoapods-deintegrate (>= 1.0.2, < 2.0)
cocoapods-downloader (>= 1.2.0, < 2.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -28,17 +28,17 @@ GEM
nap (~> 1.0)
ruby-macho (~> 1.1)
xcodeproj (>= 1.5.7, < 2.0)
- cocoapods-core (1.5.0)
+ cocoapods-core (1.5.3)
activesupport (>= 4.0.2, < 6)
fuzzy_match (~> 2.0.4)
nap (~> 1.0)
cocoapods-deintegrate (1.0.2)
- cocoapods-downloader (1.2.0)
+ cocoapods-downloader (1.2.1)
cocoapods-plugins (1.0.0)
nap
cocoapods-search (1.0.0)
cocoapods-stats (1.0.0)
- cocoapods-trunk (1.3.0)
+ cocoapods-trunk (1.3.1)
nap (>= 0.8, < 2.0)
netrc (~> 0.11)
cocoapods-try (1.1.0)
@@ -51,20 +51,20 @@ GEM
i18n (0.9.5)
concurrent-ruby (~> 1.0)
minitest (5.11.3)
- molinillo (0.6.5)
- nanaimo (0.2.5)
+ molinillo (0.6.6)
+ nanaimo (0.2.6)
nap (1.1.0)
netrc (0.11.0)
- ruby-macho (1.1.0)
+ ruby-macho (1.2.0)
thread_safe (0.3.6)
tzinfo (1.2.5)
thread_safe (~> 0.1)
- xcodeproj (1.5.7)
+ xcodeproj (1.6.0)
CFPropertyList (>= 2.3.3, < 4.0)
- atomos (~> 0.1.2)
+ atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
colored2 (~> 3.1)
- nanaimo (~> 0.2.4)
+ nanaimo (~> 0.2.6)
PLATFORMS
ruby
@@ -73,4 +73,4 @@ DEPENDENCIES
cocoapods
BUNDLED WITH
- 1.14.6
+ 1.16.3
diff --git a/pkgs/development/mobile/cocoapods/gemset.nix b/pkgs/development/mobile/cocoapods/gemset.nix
index cd4156d141c5e3bd417c6b80162a7c058f741d2d..5fcbe59603b9c4bc187ee038d98e156cf32be5d0 100644
--- a/pkgs/development/mobile/cocoapods/gemset.nix
+++ b/pkgs/development/mobile/cocoapods/gemset.nix
@@ -11,10 +11,10 @@
atomos = {
source = {
remotes = ["https://rubygems.org"];
- sha256 = "10z69hjv30r2w5q5wmlf0cq4jv3w744jrac8ylln8sf45ckqj7wk";
+ sha256 = "17vq6sjyswr5jfzwdccw748kgph6bdw30bakwnn6p8sl4hpv4hvx";
type = "gem";
};
- version = "0.1.2";
+ version = "0.1.3";
};
CFPropertyList = {
source = {
@@ -36,19 +36,19 @@
dependencies = ["activesupport" "claide" "cocoapods-core" "cocoapods-deintegrate" "cocoapods-downloader" "cocoapods-plugins" "cocoapods-search" "cocoapods-stats" "cocoapods-trunk" "cocoapods-try" "colored2" "escape" "fourflusher" "gh_inspector" "molinillo" "nap" "ruby-macho" "xcodeproj"];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0pg2rkw6rlqq0y2vpajw4946hmvcnrg6lhr1i5p7j7kj8y5az167";
+ sha256 = "0x5cz19p0j9k1hvn35lxnv3dn8i65n4qvi5nzjaf53pdgh52401h";
type = "gem";
};
- version = "1.5.0";
+ version = "1.5.3";
};
cocoapods-core = {
dependencies = ["activesupport" "fuzzy_match" "nap"];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0mqxgd22rj49pfasvinsn7z1bzm899m8cfw38yr38nspri10acad";
+ sha256 = "0xnxcd2xnvf60f8w27glq5jcn9wdhzch9nkdb24ihhmpxfgj3f39";
type = "gem";
};
- version = "1.5.0";
+ version = "1.5.3";
};
cocoapods-deintegrate = {
source = {
@@ -61,10 +61,10 @@
cocoapods-downloader = {
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1azzwyxvcqk5g394ica80x7pj7bh9zysk2q7x1jh8zbwrp6c0x8c";
+ sha256 = "0g1v3k52g2mjlml8miq06c61764lqdy0gc0h2f4ymajz0pqg1zik";
type = "gem";
};
- version = "1.2.0";
+ version = "1.2.1";
};
cocoapods-plugins = {
dependencies = ["nap"];
@@ -95,10 +95,10 @@
dependencies = ["nap" "netrc"];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0shxr64j7f50yglp5l90vr1ba5p9pkk0a3b8apkbci2lmq5kq60b";
+ sha256 = "1plssgabdv6hcaq1c3gf43kf1d2prx883q8lzdr6chi5byzzs3yl";
type = "gem";
};
- version = "1.3.0";
+ version = "1.3.1";
};
cocoapods-try = {
source = {
@@ -176,18 +176,18 @@
molinillo = {
source = {
remotes = ["https://rubygems.org"];
- sha256 = "19zlshd1ra15x0a4jzss6ilz2xsnq293p43kxsljiy7xxq7bipx7";
+ sha256 = "1hh40z1adl4lw16dj4hxgabx4rr28mgqycih1y1d91bwww0jjdg6";
type = "gem";
};
- version = "0.6.5";
+ version = "0.6.6";
};
nanaimo = {
source = {
remotes = ["https://rubygems.org"];
- sha256 = "03x5f7hk0s21hlkj309w0qipjxz34kyd3c5yj25zq3s2yyn57idi";
+ sha256 = "0ajfyaqjw3dzykk612yw8sm21savfqy292hgps8h8l4lvxww1lz6";
type = "gem";
};
- version = "0.2.5";
+ version = "0.2.6";
};
nap = {
source = {
@@ -208,10 +208,10 @@
ruby-macho = {
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1i9vkz3ki3yvps4z1hca2q2axniq95x4yypnc22p9pcfjdfrbrq6";
+ sha256 = "0xi0ll217h3caiamplqaypmipmrkriqrvmq207ngyzhgmh1jfc8q";
type = "gem";
};
- version = "1.1.0";
+ version = "1.2.0";
};
thread_safe = {
source = {
@@ -234,9 +234,9 @@
dependencies = ["CFPropertyList" "atomos" "claide" "colored2" "nanaimo"];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "16743g16mrh47f1lxkbw28xn9mmlf1r0zicin4malalsxxkc7ykz";
+ sha256 = "1f4shbzff3wsk1jq0v9bs10496qdx69k2jfpf11p4q2ik3jdnsv7";
type = "gem";
};
- version = "1.5.7";
+ version = "1.6.0";
};
}
\ No newline at end of file
diff --git a/pkgs/development/mobile/titaniumenv/build-app.nix b/pkgs/development/mobile/titaniumenv/build-app.nix
index 83bd941e5ffa5c026bee3b270eaa60aa8e3195eb..0250e5bf2e282ba2a63fb9f67688396965c97b28 100644
--- a/pkgs/development/mobile/titaniumenv/build-app.nix
+++ b/pkgs/development/mobile/titaniumenv/build-app.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation {
name = stdenv.lib.replaceChars [" "] [""] name;
inherit src;
- buildInputs = [ nodejs titanium alloy jdk python which file ] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") xcodewrapper;
+ buildInputs = [ nodejs titanium alloy jdk python which file ] ++ stdenv.lib.optional (stdenv.hostPlatform.system == "x86_64-darwin") xcodewrapper;
buildPhase = ''
${preBuild}
diff --git a/pkgs/development/mobile/titaniumenv/default.nix b/pkgs/development/mobile/titaniumenv/default.nix
index b09a483290f76c89d23944a43fd9d2127ff57c05..f411a8d61fd0d92711854e023f8ce9314ecb99ef 100644
--- a/pkgs/development/mobile/titaniumenv/default.nix
+++ b/pkgs/development/mobile/titaniumenv/default.nix
@@ -3,7 +3,7 @@
rec {
androidenv = pkgs.androidenv;
- xcodeenv = if pkgs.stdenv.system == "x86_64-darwin" then pkgs.xcodeenv.override {
+ xcodeenv = if pkgs.stdenv.hostPlatform.system == "x86_64-darwin" then pkgs.xcodeenv.override {
version = xcodeVersion;
inherit xcodeBaseDir;
} else null;
diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-6.3.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-6.3.nix
index 26adf373826e14300ed480ba52bb453afefae2ec..b8c2688708bb391bb9e64c7cea0db5912688f717 100644
--- a/pkgs/development/mobile/titaniumenv/titaniumsdk-6.3.nix
+++ b/pkgs/development/mobile/titaniumenv/titaniumsdk-6.3.nix
@@ -2,15 +2,15 @@
stdenv.mkDerivation {
name = "mobilesdk-6.3.1.GA";
- src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
+ src = if (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux") then fetchurl {
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 {
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then fetchurl {
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!";
+ else throw "Platform: ${stdenv.hostPlatform.system} not supported!";
buildInputs = [ unzip makeWrapper ];
@@ -23,18 +23,18 @@ stdenv.mkDerivation {
cd mobilesdk/*
mv * 6.3.1.GA
cd *
- ${stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") ''
+ ${stdenv.lib.optionalString (stdenv.hostPlatform.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
+ ${if stdenv.hostPlatform.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
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
''
patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 android/titanium_prep.linux64
''
diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-7.1.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-7.1.nix
index a6de1f0ae8c6815f2359671d4144bfbbfa8da49e..4d3bd420969cd82e21c5dc2315f0438484a9ac75 100644
--- a/pkgs/development/mobile/titaniumenv/titaniumsdk-7.1.nix
+++ b/pkgs/development/mobile/titaniumenv/titaniumsdk-7.1.nix
@@ -54,15 +54,15 @@ let
in
stdenv.mkDerivation {
name = "mobilesdk-7.1.0.GA";
- src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
+ src = if (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux") then fetchurl {
url = http://builds.appcelerator.com/mobile/7_1_X/mobilesdk-7.1.0.v20180314133955-linux.zip;
sha256 = "18b3jnr65sdn5wj191bcl48gvhyklxmighxakv4vrz1fb59kyvqn";
}
- else if stdenv.system == "x86_64-darwin" then fetchurl {
+ else if stdenv.hostPlatform.system == "x86_64-darwin" then fetchurl {
url = http://builds.appcelerator.com/mobile/7_1_X/mobilesdk-7.1.0.v20180314133955-osx.zip;
sha256 = "1f62616biwsw1fqxz2sq7lpa6bsfjazffliplyf5dpnh298cnc1m";
}
- else throw "Platform: ${stdenv.system} not supported!";
+ else throw "Platform: ${stdenv.hostPlatform.system} not supported!";
buildInputs = [ unzip makeWrapper ];
@@ -89,11 +89,11 @@ stdenv.mkDerivation {
# Patch some executables
- ${if stdenv.system == "i686-linux" then
+ ${if stdenv.hostPlatform.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
+ else if stdenv.hostPlatform.system == "x86_64-linux" then
''
patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 android/titanium_prep.linux64
''
diff --git a/pkgs/development/node-packages/default-v10.nix b/pkgs/development/node-packages/default-v10.nix
index d7df19066bb330d8aebce4b0ebeec8b9e64b5416..a438c961513fd5cbf474123ccad75b0d2a76800c 100644
--- a/pkgs/development/node-packages/default-v10.nix
+++ b/pkgs/development/node-packages/default-v10.nix
@@ -1,8 +1,9 @@
-{pkgs, system, nodejs, stdenv}:
+{ pkgs, nodejs, stdenv }:
let
nodePackages = import ./composition-v10.nix {
- inherit pkgs system nodejs;
+ inherit pkgs nodejs;
+ inherit (stdenv.hostPlatform) system;
};
in
nodePackages // {
diff --git a/pkgs/development/node-packages/default-v6.nix b/pkgs/development/node-packages/default-v6.nix
index 6b508b6f0cce051a0c510e7def0d0695d30ad0a2..878672d32e20155e237dcc828b1cf01dc42f9913 100644
--- a/pkgs/development/node-packages/default-v6.nix
+++ b/pkgs/development/node-packages/default-v6.nix
@@ -1,83 +1,23 @@
-{pkgs, system, nodejs, stdenv}:
+{ pkgs, nodejs, stdenv }:
let
nodePackages = import ./composition-v6.nix {
- inherit pkgs system nodejs;
+ inherit pkgs nodejs;
+ inherit (stdenv.hostPlatform) system;
};
in
nodePackages // {
- dat = nodePackages.dat.override {
- buildInputs = [ nodePackages.node-gyp-build ];
- };
-
- dnschain = nodePackages.dnschain.override {
- buildInputs = [ pkgs.makeWrapper nodePackages.coffee-script ];
- postInstall = ''
- wrapProgram $out/bin/dnschain --suffix PATH : ${pkgs.openssl.bin}/bin
- '';
- };
-
- node-inspector = nodePackages.node-inspector.override {
- buildInputs = [ nodePackages.node-pre-gyp ];
- };
-
- phantomjs = nodePackages.phantomjs.override {
- buildInputs = [ pkgs.phantomjs2 ];
- };
-
- webdrvr = nodePackages.webdrvr.override {
- buildInputs = [ pkgs.phantomjs ];
-
- preRebuild = ''
- mkdir $TMPDIR/webdrvr
-
- ln -s ${pkgs.fetchurl {
- url = "https://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.1.jar";
- sha1 = "ef1b5f8ae9c99332f99ba8794988a1d5b974d27b";
- }} $TMPDIR/webdrvr/selenium-server-standalone-2.43.1.jar
- ln -s ${pkgs.fetchurl {
- url = "http://chromedriver.storage.googleapis.com/2.10/chromedriver_linux64.zip";
- sha1 = "26220f7e43ee3c0d714860db61c4d0ecc9bb3d89";
- }} $TMPDIR/webdrvr/chromedriver_linux64.zip
- '';
-
- dontNpmInstall = true; # We face an error with underscore not found, but the package will work fine if we ignore this.
- };
-
- npm2nix = nodePackages."npm2nix-git://github.com/NixOS/npm2nix.git#5.12.0".override {
- postInstall = "npm run-script prepublish";
- };
-
- bower2nix = nodePackages.bower2nix.override {
- buildInputs = [ pkgs.makeWrapper ];
- postInstall = ''
- for prog in bower2nix fetch-bower; do
- wrapProgram "$out/bin/$prog" --prefix PATH : ${stdenv.lib.makeBinPath [ pkgs.git pkgs.nix ]}
+ pnpm = nodePackages.pnpm.override {
+ nativeBuildInputs = [ pkgs.makeWrapper ];
+ postInstall = let
+ pnpmLibPath = stdenv.lib.makeBinPath [
+ nodejs.passthru.python
+ nodejs
+ ];
+ in ''
+ for prog in $out/bin/*; do
+ wrapProgram "$prog" --prefix PATH : ${pnpmLibPath}
done
'';
};
-
- ios-deploy = nodePackages.ios-deploy.override {
- preRebuild = ''
- LD=$CC
- tmp=$(mktemp -d)
- ln -s /usr/bin/xcodebuild $tmp
- export PATH="$PATH:$tmp"
- '';
- };
-
- fast-cli = nodePackages."fast-cli-1.x".override {
- preRebuild = ''
- # Simply ignore the phantomjs --version check. It seems to need a display but it is safe to ignore
- sed -i -e "s|console.error('Error verifying phantomjs, continuing', err)|console.error('Error verifying phantomjs, continuing', err); return true;|" node_modules/phantomjs-prebuilt/lib/util.js
- '';
- buildInputs = [ pkgs.phantomjs2 ];
- };
-
- node2nix = nodePackages.node2nix.override {
- buildInputs = [ pkgs.makeWrapper ];
- postInstall = ''
- wrapProgram "$out/bin/node2nix" --prefix PATH : ${stdenv.lib.makeBinPath [ pkgs.nix ]}
- '';
- };
}
diff --git a/pkgs/development/node-packages/default-v8.nix b/pkgs/development/node-packages/default-v8.nix
index 561f43271ffc810b66cc9a2349d1a1aea33ada18..3b7182e27b3723c04a9406583dc16a9af9c9d673 100644
--- a/pkgs/development/node-packages/default-v8.nix
+++ b/pkgs/development/node-packages/default-v8.nix
@@ -1,69 +1,66 @@
-{pkgs, system, nodejs, stdenv}:
+{ pkgs, nodejs, stdenv }:
let
nodePackages = import ./composition-v8.nix {
- inherit pkgs system nodejs;
+ inherit pkgs nodejs;
+ inherit (stdenv.hostPlatform) system;
};
in
nodePackages // {
+ bower2nix = nodePackages.bower2nix.override {
+ buildInputs = [ pkgs.makeWrapper ];
+ postInstall = ''
+ for prog in bower2nix fetch-bower; do
+ wrapProgram "$out/bin/$prog" --prefix PATH : ${stdenv.lib.makeBinPath [ pkgs.git pkgs.nix ]}
+ done
+ '';
+ };
+
dat = nodePackages.dat.override {
buildInputs = [ nodePackages.node-gyp-build ];
};
- dnschain = nodePackages.dnschain.override {
+ dnschain = nodePackages.dnschain.override {
buildInputs = [ pkgs.makeWrapper nodePackages.coffee-script ];
postInstall = ''
wrapProgram $out/bin/dnschain --suffix PATH : ${pkgs.openssl.bin}/bin
'';
};
- node-inspector = nodePackages.node-inspector.override {
- buildInputs = [ nodePackages.node-pre-gyp ];
- };
-
- phantomjs = nodePackages.phantomjs.override {
- buildInputs = [ pkgs.phantomjs2 ];
+ ios-deploy = nodePackages.ios-deploy.override {
+ preRebuild = ''
+ LD=$CC
+ tmp=$(mktemp -d)
+ ln -s /usr/bin/xcodebuild $tmp
+ export PATH="$PATH:$tmp"
+ '';
};
- webdrvr = nodePackages.webdrvr.override {
- buildInputs = [ pkgs.phantomjs ];
-
+ fast-cli = nodePackages."fast-cli-1.x".override {
preRebuild = ''
- mkdir $TMPDIR/webdrvr
-
- ln -s ${pkgs.fetchurl {
- url = "https://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.1.jar";
- sha1 = "ef1b5f8ae9c99332f99ba8794988a1d5b974d27b";
- }} $TMPDIR/webdrvr/selenium-server-standalone-2.43.1.jar
- ln -s ${pkgs.fetchurl {
- url = "http://chromedriver.storage.googleapis.com/2.10/chromedriver_linux64.zip";
- sha1 = "26220f7e43ee3c0d714860db61c4d0ecc9bb3d89";
- }} $TMPDIR/webdrvr/chromedriver_linux64.zip
+ # Simply ignore the phantomjs --version check. It seems to need a display but it is safe to ignore
+ sed -i -e "s|console.error('Error verifying phantomjs, continuing', err)|console.error('Error verifying phantomjs, continuing', err); return true;|" node_modules/phantomjs-prebuilt/lib/util.js
'';
-
- dontNpmInstall = true; # We face an error with underscore not found, but the package will work fine if we ignore this.
+ buildInputs = [ pkgs.phantomjs2 ];
};
- npm2nix = nodePackages."npm2nix-git://github.com/NixOS/npm2nix.git#5.12.0".override {
- postInstall = "npm run-script prepublish";
+ node-inspector = nodePackages.node-inspector.override {
+ buildInputs = [ nodePackages.node-pre-gyp ];
};
- bower2nix = nodePackages.bower2nix.override {
+ node2nix = nodePackages.node2nix.override {
buildInputs = [ pkgs.makeWrapper ];
postInstall = ''
- for prog in bower2nix fetch-bower; do
- wrapProgram "$out/bin/$prog" --prefix PATH : ${stdenv.lib.makeBinPath [ pkgs.git pkgs.nix ]}
- done
+ wrapProgram "$out/bin/node2nix" --prefix PATH : ${stdenv.lib.makeBinPath [ pkgs.nix ]}
'';
};
- ios-deploy = nodePackages.ios-deploy.override {
- preRebuild = ''
- LD=$CC
- tmp=$(mktemp -d)
- ln -s /usr/bin/xcodebuild $tmp
- export PATH="$PATH:$tmp"
- '';
+ npm2nix = nodePackages."npm2nix-git://github.com/NixOS/npm2nix.git#5.12.0".override {
+ postInstall = "npm run-script prepublish";
+ };
+
+ phantomjs = nodePackages.phantomjs.override {
+ buildInputs = [ pkgs.phantomjs2 ];
};
pnpm = nodePackages.pnpm.override {
@@ -80,11 +77,23 @@ nodePackages // {
'';
};
- fast-cli = nodePackages."fast-cli-1.x".override {
+ webdrvr = nodePackages.webdrvr.override {
+ buildInputs = [ pkgs.phantomjs ];
+
preRebuild = ''
- # Simply ignore the phantomjs --version check. It seems to need a display but it is safe to ignore
- sed -i -e "s|console.error('Error verifying phantomjs, continuing', err)|console.error('Error verifying phantomjs, continuing', err); return true;|" node_modules/phantomjs-prebuilt/lib/util.js
+ mkdir $TMPDIR/webdrvr
+
+ ln -s ${pkgs.fetchurl {
+ url = "https://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.1.jar";
+ sha1 = "ef1b5f8ae9c99332f99ba8794988a1d5b974d27b";
+ }} $TMPDIR/webdrvr/selenium-server-standalone-2.43.1.jar
+ ln -s ${pkgs.fetchurl {
+ url = "http://chromedriver.storage.googleapis.com/2.10/chromedriver_linux64.zip";
+ sha1 = "26220f7e43ee3c0d714860db61c4d0ecc9bb3d89";
+ }} $TMPDIR/webdrvr/chromedriver_linux64.zip
'';
- buildInputs = [ pkgs.phantomjs2 ];
+
+ dontNpmInstall = true; # We face an error with underscore not found, but the package will work fine if we ignore this.
};
+
}
diff --git a/pkgs/development/node-packages/node-packages-v10.nix b/pkgs/development/node-packages/node-packages-v10.nix
index 7dcb6abef791fe49cbc73ea05a74caa639ad035f..b3b1977cdb4a00bbc057e6c35be0395643cc284a 100644
--- a/pkgs/development/node-packages/node-packages-v10.nix
+++ b/pkgs/development/node-packages/node-packages-v10.nix
@@ -661,13 +661,13 @@ let
sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
};
};
- "glob-7.1.2" = {
+ "glob-7.1.3" = {
name = "glob";
packageName = "glob";
- version = "7.1.2";
+ version = "7.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
- sha512 = "MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==";
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz";
+ sha512 = "vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==";
};
};
"global-modules-1.0.0" = {
@@ -787,13 +787,13 @@ let
sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
};
};
- "iconv-lite-0.4.23" = {
+ "iconv-lite-0.4.24" = {
name = "iconv-lite";
packageName = "iconv-lite";
- version = "0.4.23";
+ version = "0.4.24";
src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz";
- sha512 = "neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==";
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz";
+ sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==";
};
};
"ignore-walk-3.0.1" = {
@@ -1183,22 +1183,22 @@ let
sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
};
};
- "mime-db-1.35.0" = {
+ "mime-db-1.36.0" = {
name = "mime-db";
packageName = "mime-db";
- version = "1.35.0";
+ version = "1.36.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz";
- sha512 = "JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==";
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.36.0.tgz";
+ sha512 = "L+xvyD9MkoYMXb1jAmzI/lWYAxAMCPvIBSWur0PZ5nOf5euahRLVqH//FKW9mWp2lkqUgYiXPgkzfMUFi4zVDw==";
};
};
- "mime-types-2.1.19" = {
+ "mime-types-2.1.20" = {
name = "mime-types";
packageName = "mime-types";
- version = "2.1.19";
+ version = "2.1.20";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz";
- sha512 = "P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw==";
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.20.tgz";
+ sha512 = "HrkrPaP9vGuWbLK1B1FfgAkbqNjIuy4eHlIYnFi7kamZyLLrGlo2mpcx0bBmNpKqBtYtAfGbodDddIgddSJC2A==";
};
};
"minimatch-3.0.4" = {
@@ -2416,7 +2416,7 @@ in
sources."fstream-1.0.11"
sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."glob-7.1.2"
+ sources."glob-7.1.3"
sources."graceful-fs-4.1.11"
sources."har-schema-2.0.0"
sources."har-validator-5.1.0"
@@ -2434,8 +2434,8 @@ in
sources."json-schema-traverse-0.3.1"
sources."json-stringify-safe-5.0.1"
sources."jsprim-1.4.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
@@ -2530,9 +2530,9 @@ in
sources."fs-minipass-1.2.5"
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
- sources."glob-7.1.2"
+ sources."glob-7.1.3"
sources."has-unicode-2.0.1"
- sources."iconv-lite-0.4.23"
+ sources."iconv-lite-0.4.24"
sources."ignore-walk-3.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -2593,10 +2593,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "2.13.5";
+ version = "2.13.6";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-2.13.5.tgz";
- sha512 = "JImNFSl+9EpBYJ4B3mvlAqkh1r8qweq1RsEsQ0BAUgL3+ZsMFtWYjRRlElg0u5FXwU+11p8s1bePIRTCQTKZ4g==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-2.13.6.tgz";
+ sha512 = "X8zmtUzmEIa/QMg0t0eeq6hSd7kmL5Zvneqpj3Tcbyn2g/FEFTPb9kaghR+DW1WdViOE51eo4ECLK7uY9oogkA==";
};
buildInputs = globalBuildInputs;
meta = {
diff --git a/pkgs/development/node-packages/node-packages-v6.json b/pkgs/development/node-packages/node-packages-v6.json
index d5add28b543e4e720412db764bd1cf1ec48338bf..088ff9aa6f254e6cea7f903e7efb85dfd442f74c 100644
--- a/pkgs/development/node-packages/node-packages-v6.json
+++ b/pkgs/development/node-packages/node-packages-v6.json
@@ -1,124 +1,9 @@
[
- "alloy"
-, "asar"
-, "azure-cli"
-, "bower"
-, "bower2nix"
-, "browserify"
-, "castnow"
-, "clean-css"
+ "bower"
, "coffee-script"
-, "coinmon"
-, "configurable-http-proxy"
-, "cordova"
-, "create-react-app"
-, "create-react-native-app"
-, "csslint"
-, "dat"
-, "dhcp"
-, "dnschain"
-, "docker-registry-server"
-, "elasticdump"
-, "elm-oracle"
-, "elm-test"
-, "emoj"
-, "eslint"
-, "eslint_d"
-, "emojione"
-, { "fast-cli": "1.x" }
-, "fetch-bower"
-, "forever"
-, "git-run"
-, "git-standup"
-, "graphql-cli"
, "grunt-cli"
-, { "guifi-earth": "https://github.com/jmendeth/guifi-earth/tarball/f3ee96835fd4fb0e3e12fadbd2cb782770d64854 " }
-, "gulp"
-, "hipache"
-, "htmlhint"
-, "html-minifier"
-, "ionic"
-, "ios-deploy"
-, "istanbul"
-, "imapnotify"
-, "jake"
-, "javascript-typescript-langserver"
-, "jayschema"
-, "jsdoc"
-, "jshint"
-, "json"
-, "js-beautify"
-, "jsonlint"
-, "jsontool"
-, "json-diff"
-, "json-refs"
-, "json-server"
-, "js-yaml"
-, "karma"
-, { "kibana-authentication-proxy": "git://github.com/fangli/kibana-authentication-proxy.git" }
-, "lcov-result-merger"
-, "leetcode-cli"
-, "lerna"
-, "less"
-, "less-plugin-clean-css"
-, "live-server"
-, "livedown"
-, "madoko"
-, "meat"
-, "meguca"
-, "mocha"
-, "multi-file-swagger"
-, "nijs"
-, "node2nix"
, "node-gyp"
, "node-gyp-build"
-, "node-inspector"
, "node-pre-gyp"
-, "nodemon"
-, "node-red"
-, { "node-uptime": "https://github.com/fzaninotto/uptime/tarball/1c65756575f90f563a752e2a22892ba2981c79b7" }
-, "npm"
-, { "npm2nix": "git://github.com/NixOS/npm2nix.git#5.12.0" }
-, "npm-check-updates"
-, "nsp"
-, "ocaml-language-server"
-, { "parsoid": "git://github.com/abbradar/parsoid#stable" }
-, "peerflix"
-, "peerflix-server"
-, "phantomjs"
-, "prettier"
-, "pulp"
-, "quassel-webserver"
-, "react-tools"
-, "react-native-cli"
-, "s3http"
-, "semver"
-, "serve"
-, "shout"
-, "sinopia"
-, "sloc"
-, "smartdc"
-, "socket.io"
-, "stackdriver-statsd-backend"
-, "statsd"
-, "statsd-influxdb-backend"
-, "statsd-librato-backend"
-, "stylus"
-, "svgo"
-, "tern"
-, "tiddlywiki"
-, "titanium"
-, "triton"
-, "typescript"
-, "typings"
-, "uglify-js"
-, "ungit"
-, "vue-cli"
-, "webdrvr"
-, "webpack"
-, "webtorrent-cli"
-, "web-ext"
-, "wring"
-, "yarn"
-, "yo"
+, "pnpm"
]
diff --git a/pkgs/development/node-packages/node-packages-v6.nix b/pkgs/development/node-packages/node-packages-v6.nix
index 1ae6e635c612299fae7f6bdb6674eb400c0efe42..c7701f553ed78ee1cf7c6db96ca199fab80ef3c6 100644
--- a/pkgs/development/node-packages/node-packages-v6.nix
+++ b/pkgs/development/node-packages/node-packages-v6.nix
@@ -4,49956 +4,2133 @@
let
sources = {
- "@babel/generator-7.0.0-beta.38" = {
- name = "_at_babel_slash_generator";
- packageName = "@babel/generator";
- version = "7.0.0-beta.38";
+ "abbrev-1.1.1" = {
+ name = "abbrev";
+ packageName = "abbrev";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.38.tgz";
- sha512 = "aOHQPhsEyaB6p2n+AK981+onHoc+Ork9rcAQVSUJR33wUkGiWRpu6/C685knRyIZVsKeSdG5Q4xMiYeFUhuLzA==";
+ url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
+ sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
};
};
- "@babel/types-7.0.0-beta.38" = {
- name = "_at_babel_slash_types";
- packageName = "@babel/types";
- version = "7.0.0-beta.38";
+ "ajv-5.5.2" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "5.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.38.tgz";
- sha512 = "SAtyEjmA7KiEoL2eAOAUM6M9arQJGWxJKK0S9x0WyPOosHS420RXoxPhn57u/8orRnK8Kxm0nHQQNTX203cP1Q==";
+ url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
+ sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
};
};
- "@cliqz-oss/firefox-client-0.3.1" = {
- name = "_at_cliqz-oss_slash_firefox-client";
- packageName = "@cliqz-oss/firefox-client";
- version = "0.3.1";
+ "ansi-regex-2.1.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cliqz-oss/firefox-client/-/firefox-client-0.3.1.tgz";
- sha512 = "RO+Tops/wGnBzWoZYkCraqyh2JqOejqJq5/a4b54HhmjTNSKdUPwAOK17EGg/zPb0nWqkuB7QyZsI9bo+ev8Kw==";
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
+ sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
};
};
- "@cliqz-oss/node-firefox-connect-1.2.1" = {
- name = "_at_cliqz-oss_slash_node-firefox-connect";
- packageName = "@cliqz-oss/node-firefox-connect";
- version = "1.2.1";
+ "aproba-1.2.0" = {
+ name = "aproba";
+ packageName = "aproba";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cliqz-oss/node-firefox-connect/-/node-firefox-connect-1.2.1.tgz";
- sha512 = "O/IyiB5pfztCdmxQZg0/xeq5w+YiP3gtJz8d4We2EpLPKzbDVjOrtfLKYgVfm6Ya6mbvDge1uLkSRwaoVCWKnA==";
+ url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
+ sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
};
};
- "@gulp-sourcemaps/identity-map-1.0.2" = {
- name = "_at_gulp-sourcemaps_slash_identity-map";
- packageName = "@gulp-sourcemaps/identity-map";
- version = "1.0.2";
+ "are-we-there-yet-1.1.5" = {
+ name = "are-we-there-yet";
+ packageName = "are-we-there-yet";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-1.0.2.tgz";
- sha512 = "ciiioYMLdo16ShmfHBXJBOFm3xPC4AuwO4xeRpFeHz7WK9PYsWCmigagG2XyzZpubK4a3qNKoUBDhbzHfa50LQ==";
+ url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz";
+ sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==";
};
};
- "@gulp-sourcemaps/map-sources-1.0.0" = {
- name = "_at_gulp-sourcemaps_slash_map-sources";
- packageName = "@gulp-sourcemaps/map-sources";
- version = "1.0.0";
+ "arr-diff-4.0.0" = {
+ name = "arr-diff";
+ packageName = "arr-diff";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz";
- sha1 = "890ae7c5d8c877f6d384860215ace9d7ec945bda";
+ url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
+ sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
};
};
- "@ionic/cli-framework-1.0.5" = {
- name = "_at_ionic_slash_cli-framework";
- packageName = "@ionic/cli-framework";
- version = "1.0.5";
+ "arr-flatten-1.1.0" = {
+ name = "arr-flatten";
+ packageName = "arr-flatten";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-1.0.5.tgz";
- sha512 = "xyxPkNS2JQUIBrK7OMG9NkLgEZsKPXMIEWR/7+6n7VxerVYCWmFvEqrmMzxenVBTueZYlRJBQ39XLyyggMEPEg==";
+ url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
+ sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==";
};
};
- "@ionic/cli-utils-2.0.6" = {
- name = "_at_ionic_slash_cli-utils";
- packageName = "@ionic/cli-utils";
- version = "2.0.6";
+ "arr-union-3.1.0" = {
+ name = "arr-union";
+ packageName = "arr-union";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-2.0.6.tgz";
- sha512 = "1tIqQwHqessMDTr7DlZGuWkAcZPPRK5hbhxcBEFyz2FHrMxDHnh8/omU6MBToDNQZn1KaZDpppfCP2q95WYAaw==";
+ url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
+ sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
};
};
- "@ionic/discover-1.0.3" = {
- name = "_at_ionic_slash_discover";
- packageName = "@ionic/discover";
- version = "1.0.3";
+ "array-each-1.0.1" = {
+ name = "array-each";
+ packageName = "array-each";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/discover/-/discover-1.0.3.tgz";
- sha512 = "TssgJD1A1Ll4bigVM84ugmIxADFHMvlXP41FZDPqZsgjYDt09B4h0jc3tsuDovgswany+vOeQCrDNzkfanIXZA==";
+ url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
+ sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
};
};
- "@kbrandwijk/swagger-to-graphql-2.4.3" = {
- name = "_at_kbrandwijk_slash_swagger-to-graphql";
- packageName = "@kbrandwijk/swagger-to-graphql";
- version = "2.4.3";
+ "array-slice-1.1.0" = {
+ name = "array-slice";
+ packageName = "array-slice";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@kbrandwijk/swagger-to-graphql/-/swagger-to-graphql-2.4.3.tgz";
- sha512 = "CNVsCrMge/jq6DCT5buNZ8PACY9RTvPJbCNoIcndfkJOCsNxOx9dnc5qw4pHZdHi8GS6l3qlgkuFKp33iD8J2Q==";
+ url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
+ sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==";
};
};
- "@lerna/add-3.0.0" = {
- name = "_at_lerna_slash_add";
- packageName = "@lerna/add";
- version = "3.0.0";
+ "array-unique-0.3.2" = {
+ name = "array-unique";
+ packageName = "array-unique";
+ version = "0.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/add/-/add-3.0.0.tgz";
- sha512 = "wgdHheCPQ4qLqiBrYeT2JtZcVASoodhmiwHNqvs6HBkzUb/c+2qJc9Kul2GkJt8OHiqXFNPRzYJ9CIws/wzaXg==";
+ url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
+ sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
};
};
- "@lerna/batch-packages-3.0.0" = {
- name = "_at_lerna_slash_batch-packages";
- packageName = "@lerna/batch-packages";
- version = "3.0.0";
+ "asn1-0.2.4" = {
+ name = "asn1";
+ packageName = "asn1";
+ version = "0.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/batch-packages/-/batch-packages-3.0.0.tgz";
- sha512 = "0tN9oNykfIhdFaxEEHxF1S8K7wJdRjzGmbMhrirNogk7I2sLP82aoKH4rLCAdwidX5OvDhzlyQM0MC86T7Lazg==";
+ url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
+ sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
};
};
- "@lerna/bootstrap-3.0.0" = {
- name = "_at_lerna_slash_bootstrap";
- packageName = "@lerna/bootstrap";
- version = "3.0.0";
+ "assert-plus-1.0.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.0.0.tgz";
- sha512 = "urMkEp+oF+huqML3u7Q6lZ3w0vkv7x8QKMAKFuB14gNLaviMWy+YxfEz0DrIVjcleAryxmgRtdlUbN0+VhjS3g==";
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
+ sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
};
};
- "@lerna/changed-3.0.0" = {
- name = "_at_lerna_slash_changed";
- packageName = "@lerna/changed";
- version = "3.0.0";
+ "assign-symbols-1.0.0" = {
+ name = "assign-symbols";
+ packageName = "assign-symbols";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.0.0.tgz";
- sha512 = "l1wrzHPgLXAh9OxU/RLr87ns5H1Gw14u4WXPDthqPb41ZNT4Pf15Pj08pbM+KK7y8Ffapr/rdh28QVFsMRC/fw==";
+ url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
+ sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
};
};
- "@lerna/child-process-3.0.0" = {
- name = "_at_lerna_slash_child-process";
- packageName = "@lerna/child-process";
- version = "3.0.0";
+ "asynckit-0.4.0" = {
+ name = "asynckit";
+ packageName = "asynckit";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-3.0.0.tgz";
- sha512 = "8vHRDkpGhzSaMsXgyXVgY80mUSC5WSkDmhWWA3bnB/n5FBK1gK8EKQUpHTk14SckwvUgEJzBd35gR5/XKGOgmQ==";
+ url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
+ sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
};
};
- "@lerna/clean-3.0.0" = {
- name = "_at_lerna_slash_clean";
- packageName = "@lerna/clean";
- version = "3.0.0";
+ "atob-2.1.2" = {
+ name = "atob";
+ packageName = "atob";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/clean/-/clean-3.0.0.tgz";
- sha512 = "53klFwyNKdwu0a6R/n/tHCcuNAfOgunTqPQfudZr28yALTjqkfgomyaE8DCQ3h5vjp/4axBLKj0S4Jv6GKTT+A==";
+ url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz";
+ sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==";
};
};
- "@lerna/cli-3.0.1" = {
- name = "_at_lerna_slash_cli";
- packageName = "@lerna/cli";
- version = "3.0.1";
+ "aws-sign2-0.7.0" = {
+ name = "aws-sign2";
+ packageName = "aws-sign2";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/cli/-/cli-3.0.1.tgz";
- sha512 = "/SIaTqLkUM/x1ryQdlJuAr57AqNyudRCA9UX5n3kSg+vAJdRx81f9p7RVsSmr/kqhHFsVLbBkg7YK+9PgXDDiA==";
+ url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz";
+ sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
};
};
- "@lerna/collect-updates-3.0.0" = {
- name = "_at_lerna_slash_collect-updates";
- packageName = "@lerna/collect-updates";
- version = "3.0.0";
+ "aws4-1.8.0" = {
+ name = "aws4";
+ packageName = "aws4";
+ version = "1.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-3.0.0.tgz";
- sha512 = "JYrcH8V36Uqhd5f032WAhxxQwyaUZ2KSEhTnBNPUUxQpw1fTH07BWh2e9pcS+ylI6C0yVQrTC2Z8WyB52tSvtw==";
+ url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz";
+ sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==";
};
};
- "@lerna/command-3.0.0" = {
- name = "_at_lerna_slash_command";
- packageName = "@lerna/command";
- version = "3.0.0";
+ "balanced-match-1.0.0" = {
+ name = "balanced-match";
+ packageName = "balanced-match";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/command/-/command-3.0.0.tgz";
- sha512 = "qPTM9jFSoxncqlxumlgS1/+hqJ5YYxw4+5UN/4Mbq6yqHObt1VfCtU1EDmDND9gSzdPxV1nLhIeEESoPs0p9LQ==";
+ url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
+ sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
};
};
- "@lerna/conventional-commits-3.0.0" = {
- name = "_at_lerna_slash_conventional-commits";
- packageName = "@lerna/conventional-commits";
- version = "3.0.0";
+ "base-0.11.2" = {
+ name = "base";
+ packageName = "base";
+ version = "0.11.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-3.0.0.tgz";
- sha512 = "4RkrZqkJjsUVG9pR5xK5buUM9vROG+XdJ0jAVnuuT8L3u1xE+nwe41cydtm6etqkfOZ26BOaI0bWl5uCvozpHg==";
+ url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
+ sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
};
};
- "@lerna/create-3.0.0" = {
- name = "_at_lerna_slash_create";
- packageName = "@lerna/create";
- version = "3.0.0";
+ "bcrypt-pbkdf-1.0.2" = {
+ name = "bcrypt-pbkdf";
+ packageName = "bcrypt-pbkdf";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/create/-/create-3.0.0.tgz";
- sha512 = "SyfEhdkR9LJYQaMlXfqGnJwK0kMYjqMDy+SgWGZ2QQ5dxDNEw3+fS7ofIduULS35tC447PmNgViWTgN4PmkY0w==";
+ url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
+ sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
};
};
- "@lerna/create-symlink-3.0.0" = {
- name = "_at_lerna_slash_create-symlink";
- packageName = "@lerna/create-symlink";
- version = "3.0.0";
+ "block-stream-0.0.9" = {
+ name = "block-stream";
+ packageName = "block-stream";
+ version = "0.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-3.0.0.tgz";
- sha512 = "Q9qAzGGqQtVzHWrCz+Md4SH0tW99DrgFJ68cnFqilOO6H3Y/y/H0gwHICqM9YxRwLs6GJdkzoqJATFShM7PKJA==";
+ url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz";
+ sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
};
};
- "@lerna/diff-3.0.0" = {
- name = "_at_lerna_slash_diff";
- packageName = "@lerna/diff";
- version = "3.0.0";
+ "brace-expansion-1.1.11" = {
+ name = "brace-expansion";
+ packageName = "brace-expansion";
+ version = "1.1.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/diff/-/diff-3.0.0.tgz";
- sha512 = "UaPVahvqu93Sw92jcG4vt6RCaRNH38uQrZMAbSe2UQg+p3MFAnJpHRSPVYy2UDG5QgWHAQkg2FEJcBGjgJAWLg==";
+ url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
+ sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
};
};
- "@lerna/exec-3.0.0" = {
- name = "_at_lerna_slash_exec";
- packageName = "@lerna/exec";
- version = "3.0.0";
+ "braces-2.3.2" = {
+ name = "braces";
+ packageName = "braces";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/exec/-/exec-3.0.0.tgz";
- sha512 = "AtlvpnKdcoUq+XPQZHkEBUiGznCpq8SYtvo7Y0o4O8CZxYw/FKCTS8rXNUB/DPFen3OqX8ySmEAg0g5MMbr2Jg==";
+ url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz";
+ sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==";
};
};
- "@lerna/filter-options-3.0.0" = {
- name = "_at_lerna_slash_filter-options";
- packageName = "@lerna/filter-options";
- version = "3.0.0";
+ "cache-base-1.0.1" = {
+ name = "cache-base";
+ packageName = "cache-base";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-3.0.0.tgz";
- sha512 = "l2oMEbpeOZQZ+TCbPKasnq7zMXdgwgazyVTHU1k319pQN6kSW57gEhUGjjQaeKhOM3XFF4pPWyqwFxw80SJDMw==";
+ url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
+ sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==";
};
};
- "@lerna/filter-packages-3.0.0" = {
- name = "_at_lerna_slash_filter-packages";
- packageName = "@lerna/filter-packages";
- version = "3.0.0";
+ "caseless-0.12.0" = {
+ name = "caseless";
+ packageName = "caseless";
+ version = "0.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-3.0.0.tgz";
- sha512 = "zwbY1J4uRjWRZ/FgYbtVkq7I3Nduwsg2V2HwLKSzwV2vPglfGqgovYOVkND6/xqe2BHwDX4IyA2+e7OJmLaLSA==";
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
+ sha1 = "1b681c21ff84033c826543090689420d187151dc";
};
};
- "@lerna/get-npm-exec-opts-3.0.0" = {
- name = "_at_lerna_slash_get-npm-exec-opts";
- packageName = "@lerna/get-npm-exec-opts";
- version = "3.0.0";
+ "chownr-1.0.1" = {
+ name = "chownr";
+ packageName = "chownr";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-3.0.0.tgz";
- sha512 = "arcYUm+4xS8J3Palhl+5rRJXnZnFHsLFKHBxznkPIxjwGQeAEw7df38uHdVjEQ+HNeFmHnBgSqfbxl1VIw5DHg==";
+ url = "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz";
+ sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181";
};
};
- "@lerna/global-options-3.0.0" = {
- name = "_at_lerna_slash_global-options";
- packageName = "@lerna/global-options";
- version = "3.0.0";
+ "class-utils-0.3.6" = {
+ name = "class-utils";
+ packageName = "class-utils";
+ version = "0.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-3.0.0.tgz";
- sha512 = "F0xxrPuTT0qpoRg1uG16GVFZmP8Avm31u2r2/p9twn4wTZ8pqRS3IAoV0a6kU4fzq1fiHJjWbuL+3ZiC5YB9SA==";
+ url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
+ sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
};
};
- "@lerna/import-3.0.0" = {
- name = "_at_lerna_slash_import";
- packageName = "@lerna/import";
- version = "3.0.0";
+ "co-4.6.0" = {
+ name = "co";
+ packageName = "co";
+ version = "4.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/import/-/import-3.0.0.tgz";
- sha512 = "46nwGkL44K2uEagW8v9bMqA+zoKz3xXYVkN++SZxHBPD8ZsLSrQ9RMUyfQb6Z3me/wNv1FN6nJs3MbTNx+z6JA==";
+ url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
+ sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
};
};
- "@lerna/init-3.0.0" = {
- name = "_at_lerna_slash_init";
- packageName = "@lerna/init";
- version = "3.0.0";
+ "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/@lerna/init/-/init-3.0.0.tgz";
- sha512 = "9iq8aentjd157VjQrK4ihYLXWTT4/yC3iX0tw3S7kh/qbud3qTYCeJkIXcKUl0OK4UcGPD9f4R6oUo9Zoud/yw==";
+ url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
+ sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
};
};
- "@lerna/link-3.0.0" = {
- name = "_at_lerna_slash_link";
- packageName = "@lerna/link";
- version = "3.0.0";
+ "collection-visit-1.0.0" = {
+ name = "collection-visit";
+ packageName = "collection-visit";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/link/-/link-3.0.0.tgz";
- sha512 = "uwOnMFbtipvZecLNylrYwoXu1M5NcBN51AaLO6JuzP1xXFIbLOevP1iELM4e9pW4GnX3WBsuf37C7eweAy0erQ==";
+ url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
+ sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
};
};
- "@lerna/list-3.0.0" = {
- name = "_at_lerna_slash_list";
- packageName = "@lerna/list";
- version = "3.0.0";
+ "combined-stream-1.0.6" = {
+ name = "combined-stream";
+ packageName = "combined-stream";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/list/-/list-3.0.0.tgz";
- sha512 = "48AfpzOqbUbunvFVkmmWSQp7dSJgSLl1RqliV06nNay39bpW6AFVApo2/2/O5p2on+MG+yasB7xYBillc+rW4g==";
+ url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz";
+ sha1 = "723e7df6e801ac5613113a7e445a9b69cb632818";
};
};
- "@lerna/listable-3.0.0" = {
- name = "_at_lerna_slash_listable";
- packageName = "@lerna/listable";
- version = "3.0.0";
+ "component-emitter-1.2.1" = {
+ name = "component-emitter";
+ packageName = "component-emitter";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/listable/-/listable-3.0.0.tgz";
- sha512 = "HX/9hyx1HLg2kpiKXIUc1EimlkK1T58aKQ7ovO7rQdTx9ForpefoMzyLnHE1n4XrUtEszcSWJIICJ/F898M6Ag==";
+ url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
+ sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
};
};
- "@lerna/log-packed-3.0.0" = {
- name = "_at_lerna_slash_log-packed";
- packageName = "@lerna/log-packed";
- version = "3.0.0";
+ "concat-map-0.0.1" = {
+ name = "concat-map";
+ packageName = "concat-map";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-3.0.0.tgz";
- sha512 = "DdITJW54KfNFDqH+AE6hBGGqSDEimxnjyOjSaUrvfB5Gxkp1ddfYNaMQSRLxjo4PTDnVckCuqlrMo/tWwlodWA==";
+ url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
+ sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
};
};
- "@lerna/npm-conf-3.0.0" = {
- name = "_at_lerna_slash_npm-conf";
- packageName = "@lerna/npm-conf";
- version = "3.0.0";
+ "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/@lerna/npm-conf/-/npm-conf-3.0.0.tgz";
- sha512 = "xXG7qt349t+xzaHTQELmIDjbq8Q49HOMR8Nx/gTDBkMl02Fno91LXFnA4A7ErPiyUSGqNSfLw+zgij0hgpeN7w==";
+ url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
+ sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
};
};
- "@lerna/npm-dist-tag-3.0.0" = {
- name = "_at_lerna_slash_npm-dist-tag";
- packageName = "@lerna/npm-dist-tag";
- version = "3.0.0";
+ "copy-descriptor-0.1.1" = {
+ name = "copy-descriptor";
+ packageName = "copy-descriptor";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-3.0.0.tgz";
- sha512 = "ZOcfcsNJlCoVHvLOROdCTvqD3keG3TJ78Cu8sALsz8n0kEz2ga7tNy5wbQ67SGyY7+jq4YiBv5BwXjV+56Sv+A==";
+ url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
+ sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
};
};
- "@lerna/npm-install-3.0.0" = {
- name = "_at_lerna_slash_npm-install";
- packageName = "@lerna/npm-install";
- version = "3.0.0";
+ "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/@lerna/npm-install/-/npm-install-3.0.0.tgz";
- sha512 = "e0sspVUfzEKhqsRIxzWqZ/uMBHzZSzOa4HCeORErEZu+dmDoI145XYhqvCVn7EvbAb407FV2H9GVeoP0JeG8GQ==";
+ url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
+ sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
};
};
- "@lerna/npm-publish-3.0.0" = {
- name = "_at_lerna_slash_npm-publish";
- packageName = "@lerna/npm-publish";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.0.0.tgz";
- sha512 = "Ir+pkq9gTHoJ3hA2b7oYhjfEyfOkeF+nmqmqEB5/DmO4BwVAITcIBBIDNXWGLfpkrCmQ+SLiwpYqJfTPCq286A==";
+ "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";
};
};
- "@lerna/npm-run-script-3.0.0" = {
- name = "_at_lerna_slash_npm-run-script";
- packageName = "@lerna/npm-run-script";
- version = "3.0.0";
+ "debug-2.6.9" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-3.0.0.tgz";
- sha512 = "Y1H4Myer1S7an33FDK0eqyR+95PujUePC/xJZKq/H50SaQNwBw7KMlxXxy6kXVEcQhmvQsER4Bw3msgqwwGYIw==";
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
+ sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
};
};
- "@lerna/output-3.0.0" = {
- name = "_at_lerna_slash_output";
- packageName = "@lerna/output";
- version = "3.0.0";
+ "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/@lerna/output/-/output-3.0.0.tgz";
- sha512 = "EFxnSbO0zDEVKkTKpoCUAFcZjc3gn3DwPlyTDxbeqPU7neCfxP4rA4+0a6pcOfTlRS5kLBRMx79F2TRCaMM3DA==";
+ url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
+ sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
};
};
- "@lerna/package-3.0.0" = {
- name = "_at_lerna_slash_package";
- packageName = "@lerna/package";
- version = "3.0.0";
+ "deep-extend-0.6.0" = {
+ name = "deep-extend";
+ packageName = "deep-extend";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/package/-/package-3.0.0.tgz";
- sha512 = "djzEJxzn212wS8d9znBnlXkeRlPL7GqeAYBykAmsuq51YGvaQK67Umh5ejdO0uxexF/4r7yRwgrlRHpQs8Rfqg==";
+ url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz";
+ sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==";
};
};
- "@lerna/package-graph-3.0.0" = {
- name = "_at_lerna_slash_package-graph";
- packageName = "@lerna/package-graph";
- version = "3.0.0";
+ "define-property-0.2.5" = {
+ name = "define-property";
+ packageName = "define-property";
+ version = "0.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-3.0.0.tgz";
- sha512 = "kD9ezB7UT2I0BbVv3+ZYfR/t/Z+z6RJmaI/OkvEaZ3bAcAqQRV4zTDdh2Xeiead+UwsA38xf7Z6pDEMWzswLVg==";
+ url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
+ sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
};
};
- "@lerna/project-3.0.0" = {
- name = "_at_lerna_slash_project";
- packageName = "@lerna/project";
- version = "3.0.0";
+ "define-property-1.0.0" = {
+ name = "define-property";
+ packageName = "define-property";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/project/-/project-3.0.0.tgz";
- sha512 = "XhDFVfqj79jG2Speggd15RpYaE8uiR25UKcQBDmumbmqvTS7xf2cvl2pq2UTvDafaJ0YwFF3xkxQZeZnFMwdkw==";
+ url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
+ sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
};
};
- "@lerna/prompt-3.0.0" = {
- name = "_at_lerna_slash_prompt";
- packageName = "@lerna/prompt";
- version = "3.0.0";
+ "define-property-2.0.2" = {
+ name = "define-property";
+ packageName = "define-property";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-3.0.0.tgz";
- sha512 = "EzvNexDTh//GlpOz68zRo16NdOIqWqiiXMs9tIxpELQubH+kUGKvBSiBrZ2Zyrfd8pQhIf+8qARtkCG+G7wzQQ==";
+ url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz";
+ sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==";
};
};
- "@lerna/publish-3.0.1" = {
- name = "_at_lerna_slash_publish";
- packageName = "@lerna/publish";
- version = "3.0.1";
+ "delayed-stream-1.0.0" = {
+ name = "delayed-stream";
+ packageName = "delayed-stream";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.0.1.tgz";
- sha512 = "ml1odkwPJl+DxcIVI8GilXD1O7oGBQEI+IuX2bBfgJFJ+DHm/l5l7cmflaetpjkE4GjNhaVAZD6JiReLHMp9eA==";
+ url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
+ sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
};
};
- "@lerna/resolve-symlink-3.0.0" = {
- name = "_at_lerna_slash_resolve-symlink";
- packageName = "@lerna/resolve-symlink";
- version = "3.0.0";
+ "delegates-1.0.0" = {
+ name = "delegates";
+ packageName = "delegates";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-3.0.0.tgz";
- sha512 = "MqjW9e+QVXts5IK5dk1XnYx7JKb+g+tQkOnnpAxYWHjahf3rGJ7Ru8maWh8KoPE+nIHAekk4WcjpiA9nLKvkFQ==";
+ url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
+ sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
};
};
- "@lerna/rimraf-dir-3.0.0" = {
- name = "_at_lerna_slash_rimraf-dir";
- packageName = "@lerna/rimraf-dir";
- version = "3.0.0";
+ "detect-file-1.0.0" = {
+ name = "detect-file";
+ packageName = "detect-file";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-3.0.0.tgz";
- sha512 = "epvh/RGWSOYdrNgrizMcRq9VyCHkeY0LpIE4074r4ouKdYNhBT0LlpT0yMLvQgQKJkKRlqcfhJHvZeGHhXQyGg==";
+ url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
+ sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
};
};
- "@lerna/run-3.0.0" = {
- name = "_at_lerna_slash_run";
- packageName = "@lerna/run";
- version = "3.0.0";
+ "detect-libc-1.0.3" = {
+ name = "detect-libc";
+ packageName = "detect-libc";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/run/-/run-3.0.0.tgz";
- sha512 = "Sa45Iwj5ifxmgQEiqc86ke72N9DD+3AwyOIbPeIgRxMyEtKQ/+UYy+maizIGjgVnVdT90OkPN6TKvbbt+dOgYQ==";
+ url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz";
+ sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
};
};
- "@lerna/run-lifecycle-3.0.0" = {
- name = "_at_lerna_slash_run-lifecycle";
- packageName = "@lerna/run-lifecycle";
- version = "3.0.0";
+ "ecc-jsbn-0.1.2" = {
+ name = "ecc-jsbn";
+ packageName = "ecc-jsbn";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.0.0.tgz";
- sha512 = "kfq6eC5mCreTk7GusZyvF0/BfU9FDEt8JaUgzNKLrK1Sj6z2RO8uSpFsUlj+7OuV4wo0I+rdTdJOAFoW8C0GZw==";
+ url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
+ sha1 = "3a83a904e54353287874c564b7549386849a98c9";
};
};
- "@lerna/run-parallel-batches-3.0.0" = {
- name = "_at_lerna_slash_run-parallel-batches";
- packageName = "@lerna/run-parallel-batches";
- version = "3.0.0";
+ "expand-brackets-2.1.4" = {
+ name = "expand-brackets";
+ packageName = "expand-brackets";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/run-parallel-batches/-/run-parallel-batches-3.0.0.tgz";
- sha512 = "Mj1ravlXF7AkkewKd9YFq9BtVrsStNrvVLedD/b2wIVbNqcxp8lS68vehXVOzoL/VWNEDotvqCQtyDBilCodGw==";
+ url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
+ sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
};
};
- "@lerna/symlink-binary-3.0.0" = {
- name = "_at_lerna_slash_symlink-binary";
- packageName = "@lerna/symlink-binary";
- version = "3.0.0";
+ "expand-tilde-2.0.2" = {
+ name = "expand-tilde";
+ packageName = "expand-tilde";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.0.0.tgz";
- sha512 = "ElV1ij0ZiOw5j1bZqg9K+q+dV/DJVvMZxP+oj3vsP4SgnG3EdWxBIbE7TCZHbLZtF0LNJsrquGCkdqk17svx/w==";
+ url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
+ sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
};
};
- "@lerna/symlink-dependencies-3.0.0" = {
- name = "_at_lerna_slash_symlink-dependencies";
- packageName = "@lerna/symlink-dependencies";
- version = "3.0.0";
+ "extend-3.0.2" = {
+ name = "extend";
+ packageName = "extend";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.0.0.tgz";
- sha512 = "INPlVkuGbneQ2gKf/pe3FlvcSXOk+KbZShQsrcvvYhIjK/td1g6ToMGLhml7lNmQxL90YiAqo23Q8nwIh0HAIA==";
+ url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
+ sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
};
};
- "@lerna/validation-error-3.0.0" = {
- name = "_at_lerna_slash_validation-error";
- packageName = "@lerna/validation-error";
- version = "3.0.0";
+ "extend-shallow-2.0.1" = {
+ name = "extend-shallow";
+ packageName = "extend-shallow";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-3.0.0.tgz";
- sha512 = "5wjkd2PszV0kWvH+EOKZJWlHEqCTTKrWsvfHnHhcUaKBe/NagPZFWs+0xlsDPZ3DJt5FNfbAPAnEBQ05zLirFA==";
+ url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
+ sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
};
};
- "@lerna/version-3.0.0" = {
- name = "_at_lerna_slash_version";
- packageName = "@lerna/version";
- version = "3.0.0";
+ "extend-shallow-3.0.2" = {
+ name = "extend-shallow";
+ packageName = "extend-shallow";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/version/-/version-3.0.0.tgz";
- sha512 = "U/YNTn53wA5y540QgdfoD5vYulLJ7X2WoBKBVGe3G8IYEHB+QpVM02yT+E6DYAfRV5C9Sd2r4bGZl2NNjMRdNw==";
+ url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
+ sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
};
};
- "@lerna/write-log-file-3.0.0" = {
- name = "_at_lerna_slash_write-log-file";
- packageName = "@lerna/write-log-file";
- version = "3.0.0";
+ "extglob-2.0.4" = {
+ name = "extglob";
+ packageName = "extglob";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-3.0.0.tgz";
- sha512 = "SfbPp29lMeEVOb/M16lJwn4nnx5y+TwCdd7Uom9umd7KcZP0NOvpnX0PHehdonl7TyHZ1Xx2maklYuCLbQrd/A==";
+ url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz";
+ sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
};
};
- "@mrmlnc/readdir-enhanced-2.2.1" = {
- name = "_at_mrmlnc_slash_readdir-enhanced";
- packageName = "@mrmlnc/readdir-enhanced";
- version = "2.2.1";
+ "extsprintf-1.3.0" = {
+ name = "extsprintf";
+ packageName = "extsprintf";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz";
- sha512 = "bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==";
+ url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
+ sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
};
};
- "@nodelib/fs.stat-1.1.0" = {
- name = "_at_nodelib_slash_fs.stat";
- packageName = "@nodelib/fs.stat";
+ "fast-deep-equal-1.1.0" = {
+ name = "fast-deep-equal";
+ packageName = "fast-deep-equal";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.0.tgz";
- sha512 = "LAQ1d4OPfSJ/BMbI2DuizmYrrkD9JMaTdi2hQTlI53lQ4kRQPyZQRS4CYQ7O66bnBBnP/oYdRxbk++X0xuFU6A==";
+ url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz";
+ sha1 = "c053477817c86b51daa853c81e059b733d023614";
};
};
- "@sindresorhus/is-0.7.0" = {
- name = "_at_sindresorhus_slash_is";
- packageName = "@sindresorhus/is";
- version = "0.7.0";
+ "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/@sindresorhus/is/-/is-0.7.0.tgz";
- sha512 = "ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==";
+ url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
+ sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
};
};
- "@types/babel-types-7.0.4" = {
- name = "_at_types_slash_babel-types";
- packageName = "@types/babel-types";
- version = "7.0.4";
+ "fill-range-4.0.0" = {
+ name = "fill-range";
+ packageName = "fill-range";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel-types/-/babel-types-7.0.4.tgz";
- sha512 = "WiZhq3SVJHFRgRYLXvpf65XnV6ipVHhnNaNvE8yCimejrGglkg38kEj0JcizqwSHxmPSjcTlig/6JouxLGEhGw==";
+ url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
+ sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
};
};
- "@types/babylon-6.16.3" = {
- name = "_at_types_slash_babylon";
- packageName = "@types/babylon";
- version = "6.16.3";
+ "findup-sync-2.0.0" = {
+ name = "findup-sync";
+ packageName = "findup-sync";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/babylon/-/babylon-6.16.3.tgz";
- sha512 = "lyJ8sW1PbY3uwuvpOBZ9zMYKshMnQpXmeDHh8dj9j2nJm/xrW0FgB5gLSYOArj5X0IfaXnmhFoJnhS4KbqIMug==";
+ url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
+ sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
};
};
- "@types/cross-spawn-6.0.0" = {
- name = "_at_types_slash_cross-spawn";
- packageName = "@types/cross-spawn";
- version = "6.0.0";
+ "fined-1.1.0" = {
+ name = "fined";
+ packageName = "fined";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.0.tgz";
- sha512 = "evp2ZGsFw9YKprDbg8ySgC9NA15g3YgiI8ANkGmKKvvi0P2aDGYLPxQIC5qfeKNUOe3TjABVGuah6omPRpIYhg==";
+ url = "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz";
+ sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476";
};
};
- "@types/debug-0.0.30" = {
- name = "_at_types_slash_debug";
- packageName = "@types/debug";
- version = "0.0.30";
+ "flagged-respawn-1.0.0" = {
+ name = "flagged-respawn";
+ packageName = "flagged-respawn";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz";
- sha512 = "orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==";
+ url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz";
+ sha1 = "4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7";
};
};
- "@types/events-1.2.0" = {
- name = "_at_types_slash_events";
- packageName = "@types/events";
- version = "1.2.0";
+ "for-in-1.0.2" = {
+ name = "for-in";
+ packageName = "for-in";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/events/-/events-1.2.0.tgz";
- sha512 = "KEIlhXnIutzKwRbQkGWb/I4HFqBuUykAdHgDED6xqwXJfONCjF5VoE0cXEiurh3XauygxzeDzgtXUqvLkxFzzA==";
+ url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
+ sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
};
};
- "@types/glob-5.0.35" = {
- name = "_at_types_slash_glob";
- packageName = "@types/glob";
- version = "5.0.35";
+ "for-own-1.0.0" = {
+ name = "for-own";
+ packageName = "for-own";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/glob/-/glob-5.0.35.tgz";
- sha512 = "wc+VveszMLyMWFvXLkloixT4n0harUIVZjnpzztaZ0nKLuul7Z32iMt2fUFGAaZ4y1XWjFRMtCI5ewvyh4aIeg==";
+ url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
+ sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
};
};
- "@types/inquirer-0.0.42" = {
- name = "_at_types_slash_inquirer";
- packageName = "@types/inquirer";
- version = "0.0.42";
+ "forever-agent-0.6.1" = {
+ name = "forever-agent";
+ packageName = "forever-agent";
+ version = "0.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/inquirer/-/inquirer-0.0.42.tgz";
- sha512 = "flMaNWU2g9NrtZ4bIV+7SEY2W7OdWNNhmJ0rE1lWVxGrkp3TfFGMcFCxRIBmGWigI8e6n+2HqLjizTTfgcpHLg==";
+ url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
+ sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
};
};
- "@types/klaw-2.1.1" = {
- name = "_at_types_slash_klaw";
- packageName = "@types/klaw";
- version = "2.1.1";
+ "form-data-2.3.2" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/klaw/-/klaw-2.1.1.tgz";
- sha512 = "awiTDstwQfX6026T7oC01AoP7knJoM5IT1tgx9STIM4hQzNQlkW8keTxNC+/xxpMgP657ebHMTqrsQ4qtfSJKg==";
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz";
+ sha1 = "4970498be604c20c005d4f5c23aecd21d6b49099";
};
};
- "@types/lodash-4.14.116" = {
- name = "_at_types_slash_lodash";
- packageName = "@types/lodash";
- version = "4.14.116";
+ "fragment-cache-0.2.1" = {
+ name = "fragment-cache";
+ packageName = "fragment-cache";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.116.tgz";
- sha512 = "lRnAtKnxMXcYYXqOiotTmJd74uawNWuPnsnPrrO7HiFuE3npE2iQhfABatbYDyxTNqZNuXzcKGhw37R7RjBFLg==";
+ url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
+ sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
};
};
- "@types/make-dir-1.0.3" = {
- name = "_at_types_slash_make-dir";
- packageName = "@types/make-dir";
- version = "1.0.3";
+ "fs-minipass-1.2.5" = {
+ name = "fs-minipass";
+ packageName = "fs-minipass";
+ version = "1.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/make-dir/-/make-dir-1.0.3.tgz";
- sha512 = "bFRvlvUdPwxj47K2yVh7OBL8Mu8h//5k/hQJkz0iAZAlxhnIDydFezGA96zehtnRfrZDuIyPd+RC2kmBGtcs0w==";
+ url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz";
+ sha512 = "JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==";
};
};
- "@types/minimatch-3.0.3" = {
- name = "_at_types_slash_minimatch";
- packageName = "@types/minimatch";
- version = "3.0.3";
+ "fs.realpath-1.0.0" = {
+ name = "fs.realpath";
+ packageName = "fs.realpath";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz";
- sha512 = "tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==";
+ url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
+ sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
};
};
- "@types/minimist-1.2.0" = {
- name = "_at_types_slash_minimist";
- packageName = "@types/minimist";
- version = "1.2.0";
+ "fstream-1.0.11" = {
+ name = "fstream";
+ packageName = "fstream";
+ version = "1.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz";
- sha1 = "69a23a3ad29caf0097f06eda59b361ee2f0639f6";
+ url = "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz";
+ sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171";
};
};
- "@types/ncp-2.0.1" = {
- name = "_at_types_slash_ncp";
- packageName = "@types/ncp";
- version = "2.0.1";
+ "gauge-2.7.4" = {
+ name = "gauge";
+ packageName = "gauge";
+ version = "2.7.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/ncp/-/ncp-2.0.1.tgz";
- sha512 = "TeiJ7uvv/92ugSqZ0v9l0eNXzutlki0aK+R1K5bfA5SYUil46ITlxLW4iNTCf55P4L5weCmaOdtxGeGWvudwPg==";
+ url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
+ sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
};
};
- "@types/node-10.5.7" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "10.5.7";
+ "get-value-2.0.6" = {
+ name = "get-value";
+ packageName = "get-value";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-10.5.7.tgz";
- sha512 = "VkKcfuitP+Nc/TaTFH0B8qNmn+6NbI6crLkQonbedViVz7O2w8QV/GERPlkJ4bg42VGHiEWa31CoTOPs1q6z1w==";
+ url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
+ sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
};
};
- "@types/node-6.0.116" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "6.0.116";
+ "getpass-0.1.7" = {
+ name = "getpass";
+ packageName = "getpass";
+ version = "0.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-6.0.116.tgz";
- sha512 = "vToa8YEeulfyYg1gSOeHjvvIRqrokng62VMSj2hoZrwZNcYrp2h3AWo6KeBVuymIklQUaY5zgVJvVsC4KiiLkQ==";
+ url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
+ sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
};
};
- "@types/node-8.10.24" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "8.10.24";
+ "glob-7.1.3" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-8.10.24.tgz";
- sha512 = "5YaBKa6oFuWy7ptIFMATyftIcpZTZtvgrzPThEbs+kl4Uu41oUxiRunG0k32QZjD6MXMELls//ry/epNxc11aQ==";
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz";
+ sha512 = "vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==";
};
};
- "@types/rimraf-2.0.2" = {
- name = "_at_types_slash_rimraf";
- packageName = "@types/rimraf";
- version = "2.0.2";
+ "global-modules-1.0.0" = {
+ name = "global-modules";
+ packageName = "global-modules";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.2.tgz";
- sha512 = "Hm/bnWq0TCy7jmjeN5bKYij9vw5GrDFWME4IuxV08278NtU/VdGbzsBohcCUJ7+QMqmUq5hpRKB39HeQWJjztQ==";
+ url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
+ sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==";
};
};
- "@types/rx-4.1.1" = {
- name = "_at_types_slash_rx";
- packageName = "@types/rx";
- version = "4.1.1";
+ "global-prefix-1.0.2" = {
+ name = "global-prefix";
+ packageName = "global-prefix";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx/-/rx-4.1.1.tgz";
- sha1 = "598fc94a56baed975f194574e0f572fd8e627a48";
+ url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
+ sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
};
};
- "@types/rx-core-4.0.3" = {
- name = "_at_types_slash_rx-core";
- packageName = "@types/rx-core";
- version = "4.0.3";
+ "graceful-fs-4.1.11" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "4.1.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-core/-/rx-core-4.0.3.tgz";
- sha1 = "0b3354b1238cedbe2b74f6326f139dbc7a591d60";
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
+ sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
};
};
- "@types/rx-core-binding-4.0.4" = {
- name = "_at_types_slash_rx-core-binding";
- packageName = "@types/rx-core-binding";
- version = "4.0.4";
+ "grunt-known-options-1.1.1" = {
+ name = "grunt-known-options";
+ packageName = "grunt-known-options";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-core-binding/-/rx-core-binding-4.0.4.tgz";
- sha512 = "5pkfxnC4w810LqBPUwP5bg7SFR/USwhMSaAeZQQbEHeBp57pjKXRlXmqpMrLJB4y1oglR/c2502853uN0I+DAQ==";
+ url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz";
+ sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==";
};
};
- "@types/rx-lite-4.0.5" = {
- name = "_at_types_slash_rx-lite";
- packageName = "@types/rx-lite";
- version = "4.0.5";
+ "har-schema-2.0.0" = {
+ name = "har-schema";
+ packageName = "har-schema";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite/-/rx-lite-4.0.5.tgz";
- sha512 = "KZk5XTR1dm/kNgBx8iVpjno6fRYtAUQWBOmj+O8j724+nk097sz4fOoHJNpCkOJUtHUurZlJC7QvSFCZHbkC+w==";
+ url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz";
+ sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
};
};
- "@types/rx-lite-aggregates-4.0.3" = {
- name = "_at_types_slash_rx-lite-aggregates";
- packageName = "@types/rx-lite-aggregates";
- version = "4.0.3";
+ "har-validator-5.1.0" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite-aggregates/-/rx-lite-aggregates-4.0.3.tgz";
- sha512 = "MAGDAHy8cRatm94FDduhJF+iNS5//jrZ/PIfm+QYw9OCeDgbymFHChM8YVIvN2zArwsRftKgE33QfRWvQk4DPg==";
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.0.tgz";
+ sha512 = "+qnmNjI4OfH2ipQ9VQOw23bBd/ibtfbVdK2fYbY4acTDqKTW/YDp9McimZdDbG8iV9fZizUqQMD5xvriB146TA==";
};
};
- "@types/rx-lite-async-4.0.2" = {
- name = "_at_types_slash_rx-lite-async";
- packageName = "@types/rx-lite-async";
- version = "4.0.2";
+ "has-unicode-2.0.1" = {
+ name = "has-unicode";
+ packageName = "has-unicode";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite-async/-/rx-lite-async-4.0.2.tgz";
- sha512 = "vTEv5o8l6702ZwfAM5aOeVDfUwBSDOs+ARoGmWAKQ6LOInQ8J4/zjM7ov12fuTpktUKdMQjkeCp07Vd73mPkxw==";
+ url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz";
+ sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
};
};
- "@types/rx-lite-backpressure-4.0.3" = {
- name = "_at_types_slash_rx-lite-backpressure";
- packageName = "@types/rx-lite-backpressure";
- version = "4.0.3";
+ "has-value-0.3.1" = {
+ name = "has-value";
+ packageName = "has-value";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite-backpressure/-/rx-lite-backpressure-4.0.3.tgz";
- sha512 = "Y6aIeQCtNban5XSAF4B8dffhIKu6aAy/TXFlScHzSxh6ivfQBQw6UjxyEJxIOt3IT49YkS+siuayM2H/Q0cmgA==";
+ url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
+ sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
};
};
- "@types/rx-lite-coincidence-4.0.3" = {
- name = "_at_types_slash_rx-lite-coincidence";
- packageName = "@types/rx-lite-coincidence";
- version = "4.0.3";
+ "has-value-1.0.0" = {
+ name = "has-value";
+ packageName = "has-value";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite-coincidence/-/rx-lite-coincidence-4.0.3.tgz";
- sha512 = "1VNJqzE9gALUyMGypDXZZXzR0Tt7LC9DdAZQ3Ou/Q0MubNU35agVUNXKGHKpNTba+fr8GdIdkC26bRDqtCQBeQ==";
+ url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
+ sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
};
};
- "@types/rx-lite-experimental-4.0.1" = {
- name = "_at_types_slash_rx-lite-experimental";
- packageName = "@types/rx-lite-experimental";
- version = "4.0.1";
+ "has-values-0.1.4" = {
+ name = "has-values";
+ packageName = "has-values";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite-experimental/-/rx-lite-experimental-4.0.1.tgz";
- sha1 = "c532f5cbdf3f2c15da16ded8930d1b2984023cbd";
+ url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
+ sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
};
};
- "@types/rx-lite-joinpatterns-4.0.1" = {
- name = "_at_types_slash_rx-lite-joinpatterns";
- packageName = "@types/rx-lite-joinpatterns";
- version = "4.0.1";
+ "has-values-1.0.0" = {
+ name = "has-values";
+ packageName = "has-values";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite-joinpatterns/-/rx-lite-joinpatterns-4.0.1.tgz";
- sha1 = "f70fe370518a8432f29158cc92ffb56b4e4afc3e";
+ url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
+ sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
};
};
- "@types/rx-lite-testing-4.0.1" = {
- name = "_at_types_slash_rx-lite-testing";
- packageName = "@types/rx-lite-testing";
- version = "4.0.1";
+ "homedir-polyfill-1.0.1" = {
+ name = "homedir-polyfill";
+ packageName = "homedir-polyfill";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite-testing/-/rx-lite-testing-4.0.1.tgz";
- sha1 = "21b19d11f4dfd6ffef5a9d1648e9c8879bfe21e9";
+ url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz";
+ sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc";
};
};
- "@types/rx-lite-time-4.0.3" = {
- name = "_at_types_slash_rx-lite-time";
- packageName = "@types/rx-lite-time";
- version = "4.0.3";
+ "http-signature-1.2.0" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite-time/-/rx-lite-time-4.0.3.tgz";
- sha512 = "ukO5sPKDRwCGWRZRqPlaAU0SKVxmWwSjiOrLhoQDoWxZWg6vyB9XLEZViKOzIO6LnTIQBlk4UylYV0rnhJLxQw==";
+ url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz";
+ sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
};
};
- "@types/rx-lite-virtualtime-4.0.3" = {
- name = "_at_types_slash_rx-lite-virtualtime";
- packageName = "@types/rx-lite-virtualtime";
- version = "4.0.3";
+ "iconv-lite-0.4.24" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.24";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/rx-lite-virtualtime/-/rx-lite-virtualtime-4.0.3.tgz";
- sha512 = "3uC6sGmjpOKatZSVHI2xB1+dedgml669ZRvqxy+WqmGJDVusOdyxcKfyzjW0P3/GrCiN4nmRkLVMhPwHCc5QLg==";
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz";
+ sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==";
};
};
- "@types/string-width-2.0.0" = {
- name = "_at_types_slash_string-width";
- packageName = "@types/string-width";
- version = "2.0.0";
+ "ignore-walk-3.0.1" = {
+ name = "ignore-walk";
+ packageName = "ignore-walk";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/string-width/-/string-width-2.0.0.tgz";
- sha512 = "dA5z2WlP7uurAiveIWTDRgfr1U58Qdmo6doDeAyJlYFQ3vnUOW7BqJ+tl+M8FaLcflhrVvwIfzxJJvlz6anx4A==";
+ url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz";
+ sha512 = "DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==";
};
};
- "@types/strip-ansi-3.0.0" = {
- name = "_at_types_slash_strip-ansi";
- packageName = "@types/strip-ansi";
- version = "3.0.0";
+ "inflight-1.0.6" = {
+ name = "inflight";
+ packageName = "inflight";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/strip-ansi/-/strip-ansi-3.0.0.tgz";
- sha1 = "9b63d453a6b54aa849182207711a08be8eea48ae";
+ url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
+ sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
};
};
- "@types/through-0.0.29" = {
- name = "_at_types_slash_through";
- packageName = "@types/through";
- version = "0.0.29";
+ "inherits-2.0.3" = {
+ name = "inherits";
+ packageName = "inherits";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/through/-/through-0.0.29.tgz";
- sha512 = "9a7C5VHh+1BKblaYiq+7Tfc+EOmjMdZaD1MYtkQjSoxgB69tBjW98ry6SKsi4zEIWztLOMRuL87A3bdT/Fc/4w==";
+ url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
+ sha1 = "633c2c83e3da42a502f52466022480f4208261de";
};
};
- "@types/untildify-3.0.0" = {
- name = "_at_types_slash_untildify";
- packageName = "@types/untildify";
- version = "3.0.0";
+ "ini-1.3.5" = {
+ name = "ini";
+ packageName = "ini";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/untildify/-/untildify-3.0.0.tgz";
- sha512 = "FTktI3Y1h+gP9GTjTvXBP5v8xpH4RU6uS9POoBcGy4XkS2Np6LNtnP1eiNNth4S7P+qw2c/rugkwBasSHFzJEg==";
+ url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
+ sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
};
};
- "@types/wrap-ansi-3.0.0" = {
- name = "_at_types_slash_wrap-ansi";
- packageName = "@types/wrap-ansi";
- version = "3.0.0";
+ "interpret-1.1.0" = {
+ name = "interpret";
+ packageName = "interpret";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz";
- sha512 = "ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==";
+ url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
+ sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
};
};
- "@types/write-file-atomic-2.1.1" = {
- name = "_at_types_slash_write-file-atomic";
- packageName = "@types/write-file-atomic";
- version = "2.1.1";
+ "is-absolute-1.0.0" = {
+ name = "is-absolute";
+ packageName = "is-absolute";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/write-file-atomic/-/write-file-atomic-2.1.1.tgz";
- sha512 = "mROQhTxpJsOm/S0eOxDHUy5WJ0yS8fmqsq/s+u5OuAh1TxBFSqVBTkLjbyxDPcKh7DeJXk0OYrCkxXlkf8zu1g==";
+ url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
+ sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==";
};
};
- "@webassemblyjs/ast-1.5.13" = {
- name = "_at_webassemblyjs_slash_ast";
- packageName = "@webassemblyjs/ast";
- version = "1.5.13";
+ "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/@webassemblyjs/ast/-/ast-1.5.13.tgz";
- sha512 = "49nwvW/Hx9i+OYHg+mRhKZfAlqThr11Dqz8TsrvqGKMhdI2ijy3KBJOun2Z4770TPjrIJhR6KxChQIDaz8clDA==";
+ url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
+ sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
};
};
- "@webassemblyjs/floating-point-hex-parser-1.5.13" = {
- name = "_at_webassemblyjs_slash_floating-point-hex-parser";
- packageName = "@webassemblyjs/floating-point-hex-parser";
- version = "1.5.13";
+ "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/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.5.13.tgz";
- sha512 = "vrvvB18Kh4uyghSKb0NTv+2WZx871WL2NzwMj61jcq2bXkyhRC+8Q0oD7JGVf0+5i/fKQYQSBCNMMsDMRVAMqA==";
+ url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
+ sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
};
};
- "@webassemblyjs/helper-api-error-1.5.13" = {
- name = "_at_webassemblyjs_slash_helper-api-error";
- packageName = "@webassemblyjs/helper-api-error";
- version = "1.5.13";
+ "is-buffer-1.1.6" = {
+ name = "is-buffer";
+ packageName = "is-buffer";
+ version = "1.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.5.13.tgz";
- sha512 = "dBh2CWYqjaDlvMmRP/kudxpdh30uXjIbpkLj9HQe+qtYlwvYjPRjdQXrq1cTAAOUSMTtzqbXIxEdEZmyKfcwsg==";
+ url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
+ sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
};
};
- "@webassemblyjs/helper-buffer-1.5.13" = {
- name = "_at_webassemblyjs_slash_helper-buffer";
- packageName = "@webassemblyjs/helper-buffer";
- version = "1.5.13";
+ "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/@webassemblyjs/helper-buffer/-/helper-buffer-1.5.13.tgz";
- sha512 = "v7igWf1mHcpJNbn4m7e77XOAWXCDT76Xe7Is1VQFXc4K5jRcFrl9D0NrqM4XifQ0bXiuTSkTKMYqDxu5MhNljA==";
+ url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
+ sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
};
};
- "@webassemblyjs/helper-code-frame-1.5.13" = {
- name = "_at_webassemblyjs_slash_helper-code-frame";
- packageName = "@webassemblyjs/helper-code-frame";
- version = "1.5.13";
+ "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/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.5.13.tgz";
- sha512 = "yN6ScQQDFCiAXnVctdVO/J5NQRbwyTbQzsGzEgXsAnrxhjp0xihh+nNHQTMrq5UhOqTb5LykpJAvEv9AT0jnAQ==";
+ url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
+ sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
};
};
- "@webassemblyjs/helper-fsm-1.5.13" = {
- name = "_at_webassemblyjs_slash_helper-fsm";
- packageName = "@webassemblyjs/helper-fsm";
- version = "1.5.13";
+ "is-descriptor-0.1.6" = {
+ name = "is-descriptor";
+ packageName = "is-descriptor";
+ version = "0.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.5.13.tgz";
- sha512 = "hSIKzbXjVMRvy3Jzhgu+vDd/aswJ+UMEnLRCkZDdknZO3Z9e6rp1DAs0tdLItjCFqkz9+0BeOPK/mk3eYvVzZg==";
+ url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
+ sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==";
};
};
- "@webassemblyjs/helper-module-context-1.5.13" = {
- name = "_at_webassemblyjs_slash_helper-module-context";
- packageName = "@webassemblyjs/helper-module-context";
- version = "1.5.13";
+ "is-descriptor-1.0.2" = {
+ name = "is-descriptor";
+ packageName = "is-descriptor";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.5.13.tgz";
- sha512 = "zxJXULGPLB7r+k+wIlvGlXpT4CYppRz8fLUM/xobGHc9Z3T6qlmJD9ySJ2jknuktuuiR9AjnNpKYDECyaiX+QQ==";
+ url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
+ sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
};
};
- "@webassemblyjs/helper-wasm-bytecode-1.5.13" = {
- name = "_at_webassemblyjs_slash_helper-wasm-bytecode";
- packageName = "@webassemblyjs/helper-wasm-bytecode";
- version = "1.5.13";
+ "is-extendable-0.1.1" = {
+ name = "is-extendable";
+ packageName = "is-extendable";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.5.13.tgz";
- sha512 = "0n3SoNGLvbJIZPhtMFq0XmmnA/YmQBXaZKQZcW8maGKwLpVcgjNrxpFZHEOLKjXJYVN5Il8vSfG7nRX50Zn+aw==";
+ url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
+ sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
};
};
- "@webassemblyjs/helper-wasm-section-1.5.13" = {
- name = "_at_webassemblyjs_slash_helper-wasm-section";
- packageName = "@webassemblyjs/helper-wasm-section";
- version = "1.5.13";
+ "is-extendable-1.0.1" = {
+ name = "is-extendable";
+ packageName = "is-extendable";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.5.13.tgz";
- sha512 = "IJ/goicOZ5TT1axZFSnlAtz4m8KEjYr12BNOANAwGFPKXM4byEDaMNXYowHMG0yKV9a397eU/NlibFaLwr1fbw==";
+ url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
+ sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==";
};
};
- "@webassemblyjs/ieee754-1.5.13" = {
- name = "_at_webassemblyjs_slash_ieee754";
- packageName = "@webassemblyjs/ieee754";
- version = "1.5.13";
+ "is-extglob-2.1.1" = {
+ name = "is-extglob";
+ packageName = "is-extglob";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.5.13.tgz";
- sha512 = "TseswvXEPpG5TCBKoLx9tT7+/GMACjC1ruo09j46ULRZWYm8XHpDWaosOjTnI7kr4SRJFzA6MWoUkAB+YCGKKg==";
+ url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
+ sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
};
};
- "@webassemblyjs/leb128-1.5.13" = {
- name = "_at_webassemblyjs_slash_leb128";
- packageName = "@webassemblyjs/leb128";
- version = "1.5.13";
+ "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/@webassemblyjs/leb128/-/leb128-1.5.13.tgz";
- sha512 = "0NRMxrL+GG3eISGZBmLBLAVjphbN8Si15s7jzThaw1UE9e5BY1oH49/+MA1xBzxpf1OW5sf9OrPDOclk9wj2yg==";
+ url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
+ sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
};
};
- "@webassemblyjs/utf8-1.5.13" = {
- name = "_at_webassemblyjs_slash_utf8";
- packageName = "@webassemblyjs/utf8";
- version = "1.5.13";
+ "is-glob-3.1.0" = {
+ name = "is-glob";
+ packageName = "is-glob";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.5.13.tgz";
- sha512 = "Ve1ilU2N48Ew0lVGB8FqY7V7hXjaC4+PeZM+vDYxEd+R2iQ0q+Wb3Rw8v0Ri0+rxhoz6gVGsnQNb4FjRiEH/Ng==";
+ url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
+ sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
};
};
- "@webassemblyjs/wasm-edit-1.5.13" = {
- name = "_at_webassemblyjs_slash_wasm-edit";
- packageName = "@webassemblyjs/wasm-edit";
- version = "1.5.13";
+ "is-number-3.0.0" = {
+ name = "is-number";
+ packageName = "is-number";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.5.13.tgz";
- sha512 = "X7ZNW4+Hga4f2NmqENnHke2V/mGYK/xnybJSIXImt1ulxbCOEs/A+ZK/Km2jgihjyVxp/0z0hwIcxC6PrkWtgw==";
+ url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
+ sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
};
};
- "@webassemblyjs/wasm-gen-1.5.13" = {
- name = "_at_webassemblyjs_slash_wasm-gen";
- packageName = "@webassemblyjs/wasm-gen";
- version = "1.5.13";
+ "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/@webassemblyjs/wasm-gen/-/wasm-gen-1.5.13.tgz";
- sha512 = "yfv94Se8R73zmr8GAYzezFHc3lDwE/lBXQddSiIZEKZFuqy7yWtm3KMwA1uGbv5G1WphimJxboXHR80IgX1hQA==";
+ url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
+ sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
};
};
- "@webassemblyjs/wasm-opt-1.5.13" = {
- name = "_at_webassemblyjs_slash_wasm-opt";
- packageName = "@webassemblyjs/wasm-opt";
- version = "1.5.13";
+ "is-relative-1.0.0" = {
+ name = "is-relative";
+ packageName = "is-relative";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.5.13.tgz";
- sha512 = "IkXSkgzVhQ0QYAdIayuCWMmXSYx0dHGU8Ah/AxJf1gBvstMWVnzJnBwLsXLyD87VSBIcsqkmZ28dVb0mOC3oBg==";
+ url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
+ sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==";
};
};
- "@webassemblyjs/wasm-parser-1.5.13" = {
- name = "_at_webassemblyjs_slash_wasm-parser";
- packageName = "@webassemblyjs/wasm-parser";
- version = "1.5.13";
+ "is-typedarray-1.0.0" = {
+ name = "is-typedarray";
+ packageName = "is-typedarray";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.5.13.tgz";
- sha512 = "XnYoIcu2iqq8/LrtmdnN3T+bRjqYFjRHqWbqK3osD/0r/Fcv4d9ecRzjVtC29ENEuNTK4mQ9yyxCBCbK8S/cpg==";
+ url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
+ sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
};
};
- "@webassemblyjs/wast-parser-1.5.13" = {
- name = "_at_webassemblyjs_slash_wast-parser";
- packageName = "@webassemblyjs/wast-parser";
- version = "1.5.13";
+ "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/@webassemblyjs/wast-parser/-/wast-parser-1.5.13.tgz";
- sha512 = "Lbz65T0LQ1LgzKiUytl34CwuhMNhaCLgrh0JW4rJBN6INnBB8NMwUfQM+FxTnLY9qJ+lHJL/gCM5xYhB9oWi4A==";
+ url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
+ sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==";
};
};
- "@webassemblyjs/wast-printer-1.5.13" = {
- name = "_at_webassemblyjs_slash_wast-printer";
- packageName = "@webassemblyjs/wast-printer";
- version = "1.5.13";
+ "is-windows-1.0.2" = {
+ name = "is-windows";
+ packageName = "is-windows";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.5.13.tgz";
- sha512 = "QcwogrdqcBh8Z+eUF8SG+ag5iwQSXxQJELBEHmLkk790wgQgnIMmntT2sMAMw53GiFNckArf5X0bsCA44j3lWQ==";
+ url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz";
+ sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
};
};
- "@zeit/schemas-1.7.0" = {
- name = "_at_zeit_slash_schemas";
- packageName = "@zeit/schemas";
- version = "1.7.0";
+ "isarray-1.0.0" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@zeit/schemas/-/schemas-1.7.0.tgz";
- sha512 = "Ma2HHFqwZZ5WOEMcd/8RJj70O9jy2esTvu9oaYLJSkenELKrv6vgkGeM5jB8xLRTYocpcnd2rCfpyKyhBqVphQ==";
+ url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
+ sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
};
};
- "CSSselect-0.4.1" = {
- name = "CSSselect";
- packageName = "CSSselect";
- version = "0.4.1";
+ "isexe-2.0.0" = {
+ name = "isexe";
+ packageName = "isexe";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/CSSselect/-/CSSselect-0.4.1.tgz";
- sha1 = "f8ab7e1f8418ce63cda6eb7bd778a85d7ec492b2";
+ url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
+ sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
};
};
- "CSSwhat-0.4.7" = {
- name = "CSSwhat";
- packageName = "CSSwhat";
- version = "0.4.7";
+ "isobject-2.1.0" = {
+ name = "isobject";
+ packageName = "isobject";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/CSSwhat/-/CSSwhat-0.4.7.tgz";
- sha1 = "867da0ff39f778613242c44cfea83f0aa4ebdf9b";
+ url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
+ sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
};
};
- "JSONSelect-0.2.1" = {
- name = "JSONSelect";
- packageName = "JSONSelect";
- version = "0.2.1";
+ "isobject-3.0.1" = {
+ name = "isobject";
+ packageName = "isobject";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/JSONSelect/-/JSONSelect-0.2.1.tgz";
- sha1 = "415418a526d33fe31d74b4defa3c836d485ec203";
+ url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
+ sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
};
};
- "JSONStream-0.10.0" = {
- name = "JSONStream";
- packageName = "JSONStream";
- version = "0.10.0";
+ "isstream-0.1.2" = {
+ name = "isstream";
+ packageName = "isstream";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.10.0.tgz";
- sha1 = "74349d0d89522b71f30f0a03ff9bd20ca6f12ac0";
+ url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
+ sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
};
};
- "JSONStream-0.8.4" = {
- name = "JSONStream";
- packageName = "JSONStream";
- version = "0.8.4";
+ "jsbn-0.1.1" = {
+ name = "jsbn";
+ packageName = "jsbn";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz";
- sha1 = "91657dfe6ff857483066132b4618b62e8f4887bd";
+ url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
+ sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
};
};
- "JSONStream-1.3.3" = {
- name = "JSONStream";
- packageName = "JSONStream";
- version = "1.3.3";
+ "json-schema-0.2.3" = {
+ name = "json-schema";
+ packageName = "json-schema";
+ version = "0.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.3.tgz";
- sha512 = "3Sp6WZZ/lXl+nTDoGpGWHEpTnnC6X5fnkolYZR6nwIfzbxxvA8utPWe1gCt7i0m9uVGsSz2IS8K8mJ7HmlduMg==";
- };
- };
- "JSV-4.0.2" = {
- name = "JSV";
- packageName = "JSV";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz";
- sha1 = "d077f6825571f82132f9dffaed587b4029feff57";
+ url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
+ sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
};
};
- "abab-1.0.4" = {
- name = "abab";
- packageName = "abab";
- version = "1.0.4";
+ "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/abab/-/abab-1.0.4.tgz";
- sha1 = "5faad9c2c07f60dd76770f71cf025b62a63cfd4e";
+ url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz";
+ sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340";
};
};
- "abbrev-1.0.9" = {
- name = "abbrev";
- packageName = "abbrev";
- version = "1.0.9";
+ "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/abbrev/-/abbrev-1.0.9.tgz";
- sha1 = "91b4792588a7738c25f35dd6f63752a2f8776135";
+ url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
+ sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
};
};
- "abbrev-1.1.1" = {
- name = "abbrev";
- packageName = "abbrev";
- version = "1.1.1";
+ "jsprim-1.4.1" = {
+ name = "jsprim";
+ packageName = "jsprim";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
- sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
+ sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
};
};
- "absolute-0.0.1" = {
- name = "absolute";
- packageName = "absolute";
- version = "0.0.1";
+ "kind-of-3.2.2" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "3.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/absolute/-/absolute-0.0.1.tgz";
- sha1 = "c22822f87e1c939f579887504d9c109c4173829d";
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
+ sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
};
};
- "abstract-leveldown-0.12.4" = {
- name = "abstract-leveldown";
- packageName = "abstract-leveldown";
- version = "0.12.4";
+ "kind-of-4.0.0" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz";
- sha1 = "29e18e632e60e4e221d5810247852a63d7b2e410";
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
+ sha1 = "20813df3d712928b207378691a45066fae72dd57";
};
};
- "abstract-random-access-1.1.2" = {
- name = "abstract-random-access";
- packageName = "abstract-random-access";
- version = "1.1.2";
+ "kind-of-5.1.0" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/abstract-random-access/-/abstract-random-access-1.1.2.tgz";
- sha1 = "9a8eac8ff79866f3f9b4bb1443ca778f1598aeda";
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
+ sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==";
};
};
- "accepts-1.2.13" = {
- name = "accepts";
- packageName = "accepts";
- version = "1.2.13";
+ "kind-of-6.0.2" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "6.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz";
- sha1 = "e5f1f3928c6d95fd96558c36ec3d9d0de4a6ecea";
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz";
+ sha512 = "s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==";
};
};
- "accepts-1.3.3" = {
- name = "accepts";
- packageName = "accepts";
- version = "1.3.3";
+ "liftoff-2.5.0" = {
+ name = "liftoff";
+ packageName = "liftoff";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz";
- sha1 = "c3ca7434938648c3e0d9c1e328dd68b622c284ca";
+ url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
+ sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
};
};
- "accepts-1.3.5" = {
- name = "accepts";
- packageName = "accepts";
- version = "1.3.5";
+ "make-iterator-1.0.1" = {
+ name = "make-iterator";
+ packageName = "make-iterator";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz";
- sha1 = "eb777df6011723a3b14e8a72c0805c8e86746bd2";
+ url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz";
+ sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==";
};
};
- "accord-0.28.0" = {
- name = "accord";
- packageName = "accord";
- version = "0.28.0";
+ "map-cache-0.2.2" = {
+ name = "map-cache";
+ packageName = "map-cache";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/accord/-/accord-0.28.0.tgz";
- sha512 = "sPF34gqHegaCSryKf5wHJ8wREK1dTZnHmC9hsB7D8xjntRdd30DXDPKf0YVIcSvnXJmcYu5SCvZRz28H++kFhQ==";
+ url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
+ sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
};
};
- "acorn-1.2.2" = {
- name = "acorn";
- packageName = "acorn";
- version = "1.2.2";
+ "map-visit-1.0.0" = {
+ name = "map-visit";
+ packageName = "map-visit";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz";
- sha1 = "c8ce27de0acc76d896d2b1fad3df588d9e82f014";
+ url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
+ sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
};
};
- "acorn-2.7.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "2.7.0";
+ "micromatch-3.1.10" = {
+ name = "micromatch";
+ packageName = "micromatch";
+ version = "3.1.10";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz";
- sha1 = "ab6e7d9d886aaca8b085bc3312b79a198433f0e7";
+ url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
+ sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
};
};
- "acorn-3.3.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "3.3.0";
+ "mime-db-1.36.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.36.0";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
- sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.36.0.tgz";
+ sha512 = "L+xvyD9MkoYMXb1jAmzI/lWYAxAMCPvIBSWur0PZ5nOf5euahRLVqH//FKW9mWp2lkqUgYiXPgkzfMUFi4zVDw==";
};
};
- "acorn-4.0.13" = {
- name = "acorn";
- packageName = "acorn";
- version = "4.0.13";
+ "mime-types-2.1.20" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.20";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz";
- sha1 = "105495ae5361d697bd195c825192e1ad7f253787";
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.20.tgz";
+ sha512 = "HrkrPaP9vGuWbLK1B1FfgAkbqNjIuy4eHlIYnFi7kamZyLLrGlo2mpcx0bBmNpKqBtYtAfGbodDddIgddSJC2A==";
};
};
- "acorn-5.7.1" = {
- name = "acorn";
- packageName = "acorn";
- version = "5.7.1";
+ "minimatch-3.0.4" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz";
- sha512 = "d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==";
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
+ sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
};
};
- "acorn-dynamic-import-3.0.0" = {
- name = "acorn-dynamic-import";
- packageName = "acorn-dynamic-import";
- version = "3.0.0";
+ "minimist-0.0.8" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "0.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz";
- sha512 = "zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==";
+ url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
+ sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
};
};
- "acorn-globals-1.0.9" = {
- name = "acorn-globals";
- packageName = "acorn-globals";
- version = "1.0.9";
+ "minimist-1.2.0" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz";
- sha1 = "55bb5e98691507b74579d0513413217c380c54cf";
+ url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz";
+ sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
};
};
- "acorn-globals-3.1.0" = {
- name = "acorn-globals";
- packageName = "acorn-globals";
- version = "3.1.0";
+ "minipass-2.3.4" = {
+ name = "minipass";
+ packageName = "minipass";
+ version = "2.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz";
- sha1 = "fd8270f71fbb4996b004fa880ee5d46573a731bf";
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.3.4.tgz";
+ sha512 = "mlouk1OHlaUE8Odt1drMtG1bAJA4ZA6B/ehysgV0LUIrDHdKgo1KorZq3pK0b/7Z7LJIQ12MNM6aC+Tn6lUZ5w==";
};
};
- "acorn-jsx-3.0.1" = {
- name = "acorn-jsx";
- packageName = "acorn-jsx";
- version = "3.0.1";
+ "minizlib-1.1.0" = {
+ name = "minizlib";
+ packageName = "minizlib";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
- sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
+ url = "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz";
+ sha512 = "4T6Ur/GctZ27nHfpt9THOdRZNgyJ9FZchYO1ceg5S8Q3DNLCKYy44nCZzgCJgcvx2UM8czmqak5BCxJMrq37lA==";
};
};
- "acorn-jsx-4.1.1" = {
- name = "acorn-jsx";
- packageName = "acorn-jsx";
- version = "4.1.1";
+ "mixin-deep-1.3.1" = {
+ name = "mixin-deep";
+ packageName = "mixin-deep";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz";
- sha512 = "JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw==";
+ url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz";
+ sha512 = "8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==";
};
};
- "acorn-node-1.5.2" = {
- name = "acorn-node";
- packageName = "acorn-node";
- version = "1.5.2";
+ "mkdirp-0.5.1" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-node/-/acorn-node-1.5.2.tgz";
- sha512 = "krFKvw/d1F17AN3XZbybIUzEY4YEPNiGo05AfP3dBlfVKrMHETKpgjpuZkSF8qDNt9UkQcqj7am8yJLseklCMg==";
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
+ sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
};
};
- "active-x-obfuscator-0.0.1" = {
- name = "active-x-obfuscator";
- packageName = "active-x-obfuscator";
- version = "0.0.1";
+ "ms-2.0.0" = {
+ name = "ms";
+ packageName = "ms";
+ version = "2.0.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/-/ms-2.0.0.tgz";
+ sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
};
};
- "adal-node-0.1.28" = {
- name = "adal-node";
- packageName = "adal-node";
- version = "0.1.28";
+ "nanomatch-1.2.13" = {
+ name = "nanomatch";
+ packageName = "nanomatch";
+ version = "1.2.13";
src = fetchurl {
- url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.28.tgz";
- sha1 = "468c4bb3ebbd96b1270669f4b9cba4e0065ea485";
+ url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz";
+ sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==";
};
};
- "adbkit-2.11.0" = {
- name = "adbkit";
- packageName = "adbkit";
- version = "2.11.0";
+ "needle-2.2.2" = {
+ name = "needle";
+ packageName = "needle";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/adbkit/-/adbkit-2.11.0.tgz";
- sha512 = "j2vUhEeZmCiqBP+p77CpPWQTcT20rOmSmRHFUTZUwUpxzeCd3fXop4NAGYztSY9/FNU4bT/qqvYQ4EZKuCXhfA==";
+ url = "https://registry.npmjs.org/needle/-/needle-2.2.2.tgz";
+ sha512 = "mW7W8dKuVYefCpNzE3Z7xUmPI9wSrSL/1qH31YGMxmSOAnjatS3S9Zv3cmiHrhx3Jkp1SrWWBdOFXjfF48Uq3A==";
};
};
- "adbkit-logcat-1.1.0" = {
- name = "adbkit-logcat";
- packageName = "adbkit-logcat";
- version = "1.1.0";
+ "nopt-3.0.6" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "3.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/adbkit-logcat/-/adbkit-logcat-1.1.0.tgz";
- sha1 = "01d7f9b0cef9093a30bcb3b007efff301508962f";
+ url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
+ sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
};
};
- "adbkit-monkey-1.0.1" = {
- name = "adbkit-monkey";
- packageName = "adbkit-monkey";
- version = "1.0.1";
+ "nopt-4.0.1" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/adbkit-monkey/-/adbkit-monkey-1.0.1.tgz";
- sha1 = "f291be701a2efc567a63fc7aa6afcded31430be1";
+ url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
+ sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
};
};
- "addons-linter-1.2.6" = {
- name = "addons-linter";
- packageName = "addons-linter";
- version = "1.2.6";
+ "npm-bundled-1.0.5" = {
+ name = "npm-bundled";
+ packageName = "npm-bundled";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.2.6.tgz";
- sha512 = "8WjSUoleic9x3gS8SZF0kIvffrX7WkiRPF8Xs8CZi7Yu/Xq0qX9LOYG2Q66t9ThmTeMItt/24FxirqqdyFLGgw==";
+ url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.5.tgz";
+ sha512 = "m/e6jgWu8/v5niCUKQi9qQl8QdeEduFA96xHDDzFGqly0OOjI7c+60KM/2sppfnUU9JJagf+zs+yGhqSOFj71g==";
};
};
- "addr-to-ip-port-1.5.1" = {
- name = "addr-to-ip-port";
- packageName = "addr-to-ip-port";
- version = "1.5.1";
+ "npm-packlist-1.1.11" = {
+ name = "npm-packlist";
+ packageName = "npm-packlist";
+ version = "1.1.11";
src = fetchurl {
- url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.5.1.tgz";
- sha512 = "bA+dyydTNuQtrEDJ0g9eR7XabNhvrM5yZY0hvTbNK3yvoeC73ZqMES6E1cEqH9WPxs4uMtMsOjfwS4FmluhsAA==";
+ url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.11.tgz";
+ sha512 = "CxKlZ24urLkJk+9kCm48RTQ7L4hsmgSVzEk0TLGPzzyuFxD7VNgy5Sl24tOLMzQv773a/NeJ1ce1DKeacqffEA==";
};
};
- "addressparser-0.3.2" = {
- name = "addressparser";
- packageName = "addressparser";
- version = "0.3.2";
+ "npmlog-4.1.2" = {
+ name = "npmlog";
+ packageName = "npmlog";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/addressparser/-/addressparser-0.3.2.tgz";
- sha1 = "59873f35e8fcf6c7361c10239261d76e15348bb2";
+ url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz";
+ sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==";
};
};
- "addressparser-1.0.1" = {
- name = "addressparser";
- packageName = "addressparser";
+ "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/addressparser/-/addressparser-1.0.1.tgz";
- sha1 = "47afbe1a2a9262191db6838e4fd1d39b40821746";
+ url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
+ sha1 = "097b602b53422a522c1afb8790318336941a011d";
};
};
- "adm-zip-0.4.11" = {
- name = "adm-zip";
- packageName = "adm-zip";
- version = "0.4.11";
+ "oauth-sign-0.9.0" = {
+ name = "oauth-sign";
+ packageName = "oauth-sign";
+ version = "0.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.11.tgz";
- sha512 = "L8vcjDTCOIJk7wFvmlEUN7AsSb8T+2JrdP7KINBjzr24TJ5Mwj590sLu3BC7zNZowvJWa/JtPmD8eJCzdtDWjA==";
+ url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz";
+ sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==";
};
};
- "adm-zip-0.4.7" = {
- name = "adm-zip";
- packageName = "adm-zip";
- version = "0.4.7";
+ "object-assign-4.1.1" = {
+ name = "object-assign";
+ packageName = "object-assign";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz";
- sha1 = "8606c2cbf1c426ce8c8ec00174447fd49b6eafc1";
+ url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
+ sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
};
};
- "after-0.8.1" = {
- name = "after";
- packageName = "after";
- version = "0.8.1";
+ "object-copy-0.1.0" = {
+ name = "object-copy";
+ packageName = "object-copy";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/after/-/after-0.8.1.tgz";
- sha1 = "ab5d4fb883f596816d3515f8f791c0af486dd627";
+ url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
+ sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
};
};
- "after-0.8.2" = {
- name = "after";
- packageName = "after";
- version = "0.8.2";
+ "object-visit-1.0.1" = {
+ name = "object-visit";
+ packageName = "object-visit";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz";
- sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f";
+ url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
+ sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
};
};
- "agent-base-2.1.1" = {
- name = "agent-base";
- packageName = "agent-base";
- version = "2.1.1";
+ "object.defaults-1.1.0" = {
+ name = "object.defaults";
+ packageName = "object.defaults";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz";
- sha1 = "d6de10d5af6132d5bd692427d46fc538539094c7";
+ url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
+ sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
};
};
- "agent-base-4.2.1" = {
- name = "agent-base";
- packageName = "agent-base";
- version = "4.2.1";
+ "object.map-1.0.1" = {
+ name = "object.map";
+ packageName = "object.map";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/agent-base/-/agent-base-4.2.1.tgz";
- sha512 = "JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==";
+ url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz";
+ sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37";
};
};
- "aggregate-error-1.0.0" = {
- name = "aggregate-error";
- packageName = "aggregate-error";
- version = "1.0.0";
+ "object.pick-1.3.0" = {
+ name = "object.pick";
+ packageName = "object.pick";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-1.0.0.tgz";
- sha1 = "888344dad0220a72e3af50906117f48771925fac";
+ url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
+ sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
};
};
- "airplay-js-0.2.16" = {
- name = "airplay-js";
- packageName = "airplay-js";
- version = "0.2.16";
+ "once-1.4.0" = {
+ name = "once";
+ packageName = "once";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/airplay-js/-/airplay-js-0.2.16.tgz";
- sha1 = "48566d5fa55a921d80187ad946f7e8f7555902a1";
+ url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
+ sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
};
};
- "airplay-js-0.3.0" = {
- name = "airplay-js";
- packageName = "airplay-js";
- version = "0.3.0";
+ "os-homedir-1.0.2" = {
+ name = "os-homedir";
+ packageName = "os-homedir";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/airplay-js/-/airplay-js-0.3.0.tgz";
- sha1 = "16bac2ef91b31249382924bfdeeabaddc9db7398";
+ url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
+ sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
};
};
- "airplay-protocol-2.0.2" = {
- name = "airplay-protocol";
- packageName = "airplay-protocol";
- version = "2.0.2";
+ "os-tmpdir-1.0.2" = {
+ name = "os-tmpdir";
+ packageName = "os-tmpdir";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/airplay-protocol/-/airplay-protocol-2.0.2.tgz";
- sha1 = "b5b2a7137331f5545acbe196ba5693c13238fc5e";
+ url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
+ sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
};
};
- "airplayer-2.0.0" = {
- name = "airplayer";
- packageName = "airplayer";
- version = "2.0.0";
+ "osenv-0.1.5" = {
+ name = "osenv";
+ packageName = "osenv";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/airplayer/-/airplayer-2.0.0.tgz";
- sha1 = "7ab62d23b96d44234138aec1281d2e67ef190259";
+ url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
+ sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
};
};
- "ajv-4.11.8" = {
- name = "ajv";
- packageName = "ajv";
- version = "4.11.8";
+ "parse-filepath-1.0.2" = {
+ name = "parse-filepath";
+ packageName = "parse-filepath";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
- sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
+ url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
+ sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
};
};
- "ajv-5.5.2" = {
- name = "ajv";
- packageName = "ajv";
- version = "5.5.2";
+ "parse-passwd-1.0.0" = {
+ name = "parse-passwd";
+ packageName = "parse-passwd";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
- sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
+ url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
+ sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
};
};
- "ajv-6.5.2" = {
- name = "ajv";
- packageName = "ajv";
- version = "6.5.2";
+ "pascalcase-0.1.1" = {
+ name = "pascalcase";
+ packageName = "pascalcase";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz";
- sha512 = "hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==";
+ url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
+ sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
};
};
- "ajv-keywords-1.5.1" = {
- name = "ajv-keywords";
- packageName = "ajv-keywords";
- version = "1.5.1";
+ "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/ajv-keywords/-/ajv-keywords-1.5.1.tgz";
- sha1 = "314dd0a4b3368fad3dfcdc54ede6171b886daf3c";
+ url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
+ sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
};
};
- "ajv-keywords-3.2.0" = {
- name = "ajv-keywords";
- packageName = "ajv-keywords";
- version = "3.2.0";
+ "path-parse-1.0.6" = {
+ name = "path-parse";
+ packageName = "path-parse";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz";
- sha1 = "e86b819c602cf8821ad637413698f1dec021847a";
+ url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
+ sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
};
};
- "ajv-merge-patch-4.1.0" = {
- name = "ajv-merge-patch";
- packageName = "ajv-merge-patch";
- version = "4.1.0";
+ "path-root-0.1.1" = {
+ name = "path-root";
+ packageName = "path-root";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv-merge-patch/-/ajv-merge-patch-4.1.0.tgz";
- sha512 = "0mAYXMSauA8RZ7r+B4+EAOYcZEcO9OK5EiQCR7W7Cv4E44pJj56ZnkKLJ9/PAcOc0dT+LlV9fdDcq2TxVJfOYw==";
+ url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
+ sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
};
};
- "aliasify-2.1.0" = {
- name = "aliasify";
- packageName = "aliasify";
- version = "2.1.0";
+ "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/aliasify/-/aliasify-2.1.0.tgz";
- sha1 = "7c30825b9450b9e6185ba27533eaf6e2067d4b42";
+ url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
+ sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
};
};
- "align-text-0.1.4" = {
- name = "align-text";
- packageName = "align-text";
- version = "0.1.4";
+ "performance-now-2.1.0" = {
+ name = "performance-now";
+ packageName = "performance-now";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
- sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
+ url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz";
+ sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
};
};
- "almond-0.3.3" = {
- name = "almond";
- packageName = "almond";
- version = "0.3.3";
+ "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/almond/-/almond-0.3.3.tgz";
- sha1 = "a0e7c95ac7624d6417b4494b1e68bff693168a20";
+ url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
+ sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
};
};
- "amdefine-1.0.1" = {
- name = "amdefine";
- packageName = "amdefine";
- version = "1.0.1";
+ "process-nextick-args-2.0.0" = {
+ name = "process-nextick-args";
+ packageName = "process-nextick-args";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
- sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
+ url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz";
+ sha512 = "MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==";
};
};
- "ansi-0.3.1" = {
- name = "ansi";
- packageName = "ansi";
- version = "0.3.1";
+ "psl-1.1.29" = {
+ name = "psl";
+ packageName = "psl";
+ version = "1.1.29";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz";
- sha1 = "0c42d4fb17160d5a9af1e484bace1c66922c1b21";
+ url = "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz";
+ sha512 = "AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==";
};
};
- "ansi-align-2.0.0" = {
- name = "ansi-align";
- packageName = "ansi-align";
- version = "2.0.0";
+ "punycode-1.4.1" = {
+ name = "punycode";
+ packageName = "punycode";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz";
- sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f";
+ url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
+ sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
};
};
- "ansi-color-0.2.1" = {
- name = "ansi-color";
- packageName = "ansi-color";
- version = "0.2.1";
+ "qs-6.5.2" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-color/-/ansi-color-0.2.1.tgz";
- sha1 = "3e75c037475217544ed763a8db5709fa9ae5bf9a";
+ url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz";
+ sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==";
};
};
- "ansi-colors-1.1.0" = {
- name = "ansi-colors";
- packageName = "ansi-colors";
- version = "1.1.0";
+ "rc-1.2.8" = {
+ name = "rc";
+ packageName = "rc";
+ version = "1.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz";
- sha512 = "SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==";
+ url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz";
+ sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==";
};
};
- "ansi-cyan-0.1.1" = {
- name = "ansi-cyan";
- packageName = "ansi-cyan";
- version = "0.1.1";
+ "readable-stream-2.3.6" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "2.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz";
- sha1 = "538ae528af8982f28ae30d86f2f17456d2609873";
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz";
+ sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==";
};
};
- "ansi-diff-1.1.1" = {
- name = "ansi-diff";
- packageName = "ansi-diff";
- version = "1.1.1";
+ "rechoir-0.6.2" = {
+ name = "rechoir";
+ packageName = "rechoir";
+ version = "0.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-diff/-/ansi-diff-1.1.1.tgz";
- sha512 = "XnTdFDQzbEewrDx8epWXdw7oqHMvv315vEtfqDiEhhWghIf4++h26c3/FMz7iTLhNrnj56DNIXpbxHZq+3s6qw==";
+ url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
+ sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
};
};
- "ansi-escapes-1.4.0" = {
- name = "ansi-escapes";
- packageName = "ansi-escapes";
- version = "1.4.0";
+ "regex-not-1.0.2" = {
+ name = "regex-not";
+ packageName = "regex-not";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz";
- sha1 = "d3a8a83b319aa67793662b13e761c7911422306e";
+ url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz";
+ sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
};
};
- "ansi-escapes-3.1.0" = {
- name = "ansi-escapes";
- packageName = "ansi-escapes";
- version = "3.1.0";
+ "repeat-element-1.1.3" = {
+ name = "repeat-element";
+ packageName = "repeat-element";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz";
- sha512 = "UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==";
+ url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz";
+ sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==";
};
};
- "ansi-gray-0.1.1" = {
- name = "ansi-gray";
- packageName = "ansi-gray";
- version = "0.1.1";
+ "repeat-string-1.6.1" = {
+ name = "repeat-string";
+ packageName = "repeat-string";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz";
- sha1 = "2962cf54ec9792c48510a3deb524436861ef7251";
+ url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
+ sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
};
};
- "ansi-red-0.1.1" = {
- name = "ansi-red";
- packageName = "ansi-red";
- version = "0.1.1";
+ "request-2.88.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.88.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz";
- sha1 = "8c638f9d1080800a353c9c28c8a81ca4705d946c";
+ url = "https://registry.npmjs.org/request/-/request-2.88.0.tgz";
+ sha512 = "NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==";
};
};
- "ansi-regex-0.2.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "0.2.1";
+ "resolve-1.8.1" = {
+ name = "resolve";
+ packageName = "resolve";
+ version = "1.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz";
- sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9";
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz";
+ sha512 = "AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==";
};
};
- "ansi-regex-1.1.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "1.1.1";
+ "resolve-dir-1.0.1" = {
+ name = "resolve-dir";
+ packageName = "resolve-dir";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz";
- sha1 = "41c847194646375e6a1a5d10c3ca054ef9fc980d";
+ url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
+ sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
};
};
- "ansi-regex-2.1.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "2.1.1";
+ "resolve-url-0.2.1" = {
+ name = "resolve-url";
+ packageName = "resolve-url";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
+ url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
+ sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
};
};
- "ansi-regex-3.0.0" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "3.0.0";
+ "ret-0.1.15" = {
+ name = "ret";
+ packageName = "ret";
+ version = "0.1.15";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
- sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
+ url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz";
+ sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
};
};
- "ansi-split-1.0.1" = {
- name = "ansi-split";
- packageName = "ansi-split";
- version = "1.0.1";
+ "rimraf-2.6.2" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-split/-/ansi-split-1.0.1.tgz";
- sha512 = "RRxQym4DFtDNmHIkW6aeFVvrXURb11lGAEPXNiryjCe8bK8RsANjzJ0M2aGOkvBYwP4Bl/xZ8ijtr6D3j1x/eg==";
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
+ sha512 = "lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==";
};
};
- "ansi-styles-1.0.0" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "1.0.0";
+ "safe-buffer-5.1.2" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz";
- sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178";
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
+ sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
};
};
- "ansi-styles-1.1.0" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
+ "safe-regex-1.1.0" = {
+ name = "safe-regex";
+ packageName = "safe-regex";
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";
+ url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz";
+ sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
};
};
- "ansi-styles-3.2.0" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "3.2.0";
+ "safer-buffer-2.1.2" = {
+ name = "safer-buffer";
+ packageName = "safer-buffer";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz";
- sha512 = "NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==";
+ url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
+ sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
};
};
- "ansi-styles-3.2.1" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "3.2.1";
+ "sax-1.2.4" = {
+ name = "sax";
+ packageName = "sax";
+ version = "1.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz";
- sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==";
+ url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz";
+ sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==";
};
};
- "ansi-wrap-0.1.0" = {
- name = "ansi-wrap";
- packageName = "ansi-wrap";
- version = "0.1.0";
+ "semver-5.3.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz";
- sha1 = "a82250ddb0015e9a27ca82e82ea603bbfa45efaf";
+ url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz";
+ sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f";
};
};
- "ansicolors-0.3.2" = {
- name = "ansicolors";
- packageName = "ansicolors";
- version = "0.3.2";
+ "semver-5.5.1" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz";
- sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979";
+ url = "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz";
+ sha512 = "PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==";
};
};
- "any-promise-1.3.0" = {
- name = "any-promise";
- packageName = "any-promise";
- version = "1.3.0";
+ "set-blocking-2.0.0" = {
+ name = "set-blocking";
+ packageName = "set-blocking";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz";
- sha1 = "abc6afeedcea52e809cdc0376aed3ce39635d17f";
+ url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
+ sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
};
};
- "anymatch-1.3.2" = {
- name = "anymatch";
- packageName = "anymatch";
- version = "1.3.2";
+ "set-value-0.4.3" = {
+ name = "set-value";
+ packageName = "set-value";
+ version = "0.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz";
- sha512 = "0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==";
+ url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz";
+ sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1";
};
};
- "anymatch-2.0.0" = {
- name = "anymatch";
- packageName = "anymatch";
+ "set-value-2.0.0" = {
+ name = "set-value";
+ packageName = "set-value";
version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz";
- sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
+ url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz";
+ sha512 = "hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==";
};
};
- "ap-0.1.0" = {
- name = "ap";
- packageName = "ap";
- version = "0.1.0";
+ "signal-exit-3.0.2" = {
+ name = "signal-exit";
+ packageName = "signal-exit";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ap/-/ap-0.1.0.tgz";
- sha1 = "d8a3f26615379398a1b53ca6cc1a666a0fbfe150";
+ url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
+ sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
};
};
- "apache-crypt-1.2.1" = {
- name = "apache-crypt";
- packageName = "apache-crypt";
- version = "1.2.1";
+ "snapdragon-0.8.2" = {
+ name = "snapdragon";
+ packageName = "snapdragon";
+ version = "0.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.1.tgz";
- sha1 = "d6fc72aa6d27d99c95a94fd188d731eefffa663c";
+ url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz";
+ sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==";
};
};
- "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";
- };
- };
- "apollo-codegen-0.19.1" = {
- name = "apollo-codegen";
- packageName = "apollo-codegen";
- version = "0.19.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-codegen/-/apollo-codegen-0.19.1.tgz";
- sha512 = "jlxz/b5iinRWfh48hXdmMtrjTPn/rDok0Z3b7icvkiaD6I30w4sq9B+JDkFbLnkldzsFLV2BZtBDa/dkZhx8Ng==";
- };
- };
- "append-0.1.1" = {
- name = "append";
- packageName = "append";
- version = "0.1.1";
+ "snapdragon-node-2.1.1" = {
+ name = "snapdragon-node";
+ packageName = "snapdragon-node";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/append/-/append-0.1.1.tgz";
- sha1 = "7e5dd327747078d877286fbb624b1e8f4d2b396b";
+ url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
+ sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==";
};
};
- "append-buffer-1.0.2" = {
- name = "append-buffer";
- packageName = "append-buffer";
- version = "1.0.2";
+ "snapdragon-util-3.0.1" = {
+ name = "snapdragon-util";
+ packageName = "snapdragon-util";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz";
- sha1 = "d8220cf466081525efea50614f3de6514dfa58f1";
+ url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
+ sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==";
};
};
- "append-field-0.1.0" = {
- name = "append-field";
- packageName = "append-field";
- version = "0.1.0";
+ "source-map-0.5.7" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.5.7";
src = fetchurl {
- url = "https://registry.npmjs.org/append-field/-/append-field-0.1.0.tgz";
- sha1 = "6ddc58fa083c7bc545d3c5995b2830cc2366d44a";
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
+ sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
};
};
- "append-tree-2.4.4" = {
- name = "append-tree";
- packageName = "append-tree";
- version = "2.4.4";
+ "source-map-resolve-0.5.2" = {
+ name = "source-map-resolve";
+ packageName = "source-map-resolve";
+ version = "0.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.4.tgz";
- sha512 = "rPMUMkR8JjjPDDHHDZ/YeLO0KIbUGCrXgy921F6sBkEXBR9jYYxK8LUlwpZkUVi70cMR6r8uSmHZ/5HvtrntHg==";
+ url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz";
+ sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==";
};
};
- "appendable-cli-menu-2.0.0" = {
- name = "appendable-cli-menu";
- packageName = "appendable-cli-menu";
- version = "2.0.0";
+ "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/appendable-cli-menu/-/appendable-cli-menu-2.0.0.tgz";
- sha1 = "dcfca9e509300e4c3b2d467965fe50c56fc75e66";
+ url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
+ sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
};
};
- "applicationinsights-0.16.0" = {
- name = "applicationinsights";
- packageName = "applicationinsights";
- version = "0.16.0";
+ "split-string-3.1.0" = {
+ name = "split-string";
+ packageName = "split-string";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/applicationinsights/-/applicationinsights-0.16.0.tgz";
- sha1 = "e02dafb10cf573c19b429793c87797d6404f0ee3";
+ url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
+ sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==";
};
};
- "aproba-1.2.0" = {
- name = "aproba";
- packageName = "aproba";
- version = "1.2.0";
+ "sshpk-1.14.2" = {
+ name = "sshpk";
+ packageName = "sshpk";
+ version = "1.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
- sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz";
+ sha1 = "c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98";
};
};
- "arch-2.1.1" = {
- name = "arch";
- packageName = "arch";
- version = "2.1.1";
+ "static-extend-0.1.2" = {
+ name = "static-extend";
+ packageName = "static-extend";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/arch/-/arch-2.1.1.tgz";
- sha512 = "BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==";
+ url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
+ sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
};
};
- "archiver-2.1.1" = {
- name = "archiver";
- packageName = "archiver";
- version = "2.1.1";
+ "string-width-1.0.2" = {
+ name = "string-width";
+ packageName = "string-width";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/archiver/-/archiver-2.1.1.tgz";
- sha1 = "ff662b4a78201494a3ee544d3a33fe7496509ebc";
+ url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
+ sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
};
};
- "archiver-utils-1.3.0" = {
- name = "archiver-utils";
- packageName = "archiver-utils";
- version = "1.3.0";
+ "string_decoder-1.1.1" = {
+ name = "string_decoder";
+ packageName = "string_decoder";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz";
- sha1 = "e50b4c09c70bf3d680e32ff1b7994e9f9d895174";
+ url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
+ sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
};
};
- "archy-1.0.0" = {
- name = "archy";
- packageName = "archy";
- version = "1.0.0";
+ "strip-ansi-3.0.1" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz";
- sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
+ sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
};
};
- "are-we-there-yet-1.1.5" = {
- name = "are-we-there-yet";
- packageName = "are-we-there-yet";
- version = "1.1.5";
+ "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/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz";
- sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==";
+ url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
+ sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
};
};
- "arg-2.0.0" = {
- name = "arg";
- packageName = "arg";
- version = "2.0.0";
+ "tar-2.2.1" = {
+ name = "tar";
+ packageName = "tar";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/arg/-/arg-2.0.0.tgz";
- sha512 = "XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w==";
+ url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz";
+ sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1";
};
};
- "argparse-0.1.15" = {
- name = "argparse";
- packageName = "argparse";
- version = "0.1.15";
+ "tar-4.4.6" = {
+ name = "tar";
+ packageName = "tar";
+ version = "4.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/argparse/-/argparse-0.1.15.tgz";
- sha1 = "28a1f72c43113e763220e5708414301c8840f0a1";
+ url = "https://registry.npmjs.org/tar/-/tar-4.4.6.tgz";
+ sha512 = "tMkTnh9EdzxyfW+6GK6fCahagXsnYk6kE6S9Gr9pjVdys769+laCTbodXDhPAjzVtEBazRgP0gYqOjnk9dQzLg==";
};
};
- "argparse-0.1.16" = {
- name = "argparse";
- packageName = "argparse";
- version = "0.1.16";
+ "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/argparse/-/argparse-0.1.16.tgz";
- sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c";
+ url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
+ sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
};
};
- "argparse-1.0.10" = {
- name = "argparse";
- packageName = "argparse";
- version = "1.0.10";
+ "to-regex-3.0.2" = {
+ name = "to-regex";
+ packageName = "to-regex";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz";
- sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==";
+ url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz";
+ sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==";
};
};
- "argparse-1.0.4" = {
- name = "argparse";
- packageName = "argparse";
- version = "1.0.4";
+ "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/argparse/-/argparse-1.0.4.tgz";
- sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4";
+ url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
+ sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
};
};
- "arr-diff-1.1.0" = {
- name = "arr-diff";
- packageName = "arr-diff";
- version = "1.1.0";
+ "tough-cookie-2.4.3" = {
+ name = "tough-cookie";
+ packageName = "tough-cookie";
+ version = "2.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz";
- sha1 = "687c32758163588fef7de7b36fabe495eb1a399a";
+ url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz";
+ sha512 = "Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==";
};
};
- "arr-diff-2.0.0" = {
- name = "arr-diff";
- packageName = "arr-diff";
- version = "2.0.0";
+ "tunnel-agent-0.6.0" = {
+ name = "tunnel-agent";
+ packageName = "tunnel-agent";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz";
- sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf";
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
+ sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
};
};
- "arr-diff-4.0.0" = {
- name = "arr-diff";
- packageName = "arr-diff";
- version = "4.0.0";
+ "tweetnacl-0.14.5" = {
+ name = "tweetnacl";
+ packageName = "tweetnacl";
+ version = "0.14.5";
src = fetchurl {
- url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
- sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
+ url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
+ sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
};
};
- "arr-flatten-1.1.0" = {
- name = "arr-flatten";
- packageName = "arr-flatten";
- version = "1.1.0";
+ "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/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==";
+ url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
+ sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
};
};
- "arr-union-2.1.0" = {
- name = "arr-union";
- packageName = "arr-union";
- version = "2.1.0";
+ "union-value-1.0.0" = {
+ name = "union-value";
+ packageName = "union-value";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz";
- sha1 = "20f9eab5ec70f5c7d215b1077b1c39161d292c7d";
+ url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz";
+ sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4";
};
};
- "arr-union-3.1.0" = {
- name = "arr-union";
- packageName = "arr-union";
- version = "3.1.0";
+ "unset-value-1.0.0" = {
+ name = "unset-value";
+ packageName = "unset-value";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
- sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
+ url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
+ sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
};
};
- "array-differ-1.0.0" = {
- name = "array-differ";
- packageName = "array-differ";
- version = "1.0.0";
+ "urix-0.1.0" = {
+ name = "urix";
+ packageName = "urix";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz";
- sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031";
+ url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
+ sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
};
};
- "array-each-1.0.1" = {
- name = "array-each";
- packageName = "array-each";
- version = "1.0.1";
+ "use-3.1.1" = {
+ name = "use";
+ packageName = "use";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
- sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
+ url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz";
+ sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==";
};
};
- "array-filter-0.0.1" = {
- name = "array-filter";
- packageName = "array-filter";
- version = "0.0.1";
+ "util-deprecate-1.0.2" = {
+ name = "util-deprecate";
+ packageName = "util-deprecate";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz";
- sha1 = "7da8cf2e26628ed732803581fd21f67cacd2eeec";
+ url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
+ sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
};
};
- "array-find-0.1.1" = {
- name = "array-find";
- packageName = "array-find";
- version = "0.1.1";
+ "uuid-3.3.2" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/array-find/-/array-find-0.1.1.tgz";
- sha1 = "dc813845ad5a9afc35cb92b786c878d81b5b82ce";
+ url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz";
+ sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==";
};
};
- "array-find-index-1.0.2" = {
- name = "array-find-index";
- packageName = "array-find-index";
- version = "1.0.2";
+ "v8flags-3.0.2" = {
+ name = "v8flags";
+ packageName = "v8flags";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz";
- sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1";
+ url = "https://registry.npmjs.org/v8flags/-/v8flags-3.0.2.tgz";
+ sha512 = "6sgSKoFw1UpUPd3cFdF7QGnrH6tDeBgW1F3v9gy8gLY0mlbiBXq8soy8aQpY6xeeCjH5K+JvC62Acp7gtl7wWA==";
};
};
- "array-flatten-1.1.1" = {
- name = "array-flatten";
- packageName = "array-flatten";
- version = "1.1.1";
+ "verror-1.10.0" = {
+ name = "verror";
+ packageName = "verror";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz";
- sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
+ url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
+ sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
};
};
- "array-flatten-2.1.1" = {
- name = "array-flatten";
- packageName = "array-flatten";
- version = "2.1.1";
+ "which-1.3.1" = {
+ name = "which";
+ packageName = "which";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz";
- sha1 = "426bb9da84090c1838d812c8150af20a8331e296";
+ url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
+ sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
};
};
- "array-from-2.1.1" = {
- name = "array-from";
- packageName = "array-from";
- version = "2.1.1";
+ "wide-align-1.1.3" = {
+ name = "wide-align";
+ packageName = "wide-align";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz";
- sha1 = "cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195";
+ url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz";
+ sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==";
};
};
- "array-ify-1.0.0" = {
- name = "array-ify";
- packageName = "array-ify";
- version = "1.0.0";
+ "wrappy-1.0.2" = {
+ name = "wrappy";
+ packageName = "wrappy";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz";
- sha1 = "9e528762b4a9066ad163a6962a364418e9626ece";
+ url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
+ sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
};
};
- "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 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==";
- };
- };
- "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 = "wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==";
- };
- };
- "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.4" = {
- name = "asn1";
- packageName = "asn1";
- version = "0.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
- sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
- };
- };
- "asn1.js-4.10.1" = {
- name = "asn1.js";
- packageName = "asn1.js";
- version = "4.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz";
- sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==";
- };
- };
- "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 = "jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==";
- };
- };
- "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.11.5" = {
- name = "ast-types";
- packageName = "ast-types";
- version = "0.11.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ast-types/-/ast-types-0.11.5.tgz";
- sha512 = "oJjo+5e7/vEc2FBK8gUalV0pba4L3VdBIs2EKhOLHLcOd2FgQIVQN9xb0eZ9IjEWyAL7vq6fGJxOvVvdCHNyMw==";
- };
- };
- "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";
- };
- };
- "astral-regex-1.0.0" = {
- name = "astral-regex";
- packageName = "astral-regex";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz";
- sha512 = "+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==";
- };
- };
- "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.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 = "e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==";
- };
- };
- "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 = "xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==";
- };
- };
- "async-2.6.1" = {
- name = "async";
- packageName = "async";
- version = "2.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz";
- sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==";
- };
- };
- "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 = "jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==";
- };
- };
- "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.1.1" = {
- name = "atob";
- packageName = "atob";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz";
- sha1 = "ae2d5a729477f289d60dd7f96a6314a22dd6c22a";
- };
- };
- "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.1" = {
- name = "auto-bind";
- packageName = "auto-bind";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/auto-bind/-/auto-bind-1.2.1.tgz";
- sha512 = "/W9yj1yKmBLwpexwAujeD9YHwYmRuWFGV8HWE7smQab797VeHa4/cnE2NFeDhA+E+5e/OGBI8763EhLjfZ/MXA==";
- };
- };
- "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.290.0" = {
- name = "aws-sdk";
- packageName = "aws-sdk";
- version = "2.290.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.290.0.tgz";
- sha512 = "4AiExL06NsjrYqec/GdZP6qsquppFhaJE9hKZNw1c4ApjiGCRucfSlMvaZ6aZw76MG9b2Mi8mboGXOYW8nTGJQ==";
- };
- };
- "aws-sign-0.2.1" = {
- name = "aws-sign";
- packageName = "aws-sign";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.1.tgz";
- sha512 = "cQFl6jK/Lq416OqpT+lb1RIay1wShuQjHF3/kAJbyMvruV8vSpDahaGNkbeupdGRgXR8Ii0O/ZIbTQPdp+l3pA==";
- };
- };
- "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.8.0" = {
- name = "aws4";
- packageName = "aws4";
- version = "1.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz";
- sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==";
- };
- };
- "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";
- };
- };
- "azure-arm-authorization-2.0.0" = {
- name = "azure-arm-authorization";
- packageName = "azure-arm-authorization";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-authorization/-/azure-arm-authorization-2.0.0.tgz";
- sha1 = "56b558ba43b9cb5657662251dabe3cb34c16c56f";
- };
- };
- "azure-arm-batch-3.1.1" = {
- name = "azure-arm-batch";
- packageName = "azure-arm-batch";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-batch/-/azure-arm-batch-3.1.1.tgz";
- sha512 = "qRv/QB8vTwnO5I8tjdEnrBuRjh4SCD2rdQaHPQatkYmx7Of3gz57JfX4FrNNZXqKIyCoTlWoNWhM/jzCAL3TyA==";
- };
- };
- "azure-arm-cdn-4.0.1" = {
- name = "azure-arm-cdn";
- packageName = "azure-arm-cdn";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-cdn/-/azure-arm-cdn-4.0.1.tgz";
- sha512 = "mVX5cG/XxULhCGenPYOrq6lKFeUnuGB8rur+dQgxpmP/AtBVKWSfdl1zm7i3WrEQHelyjiAHUohKxAkWFO2RQw==";
- };
- };
- "azure-arm-commerce-2.0.0" = {
- name = "azure-arm-commerce";
- packageName = "azure-arm-commerce";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-commerce/-/azure-arm-commerce-2.0.0.tgz";
- sha512 = "scKBmo3nZXbzXtox+SoEYf8Ij+c2y1r47Ga0MVxm1kUTs1UT8KaAiAlC269KKDNYpuXXuV7+CKUs52VCiM06JQ==";
- };
- };
- "azure-arm-compute-3.0.0-preview" = {
- name = "azure-arm-compute";
- packageName = "azure-arm-compute";
- version = "3.0.0-preview";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-compute/-/azure-arm-compute-3.0.0-preview.tgz";
- sha1 = "f5f07792afcdff29ce0b7e16705342b6986f571b";
- };
- };
- "azure-arm-datalake-analytics-1.0.2-preview" = {
- name = "azure-arm-datalake-analytics";
- packageName = "azure-arm-datalake-analytics";
- version = "1.0.2-preview";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-datalake-analytics/-/azure-arm-datalake-analytics-1.0.2-preview.tgz";
- sha1 = "b34f868e98a972ec80e4408d209dc06c000dfb63";
- };
- };
- "azure-arm-datalake-store-1.0.2-preview" = {
- name = "azure-arm-datalake-store";
- packageName = "azure-arm-datalake-store";
- version = "1.0.2-preview";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-datalake-store/-/azure-arm-datalake-store-1.0.2-preview.tgz";
- sha1 = "c8b7c113016c92703a84dc28d29ba518e8c64763";
- };
- };
- "azure-arm-devtestlabs-2.1.1" = {
- name = "azure-arm-devtestlabs";
- packageName = "azure-arm-devtestlabs";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-devtestlabs/-/azure-arm-devtestlabs-2.1.1.tgz";
- sha512 = "S5dCYTMrqL+BJc699fIQtXwLFuv5m8jTDqPdXTFpn/CSkyBcOyJwuZH2zPExQjGNZTyjIR6GWi8oeg/IpYLBWw==";
- };
- };
- "azure-arm-dns-2.1.0" = {
- name = "azure-arm-dns";
- packageName = "azure-arm-dns";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-dns/-/azure-arm-dns-2.1.0.tgz";
- sha512 = "/y0tOM9qNijPYqB381JFYiEyfF+L5B8z+F8JS1OMV1JXIb45vZKXeoe82ZNMZ5g38Vme3uAblxpvp5OtIcvW6Q==";
- };
- };
- "azure-arm-hdinsight-0.2.2" = {
- name = "azure-arm-hdinsight";
- packageName = "azure-arm-hdinsight";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-hdinsight/-/azure-arm-hdinsight-0.2.2.tgz";
- sha1 = "3daeade6d26f6b115d8598320541ad2dcaa9516d";
- };
- };
- "azure-arm-hdinsight-jobs-0.1.0" = {
- name = "azure-arm-hdinsight-jobs";
- packageName = "azure-arm-hdinsight-jobs";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-hdinsight-jobs/-/azure-arm-hdinsight-jobs-0.1.0.tgz";
- sha1 = "252938f18d4341adf9942261656e791490c3c220";
- };
- };
- "azure-arm-insights-0.11.3" = {
- name = "azure-arm-insights";
- packageName = "azure-arm-insights";
- version = "0.11.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-insights/-/azure-arm-insights-0.11.3.tgz";
- sha1 = "4e38f8d72cd532e8ad3982d26f43f73f8fb2149f";
- };
- };
- "azure-arm-iothub-1.0.1-preview" = {
- name = "azure-arm-iothub";
- packageName = "azure-arm-iothub";
- version = "1.0.1-preview";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-iothub/-/azure-arm-iothub-1.0.1-preview.tgz";
- sha1 = "f63a6dad0355633d9347fb403f417fb195fe3b91";
- };
- };
- "azure-arm-network-5.3.0" = {
- name = "azure-arm-network";
- packageName = "azure-arm-network";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-network/-/azure-arm-network-5.3.0.tgz";
- sha512 = "juitxBWofPBZ+kcmLB8OjW5qPD6+/Ncdq86WjDTIUcH+cyb/GWktdDymv6adbOyz4xZ9/wbThFL7AHgq8cHBig==";
- };
- };
- "azure-arm-powerbiembedded-0.1.1" = {
- name = "azure-arm-powerbiembedded";
- packageName = "azure-arm-powerbiembedded";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-powerbiembedded/-/azure-arm-powerbiembedded-0.1.1.tgz";
- sha1 = "7103c94e06b3ddf628293f60e02fd0ba8f9c3ca9";
- };
- };
- "azure-arm-rediscache-0.2.3" = {
- name = "azure-arm-rediscache";
- packageName = "azure-arm-rediscache";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-rediscache/-/azure-arm-rediscache-0.2.3.tgz";
- sha1 = "b6898abe8b4c3e1b2ec5be82689ef212bc2b1a06";
- };
- };
- "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-servermanagement-1.1.0" = {
- name = "azure-arm-servermanagement";
- packageName = "azure-arm-servermanagement";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-servermanagement/-/azure-arm-servermanagement-1.1.0.tgz";
- sha512 = "GlPXPD5Up2U6Qxv40ScC/+7WRcVVYQf7EHUSomD385o/MuyJAjM6CxBS8fPKwkZR5MRSd60p6kBo5AQ+bwfpeA==";
- };
- };
- "azure-arm-storage-5.0.0" = {
- name = "azure-arm-storage";
- packageName = "azure-arm-storage";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-5.0.0.tgz";
- sha512 = "sqMjRAbzj9ARP4nEof71cupuHq/ajx+p9uNI9znkwHAP7CYtWEyTzHP0jrfgajccrgcH4sjCQPWt4K4s66NxiQ==";
- };
- };
- "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-website-0.11.5" = {
- name = "azure-arm-website";
- packageName = "azure-arm-website";
- version = "0.11.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-website/-/azure-arm-website-0.11.5.tgz";
- sha1 = "51942423e1238ec19e551926353a8e9f73bc534a";
- };
- };
- "azure-asm-compute-0.18.0" = {
- name = "azure-asm-compute";
- packageName = "azure-asm-compute";
- version = "0.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-compute/-/azure-asm-compute-0.18.0.tgz";
- sha1 = "109c31e17c697f4a00a01533fb230bf3ae448685";
- };
- };
- "azure-asm-hdinsight-0.10.2" = {
- name = "azure-asm-hdinsight";
- packageName = "azure-asm-hdinsight";
- version = "0.10.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-hdinsight/-/azure-asm-hdinsight-0.10.2.tgz";
- sha1 = "2d11cdaaa073fc38f31c718991d5923fb7259fa0";
- };
- };
- "azure-asm-mgmt-0.10.1" = {
- name = "azure-asm-mgmt";
- packageName = "azure-asm-mgmt";
- version = "0.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-mgmt/-/azure-asm-mgmt-0.10.1.tgz";
- sha1 = "d0a44b47ccabf338b19d53271675733cfa2d1751";
- };
- };
- "azure-asm-network-0.13.0" = {
- name = "azure-asm-network";
- packageName = "azure-asm-network";
- version = "0.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-network/-/azure-asm-network-0.13.0.tgz";
- sha1 = "8d5d46b66b16c36dfc067f7c7c87bd2f42049c54";
- };
- };
- "azure-asm-sb-0.10.1" = {
- name = "azure-asm-sb";
- packageName = "azure-asm-sb";
- version = "0.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-sb/-/azure-asm-sb-0.10.1.tgz";
- sha1 = "92487b24166041119714f66760ec1f36e8dc7222";
- };
- };
- "azure-asm-sql-0.10.1" = {
- name = "azure-asm-sql";
- packageName = "azure-asm-sql";
- version = "0.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-sql/-/azure-asm-sql-0.10.1.tgz";
- sha1 = "47728df19a6d4f1cc935235c69fa9cf048cc8f42";
- };
- };
- "azure-asm-storage-0.12.0" = {
- name = "azure-asm-storage";
- packageName = "azure-asm-storage";
- version = "0.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-storage/-/azure-asm-storage-0.12.0.tgz";
- sha1 = "f5edf48d41d18a80eb14af6a72c1d6924214fdd3";
- };
- };
- "azure-asm-subscription-0.10.1" = {
- name = "azure-asm-subscription";
- packageName = "azure-asm-subscription";
- version = "0.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-subscription/-/azure-asm-subscription-0.10.1.tgz";
- 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.7" = {
- name = "azure-asm-website";
- packageName = "azure-asm-website";
- version = "0.10.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-website/-/azure-asm-website-0.10.7.tgz";
- sha512 = "h3OmXKKOLd4sbf4khrxqGTjspjqpKduKN9EWgEoIeNhMY+PVKrVEIMr3ZyKzmmy/8123MD+ip67wMqUKSTLtUA==";
- };
- };
- "azure-batch-3.2.2" = {
- name = "azure-batch";
- packageName = "azure-batch";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-batch/-/azure-batch-3.2.2.tgz";
- sha512 = "IM5nUITXMgTFTF4avRxsz/oLcMXLSZEzpukulRRpO1emXBI4EgSIr0++hUo+AZ94MINE2C4DXgCDiQ9P0suYXw==";
- };
- };
- "azure-common-0.9.20" = {
- name = "azure-common";
- packageName = "azure-common";
- version = "0.9.20";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.20.tgz";
- sha512 = "0gxFOLV12poak+raLYAU4z9JAZEafYSo9LrS+7WlToOawb2Ye2BfHYAGfLBkQrAZbo/NHpJ28/IaiUZVqiZ4fQ==";
- };
- };
- "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.2.0" = {
- name = "azure-graph";
- packageName = "azure-graph";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-graph/-/azure-graph-2.2.0.tgz";
- sha512 = "ab0LlM5Q3pcKm+V6F6yx2ShzGOTYMcmJvLdL3PQsC9hF+hrYsBdkTCdNZdlPBgrSB8jp5vzhmK83qHGRs14hHw==";
- };
- };
- "azure-keyvault-1.0.0" = {
- name = "azure-keyvault";
- packageName = "azure-keyvault";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-keyvault/-/azure-keyvault-1.0.0.tgz";
- sha1 = "d630f98032aadbb5e72fb04d2da49b368e441c9e";
- };
- };
- "azure-monitoring-0.10.6" = {
- name = "azure-monitoring";
- packageName = "azure-monitoring";
- version = "0.10.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-monitoring/-/azure-monitoring-0.10.6.tgz";
- sha512 = "6HNA8VuC5qYvQMjcQt2/zlB7oyAJ7n6KGIYGstS6KS9Orux0peqxlrGPDeQRa4jDNq6ili83KiGc7RhWcgsE4Q==";
- };
- };
- "azure-servicefabric-0.1.5" = {
- name = "azure-servicefabric";
- packageName = "azure-servicefabric";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-servicefabric/-/azure-servicefabric-0.1.5.tgz";
- sha1 = "bdc4b378292490ce77e788ee189f291ce5ae25a6";
- };
- };
- "azure-storage-2.10.1" = {
- name = "azure-storage";
- packageName = "azure-storage";
- version = "2.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.10.1.tgz";
- sha512 = "rnFo1uMIPtilusRCpK91tfY3P4Q7qRsDNwriXdp+OeTIGkGt0cTxL4mhqYfNPYPK+WBQmBdGWhOk+iROM05dcw==";
- };
- };
- "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-core-6.26.3" = {
- name = "babel-core";
- packageName = "babel-core";
- version = "6.26.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz";
- sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==";
- };
- };
- "babel-generator-6.26.1" = {
- name = "babel-generator";
- packageName = "babel-generator";
- version = "6.26.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz";
- sha512 = "HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==";
- };
- };
- "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-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-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";
- };
- };
- "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-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";
- };
- };
- "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 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==";
- };
- };
- "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 = "Vg0C9s/REX6/WIXN37UKpv5ZhRi6A4pjHlpkE34+8/a6c2W1Q692n3hmc+SZG5lKRnaExLUbxtJ1SVT+KaCQ/A==";
- };
- };
- "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.4.1" = {
- name = "backoff";
- packageName = "backoff";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/backoff/-/backoff-2.4.1.tgz";
- sha1 = "2f68c50e0dd789dbefe24200a62efb04d2456d68";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
- };
- };
- "base62-0.1.1" = {
- name = "base62";
- packageName = "base62";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/base62/-/base62-0.1.1.tgz";
- sha1 = "7b4174c2f94449753b11c2651c083da841a7b084";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "base64-js-1.2.3" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.3.tgz";
- sha512 = "MsAhsUW1GxCdgYSO6tAfZrNapmUKk7mWx/k5mFY/A1gBtkaCaNapTg+FExCw1r9yeaZhqx/xPg43xgTFH6KL5w==";
- };
- };
- "base64-js-1.3.0" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz";
- sha512 = "ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "batch-0.5.3" = {
- name = "batch";
- packageName = "batch";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz";
- sha1 = "3f3414f380321743bfc1042f9a83ff1d5824d464";
- };
- };
- "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";
- };
- };
- "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 = "pRyDdo73C8Nim3jwFJ7DWe3TZCgwDfWZ6nHS5LSdU77kWbj1frruvdndP02AOavtD4y8v6Fp2dolbHgp4SDrfg==";
- };
- };
- "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";
- };
- };
- "bcrypt-pbkdf-1.0.2" = {
- name = "bcrypt-pbkdf";
- packageName = "bcrypt-pbkdf";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
- sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
- };
- };
- "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 = "N+VOSP5MkoX+xgnp6Y056iCY5TmCZg9rgPNPQe0bIiXchxYFP4vs/Tf0dTdQ+qQhP7HM2gvfFq+sUVjQsGy5Zw==";
- };
- };
- "bencode-2.0.0" = {
- name = "bencode";
- packageName = "bencode";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bencode/-/bencode-2.0.0.tgz";
- sha512 = "wr2HwwrUpfB5c68zmAudOltC7rZ1G0+lQOcnuEcfIM3AWAVnB3rHI3nlgd/2CWTfQ3w3zagKt89zni/M+VLZ8g==";
- };
- };
- "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.34" = {
- name = "big-integer";
- packageName = "big-integer";
- version = "1.6.34";
- src = fetchurl {
- url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.34.tgz";
- sha512 = "+w6B0Uo0ZvTSzDkXjoBCTNK0oe+aVL+yPi7kwGZm8hd8+Nj1AFPoxoq1Bl/mEu/G/ivOkUc1LRqVR0XeWFUzuA==";
- };
- };
- "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 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==";
- };
- };
- "bigspinner-3.1.0" = {
- name = "bigspinner";
- packageName = "bigspinner";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bigspinner/-/bigspinner-3.1.0.tgz";
- sha1 = "dd3a862b2fedf66fee8471320069428d0d84427a";
- };
- };
- "bin-version-2.0.0" = {
- name = "bin-version";
- packageName = "bin-version";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bin-version/-/bin-version-2.0.0.tgz";
- sha1 = "2cc95d83b522bdef2e99978e76aeb5491c8114ff";
- };
- };
- "bin-version-check-3.0.0" = {
- name = "bin-version-check";
- packageName = "bin-version-check";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bin-version-check/-/bin-version-check-3.0.0.tgz";
- sha1 = "e24ebfa6b63cb0387c5fc174f86e5cc812ca7cc9";
- };
- };
- "binary-0.3.0" = {
- name = "binary";
- packageName = "binary";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz";
- sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79";
- };
- };
- "binary-extensions-1.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";
- };
- };
- "binary-search-1.3.4" = {
- name = "binary-search";
- packageName = "binary-search";
- version = "1.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/binary-search/-/binary-search-1.3.4.tgz";
- sha512 = "dPxU/vZLnH0tEVjVPgi015oSwqu6oLfCeHywuFRhBE0yM0mYocvleTl8qsdM1YFhRzTRhM1+VzS8XLDVrHPopg==";
- };
- };
- "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 = "DpLh5EzMR2kzvX1KIlVC0VkC3iZtHKTgdtZ0a3pglBZdaQFjt5S9g9xd1lE+YvXyfd6mtCeRnrUfOLYiTMlNSw==";
- };
- };
- "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-2.0.0" = {
- name = "bitfield";
- packageName = "bitfield";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bitfield/-/bitfield-2.0.0.tgz";
- sha512 = "4xM4DYejOHQ/qWBfeqBXNA4mJ12PwcOibFYnH1kYh5U9BHciCqEJBqGNVnMJXUhm8mflujNRLSv7IiVQxovgjw==";
- };
- };
- "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-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 = "fvb6M58Ceiv/S94nu6zeaiMoJvUYOeIqRbgaClm+kJTzCAqJPtAR/31pXNYB5iEReOoKqQB5zY33gY0W6ZRWQQ==";
- };
- };
- "bittorrent-dht-8.4.0" = {
- name = "bittorrent-dht";
- packageName = "bittorrent-dht";
- version = "8.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-8.4.0.tgz";
- sha512 = "FRe/+MYBePev7Yb+BXSclkVuDxb/w+gUbao6nVHYQRaKO7aXE+ARRlL3phqm6Rdhw5CRVoLMbLd49nxmCuUhUQ==";
- };
- };
- "bittorrent-peerid-1.3.0" = {
- name = "bittorrent-peerid";
- packageName = "bittorrent-peerid";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.0.tgz";
- sha512 = "SYd5H3RbN1ex+TrWAKXkEkASFWxAR7Tk6iLt9tfAT9ehBvZb/Y3AQDVRVJynlrixcWpnmsLYKI7tkRWgp7ORoQ==";
- };
- };
- "bittorrent-protocol-3.0.1" = {
- name = "bittorrent-protocol";
- packageName = "bittorrent-protocol";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-3.0.1.tgz";
- sha512 = "hnvOzAu9u+2H0OLLL5byoFdz6oz5f3bx5f7R+ItUohTHMq9TgUhEJfcjo7xWtQHSKOVciYWwYTJ4EjczF5RX2A==";
- };
- };
- "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";
- };
- };
- "bittorrent-tracker-9.10.1" = {
- name = "bittorrent-tracker";
- packageName = "bittorrent-tracker";
- version = "9.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.10.1.tgz";
- sha512 = "n5zTL/g6Wt0rb2EnkiyiaGYhth7I/N0/xMqGUpvGX/7g1scDGBVPhJnXR8lfp3/OMj681fv40o4q/otECMtZSA==";
- };
- };
- "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" = {
- name = "bl";
- packageName = "bl";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz";
- sha1 = "fdca871a99713aa00d19e3bbba41c44787a65398";
- };
- };
- "bl-1.2.2" = {
- name = "bl";
- packageName = "bl";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz";
- sha512 = "e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==";
- };
- };
- "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 = "oFIHvXhlz/DUgF0kq5B1CqxIDjIJwh9iDeUUGQUcvgiGz7Wdw03McEO7CfLBy7QKGdsydcMCgO9jFNBAFCtFcA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "blob-to-buffer-1.2.8" = {
- name = "blob-to-buffer";
- packageName = "blob-to-buffer";
- version = "1.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/blob-to-buffer/-/blob-to-buffer-1.2.8.tgz";
- sha512 = "re0AIxakF504MgeMtIyJkVcZ8T5aUxtp/QmTMlmjyb3P44E1BEv5x3LATBGApWAJATyXHtkXRD+gWTmeyYLiQA==";
- };
- };
- "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";
- };
- };
- "block-stream2-1.1.0" = {
- name = "block-stream2";
- packageName = "block-stream2";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/block-stream2/-/block-stream2-1.1.0.tgz";
- sha1 = "c738e3a91ba977ebb5e1fef431e13ca11d8639e2";
- };
- };
- "bluebird-2.9.34" = {
- name = "bluebird";
- packageName = "bluebird";
- version = "2.9.34";
- src = fetchurl {
- url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.34.tgz";
- sha1 = "2f7b4ec80216328a9fddebdf69c8d4942feff7d8";
- };
- };
- "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";
- };
- };
- "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 = "MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==";
- };
- };
- "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 = "EkNUOi7tpV68TqjpiUz9D9NcT8um2+qtgntmMbi5UKssVX2m/2PLqotcric0RE63pB3HPN/fjf3cKHN2ufGSUQ==";
- };
- };
- "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 = "ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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.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";
- };
- };
- "body-parser-1.18.3" = {
- name = "body-parser";
- packageName = "body-parser";
- version = "1.18.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz";
- sha1 = "5b292198ffdd553b3a0f20ded0592b956955c8b4";
- };
- };
- "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" = {
- 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 = "Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "bower-1.8.4" = {
- name = "bower";
- packageName = "bower";
- version = "1.8.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
- sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
- };
- };
- "bower-endpoint-parser-0.2.1" = {
- name = "bower-endpoint-parser";
- packageName = "bower-endpoint-parser";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bower-endpoint-parser/-/bower-endpoint-parser-0.2.1.tgz";
- sha1 = "8c4010a2900cdab07ea5d38f0bd03e9bbccef90f";
- };
- };
- "bower-json-0.6.0" = {
- name = "bower-json";
- packageName = "bower-json";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bower-json/-/bower-json-0.6.0.tgz";
- sha1 = "326579b23c33e4ea828e4763c55cd81fd7650329";
- };
- };
- "bower-logger-0.2.1" = {
- name = "bower-logger";
- packageName = "bower-logger";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bower-logger/-/bower-logger-0.2.1.tgz";
- sha1 = "0c1817c48063a88d96cc3d516c55e57fff5d9ecb";
- };
- };
- "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 = "TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==";
- };
- };
- "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";
- };
- };
- "bplist-creator-0.0.7" = {
- name = "bplist-creator";
- packageName = "bplist-creator";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz";
- sha1 = "37df1536092824b87c42f957b01344117372ae45";
- };
- };
- "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";
- };
- };
- "brace-expansion-1.1.11" = {
- name = "brace-expansion";
- packageName = "brace-expansion";
- version = "1.1.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
- sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "braces-2.3.2" = {
- name = "braces";
- packageName = "braces";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz";
- sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==";
- };
- };
- "broadway-0.3.6" = {
- name = "broadway";
- packageName = "broadway";
- version = "0.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/broadway/-/broadway-0.3.6.tgz";
- sha1 = "7dbef068b954b7907925fd544963b578a902ba7a";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "browser-pack-6.1.0" = {
- name = "browser-pack";
- packageName = "browser-pack";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz";
- sha512 = "erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==";
- };
- };
- "browser-resolve-1.11.3" = {
- name = "browser-resolve";
- packageName = "browser-resolve";
- version = "1.11.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz";
- sha512 = "exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==";
- };
- };
- "browser-stdout-1.3.1" = {
- name = "browser-stdout";
- packageName = "browser-stdout";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz";
- sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==";
- };
- };
- "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-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-aes-1.2.0" = {
- name = "browserify-aes";
- packageName = "browserify-aes";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz";
- sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==";
- };
- };
- "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.1" = {
- name = "browserify-cipher";
- packageName = "browserify-cipher";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz";
- sha512 = "sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==";
- };
- };
- "browserify-des-1.0.2" = {
- name = "browserify-des";
- packageName = "browserify-des";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz";
- sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==";
- };
- };
- "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-package-json-1.0.1" = {
- name = "browserify-package-json";
- packageName = "browserify-package-json";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-package-json/-/browserify-package-json-1.0.1.tgz";
- sha1 = "98dde8aa5c561fd6d3fe49bbaa102b74b396fdea";
- };
- };
- "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/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
- sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==";
- };
- };
- "bson-0.1.8" = {
- name = "bson";
- packageName = "bson";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/bson/-/bson-0.1.8.tgz";
- sha1 = "cf34fdcff081a189b589b4b3e5e9309cd6506c81";
- };
- };
- "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-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";
- };
- };
- "buffer-5.2.0" = {
- name = "buffer";
- packageName = "buffer";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer/-/buffer-5.2.0.tgz";
- sha512 = "nUJyfChH7PMJy75eRDCCKtszSEFokUNXC1hNVSe+o+VdcgvDPLs20k3v8UXI8ruRYAJiYtyRea8mYyqPxoHWDw==";
- };
- };
- "buffer-alloc-1.2.0" = {
- name = "buffer-alloc";
- packageName = "buffer-alloc";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz";
- sha512 = "CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==";
- };
- };
- "buffer-alloc-unsafe-1.1.0" = {
- name = "buffer-alloc-unsafe";
- packageName = "buffer-alloc-unsafe";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz";
- sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==";
- };
- };
- "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";
- };
- };
- "buffer-crc32-0.2.1" = {
- name = "buffer-crc32";
- packageName = "buffer-crc32";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.1.tgz";
- sha1 = "be3e5382fc02b6d6324956ac1af98aa98b08534c";
- };
- };
- "buffer-crc32-0.2.13" = {
- name = "buffer-crc32";
- packageName = "buffer-crc32";
- version = "0.2.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz";
- sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242";
- };
- };
- "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";
- };
- };
- "buffer-equal-1.0.0" = {
- name = "buffer-equal";
- packageName = "buffer-equal";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz";
- sha1 = "59616b498304d556abd466966b22eeda3eca5fbe";
- };
- };
- "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";
- };
- };
- "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-fill-1.0.0" = {
- name = "buffer-fill";
- packageName = "buffer-fill";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz";
- sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c";
- };
- };
- "buffer-from-0.1.2" = {
- name = "buffer-from";
- packageName = "buffer-from";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-from/-/buffer-from-0.1.2.tgz";
- sha512 = "RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==";
- };
- };
- "buffer-from-1.1.1" = {
- name = "buffer-from";
- packageName = "buffer-from";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
- sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
- };
- };
- "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 = "4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==";
- };
- };
- "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";
- };
- };
- "bufferutil-4.0.0" = {
- name = "bufferutil";
- packageName = "bufferutil";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.0.tgz";
- sha512 = "jpnqMVLo7sqfUY2W92RC4jjj9TuiOSkjB0k43TxPcrBSntZwXUOl8Krfd3eVEdApuScpSTwYKntm/dXU2T8gnw==";
- };
- };
- "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/buildmail/-/buildmail-2.0.0.tgz";
- sha1 = "f0b7b0a59e9a4a1b5066bbfa051d248f3832eece";
- };
- };
- "buildmail-4.0.1" = {
- name = "buildmail";
- packageName = "buildmail";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buildmail/-/buildmail-4.0.1.tgz";
- sha1 = "877f7738b78729871c9a105e3b837d2be11a7a72";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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.4" = {
- name = "bulk-write-stream";
- packageName = "bulk-write-stream";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/bulk-write-stream/-/bulk-write-stream-1.1.4.tgz";
- sha512 = "GtKwd/4etuk1hNeprXoESBO1RSeRYJMXKf+O0qHmWdUomLT8ysNEfX/4bZFXr3BK6eukpHiEnhY2uMtEHDM2ng==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "byte-size-4.0.3" = {
- name = "byte-size";
- packageName = "byte-size";
- version = "4.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/byte-size/-/byte-size-4.0.3.tgz";
- sha512 = "JGC3EV2bCzJH/ENSh3afyJrH4vwxbHTuO5ljLoI5+2iJOcEpMgP8T782jH9b5qGxf2mSUIp1lfGnfKNrRHpvVg==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "bytes-1.0.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz";
- sha1 = "3569ede8ba34315fab99c3e92cb04c7220de1fa8";
- };
- };
- "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";
- };
- };
- "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/bytewise/-/bytewise-1.1.0.tgz";
- sha1 = "1d13cbff717ae7158094aa881b35d081b387253e";
- };
- };
- "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";
- };
- };
- "cacache-10.0.4" = {
- name = "cacache";
- packageName = "cacache";
- version = "10.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz";
- sha512 = "Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==";
- };
- };
- "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 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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/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";
- };
- };
- "camelcase-keys-4.2.0" = {
- name = "camelcase-keys";
- packageName = "camelcase-keys";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz";
- sha1 = "a2aa5fb1af688758259c32c141426d78923b9b77";
- };
- };
- "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";
- };
- };
- "caw-2.0.1" = {
- name = "caw";
- packageName = "caw";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz";
- sha512 = "Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==";
- };
- };
- "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" = {
- name = "chai";
- packageName = "chai";
- version = "4.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/chai/-/chai-4.1.2.tgz";
- sha1 = "0f64584ba642f0f2ace2806279f4f06ca23ad73c";
- };
- };
- "chai-as-promised-7.1.1" = {
- name = "chai-as-promised";
- packageName = "chai-as-promised";
- version = "7.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-7.1.1.tgz";
- sha512 = "azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA==";
- };
- };
- "chainsaw-0.1.0" = {
- name = "chainsaw";
- packageName = "chainsaw";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz";
- sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98";
- };
- };
- "chalk-0.4.0" = {
- name = "chalk";
- packageName = "chalk";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz";
- sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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.1.0" = {
- name = "chalk";
- packageName = "chalk";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz";
- sha512 = "LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ==";
- };
- };
- "chalk-2.3.1" = {
- name = "chalk";
- packageName = "chalk";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-2.3.1.tgz";
- sha512 = "QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g==";
- };
- };
- "chalk-2.4.0" = {
- name = "chalk";
- packageName = "chalk";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-2.4.0.tgz";
- sha512 = "Wr/w0f4o9LuE7K53cD0qmbAMM+2XNLzR29vFn5hqko4sxGlUsyy363NvmyGIyk5tpe9cjTr9SJYbysEyPkRnFw==";
- };
- };
- "chalk-2.4.1" = {
- name = "chalk";
- packageName = "chalk";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz";
- sha512 = "ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==";
- };
- };
- "change-case-3.0.2" = {
- name = "change-case";
- packageName = "change-case";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/change-case/-/change-case-3.0.2.tgz";
- sha512 = "Mww+SLF6MZ0U6kdg11algyKd5BARbyM4TbFBepwowYSR5ClfQGCGtxNXgykpN0uF/bstWeaGDT4JWaDh8zWAHA==";
- };
- };
- "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";
- };
- };
- "character-parser-2.2.0" = {
- name = "character-parser";
- packageName = "character-parser";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz";
- sha1 = "c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0";
- };
- };
- "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";
- };
- };
- "chardet-0.5.0" = {
- name = "chardet";
- packageName = "chardet";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chardet/-/chardet-0.5.0.tgz";
- sha512 = "9ZTaoBaePSCFvNlNGrsyI8ZVACP2svUtq0DkM7t4K2ClAa96sqOIRjAzDTc8zXzFt1cZR46rRzLTiHFSJ+Qw0g==";
- };
- };
- "check-error-1.0.2" = {
- name = "check-error";
- packageName = "check-error";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz";
- sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82";
- };
- };
- "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";
- };
- };
- "cheerio-0.20.0" = {
- name = "cheerio";
- packageName = "cheerio";
- version = "0.20.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cheerio/-/cheerio-0.20.0.tgz";
- sha1 = "5c710f2bab95653272842ba01c6ea61b3545ec35";
- };
- };
- "cheerio-0.22.0" = {
- name = "cheerio";
- packageName = "cheerio";
- version = "0.22.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz";
- sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e";
- };
- };
- "cheerio-1.0.0-rc.2" = {
- name = "cheerio";
- packageName = "cheerio";
- version = "1.0.0-rc.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.2.tgz";
- sha1 = "4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db";
- };
- };
- "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";
- };
- };
- "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.4" = {
- name = "chokidar";
- packageName = "chokidar";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz";
- sha512 = "z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==";
- };
- };
- "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";
- };
- };
- "chrome-trace-event-1.0.0" = {
- name = "chrome-trace-event";
- packageName = "chrome-trace-event";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz";
- sha512 = "xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==";
- };
- };
- "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";
- };
- };
- "chromecasts-1.9.1" = {
- name = "chromecasts";
- packageName = "chromecasts";
- version = "1.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/chromecasts/-/chromecasts-1.9.1.tgz";
- sha512 = "nsXv7ufgrpC8s5DUm6FJEa2XJ2VvE9FmbTVi6r4zGreTFTTSRSJjvqVEqLUFX/fGo/zbSre3zdoV+Pu9DGLz0A==";
- };
- };
- "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";
- };
- };
- "chunk-store-stream-3.0.0" = {
- name = "chunk-store-stream";
- packageName = "chunk-store-stream";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chunk-store-stream/-/chunk-store-stream-3.0.0.tgz";
- sha512 = "eKmlEJ3qpHvHedRdoJA1sixqKF2iNL9mNPu3eev5wO0zg/YXKqda9rBnCfxsIUzxqFkPwyf7fPWcQuFKUCqARw==";
- };
- };
- "ci-info-1.1.3" = {
- name = "ci-info";
- packageName = "ci-info";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ci-info/-/ci-info-1.1.3.tgz";
- sha512 = "SK/846h/Rcy8q9Z9CAwGBLfCJ6EkjJWdpelWDufQpqVDYq2Wnnv8zlSO6AMQap02jvhVruKKpEtQOufo3pFhLg==";
- };
- };
- "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 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==";
- };
- };
- "circular-append-file-1.0.1" = {
- name = "circular-append-file";
- packageName = "circular-append-file";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/circular-append-file/-/circular-append-file-1.0.1.tgz";
- sha512 = "BUDFvrBTCdeVhg9E05PX4XgMegk6xWB69uGwyuATEg7PMfa9lGU1mzFSK0xWNW2O0i9CAQHN0oIdXI/kI2hPkg==";
- };
- };
- "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 = "UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==";
- };
- };
- "circular-json-0.5.5" = {
- name = "circular-json";
- packageName = "circular-json";
- version = "0.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/circular-json/-/circular-json-0.5.5.tgz";
- sha512 = "13YaR6kiz0kBNmIVM87Io8Hp7bWOo4r61vkEANy8iH9R9bc6avud/1FT0SBpqR1RpIQADOh/Q+yHZDA1iL6ysA==";
- };
- };
- "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 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
- };
- };
- "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.11" = {
- name = "clean-css";
- packageName = "clean-css";
- version = "4.1.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/clean-css/-/clean-css-4.1.11.tgz";
- sha1 = "2ecdf145aba38f54740f26cefd0ff3e03e125d6a";
- };
- };
- "clean-css-4.2.1" = {
- name = "clean-css";
- packageName = "clean-css";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz";
- sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==";
- };
- };
- "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" = {
- name = "cli";
- packageName = "cli";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz";
- sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
- };
- };
- "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-color-0.1.7" = {
- name = "cli-color";
- packageName = "cli-color";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-color/-/cli-color-0.1.7.tgz";
- sha1 = "adc3200fa471cc211b0da7f566b71e98b9d67347";
- };
- };
- "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";
- };
- };
- "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-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";
- };
- };
- "cli-spinners-1.3.1" = {
- name = "cli-spinners";
- packageName = "cli-spinners";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz";
- sha512 = "1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==";
- };
- };
- "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";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-1.1.0.tgz";
- sha512 = "bAtZo0u82gCfaAGfSNxUdTI9mNyza7D8w4CVCcaOsy7sgwDzvx6ekr6cuWJqY3UGzgnQ1+4wgENup5eIhgxEYA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "clipboardy-1.2.3" = {
- name = "clipboardy";
- packageName = "clipboardy";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/clipboardy/-/clipboardy-1.2.3.tgz";
- sha512 = "2WNImOvCRe6r63Gk9pShfkwXsVtKCroMAevIbiae021mS850UkWPbevxsBz3tnvjZIEGvlwaqCPsw+4ulzNgJA==";
- };
- };
- "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" = {
- name = "cliui";
- packageName = "cliui";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz";
- sha1 = "120601537a916d29940f934da3b48d585a39213d";
- };
- };
- "cliui-4.1.0" = {
- name = "cliui";
- packageName = "cliui";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz";
- sha512 = "4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==";
- };
- };
- "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";
- };
- };
- "clivas-0.2.0" = {
- name = "clivas";
- packageName = "clivas";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clivas/-/clivas-0.2.0.tgz";
- sha1 = "b8d19188b3243e390f302410bd0cb1622db82649";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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.4" = {
- name = "clone";
- packageName = "clone";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
- sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
- };
- };
- "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-2.1.2" = {
- name = "clone";
- packageName = "clone";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz";
- sha1 = "1b7f4b9f591f1e8f83670401600345a02887435f";
- };
- };
- "clone-buffer-1.0.0" = {
- name = "clone-buffer";
- packageName = "clone-buffer";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz";
- sha1 = "e3e25b207ac4e701af721e2cb5a16792cac3dc58";
- };
- };
- "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.1" = {
- name = "clone-regexp";
- packageName = "clone-regexp";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz";
- sha512 = "Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==";
- };
- };
- "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/clone-stats/-/clone-stats-0.0.1.tgz";
- sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1";
- };
- };
- "clone-stats-1.0.0" = {
- name = "clone-stats";
- packageName = "clone-stats";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz";
- sha1 = "b3782dff8bb5474e18b9b6bf0fdfe782f8777680";
- };
- };
- "cloneable-readable-1.1.2" = {
- name = "cloneable-readable";
- packageName = "cloneable-readable";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.2.tgz";
- sha512 = "Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg==";
- };
- };
- "closest-to-2.0.0" = {
- name = "closest-to";
- packageName = "closest-to";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/closest-to/-/closest-to-2.0.0.tgz";
- sha1 = "bb2a860edb7769b62d04821748ae50da24dbefaa";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "cmdln-4.1.2" = {
- name = "cmdln";
- packageName = "cmdln";
- version = "4.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cmdln/-/cmdln-4.1.2.tgz";
- sha1 = "4345bb5498f2b096ba85ec8c5579a8cb252f7c70";
- };
- };
- "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";
- };
- };
- "co-from-stream-0.0.0" = {
- name = "co-from-stream";
- packageName = "co-from-stream";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/co-from-stream/-/co-from-stream-0.0.0.tgz";
- sha1 = "1a5cd8ced77263946094fa39f2499a63297bcaf9";
- };
- };
- "co-fs-extra-1.2.1" = {
- name = "co-fs-extra";
- packageName = "co-fs-extra";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/co-fs-extra/-/co-fs-extra-1.2.1.tgz";
- sha1 = "3b6ad77cf2614530f677b1cf62664f5ba756b722";
- };
- };
- "co-read-0.0.1" = {
- name = "co-read";
- packageName = "co-read";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/co-read/-/co-read-0.0.1.tgz";
- sha1 = "f81b3eb8a86675fec51e3d883a7f564e873c9389";
- };
- };
- "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 = "5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ==";
- };
- };
- "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.1" = {
- name = "codecs";
- packageName = "codecs";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/codecs/-/codecs-1.2.1.tgz";
- sha512 = "SPnx+ZHXVJ0qTInRXmnxuyu8PDvSzvop5MXp1BOr/urFQI3yL2n5ewE755skTklF/hKVlWj8cinGxdR2gvLvTA==";
- };
- };
- "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 = "fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==";
- };
- };
- "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";
- };
- };
- "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-3.0.0" = {
- name = "color";
- packageName = "color";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/color/-/color-3.0.0.tgz";
- sha512 = "jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==";
- };
- };
- "color-convert-1.9.2" = {
- name = "color-convert";
- packageName = "color-convert";
- version = "1.9.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz";
- sha512 = "3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==";
- };
- };
- "color-name-1.1.1" = {
- name = "color-name";
- packageName = "color-name";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz";
- sha1 = "4b1415304cf50028ea81643643bd82ea05803689";
- };
- };
- "color-string-1.5.3" = {
- name = "color-string";
- packageName = "color-string";
- version = "1.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz";
- sha512 = "dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==";
- };
- };
- "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 = "qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==";
- };
- };
- "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";
- };
- };
- "colors-1.3.0" = {
- name = "colors";
- packageName = "colors";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.3.0.tgz";
- sha512 = "EDpX3a7wHMWFA7PUHWPHNWqOxIIRSJetuwl0AS5Oi/5FMV8kWm69RTlgm00GKjBO1xFHMtBbL49yRtMMdticBw==";
- };
- };
- "colors-1.3.1" = {
- name = "colors";
- packageName = "colors";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.3.1.tgz";
- sha512 = "jg/vxRmv430jixZrC+La5kMbUWqIg32/JsYNZb94+JEmzceYbWKTsv1OuTp+7EaqiaWRR2tPcykibwCRgclIsw==";
- };
- };
- "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";
- version = "1.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz";
- 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.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.6" = {
- name = "combined-stream";
- packageName = "combined-stream";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz";
- sha1 = "723e7df6e801ac5613113a7e445a9b69cb632818";
- };
- };
- "command-exists-1.2.7" = {
- name = "command-exists";
- packageName = "command-exists";
- version = "1.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/command-exists/-/command-exists-1.2.7.tgz";
- sha512 = "doWDvhXCcW5LK0cIUWrOQ8oMFXJv3lEQCkJpGVjM8v9SV0uhqYXB943538tEA2CiaWqSyuYUGAm5ezDwEx9xlw==";
- };
- };
- "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";
- };
- };
- "commander-1.0.4" = {
- name = "commander";
- packageName = "commander";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.0.4.tgz";
- sha1 = "5edeb1aee23c4fb541a6b70d692abef19669a2d3";
- };
- };
- "commander-1.1.1" = {
- name = "commander";
- packageName = "commander";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz";
- sha1 = "50d1651868ae60eccff0a2d9f34595376bc6b041";
- };
- };
- "commander-1.3.1" = {
- name = "commander";
- packageName = "commander";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.3.1.tgz";
- sha1 = "02443e02db96f4b32b674225451abb6e9510000e";
- };
- };
- "commander-1.3.2" = {
- name = "commander";
- packageName = "commander";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.3.2.tgz";
- sha1 = "8a8f30ec670a6fdd64af52f1914b907d79ead5b5";
- };
- };
- "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";
- };
- };
- "commander-2.1.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz";
- sha1 = "d121bbae860d9992a3d517ba96f56588e47c6781";
- };
- };
- "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 = "b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==";
- };
- };
- "commander-2.13.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz";
- sha512 = "MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==";
- };
- };
- "commander-2.14.1" = {
- name = "commander";
- packageName = "commander";
- version = "2.14.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz";
- sha512 = "+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==";
- };
- };
- "commander-2.15.1" = {
- name = "commander";
- packageName = "commander";
- version = "2.15.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz";
- sha512 = "VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==";
- };
- };
- "commander-2.16.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.16.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.16.0.tgz";
- sha512 = "sVXqklSaotK9at437sFlFpyOcJonxe0yST/AG9DkQKUdIE6IqGIMv4SfAQSKaJbSdVEJYItASCrBiVQHq1HQew==";
- };
- };
- "commander-2.17.1" = {
- name = "commander";
- packageName = "commander";
- version = "2.17.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz";
- sha512 = "wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==";
- };
- };
- "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";
- };
- };
- "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/commist/-/commist-1.0.0.tgz";
- sha1 = "c0c352501cf6f52e9124e3ef89c9806e2022ebef";
- };
- };
- "common-tags-1.8.0" = {
- name = "common-tags";
- packageName = "common-tags";
- version = "1.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz";
- sha512 = "6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==";
- };
- };
- "commondir-1.0.1" = {
- name = "commondir";
- packageName = "commondir";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz";
- sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b";
- };
- };
- "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.14" = {
- name = "compressible";
- packageName = "compressible";
- version = "2.0.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/compressible/-/compressible-2.0.14.tgz";
- sha1 = "326c5f507fbb055f54116782b969a81b67a29da7";
- };
- };
- "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.3" = {
- name = "compression";
- packageName = "compression";
- version = "1.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/compression/-/compression-1.7.3.tgz";
- sha512 = "HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==";
- };
- };
- "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.2" = {
- name = "concat-stream";
- packageName = "concat-stream";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
- sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==";
- };
- };
- "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 = "bzlVWS2THbMetHqXKB8ypsXN4DQ/1qopGwNJi1eYbpwesJcd86FBjFciCQX/YwAhp9bM7NVnPFqZ5LpV7gP0Dg==";
- };
- };
- "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.2" = {
- name = "configstore";
- packageName = "configstore";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz";
- sha512 = "vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==";
- };
- };
- "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.6" = {
- name = "connect";
- packageName = "connect";
- version = "3.6.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz";
- sha1 = "09eff6c55af7236e137135a72574858b6786f524";
- };
- };
- "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.1" = {
- name = "connect-multiparty";
- packageName = "connect-multiparty";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect-multiparty/-/connect-multiparty-2.1.1.tgz";
- sha1 = "6ee8212fdb2204d3f135f8c12e3afa495d181fd7";
- };
- };
- "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";
- };
- };
- "consolidate-0.14.5" = {
- name = "consolidate";
- packageName = "consolidate";
- version = "0.14.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/consolidate/-/consolidate-0.14.5.tgz";
- sha1 = "5a25047bc76f73072667c8cb52c989888f494c63";
- };
- };
- "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";
- };
- };
- "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.2" = {
- name = "constantinople";
- packageName = "constantinople";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/constantinople/-/constantinople-3.1.2.tgz";
- sha512 = "yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw==";
- };
- };
- "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 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==";
- };
- };
- "content-type-git+https://github.com/wikimedia/content-type#master" = {
- name = "content-type";
- packageName = "content-type";
- version = "1.0.1";
- src = fetchgit {
- url = "https://github.com/wikimedia/content-type";
- 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";
- };
- };
- "conventional-changelog-angular-1.6.6" = {
- name = "conventional-changelog-angular";
- packageName = "conventional-changelog-angular";
- version = "1.6.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz";
- sha512 = "suQnFSqCxRwyBxY68pYTsFkG0taIdinHLNEAX5ivtw8bCRnIgnpvcHmlR/yjUyZIrNPYAoXlY1WiEKWgSE4BNg==";
- };
- };
- "conventional-changelog-core-2.0.11" = {
- name = "conventional-changelog-core";
- packageName = "conventional-changelog-core";
- version = "2.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-2.0.11.tgz";
- sha512 = "HvTE6RlqeEZ/NFPtQeFLsIDOLrGP3bXYr7lFLMhCVsbduF1MXIe8OODkwMFyo1i9ku9NWBwVnVn0jDmIFXjDRg==";
- };
- };
- "conventional-changelog-preset-loader-1.1.8" = {
- name = "conventional-changelog-preset-loader";
- packageName = "conventional-changelog-preset-loader";
- version = "1.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-1.1.8.tgz";
- sha512 = "MkksM4G4YdrMlT2MbTsV2F6LXu/hZR0Tc/yenRrDIKRwBl/SP7ER4ZDlglqJsCzLJi4UonBc52Bkm5hzrOVCcw==";
- };
- };
- "conventional-changelog-writer-3.0.9" = {
- name = "conventional-changelog-writer";
- packageName = "conventional-changelog-writer";
- version = "3.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-3.0.9.tgz";
- sha512 = "n9KbsxlJxRQsUnK6wIBRnARacvNnN4C/nxnxCkH+B/R1JS2Fa+DiP1dU4I59mEDEjgnFaN2+9wr1P1s7GYB5/Q==";
- };
- };
- "conventional-commits-filter-1.1.6" = {
- name = "conventional-commits-filter";
- packageName = "conventional-commits-filter";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-1.1.6.tgz";
- sha512 = "KcDgtCRKJCQhyk6VLT7zR+ZOyCnerfemE/CsR3iQpzRRFbLEs0Y6rwk3mpDvtOh04X223z+1xyJ582Stfct/0Q==";
- };
- };
- "conventional-commits-parser-2.1.7" = {
- name = "conventional-commits-parser";
- packageName = "conventional-commits-parser";
- version = "2.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-2.1.7.tgz";
- sha512 = "BoMaddIEJ6B4QVMSDu9IkVImlGOSGA1I2BQyOZHeLQ6qVOJLcLKn97+fL6dGbzWEiqDzfH4OkcveULmeq2MHFQ==";
- };
- };
- "conventional-recommended-bump-2.0.9" = {
- name = "conventional-recommended-bump";
- packageName = "conventional-recommended-bump";
- version = "2.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-2.0.9.tgz";
- sha512 = "YE6/o+648qkX3fTNvfBsvPW3tSnbZ6ec3gF0aBahCPgyoVHU2Mw0nUAZ1h1UN65GazpORngrgRC8QCltNYHPpQ==";
- };
- };
- "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 = "Alvs19Vgq07eunykd3Xy2jF0/qSNv2u7KDbAek9H5liV1UMijbqFs5cycZvv5dVsvseT/U4H8/7/w8Koh35C4A==";
- };
- };
- "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.2" = {
- name = "cookiejar";
- packageName = "cookiejar";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz";
- sha512 = "Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==";
- };
- };
- "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-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 = "f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==";
- };
- };
- "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.5" = {
- name = "cordova-common";
- packageName = "cordova-common";
- version = "2.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-common/-/cordova-common-2.2.5.tgz";
- sha1 = "f93cef2ad494cfcbf56c46e3d612aaa9cb5fcc32";
- };
- };
- "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.4" = {
- name = "cordova-js";
- packageName = "cordova-js";
- version = "4.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-js/-/cordova-js-4.2.4.tgz";
- sha512 = "Qy0O3w/gwbIqIJzlyCy60nPwJlF1c74ELpsfDIGXB92/uST5nQSSUDVDP4UOfb/c6OU7yPqxhCWOGROyTYKPDw==";
- };
- };
- "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.1" = {
- name = "cordova-serve";
- packageName = "cordova-serve";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-serve/-/cordova-serve-2.0.1.tgz";
- sha512 = "3Xl1D5eyiQlY5ow6Kn/say0us2TqSw/zgQmyTLxbewTngQZ1CIqxmqD7EFGoCNBrB4HsdPmpiSpFCitybKQN9g==";
- };
- };
- "core-js-2.5.7" = {
- name = "core-js";
- packageName = "core-js";
- version = "2.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz";
- sha512 = "RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==";
- };
- };
- "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.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";
- };
- };
- "cosmiconfig-3.1.0" = {
- name = "cosmiconfig";
- packageName = "cosmiconfig";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-3.1.0.tgz";
- sha512 = "zedsBhLSbPBms+kE7AH4vHg6JsKDz6epSv2/+5XHs8ILHlgDciSJfSWf8sX9aQ52Jb7KI7VswUTsLpR/G0cr2Q==";
- };
- };
- "cosmiconfig-5.0.6" = {
- name = "cosmiconfig";
- packageName = "cosmiconfig";
- version = "5.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.6.tgz";
- sha512 = "6DWfizHriCrFWURP1/qyhsiFvYdlJzbCzmtFWh744+KyWsJo5+kPzUZZaMRSSItoYc0pxFX7gEO7ZC1/gN/7AQ==";
- };
- };
- "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.8.0" = {
- name = "crc";
- packageName = "crc";
- version = "3.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz";
- sha512 = "iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==";
- };
- };
- "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.3" = {
- name = "create-ecdh";
- packageName = "create-ecdh";
- version = "4.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz";
- sha512 = "GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==";
- };
- };
- "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.2.0" = {
- name = "create-hash";
- packageName = "create-hash";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz";
- sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==";
- };
- };
- "create-hmac-1.1.7" = {
- name = "create-hmac";
- packageName = "create-hmac";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz";
- sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==";
- };
- };
- "create-torrent-3.32.1" = {
- name = "create-torrent";
- packageName = "create-torrent";
- version = "3.32.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-torrent/-/create-torrent-3.32.1.tgz";
- sha512 = "8spZUeFyVc+2mGnWBRTuLOhuHmHrmUomFWf7QvxztCEvTpn5SIrvF8F+HKdkzBPM9B7v/2w+f/65jqLWBXSndg==";
- };
- };
- "cron-1.3.0" = {
- name = "cron";
- packageName = "cron";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cron/-/cron-1.3.0.tgz";
- sha512 = "K/SF7JlgMmNjcThWxkKvsHhey2EDB4CeOEWJ9aXWj3fbQJppsvTPIeyLdHfNq5IbbsMUUjRW1nr5dSO95f2E4w==";
- };
- };
- "cross-fetch-2.0.0" = {
- name = "cross-fetch";
- packageName = "cross-fetch";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.0.0.tgz";
- sha512 = "gnx0GnDyW73iDq6DpqceL8i4GGn55PPKDzNwZkopJ3mKPcfJ0BUIXBsnYfJBVw+jFDB+hzIp2ELNRdqoxN6M3w==";
- };
- };
- "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-4.0.2" = {
- name = "cross-spawn";
- packageName = "cross-spawn";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz";
- sha1 = "7b9247621c23adfdd3856004a823cbe397424d41";
- };
- };
- "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-6.0.5" = {
- name = "cross-spawn";
- packageName = "cross-spawn";
- version = "6.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz";
- sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==";
- };
- };
- "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 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==";
- };
- };
- "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-2.2.3" = {
- name = "css";
- packageName = "css";
- version = "2.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/css/-/css-2.2.3.tgz";
- sha512 = "0W171WccAjQGGTKLhw4m2nnl0zPHUlTO/I8td4XzJgIB8Hg3ZZx71qT4G4eX8OVsSiaAKiUMy73E3nsbPlg2DQ==";
- };
- };
- "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.29" = {
- name = "css-tree";
- packageName = "css-tree";
- version = "1.0.0-alpha.29";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz";
- sha512 = "sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==";
- };
- };
- "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 = "XC6xLW/JqIGirnZuUWHXCHRaAjje2b3OIB0Vj5RIJo6mIi/AdJo30quQl5LxUl0gkXDIrTrFGbMlcZjyFplz1A==";
- };
- };
- "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.1" = {
- name = "csso";
- packageName = "csso";
- version = "3.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz";
- sha512 = "vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==";
- };
- };
- "cssom-0.3.4" = {
- name = "cssom";
- packageName = "cssom";
- version = "0.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/cssom/-/cssom-0.3.4.tgz";
- sha512 = "+7prCSORpXNeR4/fUP3rL+TzqtiFfhMvTd7uEqMdgPvLPt4+uzFUeufx5RHjGTACCargg/DiEt/moMQmvnfkog==";
- };
- };
- "cssstyle-0.2.37" = {
- name = "cssstyle";
- packageName = "cssstyle";
- version = "0.2.37";
- src = fetchurl {
- url = "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz";
- sha1 = "541097234cb2513c83ceed3acddc27ff27987d54";
- };
- };
- "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";
- };
- };
- "cucumber-html-reporter-3.0.4" = {
- name = "cucumber-html-reporter";
- packageName = "cucumber-html-reporter";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/cucumber-html-reporter/-/cucumber-html-reporter-3.0.4.tgz";
- sha512 = "uit68jymdI8Z6m+kJ5YnJPeHf5IdYXt2j52l5xLwgpcLBQRhCvr1peV9UODaCN5nLnRN9nqh1qaw4iNp1rTpvQ==";
- };
- };
- "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.3" = {
- name = "cvss";
- packageName = "cvss";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/cvss/-/cvss-1.0.3.tgz";
- sha512 = "1FfNhEFVfeC+fgZpEr6oCOOTXifJicZS+Lq/mmUKI4Om+2O8zYspc/uhw51He+CTM5givI1dqIw5JUqyi1BWtA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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-3.0.2" = {
- name = "dat-dns";
- packageName = "dat-dns";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-dns/-/dat-dns-3.0.2.tgz";
- sha512 = "TqkWQ03NvdLK9Rm9n11UCy59KnIsu82A0lPQYcMG02pYTU4xTxShzDryGO2orvmcT5063olmI1R9vKil0jw0Lw==";
- };
- };
- "dat-doctor-2.0.0" = {
- name = "dat-doctor";
- packageName = "dat-doctor";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-doctor/-/dat-doctor-2.0.0.tgz";
- sha512 = "plNNUnBklePVTE5xsQA8gdYZKveT+2VnZ7Us/zY2kw+JF0mLAK+zVl0jEtl7px3jvEEQD+seVMs42uOg59dmAg==";
- };
- };
- "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 = "PET9PlGt6ejgqU07hbPLx3tP2siDMMFumUe+xwmm4+5W+0cOlpzreCPoMVUBzxWeR4sPdxL+AS53odQTBtzEqA==";
- };
- };
- "dat-ignore-2.1.1" = {
- name = "dat-ignore";
- packageName = "dat-ignore";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.1.1.tgz";
- sha512 = "jRCfWtLh+wtbqJMuge+wZV/2kSL1TKMRWXFgUaT7r0O1OnChKUDG4wqLJo4SjzJjXo7f3V8CVN/u5wYltgSd1Q==";
- };
- };
- "dat-json-1.0.2" = {
- name = "dat-json";
- packageName = "dat-json";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-json/-/dat-json-1.0.2.tgz";
- sha512 = "EZq+VeE/tM7FGygMVZx3hsMVm7zW3qxhuUYCNtLONaZptqXz4laB5cIWHydmeEn6sl3RZatZqpIuWRu4xDYxIg==";
- };
- };
- "dat-link-resolve-2.2.0" = {
- name = "dat-link-resolve";
- packageName = "dat-link-resolve";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-2.2.0.tgz";
- sha512 = "cu6Fwapm34myc5um6jdQBrtDkjx28oVkOVHbaV4YNLdxrRqUm+FlWuIqFk7zaCZDoZg5TMlCG1SF0j3AFbiOYA==";
- };
- };
- "dat-log-1.2.0" = {
- name = "dat-log";
- packageName = "dat-log";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-log/-/dat-log-1.2.0.tgz";
- sha512 = "oK6R74WV8TdhGR9VCLym7D/vlN8lXND5AyhJhrjtm1WNDrg/6Clx1Tk7k3Dt8quy2AmmGO7vbIk7iwFtzTAJfA==";
- };
- };
- "dat-node-3.5.12" = {
- name = "dat-node";
- packageName = "dat-node";
- version = "3.5.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.12.tgz";
- sha512 = "XYxdkeNYk8gM6nb125XrOQKAXLZlICLYZUk7bZAktpQUrSjAQnc9qPY2a/KCvHSbdoJf//PwyB00K0UiBTqawQ==";
- };
- };
- "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 = "CKV7j8kwWNBW2Oacdbf5x0ihxMfPNN8wcKHHmx5UjE4iyaOnfnTwCqTGM5rFoMleXKOGWpB7uCKQa0qpvzmCIA==";
- };
- };
- "dat-secret-storage-4.0.1" = {
- name = "dat-secret-storage";
- packageName = "dat-secret-storage";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-secret-storage/-/dat-secret-storage-4.0.1.tgz";
- sha512 = "BUhemnKpXUhKNl/1DuUwfFUyjzomlNF940uHPsOa3okmYu9z6mrp/EGQsLO3lO0YQomDUqS0G0DmHTse9vTU1A==";
- };
- };
- "dat-storage-1.0.4" = {
- name = "dat-storage";
- packageName = "dat-storage";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-storage/-/dat-storage-1.0.4.tgz";
- sha512 = "THxtCBzrt+AJzhGxXedlxLYeW+AVi5eFLi9Ke9JQ7fTA/j84m1Ci7KPuZ1q44Um/BeIYZ3LO01FWS2MlAOTFRg==";
- };
- };
- "dat-swarm-defaults-1.0.1" = {
- name = "dat-swarm-defaults";
- packageName = "dat-swarm-defaults";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-swarm-defaults/-/dat-swarm-defaults-1.0.1.tgz";
- sha512 = "T2WlO7BVmN9USchefsP8entQiByIlJLGuzHLL9qEqOBkyKB8p0Y7XPWxP8dcL43+SkeoxU5NVe7O0bsi3xL8Jg==";
- };
- };
- "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 = "vKQ9DTQPN1FLYiiEEOQ6IBGFqvjCa5rSK3cWMy/Nespm5d/x3dGFT9UBZnkLxCwua/IXBi2TYnwTEpsOvhC4UQ==";
- };
- };
- "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.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";
- };
- };
- "dateformat-3.0.3" = {
- name = "dateformat";
- packageName = "dateformat";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz";
- sha512 = "jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==";
- };
- };
- "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 = "ZQVKfRVlwRfD150ndzEK8M90ABT+Y/JQKs4Y7U4MXdpuoUkkrr4DwKbVux3YjylA5bUMUj0Nc3pMxPJX6N2QQQ==";
- };
- };
- "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.9" = {
- name = "debug";
- packageName = "debug";
- version = "2.6.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
- sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
- };
- };
- "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 = "OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==";
- };
- };
- "debug-fabulous-1.1.0" = {
- name = "debug-fabulous";
- packageName = "debug-fabulous";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug-fabulous/-/debug-fabulous-1.1.0.tgz";
- sha512 = "GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg==";
- };
- };
- "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";
- };
- };
- "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 = "Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==";
- };
- };
- "decamelize-keys-1.1.0" = {
- name = "decamelize-keys";
- packageName = "decamelize-keys";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz";
- sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9";
- };
- };
- "decimal.js-10.0.1" = {
- name = "decimal.js";
- packageName = "decimal.js";
- version = "10.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.0.1.tgz";
- sha512 = "vklWB5C4Cj423xnaOtsUmAv0/7GqlXIgDv2ZKDyR64OV3OSzGHNx2mk4p/1EKnB5s70k73cIOOEcG9YzF0q4Lw==";
- };
- };
- "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-4.2.0" = {
- name = "decompress";
- packageName = "decompress";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz";
- sha1 = "7aedd85427e5a92dacfe55674a7c505e96d01f9d";
- };
- };
- "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-tar-4.1.1" = {
- name = "decompress-tar";
- packageName = "decompress-tar";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz";
- sha512 = "JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==";
- };
- };
- "decompress-tarbz2-4.1.1" = {
- name = "decompress-tarbz2";
- packageName = "decompress-tarbz2";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz";
- sha512 = "s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==";
- };
- };
- "decompress-targz-4.1.1" = {
- name = "decompress-targz";
- packageName = "decompress-targz";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz";
- sha512 = "4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==";
- };
- };
- "decompress-unzip-4.0.1" = {
- name = "decompress-unzip";
- packageName = "decompress-unzip";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz";
- sha1 = "deaaccdfd14aeaf85578f733ae8210f9b4848f69";
- };
- };
- "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 = "+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==";
- };
- };
- "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-extend-0.6.0" = {
- name = "deep-extend";
- packageName = "deep-extend";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz";
- sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==";
- };
- };
- "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-2.1.0" = {
- name = "deepmerge";
- packageName = "deepmerge";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/deepmerge/-/deepmerge-2.1.0.tgz";
- sha512 = "Q89Z26KAfA3lpPGhbF6XMfYAm3jIV3avViy6KOJ2JLzFbeWHOvPQUu5aSJIWXap3gDZC2y1eF5HXEPI2wGqgvw==";
- };
- };
- "deepmerge-2.1.1" = {
- name = "deepmerge";
- packageName = "deepmerge";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/deepmerge/-/deepmerge-2.1.1.tgz";
- sha512 = "urQxA1smbLZ2cBbXbaYObM1dJ82aJ2H57A1C/Kklfh/ZN1bgH4G/n5KWhdNfOK11W98gqZfyYj7W4frJJRwA2w==";
- };
- };
- "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";
- };
- };
- "define-property-2.0.2" = {
- name = "define-property";
- packageName = "define-property";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz";
- sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==";
- };
- };
- "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-newline-2.1.0" = {
- name = "detect-newline";
- packageName = "detect-newline";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz";
- sha1 = "f41f1c10be4b00e87b5f13da680759f2c5bfd3e2";
- };
- };
- "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 = "H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==";
- };
- };
- "detective-5.1.0" = {
- name = "detective";
- packageName = "detective";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/detective/-/detective-5.1.0.tgz";
- sha512 = "TFHMqfOvxlgrfVzTEkNBSh9SvSNX/HfF4OFI2QFGCyPm02EsyILqnUeb5P6q7JZ3SFNTBL5t2sePRgrN4epUWQ==";
- };
- };
- "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";
- };
- };
- "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.5.0" = {
- name = "diff";
- packageName = "diff";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz";
- sha512 = "A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==";
- };
- };
- "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.3" = {
- name = "diffie-hellman";
- packageName = "diffie-hellman";
- version = "5.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz";
- sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==";
- };
- };
- "difflib-0.2.4" = {
- name = "difflib";
- packageName = "difflib";
- version = "0.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/difflib/-/difflib-0.2.4.tgz";
- sha1 = "b5e30361a6db023176d562892db85940a718f47e";
- };
- };
- "diffy-2.0.0" = {
- name = "diffy";
- packageName = "diffy";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/diffy/-/diffy-2.0.0.tgz";
- sha512 = "T1+MF7chaOtNaBeV59td6lYlci6dCTUraySH8LDltafhd+FLTsYpJJbLVpl6S4ih6kPFMaHSIqQ92bRVvoE+3Q==";
- };
- };
- "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 = "37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==";
- };
- };
- "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.5.1" = {
- name = "discovery-channel";
- packageName = "discovery-channel";
- version = "5.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/discovery-channel/-/discovery-channel-5.5.1.tgz";
- sha512 = "EEmZQFE0PiOsJj7G3KVCwFGbYs4QchUvzA91iHtZ6HfkIqfBEDSTGLygJrUlY1Tr77WDV+qZVrZuNghHxSL/vw==";
- };
- };
- "discovery-swarm-5.1.2" = {
- name = "discovery-swarm";
- packageName = "discovery-swarm";
- version = "5.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-5.1.2.tgz";
- sha512 = "aqNdl4l76PFb301I1hXkHZSakQTOXR0yRbfDtF7XrZKk+9V5gMQBbQ2xPgnQPfDVG0IeErxkQkoWqp4f9EJe5w==";
- };
- };
- "disparity-2.0.0" = {
- name = "disparity";
- packageName = "disparity";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/disparity/-/disparity-2.0.0.tgz";
- sha1 = "57ddacb47324ae5f58d2cc0da886db4ce9eeb718";
- };
- };
- "dispensary-0.21.0" = {
- name = "dispensary";
- packageName = "dispensary";
- version = "0.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dispensary/-/dispensary-0.21.0.tgz";
- sha512 = "p7qK1sLukrOGYVVcea63lN9CSiE8wO61cweOjtG6MnKoeC9uKHRIO1iJuE5izcX0BeimhkqrQwEMrFWC1yOyAw==";
- };
- };
- "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";
- };
- };
- "dlnacasts-0.1.0" = {
- name = "dlnacasts";
- packageName = "dlnacasts";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dlnacasts/-/dlnacasts-0.1.0.tgz";
- sha1 = "f805211dcac74f6bb3a4d5d5541ad783b1b67d22";
- };
- };
- "dnd-page-scroll-0.0.4" = {
- name = "dnd-page-scroll";
- packageName = "dnd-page-scroll";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/dnd-page-scroll/-/dnd-page-scroll-0.0.4.tgz";
- sha512 = "bvjUS5Cylrm1uJJop/dFhEpnYtz2NQFOO0/z6vk0ORtx0AqKvUwPToc4reJk+TnHV9GBxbtZXj7ad5dJT/Dqkg==";
- };
- };
- "dns-discovery-6.1.0" = {
- name = "dns-discovery";
- packageName = "dns-discovery";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-discovery/-/dns-discovery-6.1.0.tgz";
- sha512 = "Kl2tL2zuNR1w6SnsoRaqrOFm7gGP3/i/HzRXtyVBqaOq/5L1D2TUdViUAZ8e/NDbt+jQCJFWoaKCnmDC343usQ==";
- };
- };
- "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 = "0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==";
- };
- };
- "dns-packet-4.2.0" = {
- name = "dns-packet";
- packageName = "dns-packet";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-packet/-/dns-packet-4.2.0.tgz";
- sha512 = "bn1AKpfkFbm0MIioOMHZ5qJzl2uypdBwI4nYNsqvhjsegBhcKJUlCrMPWLx6JEezRjxZmxhtIz/FkBEur2l8Cw==";
- };
- };
- "dns-socket-3.0.0" = {
- name = "dns-socket";
- packageName = "dns-socket";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-socket/-/dns-socket-3.0.0.tgz";
- sha512 = "M0WkByoJ/mTm+HtwBQLsRJPe5uGIC/lYVOp+s6ZzhbZ5iq4GxjFyxYPQhB85dgCLvVb43aJQXHDC9aUgyKGc/Q==";
- };
- };
- "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";
- };
- };
- "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 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==";
- };
- };
- "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.1.0" = {
- name = "dom-storage";
- packageName = "dom-storage";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz";
- sha512 = "g6RpyWXzl0RR6OTElHKBl7nwnK87GUyZMYC7JWsB/IA73vpqK2K6LT39x4VepLxlSsWBFrPVLnsSR5Jyty0+2Q==";
- };
- };
- "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";
- };
- };
- "dom4-2.1.3" = {
- name = "dom4";
- packageName = "dom4";
- version = "2.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dom4/-/dom4-2.1.3.tgz";
- sha512 = "begvh4z5GV0kyxx+YgJZ7sIo/jsELx/v7MQxoLZpOvT5yFo18X8dfgtUmKAwdGuyMeugncylarLHlO4gIK6YNw==";
- };
- };
- "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 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==";
- };
- };
- "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.2" = {
- name = "domhandler";
- packageName = "domhandler";
- version = "2.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz";
- sha512 = "JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==";
- };
- };
- "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 = "ikq8WiDSkICdkElud317F2Sigc6A3EDpWsxWBwIZqOl95km4p/Vc9Rj98id7qKgsjDmExj0AVM7JOd4bb647Xg==";
- };
- };
- "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.7.0" = {
- name = "domutils";
- packageName = "domutils";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz";
- sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==";
- };
- };
- "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";
- };
- };
- "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 = "tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==";
- };
- };
- "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";
- };
- };
- "dotenv-5.0.1" = {
- name = "dotenv";
- packageName = "dotenv";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz";
- sha512 = "4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow==";
- };
- };
- "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";
- };
- };
- "download-5.0.3" = {
- name = "download";
- packageName = "download";
- version = "5.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/download/-/download-5.0.3.tgz";
- sha1 = "63537f977f99266a30eb8a2a2fbd1f20b8000f7a";
- };
- };
- "download-git-repo-1.0.2" = {
- name = "download-git-repo";
- packageName = "download-git-repo";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/download-git-repo/-/download-git-repo-1.0.2.tgz";
- sha512 = "PwAUr0/w74AGB7bukOycXyLnDlt9Lfb3JzsliAWyZCHa/TvbuMYQvH1er2DWXHE4EuI/NjAzRXw+89Waynapgw==";
- };
- };
- "dreamopt-0.6.0" = {
- name = "dreamopt";
- packageName = "dreamopt";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dreamopt/-/dreamopt-0.6.0.tgz";
- sha1 = "d813ccdac8d39d8ad526775514a13dda664d6b4b";
- };
- };
- "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.7" = {
- name = "dtrace-provider";
- packageName = "dtrace-provider";
- version = "0.8.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz";
- sha1 = "dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04";
- };
- };
- "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.6.0" = {
- name = "duplexify";
- packageName = "duplexify";
- version = "3.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz";
- sha512 = "fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==";
- };
- };
- "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.2" = {
- name = "ecc-jsbn";
- packageName = "ecc-jsbn";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
- sha1 = "3a83a904e54353287874c564b7549386849a98c9";
- };
- };
- "ecc-jsbn-0.2.0" = {
- name = "ecc-jsbn";
- packageName = "ecc-jsbn";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.2.0.tgz";
- sha1 = "7c98afab245f6df32290473c0abee2f2d39334c7";
- };
- };
- "ecdsa-sig-formatter-1.0.10" = {
- name = "ecdsa-sig-formatter";
- packageName = "ecdsa-sig-formatter";
- version = "1.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.10.tgz";
- sha1 = "1c595000f04a8897dfb85000892a0f4c33af86c3";
- };
- };
- "ecstatic-3.2.1" = {
- name = "ecstatic";
- packageName = "ecstatic";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ecstatic/-/ecstatic-3.2.1.tgz";
- sha512 = "BAdHx9LOCG1fwxY8MIydUBskl8UUQrYeC3WE14FA1DPlBzqoG1aOgEkypcSpmiiel8RAj8gW1s40RrclfrpGUg==";
- };
- };
- "editions-1.3.4" = {
- name = "editions";
- packageName = "editions";
- version = "1.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/editions/-/editions-1.3.4.tgz";
- sha512 = "gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==";
- };
- };
- "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 = "WkjsUNVCu+ITKDj73QDvi0trvpdDWdkDyHybDGSXPfekLCqwmpD7CP7iPbvBgosNuLcI96XTDwNa75JyFl7tEQ==";
- };
- };
- "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.1" = {
- name = "elliptic";
- packageName = "elliptic";
- version = "6.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz";
- sha512 = "BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==";
- };
- };
- "email-validator-2.0.4" = {
- name = "email-validator";
- packageName = "email-validator";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/email-validator/-/email-validator-2.0.4.tgz";
- sha512 = "gYCwo7kh5S3IDyZPLZf6hSS0MnZT8QmJFqYvbqlDZSbwdZlY6QZWxJ4i/6UhITOJ4XzyI647Bm2MXKCLqnJ4nQ==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "enable-1.3.2" = {
- name = "enable";
- packageName = "enable";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/enable/-/enable-1.3.2.tgz";
- sha1 = "9eba6837d16d0982b59f87d889bf754443d52931";
- };
- };
- "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 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==";
- };
- };
- "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 = "j1DWIcktw4hRwrv6nWx++5nFH2X64x16MAG2P0Lmi5Dvdfi3I+Jhc7JKJIdAmDJa+5aZ/imHV7dWRPy2Cqjh3A==";
- };
- };
- "engine.io-3.2.0" = {
- name = "engine.io";
- packageName = "engine.io";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-3.2.0.tgz";
- sha512 = "mRbgmAtQ4GAlKwuPnnAvXXwdPhEx+jkc0OBCLrXuD/CRvwNK3AxRSnqK4FSqmAMRRHryVJP8TopOvmEaA64fKw==";
- };
- };
- "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 = "AYTgHyeVUPitsseqjoedjhYJapNVoSPShbZ+tEUX9/73jgZ/Z3sUlJf9oYgdEBBdVhupUpUqSxH0kBCXlQnmZg==";
- };
- };
- "engine.io-client-3.2.1" = {
- name = "engine.io-client";
- packageName = "engine.io-client";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz";
- sha512 = "y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==";
- };
- };
- "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 = "dInLFzr80RijZ1rGpx1+56/uFoH7/7InhH3kZt+Ms6hT8tNx3NGW/WNSA/f8As1WkOfkuyb3tnRyuXGxusclMw==";
- };
- };
- "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-4.1.0" = {
- name = "enhanced-resolve";
- packageName = "enhanced-resolve";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz";
- sha512 = "F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==";
- };
- };
- "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";
- };
- };
- "envinfo-3.4.2" = {
- name = "envinfo";
- packageName = "envinfo";
- version = "3.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/envinfo/-/envinfo-3.4.2.tgz";
- sha512 = "yqKl+qfQ849zLua/aRGIs4TzNah6ypvdX6KPmK9LPP54Ea+Hqx2gFzSBmGhka8HvWcmCmffGIshG4INSh0ku6g==";
- };
- };
- "errno-0.1.7" = {
- name = "errno";
- packageName = "errno";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz";
- sha512 = "MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==";
- };
- };
- "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.2" = {
- name = "error-ex";
- packageName = "error-ex";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz";
- sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==";
- };
- };
- "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.12.0" = {
- name = "es-abstract";
- packageName = "es-abstract";
- version = "1.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz";
- sha512 = "C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==";
- };
- };
- "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.45" = {
- name = "es5-ext";
- packageName = "es5-ext";
- version = "0.10.45";
- src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.45.tgz";
- sha512 = "FkfM6Vxxfmztilbxxz5UKSD4ICMf5tSpRFtDNtkAhOxZ0EKtX6qwmXNyH/sFyIbX2P/nU5AMiA9jilWsUGJzCQ==";
- };
- };
- "es5-ext-0.8.2" = {
- name = "es5-ext";
- packageName = "es5-ext";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.8.2.tgz";
- sha1 = "aba8d9e1943a895ac96837a62a39b3f55ecd94ab";
- };
- };
- "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 = "Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==";
- };
- };
- "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 = "/NdNZVJg+uZgtm9eS3O6lrOLYmQag2DjdEXuPaHlZ6RuVqgqaVZfgYCepEIKsLqwdQArOPtC3XzRLqGGfT8KQQ==";
- };
- };
- "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.11.0" = {
- name = "escodegen";
- packageName = "escodegen";
- version = "1.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/escodegen/-/escodegen-1.11.0.tgz";
- sha512 = "IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw==";
- };
- };
- "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";
- };
- };
- "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-5.0.1" = {
- name = "eslint";
- packageName = "eslint";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-5.0.1.tgz";
- sha512 = "D5nG2rErquLUstgUaxJlWB5+gu+U/3VDY0fk/Iuq8y9CUFy/7Y6oF4N2cR1tV8knzQvciIbfqfohd359xTLIKQ==";
- };
- };
- "eslint-5.3.0" = {
- name = "eslint";
- packageName = "eslint";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-5.3.0.tgz";
- sha512 = "N/tCqlMKkyNvAvLu+zI9AqDasnSLt00K+Hu8kdsERliC9jYEc8ck12XtjvOXrBKu8fK6RrBcN9bat6Xk++9jAg==";
- };
- };
- "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-4.0.0" = {
- name = "eslint-scope";
- packageName = "eslint-scope";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz";
- sha512 = "1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==";
- };
- };
- "eslint-utils-1.3.1" = {
- name = "eslint-utils";
- packageName = "eslint-utils";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz";
- sha512 = "Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==";
- };
- };
- "eslint-visitor-keys-1.0.0" = {
- name = "eslint-visitor-keys";
- packageName = "eslint-visitor-keys";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz";
- sha512 = "qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==";
- };
- };
- "espree-3.5.4" = {
- name = "espree";
- packageName = "espree";
- version = "3.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz";
- sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==";
- };
- };
- "espree-4.0.0" = {
- name = "espree";
- packageName = "espree";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-4.0.0.tgz";
- sha512 = "kapdTCt1bjmspxStVKX6huolXVV5ZfyZguY1lcfhVVZstce3bqxH9mcLzNn3/mlgW6wQ732+0fuG9v7h0ZQoKg==";
- };
- };
- "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.1" = {
- name = "esprima";
- packageName = "esprima";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz";
- sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==";
- };
- };
- "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.1" = {
- name = "esquery";
- packageName = "esquery";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz";
- sha512 = "SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==";
- };
- };
- "esrecurse-4.2.1" = {
- name = "esrecurse";
- packageName = "esrecurse";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz";
- sha512 = "64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==";
- };
- };
- "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 = "http://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 = "http://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 = "http://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 = "http://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.1.0" = {
- name = "eventemitter3";
- packageName = "eventemitter3";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz";
- sha512 = "ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA==";
- };
- };
- "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-2.1.0" = {
- name = "events";
- packageName = "events";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/events/-/events-2.1.0.tgz";
- sha512 = "3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg==";
- };
- };
- "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 = "/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==";
- };
- };
- "execa-0.1.1" = {
- name = "execa";
- packageName = "execa";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-0.1.1.tgz";
- sha1 = "b09c2a9309bc0ef0501479472db3180f8d4c3edd";
- };
- };
- "execa-0.10.0" = {
- name = "execa";
- packageName = "execa";
- version = "0.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz";
- sha512 = "7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==";
- };
- };
- "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";
- };
- };
- "executable-4.1.1" = {
- name = "executable";
- packageName = "executable";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz";
- sha512 = "8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==";
- };
- };
- "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 = "h2z5mrROTxce56S+pnvAV890uu7ls7f1kEvVGJbw1OlFH3/mlJ5bkXu0KRyW94v37zzHPiUd55iLn3DA7TjWpw==";
- };
- };
- "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.1" = {
- name = "expand-template";
- packageName = "expand-template";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-template/-/expand-template-1.1.1.tgz";
- sha512 = "cebqLtV8KOZfw0UI8TEFWxtczxxC1jvyUvx6H4fyp1K1FN7A4Q+uggVUlOsI1K8AGU0rwOGqP8nCapdrw8CYQg==";
- };
- };
- "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.16.3" = {
- name = "express";
- packageName = "express";
- version = "4.16.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-4.16.3.tgz";
- sha1 = "6af8a502350db3246ecc4becf6b5a34d22f7ed53";
- };
- };
- "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-request-proxy-2.2.0" = {
- name = "express-request-proxy";
- packageName = "express-request-proxy";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/express-request-proxy/-/express-request-proxy-2.2.0.tgz";
- sha512 = "tObSNa1H5NMltFxg/UAB7tG2PdjkBeQI7fOTUTWyZWHchS7wY9TKqW1RAe3rn/Tq+EwsPTFRYptuLvBK722ipg==";
- };
- };
- "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.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 = "r0nrHTCYtAMrFwZ0kBzZEXa1vtPVrw0dKvGSrKP4dahwBQ1BJpF2/y1Pp4sCD/0kvxV4zZeclyvfmw0B4RMJQA==";
- };
- };
- "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 = "u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==";
- };
- };
- "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.2" = {
- name = "extend";
- packageName = "extend";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
- sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
- };
- };
- "extend-shallow-1.1.4" = {
- name = "extend-shallow";
- packageName = "extend-shallow";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz";
- sha1 = "19d6bf94dfc09d76ba711f39b872d21ff4dd9071";
- };
- };
- "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.2.0" = {
- name = "external-editor";
- packageName = "external-editor";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz";
- sha512 = "bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==";
- };
- };
- "external-editor-3.0.1" = {
- name = "external-editor";
- packageName = "external-editor";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/external-editor/-/external-editor-3.0.1.tgz";
- sha512 = "e1neqvSt5pSwQcFnYc6yfGuJD2Q4336cdbHs5VeUO0zTkqPbrHMyw2q1r47fpfLWbvIG8H8A6YO3sck7upTV6Q==";
- };
- };
- "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 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
- };
- };
- "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.7" = {
- name = "extract-zip";
- packageName = "extract-zip";
- version = "1.6.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz";
- sha1 = "a840b4b8af6403264c8db57f4f1a74333ef81fe9";
- };
- };
- "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.0.2" = {
- name = "extsprintf";
- packageName = "extsprintf";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz";
- sha1 = "e1080e0658e300b06294990cc70e1502235fd550";
- };
- };
- "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.1.0" = {
- name = "fast-deep-equal";
- packageName = "fast-deep-equal";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz";
- sha1 = "c053477817c86b51daa853c81e059b733d023614";
- };
- };
- "fast-deep-equal-2.0.1" = {
- name = "fast-deep-equal";
- packageName = "fast-deep-equal";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz";
- sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49";
- };
- };
- "fast-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 = "KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==";
- };
- };
- "fast-glob-2.2.2" = {
- name = "fast-glob";
- packageName = "fast-glob";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.2.tgz";
- sha512 = "TR6zxCKftDQnUAPvkrCWdBgDq/gbqx8A3ApnBrR5rMvpp6+KMJI0Igw7fkWPgeVK0uhRXTXdvO3O+YP0CaUX2g==";
- };
- };
- "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 = "FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==";
- };
- };
- "fast-json-patch-0.5.6" = {
- name = "fast-json-patch";
- packageName = "fast-json-patch";
- version = "0.5.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-0.5.6.tgz";
- sha1 = "66e4028e381eaa002edeb280d10238f3a46c3402";
- };
- };
- "fast-json-patch-2.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-redact-1.1.13" = {
- name = "fast-redact";
- packageName = "fast-redact";
- version = "1.1.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-redact/-/fast-redact-1.1.13.tgz";
- sha512 = "DsXvFcPGct1AkO+5lIvsb6imkMeoXWUQv4yaSZVY5YvHiriKSkAuR/jhrhyv3lxfyKCCS525u78PQmk4AquAeA==";
- };
- };
- "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 = "QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw==";
- };
- };
- "fast-safe-stringify-2.0.5" = {
- name = "fast-safe-stringify";
- packageName = "fast-safe-stringify";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.5.tgz";
- sha512 = "QHbbCj2PmRSMNL9P7EuNBCeNXO06/E3t3XyQgb32AZul8wLmRa1Wbt2cm7GeUsX9OZGyXTQxMYcPOEBqARyhNw==";
- };
- };
- "fast-url-parser-1.1.3" = {
- name = "fast-url-parser";
- packageName = "fast-url-parser";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz";
- sha1 = "f4af3ea9f34d8a271cf58ad2b3759f431f0b318d";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "fd-slicer-1.1.0" = {
- name = "fd-slicer";
- packageName = "fd-slicer";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz";
- sha1 = "25c7c89cb1f9077f8891bbe61d8f390eae256f1e";
- };
- };
- "feedparser-2.2.9" = {
- name = "feedparser";
- packageName = "feedparser";
- version = "2.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/feedparser/-/feedparser-2.2.9.tgz";
- sha1 = "9138197dafdae05fcadde0036beeaf6066c2c5e9";
- };
- };
- "fibers-1.0.15" = {
- name = "fibers";
- packageName = "fibers";
- version = "1.0.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/fibers/-/fibers-1.0.15.tgz";
- sha1 = "22f039c8f18b856190fbbe4decf056154c1eae9c";
- };
- };
- "fields-0.1.24" = {
- name = "fields";
- packageName = "fields";
- 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-type-3.9.0" = {
- name = "file-type";
- packageName = "file-type";
- version = "3.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz";
- sha1 = "257a078384d1db8087bc449d107d52a52672b9e9";
- };
- };
- "file-type-5.2.0" = {
- name = "file-type";
- packageName = "file-type";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz";
- sha1 = "2ddbea7c73ffe36368dfae49dc338c058c2b8ad6";
- };
- };
- "file-type-6.2.0" = {
- name = "file-type";
- packageName = "file-type";
- version = "6.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz";
- sha512 = "YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==";
- };
- };
- "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 = "0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==";
- };
- };
- "filelist-0.0.6" = {
- name = "filelist";
- packageName = "filelist";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/filelist/-/filelist-0.0.6.tgz";
- sha1 = "58a641ad1f57574a27fe87a440ef318834b55719";
- };
- };
- "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";
- };
- };
- "filename-reserved-regex-2.0.0" = {
- name = "filename-reserved-regex";
- packageName = "filename-reserved-regex";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz";
- sha1 = "abf73dfab735d045440abfea2d91f389ebbfa229";
- };
- };
- "filenamify-2.1.0" = {
- name = "filenamify";
- packageName = "filenamify";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz";
- sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==";
- };
- };
- "filestream-4.1.3" = {
- name = "filestream";
- packageName = "filestream";
- version = "4.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/filestream/-/filestream-4.1.3.tgz";
- sha1 = "948fcaade8221f715f5ecaddc54862faaacc9325";
- };
- };
- "fill-range-2.2.4" = {
- name = "fill-range";
- packageName = "fill-range";
- version = "2.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz";
- sha512 = "cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "finalhandler-1.1.1" = {
- name = "finalhandler";
- packageName = "finalhandler";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz";
- sha512 = "Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==";
- };
- };
- "find-0.2.9" = {
- name = "find";
- packageName = "find";
- version = "0.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/find/-/find-0.2.9.tgz";
- sha1 = "4b73f1ff9e56ad91b76e716407fe5ffe6554bb8c";
- };
- };
- "find-cache-dir-1.0.0" = {
- name = "find-cache-dir";
- packageName = "find-cache-dir";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz";
- sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f";
- };
- };
- "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 = "gnvu2zAKFEHd76zV/JkRvof7HNyM2X8yW5vflCfWbXeo9hmXMndz/SrEsTQFSXXgNqf0AdjhQSRPnG8JYR92oQ==";
- };
- };
- "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-up-3.0.0" = {
- name = "find-up";
- packageName = "find-up";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz";
- sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==";
- };
- };
- "find-versions-2.0.0" = {
- name = "find-versions";
- packageName = "find-versions";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-versions/-/find-versions-2.0.0.tgz";
- sha1 = "2ad90d490f6828c1aa40292cf709ac3318210c3c";
- };
- };
- "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-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 = "wUIE4QeAjwoHvFbomWmXgKyYtV4/oZxDcJG4znxtGGa/0BhKkd3HzeOf3tAsMWPq1ExARZxCRRiNw1BL3FuPqA==";
- };
- };
- "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.8" = {
- name = "flatstr";
- packageName = "flatstr";
- version = "1.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/flatstr/-/flatstr-1.0.8.tgz";
- sha512 = "YXblbv/vc1zuVVUtnKl1hPqqk7TalZCppnKE7Pr8FI/Rp48vzckS/4SJ4Y9O9RNiI82Vcw/FydmtqdQOg1Dpqw==";
- };
- };
- "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";
- };
- };
- "flatten-1.0.2" = {
- name = "flatten";
- packageName = "flatten";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz";
- sha1 = "dae46a9d78fbe25292258cc1e780a41d95c03782";
- };
- };
- "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";
- };
- };
- "fluent-syntax-0.7.0" = {
- name = "fluent-syntax";
- packageName = "fluent-syntax";
- version = "0.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fluent-syntax/-/fluent-syntax-0.7.0.tgz";
- sha512 = "T0iqfhC40jrs3aDjYOKgzIQjjhsH2Fa6LnXB6naPv0ymW3DeYMUFa89y9aLKMpi1P9nl2vEimK7blx4tVnUWBg==";
- };
- };
- "flush-write-stream-1.0.3" = {
- name = "flush-write-stream";
- packageName = "flush-write-stream";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz";
- sha512 = "calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==";
- };
- };
- "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.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 = "uxYePVPogtya1ktGnAAXOacnbIuRMB4dkvqeNz2qTtTQsuzSfbDolV+wMMKxAmCx0bLgAKLbBOkjItMbbkR1vg==";
- };
- };
- "follow-redirects-1.5.2" = {
- name = "follow-redirects";
- packageName = "follow-redirects";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.2.tgz";
- sha512 = "kssLorP/9acIdpQ2udQVTiCS5LQmdEz9mvdIfDcl1gYX2tPKFADHSyFdvJS040XdFsPzemWtgI3q8mFVCxtX8A==";
- };
- };
- "for-each-0.3.3" = {
- name = "for-each";
- packageName = "for-each";
- version = "0.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz";
- sha512 = "jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==";
- };
- };
- "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.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.2" = {
- name = "form-data";
- packageName = "form-data";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz";
- sha1 = "4970498be604c20c005d4f5c23aecd21d6b49099";
- };
- };
- "format-util-1.0.3" = {
- name = "format-util";
- packageName = "format-util";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/format-util/-/format-util-1.0.3.tgz";
- sha1 = "032dca4a116262a12c43f4c3ec8566416c5b2d95";
- };
- };
- "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.2.1" = {
- name = "formidable";
- packageName = "formidable";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz";
- sha512 = "Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg==";
- };
- };
- "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.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.7.0" = {
- name = "fs-chunk-store";
- packageName = "fs-chunk-store";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-1.7.0.tgz";
- sha512 = "KhjJmZAs2eqfhCb6PdPx4RcZtheGTz86tpTC5JTvqBn/xda+Nb+0C7dCyjOSN7T76H6a56LvH0SVXQMchLXDRw==";
- };
- };
- "fs-constants-1.0.0" = {
- name = "fs-constants";
- packageName = "fs-constants";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz";
- sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==";
- };
- };
- "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-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";
- };
- };
- "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 = "q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==";
- };
- };
- "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 = "66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==";
- };
- };
- "fs-extra-6.0.1" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-6.0.1.tgz";
- sha512 = "GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==";
- };
- };
- "fs-extra-7.0.0" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.0.tgz";
- sha512 = "EglNDLRpmaTWiD/qraZn6HREAEAHJcJOmxNEYwq6xeMKnVMAy3GUcFB+wXt2C6k4CNvB/mP1y/U3dzvKKj5OtQ==";
- };
- };
- "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 = "JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==";
- };
- };
- "fs-mkdirp-stream-1.0.0" = {
- name = "fs-mkdirp-stream";
- packageName = "fs-mkdirp-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz";
- sha1 = "0b7815fc3201c6a69e14db98ce098c16935259eb";
- };
- };
- "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.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 = "Sn44E5wQW4bTHXvQmvSHwqbuiXtduD6Rrjm2ZtUEGbyrig+nUH3t/QD4M4/ZXViY556TBpRgZkHLDx3JxPwxiw==";
- };
- };
- "fsevents-1.2.4" = {
- name = "fsevents";
- packageName = "fsevents";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz";
- sha512 = "z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==";
- };
- };
- "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 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==";
- };
- };
- "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";
- };
- };
- "fuzzyset.js-0.0.1" = {
- name = "fuzzyset.js";
- packageName = "fuzzyset.js";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fuzzyset.js/-/fuzzyset.js-0.0.1.tgz";
- sha1 = "979e22f9451b4b38f051f7937c919dbacc692958";
- };
- };
- "fx-runner-1.0.9" = {
- name = "fx-runner";
- packageName = "fx-runner";
- version = "1.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.9.tgz";
- sha1 = "7b23f3773dc76aacc42f11d9aff2769675cb63f0";
- };
- };
- "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-assigned-identifiers-1.2.0" = {
- name = "get-assigned-identifiers";
- packageName = "get-assigned-identifiers";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz";
- sha512 = "mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==";
- };
- };
- "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.3" = {
- name = "get-caller-file";
- packageName = "get-caller-file";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz";
- sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==";
- };
- };
- "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";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz";
- 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-proxy-2.1.0" = {
- name = "get-proxy";
- packageName = "get-proxy";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz";
- sha512 = "zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==";
- };
- };
- "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-stdin-6.0.0" = {
- name = "get-stdin";
- packageName = "get-stdin";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz";
- sha512 = "jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==";
- };
- };
- "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";
- };
- };
- "get-uri-2.0.2" = {
- name = "get-uri";
- packageName = "get-uri";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-uri/-/get-uri-2.0.2.tgz";
- sha512 = "ZD325dMZOgerGqF/rF6vZXyFGTAay62svjQIT+X/oU2PtxYpFxvSkbsdi+oxIrsNxlZVd4y8wUDqkaExWTI/Cw==";
- };
- };
- "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.4.3" = {
- name = "getmac";
- packageName = "getmac";
- version = "1.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/getmac/-/getmac-1.4.3.tgz";
- sha512 = "bOZafIX+19cCS5KUjHtlJPZW+4joMa5tISIk5CugjmlZE0zZtjwB59wm56JPXVy5ELivw7g4Z9TEI0EDa2CSwQ==";
- };
- };
- "getpass-0.1.6" = {
- name = "getpass";
- packageName = "getpass";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/getpass/-/getpass-0.1.6.tgz";
- sha1 = "283ffd9fc1256840875311c1b60e8c40187110e6";
- };
- };
- "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-clone-0.1.0" = {
- name = "git-clone";
- packageName = "git-clone";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-clone/-/git-clone-0.1.0.tgz";
- sha1 = "0d76163778093aef7f1c30238f2a9ef3f07a2eb9";
- };
- };
- "git-raw-commits-1.3.6" = {
- name = "git-raw-commits";
- packageName = "git-raw-commits";
- version = "1.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-1.3.6.tgz";
- sha512 = "svsK26tQ8vEKnMshTDatSIQSMDdz8CxIIqKsvPqbtV23Etmw6VNaFAitu8zwZ0VrOne7FztwPyRLxK7/DIUTQg==";
- };
- };
- "git-remote-origin-url-2.0.0" = {
- name = "git-remote-origin-url";
- packageName = "git-remote-origin-url";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz";
- 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.3.6" = {
- name = "git-semver-tags";
- packageName = "git-semver-tags";
- version = "1.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-1.3.6.tgz";
- sha512 = "2jHlJnln4D/ECk9FxGEBh3k44wgYdWjWDtMmJPaecjoRmxKo3Y1Lh8GMYuOPu04CHw86NTAODchYjC5pnpMQig==";
- };
- };
- "gitconfiglocal-1.0.0" = {
- name = "gitconfiglocal";
- packageName = "gitconfiglocal";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz";
- sha1 = "41d045f3851a5ea88f03f24ca1c6178114464b9b";
- };
- };
- "github-0.1.6" = {
- name = "github";
- packageName = "github";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/github/-/github-0.1.6.tgz";
- sha1 = "1344e694f8d20ef9b29bcbfd1ca5eb4f7a287922";
- };
- };
- "github-from-package-0.0.0" = {
- name = "github-from-package";
- packageName = "github-from-package";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz";
- sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce";
- };
- };
- "github-slugger-1.2.0" = {
- name = "github-slugger";
- packageName = "github-slugger";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.2.0.tgz";
- sha512 = "wIaa75k1vZhyPm9yWrD08A5Xnx/V+RmzGrpjQuLemGKSb77Qukiaei58Bogrl/LZSADDfPzKJX8jhLs4CRTl7Q==";
- };
- };
- "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-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";
- };
- };
- "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-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";
- };
- };
- "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";
- };
- };
- "glob-7.1.1" = {
- name = "glob";
- packageName = "glob";
- version = "7.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz";
- sha1 = "805211df04faaf1c63a3600306cdf5ade50b2ec8";
- };
- };
- "glob-7.1.2" = {
- name = "glob";
- packageName = "glob";
- version = "7.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
- sha512 = "MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==";
- };
- };
- "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";
- };
- };
- "glob-parent-3.1.0" = {
- name = "glob-parent";
- packageName = "glob-parent";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
- sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
- };
- };
- "glob-slash-1.0.0" = {
- name = "glob-slash";
- packageName = "glob-slash";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-slash/-/glob-slash-1.0.0.tgz";
- sha1 = "fe52efa433233f74a2fe64c7abb9bc848202ab95";
- };
- };
- "glob-slasher-1.0.1" = {
- name = "glob-slasher";
- packageName = "glob-slasher";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-slasher/-/glob-slasher-1.0.1.tgz";
- sha1 = "747a0e5bb222642ee10d3e05443e109493cb0f8e";
- };
- };
- "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-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";
- };
- };
- "glob-to-regexp-0.3.0" = {
- name = "glob-to-regexp";
- packageName = "glob-to-regexp";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz";
- sha1 = "8c5a1494d2066c570cc3bfe4496175acc4d502ab";
- };
- };
- "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-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/global-modules/-/global-modules-0.2.3.tgz";
- sha1 = "ea5a3bed42c6d6ce995a4f8a1269b5dae223828d";
- };
- };
- "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 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==";
- };
- };
- "global-paths-1.0.0" = {
- name = "global-paths";
- packageName = "global-paths";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/global-paths/-/global-paths-1.0.0.tgz";
- sha1 = "3ffc84341594e47b32bfade5785355d4df7feac7";
- };
- };
- "global-prefix-0.1.5" = {
- name = "global-prefix";
- packageName = "global-prefix";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz";
- sha1 = "8d3bc6b8da3ca8112a160d8d496ff0462bfef78f";
- };
- };
- "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";
- };
- };
- "global-tunnel-ng-2.5.4" = {
- name = "global-tunnel-ng";
- packageName = "global-tunnel-ng";
- version = "2.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.5.4.tgz";
- sha1 = "5ef9d5ff2f2a6bed1b305abd463837d47e85b5f4";
- };
- };
- "globals-11.7.0" = {
- name = "globals";
- packageName = "globals";
- version = "11.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-11.7.0.tgz";
- sha512 = "K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==";
- };
- };
- "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 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==";
- };
- };
- "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-8.0.1" = {
- name = "globby";
- packageName = "globby";
- version = "8.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/globby/-/globby-8.0.1.tgz";
- sha512 = "oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw==";
- };
- };
- "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 = "ynYqXLoluBKf9XGR1gA59yEJisIL7YHEH4xr3ZziHB5/yl4qWfaK8Js9jGe6gBGCSCKVqiyO30WnRZADvemUNw==";
- };
- };
- "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/got/-/got-3.3.1.tgz";
- sha1 = "e5d0ed4af55fc3eef4d56007769d98192bcb2eca";
- };
- };
- "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 = "Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==";
- };
- };
- "got-8.3.2" = {
- name = "got";
- packageName = "got";
- version = "8.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-8.3.2.tgz";
- sha512 = "qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==";
- };
- };
- "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";
- };
- };
- "graphcool-json-schema-1.2.1" = {
- name = "graphcool-json-schema";
- packageName = "graphcool-json-schema";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphcool-json-schema/-/graphcool-json-schema-1.2.1.tgz";
- sha1 = "6cefb6c8b50543615e6efa43bb54f9e3fbb281f3";
- };
- };
- "graphcool-yml-0.4.15" = {
- name = "graphcool-yml";
- packageName = "graphcool-yml";
- version = "0.4.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphcool-yml/-/graphcool-yml-0.4.15.tgz";
- sha512 = "ZVbRfVI8l21+1JQkcG0XuRam9mgiVUh9/PIcluzCZca2+lZQg/e1WCDXpwsC69i2ZdPcZwpOCLFKQMg5rnulCA==";
- };
- };
- "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 = "XvtbqCcw+EM5SqQrIetIKKD+uZVNQtDPD1goIg7K73RuRZtVI5rYMdcCVSHm/AS1sCBZ7vt0p5WgXouucHQaOA==";
- };
- };
- "graphql-0.12.3" = {
- name = "graphql";
- packageName = "graphql";
- version = "0.12.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql/-/graphql-0.12.3.tgz";
- sha512 = "Hn9rdu4zacplKXNrLCvR8YFiTGnbM4Zw/UH8FDmzBDsH7ou40lSNH4tIlsxcYnz2TGNVJCpu1WxCM23yd6kzhA==";
- };
- };
- "graphql-0.13.2" = {
- name = "graphql";
- packageName = "graphql";
- version = "0.13.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql/-/graphql-0.13.2.tgz";
- sha512 = "QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog==";
- };
- };
- "graphql-cli-prepare-1.4.19" = {
- name = "graphql-cli-prepare";
- packageName = "graphql-cli-prepare";
- version = "1.4.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-cli-prepare/-/graphql-cli-prepare-1.4.19.tgz";
- sha512 = "PJFm9/DvfZwKz3h2Wyn/5Sr/sX35XsYzNO3olfm5V8qqueNIONI0g7sVqpF7wYdvhEtt/8YA9DjgrGclCbpMfA==";
- };
- };
- "graphql-config-1.2.1" = {
- name = "graphql-config";
- packageName = "graphql-config";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-config/-/graphql-config-1.2.1.tgz";
- sha512 = "BOtbEOn/fD13jT0peCy3Fzp1DSTsA/1AcZp266AQ5Sk3wFndKCEa/H7donbu5UriOw1V/N1WDirYPnr7rd8E7Q==";
- };
- };
- "graphql-config-2.0.0" = {
- name = "graphql-config";
- packageName = "graphql-config";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-config/-/graphql-config-2.0.0.tgz";
- sha512 = "//hZmROEk79zzPlH6SVTQeXd8NVV65rquz1zxZeO6oEuX5KNnii8+oznLu7d897EfJ+NShTZtsY9FMmxxkWmJw==";
- };
- };
- "graphql-config-2.0.1" = {
- name = "graphql-config";
- packageName = "graphql-config";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-config/-/graphql-config-2.0.1.tgz";
- sha512 = "eb4FzlODifHE/Q+91QptAmkGw39wL5ToinJ2556UUsGt2drPc4tzifL+HSnHSaxiIbH8EUhc/Fa6+neinF04qA==";
- };
- };
- "graphql-config-extension-graphcool-1.0.8" = {
- name = "graphql-config-extension-graphcool";
- packageName = "graphql-config-extension-graphcool";
- version = "1.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-config-extension-graphcool/-/graphql-config-extension-graphcool-1.0.8.tgz";
- sha512 = "eMvL/RAo88EHo8SmP40Zcsrx7nrLTE82G4ZochsHYoEvP+QMo0XA+Vq9lxYeRTJEtGMFD4imjHXGHWh4B0srQw==";
- };
- };
- "graphql-config-extension-openapi-1.0.6" = {
- name = "graphql-config-extension-openapi";
- packageName = "graphql-config-extension-openapi";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-config-extension-openapi/-/graphql-config-extension-openapi-1.0.6.tgz";
- sha512 = "Do6tHyQyxaPhaZdJ+ZCpYbVhczlqNqMVuO46aG/YkMuRQPoj/FRmeH9BFXniFkz60TZyRpLTQNel2sllMekRLQ==";
- };
- };
- "graphql-config-extension-prisma-0.0.11" = {
- name = "graphql-config-extension-prisma";
- packageName = "graphql-config-extension-prisma";
- version = "0.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-config-extension-prisma/-/graphql-config-extension-prisma-0.0.11.tgz";
- sha512 = "Mlj/VYshHbwDrVHgNyNAl2cBU7+Rh503S43UYXcBtR9Am2KNvmPPPccXEeP6yist0yY2WM0WTwL8JoIGrWeFOw==";
- };
- };
- "graphql-import-0.4.5" = {
- name = "graphql-import";
- packageName = "graphql-import";
- version = "0.4.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-import/-/graphql-import-0.4.5.tgz";
- sha512 = "G/+I08Qp6/QGTb9qapknCm3yPHV0ZL7wbaalWFpxsfR8ZhZoTBe//LsbsCKlbALQpcMegchpJhpTSKiJjhaVqQ==";
- };
- };
- "graphql-playground-html-1.5.5" = {
- name = "graphql-playground-html";
- packageName = "graphql-playground-html";
- version = "1.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-playground-html/-/graphql-playground-html-1.5.5.tgz";
- sha512 = "PzSywpEKcjbDUkV6e3ivEixvAuUJGyYmBUvuittzySe/RgwHRo0xKLD7HouUCTbpFfWMw8kRKhAUVtt7Ys97uw==";
- };
- };
- "graphql-playground-middleware-express-1.6.2" = {
- name = "graphql-playground-middleware-express";
- packageName = "graphql-playground-middleware-express";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.6.2.tgz";
- sha512 = "BHaEZe2J2lQ1TX2W73a6PI2zVjB9Nb0J9pFdbG1L7ugYdbait/elDrsNMxLCsDHVOGJF009VlYszrk7Cq7FiTg==";
- };
- };
- "graphql-request-1.8.1" = {
- name = "graphql-request";
- packageName = "graphql-request";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-request/-/graphql-request-1.8.1.tgz";
- sha512 = "ZqVtROJ/lgTQq9dRVCQU3/wRQX2JjUfUB7RWH/QuktmxsAAc3pkZikpiIkKyjSR0OD/+h6iSh/MkP0FonQBMNQ==";
- };
- };
- "graphql-schema-linter-0.1.1" = {
- name = "graphql-schema-linter";
- packageName = "graphql-schema-linter";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-schema-linter/-/graphql-schema-linter-0.1.1.tgz";
- sha512 = "caZbOgNw08/9p3a+qusmaFi1TklG9ti+KHI6a2yfdp009gyoClWGQ+ElKVIiZkJQSeWCri2s2UFBCZjoM0JwTw==";
- };
- };
- "graphql-static-binding-0.9.3" = {
- name = "graphql-static-binding";
- packageName = "graphql-static-binding";
- version = "0.9.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-static-binding/-/graphql-static-binding-0.9.3.tgz";
- sha512 = "C8+EqwNCiQxUhbrWEokxN16oINAkhIDBzEpKHXeatBRaAyMczXm0J6HMaMSKOuQmk7P1PbDHIVW3FVZwXF2WJQ==";
- };
- };
- "gray-matter-2.1.1" = {
- name = "gray-matter";
- packageName = "gray-matter";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz";
- sha1 = "3042d9adec2a1ded6a7707a9ed2380f8a17a430e";
- };
- };
- "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.5" = {
- name = "growl";
- packageName = "growl";
- version = "1.10.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz";
- sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==";
- };
- };
- "growly-1.3.0" = {
- name = "growly";
- packageName = "growly";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz";
- sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081";
- };
- };
- "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-3.9.1" = {
- name = "gulp";
- packageName = "gulp";
- version = "3.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz";
- sha1 = "571ce45928dd40af6514fc4011866016c13845b4";
- };
- };
- "gulp-clean-css-3.10.0" = {
- name = "gulp-clean-css";
- packageName = "gulp-clean-css";
- version = "3.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-3.10.0.tgz";
- sha512 = "7Isf9Y690o/Q5MVjEylH1H7L8WeZ89woW7DnhD5unTintOdZb67KdOayRgp9trUFo+f9UyJtuatV42e/+kghPg==";
- };
- };
- "gulp-less-3.5.0" = {
- name = "gulp-less";
- packageName = "gulp-less";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp-less/-/gulp-less-3.5.0.tgz";
- sha512 = "FQLY7unaHdTOXG0jlwxeBQcWoPPrTMQZRA7HfYwSNi9IPVx5l7GJEN72mG4ri2yigp/f/VNGUAJnFMJHBmH3iw==";
- };
- };
- "gulp-sourcemaps-2.6.4" = {
- name = "gulp-sourcemaps";
- packageName = "gulp-sourcemaps";
- version = "2.6.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-2.6.4.tgz";
- sha1 = "cbb2008450b1bcce6cd23bf98337be751bf6e30a";
- };
- };
- "gulp-typescript-4.0.2" = {
- name = "gulp-typescript";
- packageName = "gulp-typescript";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp-typescript/-/gulp-typescript-4.0.2.tgz";
- sha512 = "Hhbn5Aa2l3T+tnn0KqsG6RRJmcYEsr3byTL2nBpNBeAK8pqug9Od4AwddU4JEI+hRw7mzZyjRbB8DDWR6paGVA==";
- };
- };
- "gulp-uglify-3.0.1" = {
- name = "gulp-uglify";
- packageName = "gulp-uglify";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.1.tgz";
- sha512 = "KVffbGY9d4Wv90bW/B1KZJyunLMyfHTBbilpDvmcrj5Go0/a1G3uVpt+1gRBWSw/11dqR3coJ1oWNTt1AiXuWQ==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "handlebars-4.0.11" = {
- name = "handlebars";
- packageName = "handlebars";
- version = "4.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz";
- sha1 = "630a35dfe0294bc281edae6ffc5d329fc7982dcc";
- };
- };
- "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-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";
- };
- };
- "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.3" = {
- name = "has";
- packageName = "has";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz";
- sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==";
- };
- };
- "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.3" = {
- name = "has-binary2";
- packageName = "has-binary2";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz";
- sha512 = "G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==";
- };
- };
- "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/has-cors/-/has-cors-1.1.0.tgz";
- sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39";
- };
- };
- "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-flag-3.0.0" = {
- name = "has-flag";
- packageName = "has-flag";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz";
- sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
- };
- };
- "has-generators-1.0.1" = {
- name = "has-generators";
- packageName = "has-generators";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-generators/-/has-generators-1.0.1.tgz";
- sha1 = "a6a2e55486011940482e13e2c93791c449acf449";
- };
- };
- "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-symbol-support-x-1.4.2" = {
- name = "has-symbol-support-x";
- packageName = "has-symbol-support-x";
- version = "1.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz";
- sha512 = "3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==";
- };
- };
- "has-symbols-1.0.0" = {
- name = "has-symbols";
- packageName = "has-symbols";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz";
- sha1 = "ba1a8f1af2a0fc39650f5c850367704122063b44";
- };
- };
- "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 = "vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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" = {
- name = "hash-sum";
- packageName = "hash-sum";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz";
- sha1 = "33b40777754c6432573c120cc3808bbd10d47f04";
- };
- };
- "hash.js-1.1.5" = {
- name = "hash.js";
- packageName = "hash.js";
- version = "1.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz";
- sha512 = "eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==";
- };
- };
- "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 = "miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "heap-0.2.6" = {
- name = "heap";
- packageName = "heap";
- version = "0.2.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/heap/-/heap-0.2.6.tgz";
- sha1 = "087e1f10b046932fc8594dd9e6d378afc9d1e5ac";
- };
- };
- "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";
- };
- };
- "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.1" = {
- name = "hoek";
- packageName = "hoek";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz";
- sha512 = "QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==";
- };
- };
- "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.7.1" = {
- name = "hosted-git-info";
- packageName = "hosted-git-info";
- version = "2.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz";
- sha512 = "7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==";
- };
- };
- "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 = "5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==";
- };
- };
- "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-errors-1.6.3" = {
- name = "http-errors";
- packageName = "http-errors";
- version = "1.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz";
- sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d";
- };
- };
- "http-errors-1.7.0" = {
- name = "http-errors";
- packageName = "http-errors";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.0.tgz";
- sha512 = "hz3BtSHB7Z6dNWzYc+gUbWqG4dIpJedwwOhe1cvGUq5tGmcTTIRkPiAbyh/JlZx+ksSJyGJlgcHo5jGahiXnKw==";
- };
- };
- "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 = "87E1I+2Wg4dxxz4rcxElo3dxO/w1ZtgL1yA0Sb6vH3qU16vRKq1NjWQv9SCY3ly2OQROcoxHZOUpmelS+k6wOw==";
- };
- };
- "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.13" = {
- name = "http-parser-js";
- packageName = "http-parser-js";
- version = "0.4.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.13.tgz";
- sha1 = "3bd6d6fde6e3172c9334c3b33b6c193d80fe1137";
- };
- };
- "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-1.17.0" = {
- name = "http-proxy";
- packageName = "http-proxy";
- version = "1.17.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz";
- sha512 = "Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==";
- };
- };
- "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-agent-2.1.0" = {
- name = "http-proxy-agent";
- packageName = "http-proxy-agent";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz";
- sha512 = "qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==";
- };
- };
- "http-response-object-1.1.0" = {
- name = "http-response-object";
- packageName = "http-response-object";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-response-object/-/http-response-object-1.1.0.tgz";
- sha1 = "a7c4e75aae82f3bb4904e4f43f615673b4d518c3";
- };
- };
- "http-signature-0.11.0" = {
- name = "http-signature";
- packageName = "http-signature";
- 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";
- };
- };
- "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";
- };
- };
- "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.2.1" = {
- name = "https-proxy-agent";
- packageName = "https-proxy-agent";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz";
- sha512 = "HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ==";
- };
- };
- "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.2" = {
- name = "humanize-string";
- packageName = "humanize-string";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/humanize-string/-/humanize-string-1.0.2.tgz";
- sha512 = "PH5GBkXqFxw5+4eKaKRIkD23y6vRd/IXSl7IldyJxEXpDH9SEIXRORkBtkGni/ae2P7RVOw6Wxypd2tGXhha1w==";
- };
- };
- "hypercore-6.18.1" = {
- name = "hypercore";
- packageName = "hypercore";
- version = "6.18.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hypercore/-/hypercore-6.18.1.tgz";
- sha512 = "pH2t3ehdTfe/FFrwVq+6w7L9NoWEnFO9Yxix2kj43vSLMHTWCUFdOCJ9/MaOUAG4OeYy4tiT4+IE5NP0bff6Mg==";
- };
- };
- "hypercore-crypto-1.0.0" = {
- name = "hypercore-crypto";
- packageName = "hypercore-crypto";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hypercore-crypto/-/hypercore-crypto-1.0.0.tgz";
- sha512 = "xFwOnNlOt8L+SovC7dTNchKaNYJb5l8rKZZwpWQnCme1r7CU4Hlhp1RDqPES6b0OpS7DkTo9iU0GltQGkpsjMw==";
- };
- };
- "hypercore-protocol-6.6.4" = {
- name = "hypercore-protocol";
- packageName = "hypercore-protocol";
- version = "6.6.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.6.4.tgz";
- sha512 = "9TU7P+uve0e5v1ZiBx70DFhkpepW4iNSGYlZthK+Unm0EbZ+Yppc6clH7JTffPBNUMSnDrE552MfXMilpCHZMw==";
- };
- };
- "hyperdrive-9.14.0" = {
- name = "hyperdrive";
- packageName = "hyperdrive";
- version = "9.14.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.14.0.tgz";
- sha512 = "LTgbsJ+9ZrdQfLaXXc01kQMttaicHhSOtUM3v/k7ORwXJziqQ2eMQ80+8Tfg67ja+w6zrdl5HYOK+mnlwQpCww==";
- };
- };
- "hyperdrive-http-4.3.3" = {
- name = "hyperdrive-http";
- packageName = "hyperdrive-http";
- version = "4.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive-http/-/hyperdrive-http-4.3.3.tgz";
- sha512 = "YRAjbCCRefLK9EMcgDXRgDx/sZksWf85iLtGl9JMVrzFSIfUx0//DpUJ6k0m0eG4KHJJM+dBwORxFPNi29EQHg==";
- };
- };
- "hyperdrive-network-speed-2.1.0" = {
- name = "hyperdrive-network-speed";
- packageName = "hyperdrive-network-speed";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive-network-speed/-/hyperdrive-network-speed-2.1.0.tgz";
- sha512 = "JolPS374h6oS1rmz1iebFfeDDvA2nAtiHbx9VJJGMgSDSx4Q77eeY09hDgZwY7KatSKUGWnnSyydSgVUb3+8Lw==";
- };
- };
- "hyperquest-2.1.3" = {
- name = "hyperquest";
- packageName = "hyperquest";
- version = "2.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/hyperquest/-/hyperquest-2.1.3.tgz";
- sha512 = "fUuDOrB47PqNK/BAMOS13v41UoaqIxqSLHX6CAbOD7OfT+/GCWO1/vPLfTNutOeXrv1ikuaZ3yux+33Z9vh+rw==";
- };
- };
- "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";
- version = "1.10.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/i18next/-/i18next-1.10.6.tgz";
- sha1 = "fddd8b491502c48967a62963bc722ff897cddea0";
- };
- };
- "i18next-client-1.10.3" = {
- name = "i18next-client";
- packageName = "i18next-client";
- version = "1.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/i18next-client/-/i18next-client-1.10.3.tgz";
- sha1 = "76d0353557ed90d1e7a87754d5004d3f7801fde9";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "iconv-lite-0.4.15" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz";
- sha1 = "fe265a218ac6a57cfe854927e9d04c19825eddeb";
- };
- };
- "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 = "oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==";
- };
- };
- "iconv-lite-0.4.23" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.23";
- src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz";
- sha512 = "neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==";
- };
- };
- "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";
- };
- };
- "ieee754-1.1.12" = {
- name = "ieee754";
- packageName = "ieee754";
- version = "1.1.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz";
- sha512 = "GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==";
- };
- };
- "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";
- };
- };
- "iferr-0.1.5" = {
- name = "iferr";
- packageName = "iferr";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz";
- sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
- };
- };
- "ignore-3.3.10" = {
- name = "ignore";
- packageName = "ignore";
- version = "3.3.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz";
- sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==";
- };
- };
- "ignore-4.0.5" = {
- name = "ignore";
- packageName = "ignore";
- version = "4.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ignore/-/ignore-4.0.5.tgz";
- sha512 = "Q2daVnMtQJPacGrcCRyOEiI+syPCt+mR4YotoC0KEYeinV/6HztT5mUuVEj7UYyoNZ1jGYiu2XEem7I8oM44bg==";
- };
- };
- "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";
- };
- };
- "ignore-walk-3.0.1" = {
- name = "ignore-walk";
- packageName = "ignore-walk";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz";
- sha512 = "DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==";
- };
- };
- "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";
- };
- };
- "immediate-chunk-store-2.0.0" = {
- name = "immediate-chunk-store";
- packageName = "immediate-chunk-store";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/immediate-chunk-store/-/immediate-chunk-store-2.0.0.tgz";
- sha512 = "5s6NiCGbtWc+OQA60jrre54w12U7tynIyUNjO5LJjNA5lWwvCv6640roq8Wk/wIuaqnd4Pgtp453OyJ7hbONkQ==";
- };
- };
- "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 = "YQ1wdkSZeRhWNvlSyQGvn8d34tIChAYb/USZv08tHATBWOyfXIU7u2R/YieyCRZIVNUxB5G9Bq+aiyrep/zejQ==";
- };
- };
- "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";
- };
- };
- "import-local-1.0.0" = {
- name = "import-local";
- packageName = "import-local";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz";
- sha512 = "vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==";
- };
- };
- "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";
- };
- };
- "indx-0.2.3" = {
- name = "indx";
- packageName = "indx";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/indx/-/indx-0.2.3.tgz";
- sha1 = "15dcf56ee9cf65c0234c513c27fbd580e70fbc50";
- };
- };
- "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";
- };
- };
- "inflected-2.0.4" = {
- name = "inflected";
- packageName = "inflected";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/inflected/-/inflected-2.0.4.tgz";
- sha512 = "HQPzFLTTUvwfeUH6RAGjD8cHS069mBqXG5n4qaxX7sJXBhVQrsGgF+0ZJGkSuN6a8pcUWB/GXStta11kKi/WvA==";
- };
- };
- "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 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
- };
- };
- "init-package-json-1.10.3" = {
- name = "init-package-json";
- packageName = "init-package-json";
- version = "1.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.10.3.tgz";
- sha512 = "zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw==";
- };
- };
- "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 = "e3JOOBLE6cDO2aWWkIYXXT7qhb9HN4mBHSiOj2Hv94VAMDiDb0J50koYtxY0tZBq9N117QENGoURmL+tunxQJw==";
- };
- };
- "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 = "bOblvdmbXFC/UYbBj0WsKGkVhQaiZXK8A/O0e7/eh8HVr0DAbuZgQKatPzZ2ySsrpmcaMUGSVPbeuJOPO53X/g==";
- };
- };
- "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.3" = {
- name = "innertext";
- packageName = "innertext";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/innertext/-/innertext-1.0.3.tgz";
- sha512 = "ZC410b7IbrTrmt8bQb27xUOJgXkJu+XL6MVncb9FGyxjRIHyQqNjpSDY20zvSUttkAiYj0dait/67/sXyWvwYg==";
- };
- };
- "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.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 = "h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==";
- };
- };
- "inquirer-5.1.0" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-5.1.0.tgz";
- sha512 = "kn7N70US1MSZHZHSGJLiZ7iCwwncc7b0gc68YtlX29OjI3Mp0tSVV+snVXpZ1G+ONS3Ac9zd1m6hve2ibLDYfA==";
- };
- };
- "inquirer-5.2.0" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-5.2.0.tgz";
- sha512 = "E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ==";
- };
- };
- "inquirer-6.1.0" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-6.1.0.tgz";
- sha512 = "f9K2MMx/G/AVmJSaZg2a+GVLRRmTdlGLbwxsibNd6yNTxXujqxPypjCnxnC0y4+Wb/rNY5KyKuq06AO5jrE+7w==";
- };
- };
- "insert-module-globals-7.2.0" = {
- name = "insert-module-globals";
- packageName = "insert-module-globals";
- version = "7.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.0.tgz";
- sha512 = "VE6NlW+WGn2/AeOMd496AHFYmE7eLKkUY6Ty31k4og5vmA3Fjuwe9v6ifH6Xx/Hz27QvdoMoviw1/pqWRB09Sw==";
- };
- };
- "insight-0.10.1" = {
- name = "insight";
- packageName = "insight";
- version = "0.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/insight/-/insight-0.10.1.tgz";
- sha512 = "kLGeYQkh18f8KuC68QKdi0iwUcIaayJVB/STpX7x452/7pAUm1yfG4giJwcxbrTh0zNYtc8kBR+6maLMOzglOQ==";
- };
- };
- "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";
- };
- };
- "inspect-custom-symbol-1.1.0" = {
- name = "inspect-custom-symbol";
- packageName = "inspect-custom-symbol";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/inspect-custom-symbol/-/inspect-custom-symbol-1.1.0.tgz";
- sha512 = "vtI2YXBRZBkU6DlfHfd0GtZENfiEiTacAXUd0ZY6HA+X7aPznpFfPmzSC+tHKXAkz9KDSdI4AYfwAMXR5t+isg==";
- };
- };
- "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.4" = {
- name = "invariant";
- packageName = "invariant";
- version = "2.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz";
- sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==";
- };
- };
- "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";
- };
- };
- "ip-regex-1.0.3" = {
- name = "ip-regex";
- packageName = "ip-regex";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz";
- sha1 = "dc589076f659f419c222039a33316f1c7387effd";
- };
- };
- "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.8.0" = {
- name = "ipaddr.js";
- packageName = "ipaddr.js";
- version = "1.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz";
- sha1 = "eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e";
- };
- };
- "ipaddr.js-1.8.1" = {
- name = "ipaddr.js";
- packageName = "ipaddr.js";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.1.tgz";
- sha1 = "fa4b79fa47fd3def5e3b159825161c0a519c9427";
- };
- };
- "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 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==";
- };
- };
- "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 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
- };
- };
- "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.2" = {
- name = "is-arrayish";
- packageName = "is-arrayish";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz";
- sha512 = "eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==";
- };
- };
- "is-ascii-1.0.0" = {
- name = "is-ascii";
- packageName = "is-ascii";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-ascii/-/is-ascii-1.0.0.tgz";
- sha1 = "f02ad0259a0921cd199ff21ce1b09e0f6b4e3929";
- };
- };
- "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 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
- };
- };
- "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.4" = {
- name = "is-callable";
- packageName = "is-callable";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz";
- sha512 = "r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==";
- };
- };
- "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 = "c7TnwxLePuqIlxHgr7xtxzycJPegNHFuIrBkwbf8hc58//+Op1CqFkyS+xnIMkwn9UsJIwc174BIjkyBmSpjKg==";
- };
- };
- "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 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
- };
- };
- "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-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 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==";
- };
- };
- "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 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
- };
- };
- "is-directory-0.3.1" = {
- name = "is-directory";
- packageName = "is-directory";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz";
- sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1";
- };
- };
- "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-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 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==";
- };
- };
- "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-file-1.0.0" = {
- name = "is-file";
- packageName = "is-file";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-file/-/is-file-1.0.0.tgz";
- sha1 = "28a44cfbd9d3db193045f22b65fce8edf9620596";
- };
- };
- "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-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-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-mergeable-object-1.1.0" = {
- name = "is-mergeable-object";
- packageName = "is-mergeable-object";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.0.tgz";
- sha512 = "JfyDDwUdtS4yHCgUpxOyKB9dnfZ0gecufxB0eytX6BmSXSE+8dbxDGt+V7CNRIRJ9sYFV/WQt2KJG6hNob2sBw==";
- };
- };
- "is-my-ip-valid-1.0.0" = {
- name = "is-my-ip-valid";
- packageName = "is-my-ip-valid";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz";
- sha512 = "gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==";
- };
- };
- "is-my-json-valid-2.18.0" = {
- name = "is-my-json-valid";
- packageName = "is-my-json-valid";
- version = "2.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.18.0.tgz";
- sha512 = "DWT87JHCSdCPCxbqBpS6Z2ajAt+MvrJq8I4xrpQljCvzODO5/fiquBp20a3sN6yCJvFbCRyYvJOHjpzkPTKJyA==";
- };
- };
- "is-natural-number-4.0.1" = {
- name = "is-natural-number";
- packageName = "is-natural-number";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz";
- sha1 = "ab9d76e1db4ced51e35de0c72ebecf09f734cde8";
- };
- };
- "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-number-4.0.0" = {
- name = "is-number";
- packageName = "is-number";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz";
- sha512 = "rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==";
- };
- };
- "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-options-1.0.1" = {
- name = "is-options";
- packageName = "is-options";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-options/-/is-options-1.0.1.tgz";
- sha512 = "2Xj8sA0zDrAcaoWfBiNmc6VPWAgKDpim0T3J9Djq7vbm1UjwbUWzeuLu/FwC46g3cBbAn0E5R0xwVtOobM6Xxg==";
- };
- };
- "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.1" = {
- name = "is-path-in-cwd";
- packageName = "is-path-in-cwd";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz";
- sha512 = "FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==";
- };
- };
- "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 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
- };
- };
- "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 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==";
- };
- };
- "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 = "qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==";
- };
- };
- "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.1" = {
- name = "is-supported-regexp-flag";
- packageName = "is-supported-regexp-flag";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz";
- sha512 = "3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==";
- };
- };
- "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 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==";
- };
- };
- "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";
- };
- };
- "is-url-1.2.4" = {
- name = "is-url";
- packageName = "is-url";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz";
- sha512 = "ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==";
- };
- };
- "is-url-superb-2.0.0" = {
- name = "is-url-superb";
- packageName = "is-url-superb";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-url-superb/-/is-url-superb-2.0.0.tgz";
- sha1 = "b728a18cf692e4d16da6b94c7408a811db0d0492";
- };
- };
- "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-1.0.0" = {
- name = "is-valid-glob";
- packageName = "is-valid-glob";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz";
- sha1 = "29bf3eff701be2d4d315dbacc39bc39fe8f601aa";
- };
- };
- "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.2" = {
- name = "is-windows";
- packageName = "is-windows";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz";
- sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
- };
- };
- "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";
- };
- };
- "isarray-2.0.4" = {
- name = "isarray";
- packageName = "isarray";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/isarray/-/isarray-2.0.4.tgz";
- sha512 = "GMxXOiUirWg1xTKRipM0Ek07rX+ubx4nNVElTJdNLYmNO/2YrDkgJGw9CljXn+r4EWiDQg/8lsRdHyg2PJuUaA==";
- };
- };
- "isbinaryfile-3.0.3" = {
- name = "isbinaryfile";
- packageName = "isbinaryfile";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz";
- sha512 = "8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==";
- };
- };
- "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 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==";
- };
- };
- "iterall-1.1.3" = {
- name = "iterall";
- packageName = "iterall";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/iterall/-/iterall-1.1.3.tgz";
- sha512 = "Cu/kb+4HiNSejAPhSaN1VukdNTTi/r4/e+yykqjlG/IW+1gZH5b4+Bq3whDX4tvbYugta3r8KTMUiqT3fIGxuQ==";
- };
- };
- "iterall-1.2.2" = {
- name = "iterall";
- packageName = "iterall";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz";
- sha512 = "yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==";
- };
- };
- "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";
- };
- };
- "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.11.0" = {
- name = "jaeger-client";
- packageName = "jaeger-client";
- version = "3.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jaeger-client/-/jaeger-client-3.11.0.tgz";
- sha1 = "4b38b820dd2a8fe355a81f4d84d85bc463c95d20";
- };
- };
- "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.4.0" = {
- name = "jju";
- packageName = "jju";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz";
- sha1 = "a3abe2718af241a2b2904f84a625970f389ae32a";
- };
- };
- "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";
- };
- };
- "jquery-3.3.1" = {
- name = "jquery";
- packageName = "jquery";
- version = "3.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz";
- sha512 = "Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg==";
- };
- };
- "jquery-ui-bundle-1.12.1" = {
- name = "jquery-ui-bundle";
- packageName = "jquery-ui-bundle";
- version = "1.12.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jquery-ui-bundle/-/jquery-ui-bundle-1.12.1.tgz";
- sha1 = "d6be2e4c377494e2378b1cae2920a91d1182d8c4";
- };
- };
- "js-base64-2.4.8" = {
- name = "js-base64";
- packageName = "js-base64";
- version = "2.4.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-base64/-/js-base64-2.4.8.tgz";
- sha512 = "hm2nYpDrwoO/OzBhdcqs/XGT6XjSuSSCVEpia+Kl2J6x4CYt5hISlVL/AYU1khoDXv0AQVgxtdJySb9gjAn56Q==";
- };
- };
- "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-tokens-4.0.0" = {
- name = "js-tokens";
- packageName = "js-tokens";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz";
- sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==";
- };
- };
- "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 = "O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==";
- };
- };
- "js-yaml-3.11.0" = {
- name = "js-yaml";
- packageName = "js-yaml";
- version = "3.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.11.0.tgz";
- sha512 = "saJstZWv7oNeOyBh3+Dx1qWzhW0+e6/8eDzo7p5rDFqxntSztloLtuKu+Ejhtq82jsilwOIZYsCz+lIjthg1Hw==";
- };
- };
- "js-yaml-3.12.0" = {
- name = "js-yaml";
- packageName = "js-yaml";
- version = "3.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz";
- sha512 = "PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==";
- };
- };
- "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";
- };
- };
- "jsdom-7.2.2" = {
- name = "jsdom";
- packageName = "jsdom";
- version = "7.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsdom/-/jsdom-7.2.2.tgz";
- sha1 = "40b402770c2bda23469096bee91ab675e3b1fc6e";
- };
- };
- "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";
- };
- };
- "jsesc-2.5.1" = {
- name = "jsesc";
- packageName = "jsesc";
- version = "2.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.1.tgz";
- sha1 = "e421a2a8e20d6b0819df28908f782526b96dd1fe";
- };
- };
- "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-merge-patch-0.2.3" = {
- name = "json-merge-patch";
- packageName = "json-merge-patch";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-merge-patch/-/json-merge-patch-0.2.3.tgz";
- sha1 = "fa2c6b5af87da77bae2966a589d52e23ed81fe40";
- };
- };
- "json-parse-better-errors-1.0.2" = {
- name = "json-parse-better-errors";
- packageName = "json-parse-better-errors";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
- sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==";
- };
- };
- "json-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-ref-parser-3.3.1" = {
- name = "json-schema-ref-parser";
- packageName = "json-schema-ref-parser";
- version = "3.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-ref-parser/-/json-schema-ref-parser-3.3.1.tgz";
- sha512 = "stQTMhec2R/p2L9dH4XXRlpNCP0mY8QrLd/9Kl+8SHJQmwHtE1nDfXH4wbsSM+GkJMl8t92yZbI0OIol432CIQ==";
- };
- };
- "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-schema-traverse-0.4.1" = {
- name = "json-schema-traverse";
- packageName = "json-schema-traverse";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
- sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==";
- };
- };
- "json-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";
- };
- };
- "json5-1.0.1" = {
- name = "json5";
- packageName = "json5";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz";
- sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==";
- };
- };
- "jsonata-1.5.4" = {
- name = "jsonata";
- packageName = "jsonata";
- version = "1.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonata/-/jsonata-1.5.4.tgz";
- sha512 = "F/p92UWYUn+kD3SE898jjlz1mkBzjtok9ZTtWT6+axS4Z2Wtc8p/md6xHkyCGWPdIEJBTSw0mlvKE+s+fAVSjg==";
- };
- };
- "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-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";
- };
- };
- "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-8.2.1" = {
- name = "jsonwebtoken";
- packageName = "jsonwebtoken";
- version = "8.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.2.1.tgz";
- sha512 = "l8rUBr0fqYYwPc8/ZGrue7GiW7vWdZtZqelxo4Sd5lMvuEeCK8/wS54sEo6tJhdZ6hqfutsj6COgC0d1XdbHGw==";
- };
- };
- "jsonwebtoken-8.3.0" = {
- name = "jsonwebtoken";
- packageName = "jsonwebtoken";
- version = "8.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.3.0.tgz";
- sha512 = "oge/hvlmeJCH+iIz1DwcO7vKPkNGJHhgkspk8OH3VKlw+mbi42WtD4ig1+VXRln765vxptAv+xT26Fd3cteqag==";
- };
- };
- "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.0" = {
- name = "jsprim";
- packageName = "jsprim";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz";
- sha1 = "a3b87e40298d8c380552d8cc7628a0bb95a22918";
- };
- };
- "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";
- };
- };
- "junk-2.1.0" = {
- name = "junk";
- packageName = "junk";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/junk/-/junk-2.1.0.tgz";
- sha1 = "f431b4b7f072dc500a5f10ce7f4ec71930e70134";
- };
- };
- "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.6" = {
- name = "jwa";
- packageName = "jwa";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/jwa/-/jwa-1.1.6.tgz";
- sha512 = "tBO/cf++BUsJkYql/kBbJroKOgHWEigTKBAjjBEmrMGYd1QMBC74Hr4Wo2zCZw6ZrVhlJPvoMrkcOnlWR/DJfw==";
- };
- };
- "jws-3.1.5" = {
- name = "jws";
- packageName = "jws";
- version = "3.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/jws/-/jws-3.1.5.tgz";
- sha512 = "GsCSexFADNQUr8T5HPJvayTjvPIfoyJPtLQBwn5a4WZQchcrPMPMAWcC1AzJVRDKyD6ZPROPAxgv6rfHViO4uQ==";
- };
- };
- "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 = "kgwWqYT79rAahn4maIVTP8dIe+m1KulufWW+f1bB9DlZrRFiGpZ4iJOg2HUp4xJYBWONP3+rOPIWF/RXABU6mw==";
- };
- };
- "k-bucket-4.0.1" = {
- name = "k-bucket";
- packageName = "k-bucket";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-bucket/-/k-bucket-4.0.1.tgz";
- sha512 = "YvDpmY3waI999h1zZoW1rJ04fZrgZ+5PAlVmvwDHT6YO/Q1AOhdel07xsKy9eAvJjQ9xZV1wz3rXKqEfaWvlcQ==";
- };
- };
- "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.3.1" = {
- name = "k-rpc";
- packageName = "k-rpc";
- version = "4.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc/-/k-rpc-4.3.1.tgz";
- sha512 = "mgAJZeFYbpP0xzJzmS0TQTYoFI0sjy3GnKFhg8wyboL+KvWg2WLaA2Oy9PthLPx2Rxz4WeBMk4y3MSOrDJ95FA==";
- };
- };
- "k-rpc-5.0.0" = {
- name = "k-rpc";
- packageName = "k-rpc";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc/-/k-rpc-5.0.0.tgz";
- sha512 = "vCH2rQdfMOS+MlUuTSuar1pS2EMrltURf9LmAR9xR6Jik0XPlMX3vEixgqMn17wKmFVCublJqSJ4hJIP7oKZ3Q==";
- };
- };
- "k-rpc-socket-1.8.0" = {
- name = "k-rpc-socket";
- packageName = "k-rpc-socket";
- version = "1.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc-socket/-/k-rpc-socket-1.8.0.tgz";
- sha512 = "f/9TynsO8YYjZ6JjNNtSSH7CJcIHcio1buy3zqByGxb/GX8AWLdL6FZEWTrN8V3/J7W4/E0ZTQQ+Jt2rVq7ELg==";
- };
- };
- "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.5" = {
- name = "keen.io";
- packageName = "keen.io";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/keen.io/-/keen.io-0.1.5.tgz";
- sha512 = "THuLqGgrsqRiszyq7Mkasf4uKCtpIXjoptQJZQcvQ6WutSjf17ndJ/eHZCi7IbvulNq5NwJWBH1earF0duIzDw==";
- };
- };
- "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 = "eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==";
- };
- };
- "kind-of-1.1.0" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz";
- sha1 = "140a3d2d41a36d2efcfa9377b62c24f8495a5c44";
- };
- };
- "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 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==";
- };
- };
- "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 = "s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==";
- };
- };
- "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";
- };
- };
- "klaw-3.0.0" = {
- name = "klaw";
- packageName = "klaw";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz";
- sha512 = "0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==";
- };
- };
- "knockout-3.5.0-rc" = {
- name = "knockout";
- packageName = "knockout";
- version = "3.5.0-rc";
- src = fetchurl {
- url = "https://registry.npmjs.org/knockout/-/knockout-3.5.0-rc.tgz";
- sha512 = "eROh551BD9dDQ2ItCF60IPcZZXP46WiEcFCU6pVlekeQ6mv3L+in4u8BIIUDp1h0OtL7IXLwvwEY8HkG/BPtrQ==";
- };
- };
- "kuduscript-1.0.16" = {
- name = "kuduscript";
- packageName = "kuduscript";
- version = "1.0.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/kuduscript/-/kuduscript-1.0.16.tgz";
- sha512 = "++ulra2RtdutmJhZZFohhF+kbccz2XdFTf23857x8X1M9Jfm54ZKY4kXPJKgPdMz6eTH1MBXWXh17RvGWxLNrw==";
- };
- };
- "labeled-stream-splicer-2.0.1" = {
- name = "labeled-stream-splicer";
- packageName = "labeled-stream-splicer";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz";
- sha512 = "MC94mHZRvJ3LfykJlTUipBqenZz1pacOZEMhhQ8dMGcDHs0SBE5GbsavUXV7YtP3icBW17W0Zy1I0lfASmo9Pg==";
- };
- };
- "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-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";
- };
- };
- "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";
- };
- };
- "lead-1.0.0" = {
- name = "lead";
- packageName = "lead";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz";
- sha1 = "6f14f99a37be3a9dd784f5495690e5903466ee42";
- };
- };
- "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 = "KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ==";
- };
- };
- "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 = "1fDsyifwRGObMmqaZhkTDAmVnvgpZmdf6ZTSCbVv9vt+xhlzOz5TDNlLCbITsusEB3d0OKOEadwN9ic3PyOWCg==";
- };
- };
- "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.7" = {
- name = "level-post";
- packageName = "level-post";
- version = "1.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/level-post/-/level-post-1.0.7.tgz";
- sha512 = "PWYqG4Q00asOrLhX7BejSajByB4EmG2GaKHfj3h5UmmZ2duciXLPGYWIjBzLECFWUGOZWlm5B20h/n3Gs3HKew==";
- };
- };
- "level-sublevel-6.6.5" = {
- name = "level-sublevel";
- packageName = "level-sublevel";
- version = "6.6.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/level-sublevel/-/level-sublevel-6.6.5.tgz";
- sha512 = "SBSR60x+dghhwGUxPKS+BvV1xNqnwsEUBKmnFepPaHJ6VkBXyPK9SImGc3K2BkwBfpxlt7GKkBNlCnrdufsejA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "load-ip-set-2.1.0" = {
- name = "load-ip-set";
- packageName = "load-ip-set";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/load-ip-set/-/load-ip-set-2.1.0.tgz";
- sha512 = "taz7U6B+F7Zq90dfIKwqsB1CrFKelSEmMGC68OUqem8Cgd1QZygQBYb2Fk9i6muBSfH4xwF/Pjt4KKlAdOyWZw==";
- };
- };
- "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";
- };
- };
- "locate-path-3.0.0" = {
- name = "locate-path";
- packageName = "locate-path";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz";
- sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==";
- };
- };
- "lockfile-1.0.4" = {
- name = "lockfile";
- packageName = "lockfile";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz";
- sha512 = "cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==";
- };
- };
- "locks-0.2.2" = {
- name = "locks";
- packageName = "locks";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/locks/-/locks-0.2.2.tgz";
- sha1 = "259933d1327cbaf0fd3662f8fffde36809d84ced";
- };
- };
- "locutus-2.0.9" = {
- name = "locutus";
- packageName = "locutus";
- version = "2.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/locutus/-/locutus-2.0.9.tgz";
- sha1 = "e265af1e85fd19173e74386373888560783a02fc";
- };
- };
- "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.10" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.17.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz";
- sha512 = "UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==";
- };
- };
- "lodash-4.17.5" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.17.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz";
- sha512 = "svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==";
- };
- };
- "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._objecttypes-2.4.1" = {
- name = "lodash._objecttypes";
- packageName = "lodash._objecttypes";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz";
- sha1 = "7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11";
- };
- };
- "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" = {
- name = "lodash.assignin";
- packageName = "lodash.assignin";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz";
- sha1 = "ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2";
- };
- };
- "lodash.bind-4.2.1" = {
- name = "lodash.bind";
- packageName = "lodash.bind";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz";
- 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.clone-4.5.0" = {
- name = "lodash.clone";
- packageName = "lodash.clone";
- version = "4.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz";
- sha1 = "195870450f5a13192478df4bc3d23d2dea1907b6";
- };
- };
- "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";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz";
- sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c";
- };
- };
- "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";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz";
- sha1 = "668b1d4981603ae1cc5a6fa760143e480b4c4ace";
- };
- };
- "lodash.flatten-4.4.0" = {
- name = "lodash.flatten";
- packageName = "lodash.flatten";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz";
- 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";
- version = "4.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz";
- sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53";
- };
- };
- "lodash.get-4.4.2" = {
- name = "lodash.get";
- packageName = "lodash.get";
- version = "4.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz";
- sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99";
- };
- };
- "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.has-4.5.2" = {
- name = "lodash.has";
- packageName = "lodash.has";
- version = "4.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.has/-/lodash.has-4.5.2.tgz";
- sha1 = "d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862";
- };
- };
- "lodash.includes-4.3.0" = {
- name = "lodash.includes";
- packageName = "lodash.includes";
- version = "4.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz";
- sha1 = "60bb98a87cb923c68ca1e51325483314849f553f";
- };
- };
- "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.isboolean-3.0.3" = {
- name = "lodash.isboolean";
- packageName = "lodash.isboolean";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz";
- sha1 = "6c2e171db2a257cd96802fd43b01b20d5f5870f6";
- };
- };
- "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.isinteger-4.0.4" = {
- name = "lodash.isinteger";
- packageName = "lodash.isinteger";
- version = "4.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz";
- sha1 = "619c0af3d03f8b04c31f5882840b77b11cd68343";
- };
- };
- "lodash.isnumber-3.0.3" = {
- name = "lodash.isnumber";
- packageName = "lodash.isnumber";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz";
- sha1 = "3ce76810c5928d03352301ac287317f11c0b1ffc";
- };
- };
- "lodash.isobject-2.4.1" = {
- name = "lodash.isobject";
- packageName = "lodash.isobject";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz";
- sha1 = "5a2e47fe69953f1ee631a7eba1fe64d2d06558f5";
- };
- };
- "lodash.isplainobject-4.0.6" = {
- name = "lodash.isplainobject";
- packageName = "lodash.isplainobject";
- version = "4.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz";
- sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb";
- };
- };
- "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";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz";
- 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.1" = {
- name = "lodash.merge";
- packageName = "lodash.merge";
- version = "4.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz";
- sha512 = "AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==";
- };
- };
- "lodash.mergewith-4.6.1" = {
- name = "lodash.mergewith";
- packageName = "lodash.mergewith";
- version = "4.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz";
- sha512 = "eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ==";
- };
- };
- "lodash.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.partialright-4.2.1" = {
- name = "lodash.partialright";
- packageName = "lodash.partialright";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.partialright/-/lodash.partialright-4.2.1.tgz";
- sha1 = "0130d80e83363264d40074f329b8a3e7a8a1cc4b";
- };
- };
- "lodash.pick-4.4.0" = {
- name = "lodash.pick";
- packageName = "lodash.pick";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz";
- sha1 = "52f05610fff9ded422611441ed1fc123a03001b3";
- };
- };
- "lodash.reduce-4.6.0" = {
- name = "lodash.reduce";
- packageName = "lodash.reduce";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz";
- sha1 = "f1ab6b839299ad48f784abbf476596f03b914d3b";
- };
- };
- "lodash.reject-4.6.0" = {
- name = "lodash.reject";
- packageName = "lodash.reject";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz";
- 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.set-4.3.2" = {
- name = "lodash.set";
- packageName = "lodash.set";
- version = "4.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz";
- sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23";
- };
- };
- "lodash.some-4.6.0" = {
- name = "lodash.some";
- packageName = "lodash.some";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz";
- sha1 = "1bb9f314ef6b8baded13b549169b2a945eb68e4d";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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 = "VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==";
- };
- };
- "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-3.0.4" = {
- name = "log4js";
- packageName = "log4js";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/log4js/-/log4js-3.0.4.tgz";
- sha512 = "4rQ1TrOf85lxB0+hBiPF27Zw8pGTHxKZq8FYfum1TNhx/KMUlQ+LL4bMKcdzc7zoAFF992w8+MFQm3BQbUgePA==";
- };
- };
- "lokijs-1.5.3" = {
- name = "lokijs";
- packageName = "lokijs";
- version = "1.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lokijs/-/lokijs-1.5.3.tgz";
- sha1 = "6952722ffa3049a55a5e1c10ee4a0947a3e5e19b";
- };
- };
- "lomstream-1.1.0" = {
- name = "lomstream";
- packageName = "lomstream";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lomstream/-/lomstream-1.1.0.tgz";
- sha1 = "2a7f8066ec3ab40bef28ca384842e75340183bf0";
- };
- };
- "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";
- };
- };
- "long-3.2.0" = {
- name = "long";
- packageName = "long";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/long/-/long-3.2.0.tgz";
- sha1 = "d821b7138ca1cb581c172990ef14db200b5c474b";
- };
- };
- "long-4.0.0" = {
- name = "long";
- packageName = "long";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/long/-/long-4.0.0.tgz";
- sha512 = "XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==";
- };
- };
- "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";
- };
- };
- "longjohn-0.2.12" = {
- name = "longjohn";
- packageName = "longjohn";
- version = "0.2.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/longjohn/-/longjohn-0.2.12.tgz";
- sha1 = "7ca7446b083655c377e7512213dc754d52a64a7e";
- };
- };
- "looper-2.0.0" = {
- name = "looper";
- packageName = "looper";
- 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";
- };
- };
- "loose-envify-1.4.0" = {
- name = "loose-envify";
- packageName = "loose-envify";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz";
- sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==";
- };
- };
- "lossless-json-1.0.3" = {
- name = "lossless-json";
- packageName = "lossless-json";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lossless-json/-/lossless-json-1.0.3.tgz";
- sha512 = "r4w0WrhIHV1lOTVGbTg4Toqwso5x6C8pM7Q/Nto2vy4c7yUSdTYVYlj16uHVX3MT1StpSELDv8yrqGx41MBsDA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "lowercase-keys-1.0.1" = {
- name = "lowercase-keys";
- packageName = "lowercase-keys";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz";
- sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==";
- };
- };
- "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-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";
- };
- };
- "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";
- };
- };
- "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.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.3" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "4.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz";
- sha512 = "fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==";
- };
- };
- "lru-queue-0.1.0" = {
- name = "lru-queue";
- packageName = "lru-queue";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz";
- sha1 = "2738bd9f0d3cf4f84490c5736c48699ac632cda3";
- };
- };
- "lstream-0.0.4" = {
- name = "lstream";
- packageName = "lstream";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lstream/-/lstream-0.0.4.tgz";
- sha1 = "d637764ea33a929bd00f34d2a23c2256d0d5fb5b";
- };
- };
- "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/lynx/-/lynx-0.2.0.tgz";
- sha1 = "79e6674530da4183e87953bd686171e070da50b9";
- };
- };
- "macos-release-1.1.0" = {
- name = "macos-release";
- packageName = "macos-release";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/macos-release/-/macos-release-1.1.0.tgz";
- sha512 = "mmLbumEYMi5nXReB9js3WGsB8UE6cDBWyIO62Z4DNx6GbRhDxHNjA1MlzSpJ2S2KM1wyiPRA0d19uHWYYvMHjA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "magnet-uri-5.2.3" = {
- name = "magnet-uri";
- packageName = "magnet-uri";
- version = "5.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-5.2.3.tgz";
- sha512 = "INWVwcpWfZTVM+Yb4EXVBpm0FTd8Q98Fn5x7nuHv1hkFDRELgdIM+eJ3zYLbNTFpFPYtHs6B+sx8exs29IYwgA==";
- };
- };
- "mailcomposer-2.1.0" = {
- name = "mailcomposer";
- packageName = "mailcomposer";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mailcomposer/-/mailcomposer-2.1.0.tgz";
- sha1 = "a6531822899614fee899c92226d81e2b9cbb183d";
- };
- };
- "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";
- };
- };
- "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.3.0" = {
- name = "make-dir";
- packageName = "make-dir";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz";
- sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==";
- };
- };
- "make-error-1.3.4" = {
- name = "make-error";
- packageName = "make-error";
- version = "1.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-error/-/make-error-1.3.4.tgz";
- sha512 = "0Dab5btKVPhibSalc9QGXb559ED7G7iLjFXBaj9Wq8O3vorueR5K5jaE3hkG6ZQINyhA/JgG6Qk4qdFQjsYV6g==";
- };
- };
- "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.1" = {
- name = "make-iterator";
- packageName = "make-iterator";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz";
- sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==";
- };
- };
- "mamacro-0.0.3" = {
- name = "mamacro";
- packageName = "mamacro";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz";
- sha512 = "qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==";
- };
- };
- "map-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-obj-2.0.0" = {
- name = "map-obj";
- packageName = "map-obj";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/map-obj/-/map-obj-2.0.0.tgz";
- sha1 = "a65cd29087a92598b8791257a523e021222ac1f9";
- };
- };
- "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";
- };
- };
- "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.2" = {
- name = "markdown-it";
- packageName = "markdown-it";
- version = "8.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz";
- sha512 = "GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==";
- };
- };
- "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.1" = {
- name = "markdown-it-github-headings";
- packageName = "markdown-it-github-headings";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it-github-headings/-/markdown-it-github-headings-1.1.1.tgz";
- sha512 = "jEthmVitZXhYJ0Fkvh6RfBcxdIKKec/p3LidX9a+Hs5/AnUjtxi1nxDVhu1muyacXoTiA+ChVilASQyTdfWk2Q==";
- };
- };
- "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/markdown-it-task-checkbox/-/markdown-it-task-checkbox-1.0.6.tgz";
- sha512 = "7pxkHuvqTOu3iwVGmDPeYjQg+AIS9VQxzyLP9JCg9lBjgPAJXGEkChK6A2iFuj3tS0GV3HG2u5AMNhcQqwxpJw==";
- };
- };
- "marked-0.3.19" = {
- name = "marked";
- packageName = "marked";
- version = "0.3.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz";
- sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==";
- };
- };
- "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 = "nUCmzKipcJEwYsBVAFh5P+d7JBuhJaW1xs85Hara9xuMLqtCVUrW6DSC0JVIkluxEH2W45nPBM/wjHtBXa/tYA==";
- };
- };
- "math-random-1.0.1" = {
- name = "math-random";
- packageName = "math-random";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz";
- sha1 = "8b3aac588b8a66e4975e3cdea67f7bb329601fac";
- };
- };
- "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.4" = {
- name = "mdn-data";
- packageName = "mdn-data";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz";
- sha512 = "FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==";
- };
- };
- "mdns-js-0.5.0" = {
- name = "mdns-js";
- packageName = "mdns-js";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mdns-js/-/mdns-js-0.5.0.tgz";
- sha1 = "4c8abb6ba7cabdc892d39228c3faa2556e09cf87";
- };
- };
- "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 = "dwEtMzmoZCQcGlr004J4m2+W6dCMpCoGQ5kYIEY+7rMPdMM7ztT+1qD9ExmottvLGgbqAVsjllhwU8PyusecPg==";
- };
- };
- "mdns-js-packet-0.2.0" = {
- name = "mdns-js-packet";
- packageName = "mdns-js-packet";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mdns-js-packet/-/mdns-js-packet-0.2.0.tgz";
- sha1 = "642409e8183c7561cc60615bbd1420ec2fad7616";
- };
- };
- "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";
- };
- };
- "mediasource-2.2.2" = {
- name = "mediasource";
- packageName = "mediasource";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/mediasource/-/mediasource-2.2.2.tgz";
- sha512 = "yIyAJMcu1mudTkxZ0jDAKnZJJba4eWPCxxtZRMpoaA4/AI7m7nqbRjmdxmi+x3hKTohb5vC9Yd3IBF/SUzp1vQ==";
- };
- };
- "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 = "fPcI4r2yH02UUgMo308CVzIuXUaRUrBzMvjXX8J4XfcHgX9Y73iB0/VLp+S3TnxnTgIGrQ3BFb7kWGR7kkyS8g==";
- };
- };
- "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";
- };
- };
- "memoizee-0.4.13" = {
- name = "memoizee";
- packageName = "memoizee";
- version = "0.4.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/memoizee/-/memoizee-0.4.13.tgz";
- sha512 = "OVDg4OBcDOaNnTKbVYZPf+N6ON4oon2V0fBVJ1QkIGnfjdusLoUISUptQTY5kP5+zmnAr6k5V/zLc8nKNmVrcg==";
- };
- };
- "memory-chunk-store-1.3.0" = {
- name = "memory-chunk-store";
- packageName = "memory-chunk-store";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/memory-chunk-store/-/memory-chunk-store-1.3.0.tgz";
- sha512 = "6LsOpHKKhxYrLhHmOJdBCUtSO7op5rUs1pag0fhjHo0QiXRyna0bwYf4EmQuL7InUeF2J7dUMPr6VMogRyf9NA==";
- };
- };
- "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 = "Mf9OHV/Y7h6YWDxTzX/b4ZZ4oh9NSXblQL8dtPCOomOtZciEHxePR78+uHFLLlsk01A6jVHhHsQZZ/WcIPpnzg==";
- };
- };
- "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";
- };
- };
- "menu-string-1.2.0" = {
- name = "menu-string";
- packageName = "menu-string";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/menu-string/-/menu-string-1.2.0.tgz";
- sha512 = "b6RTFmSlLjs20Qninl0Wq6dOstjpaPM2pQ63li06pLVTGIIoxjuMRbOmYbGW8l73/AiGNoCK9yXfdfIpLIURPQ==";
- };
- };
- "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";
- };
- };
- "meow-4.0.1" = {
- name = "meow";
- packageName = "meow";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/meow/-/meow-4.0.1.tgz";
- sha512 = "xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==";
- };
- };
- "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";
- };
- };
- "merge2-1.2.2" = {
- name = "merge2";
- packageName = "merge2";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/merge2/-/merge2-1.2.2.tgz";
- sha512 = "bgM8twH86rWni21thii6WCMQMRMmwqqdW3sGWi9IipnVAszdLXRjwDwAnyrVXo6DuP3AjRMMttZKUB48QWIFGg==";
- };
- };
- "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";
- };
- };
- "metalsmith-2.3.0" = {
- name = "metalsmith";
- packageName = "metalsmith";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/metalsmith/-/metalsmith-2.3.0.tgz";
- sha1 = "833afbb5a2a6385e2d9ae3d935e39e33eaea5231";
- };
- };
- "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";
- };
- };
- "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.10" = {
- name = "micromatch";
- packageName = "micromatch";
- version = "3.1.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
- sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
- };
- };
- "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 = "115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==";
- };
- };
- "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 = "KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==";
- };
- };
- "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 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
- };
- };
- "mime-2.3.1" = {
- name = "mime";
- packageName = "mime";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-2.3.1.tgz";
- sha512 = "OEUllcVoydBHGN1z84yfQDimn58pZNNNXgZlHXSboxMlFvgI6MXSWpWKpFRra7H1HxpVhHTkrghfRW49k6yjeg==";
- };
- };
- "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.33.0" = {
- name = "mime-db";
- packageName = "mime-db";
- version = "1.33.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz";
- sha512 = "BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==";
- };
- };
- "mime-db-1.35.0" = {
- name = "mime-db";
- packageName = "mime-db";
- version = "1.35.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz";
- sha512 = "JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==";
- };
- };
- "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.18" = {
- name = "mime-types";
- packageName = "mime-types";
- version = "2.1.18";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz";
- sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==";
- };
- };
- "mime-types-2.1.19" = {
- name = "mime-types";
- packageName = "mime-types";
- version = "2.1.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz";
- sha512 = "P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw==";
- };
- };
- "mimelib-0.3.1" = {
- name = "mimelib";
- packageName = "mimelib";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mimelib/-/mimelib-0.3.1.tgz";
- sha1 = "787add2415d827acb3af6ec4bca1ea9596418853";
- };
- };
- "mimic-fn-1.2.0" = {
- name = "mimic-fn";
- packageName = "mimic-fn";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz";
- sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==";
- };
- };
- "mimic-response-1.0.1" = {
- name = "mimic-response";
- packageName = "mimic-response";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz";
- sha512 = "j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==";
- };
- };
- "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/minilog/-/minilog-3.1.0.tgz";
- sha1 = "d2d0f1887ca363d1acf0ea86d5c4df293b3fb675";
- };
- };
- "minimalistic-assert-1.0.1" = {
- name = "minimalistic-assert";
- packageName = "minimalistic-assert";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz";
- sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "minimatch-3.0.4" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
- sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
- };
- };
- "minimist-0.0.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";
- };
- };
- "minimist-options-3.0.2" = {
- name = "minimist-options";
- packageName = "minimist-options";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist-options/-/minimist-options-3.0.2.tgz";
- sha512 = "FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==";
- };
- };
- "minipass-2.3.3" = {
- name = "minipass";
- packageName = "minipass";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz";
- sha512 = "/jAn9/tEX4gnpyRATxgHEOV6xbcyxgT7iUnxo9Y3+OB0zX00TgKIv/2FZCf5brBbICcwbLqVv2ImjvWWrQMSYw==";
- };
- };
- "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 = "4T6Ur/GctZ27nHfpt9THOdRZNgyJ9FZchYO1ceg5S8Q3DNLCKYy44nCZzgCJgcvx2UM8czmqak5BCxJMrq37lA==";
- };
- };
- "mirror-folder-3.0.0" = {
- name = "mirror-folder";
- packageName = "mirror-folder";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-3.0.0.tgz";
- sha512 = "fh6wDXcSpFoKY7ZPHnEv1+xjLOS7tlkEpTvl4Y6ZsT0HNjIaYg6ktq9ng8MPthFruunS8D/3GnPeaWhoQD3X9g==";
- };
- };
- "mississippi-2.0.0" = {
- name = "mississippi";
- packageName = "mississippi";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz";
- sha512 = "zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==";
- };
- };
- "mixin-deep-1.3.1" = {
- name = "mixin-deep";
- packageName = "mixin-deep";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz";
- sha512 = "8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==";
- };
- };
- "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.1" = {
- name = "modify-values";
- packageName = "modify-values";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz";
- sha512 = "xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==";
- };
- };
- "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-6.1.0" = {
- name = "module-deps";
- packageName = "module-deps";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/module-deps/-/module-deps-6.1.0.tgz";
- sha512 = "NPs5N511VD1rrVJihSso/LiBShRbJALYBKzDW91uZYy7BpjnO4bGnZL3HjZ9yKcFdZUWwaYjDz9zxbuP7vKMuQ==";
- };
- };
- "mold-source-map-0.4.0" = {
- name = "mold-source-map";
- packageName = "mold-source-map";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mold-source-map/-/mold-source-map-0.4.0.tgz";
- sha1 = "cf67e0b31c47ab9badb5c9c25651862127bb8317";
- };
- };
- "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.20.1" = {
- name = "moment";
- packageName = "moment";
- version = "2.20.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz";
- sha512 = "Yh9y73JRljxW5QxN08Fner68eFLxM5ynNOAw2LbIB1YAGeQzZT8QFSUvkAz609Zf+IHhhaUxqZK8dG3W/+HEvg==";
- };
- };
- "moment-2.22.2" = {
- name = "moment";
- packageName = "moment";
- version = "2.22.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz";
- sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66";
- };
- };
- "moment-2.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.21" = {
- name = "moment-timezone";
- packageName = "moment-timezone";
- version = "0.5.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.21.tgz";
- sha512 = "j96bAh4otsgj3lKydm3K7kdtA3iKf2m6MY2iSYCzCm5a1zmHo1g+aK3068dDEeocLZQIS9kU8bsdQHLqEvgW0A==";
- };
- };
- "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" = {
- name = "mongoose";
- packageName = "mongoose";
- version = "3.6.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/mongoose/-/mongoose-3.6.7.tgz";
- sha1 = "aa6c9f4dfb740c7721dbe734fbb97714e5ab0ebc";
- };
- };
- "mongoose-lifecycle-1.0.0" = {
- name = "mongoose-lifecycle";
- packageName = "mongoose-lifecycle";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mongoose-lifecycle/-/mongoose-lifecycle-1.0.0.tgz";
- sha1 = "3bac3f3924a845d147784fc6558dee900b0151e2";
- };
- };
- "mooremachine-2.2.1" = {
- name = "mooremachine";
- packageName = "mooremachine";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mooremachine/-/mooremachine-2.2.1.tgz";
- sha1 = "0d9891aa7c2cf32ca73e72f52a3561ed787e2e8c";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "mp4-box-encoding-1.3.0" = {
- name = "mp4-box-encoding";
- packageName = "mp4-box-encoding";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mp4-box-encoding/-/mp4-box-encoding-1.3.0.tgz";
- sha512 = "U4pMLpjT/UzB8d36dxj6Mf1bG9xypEvgbuRIa1fztRXNKKTCAtRxsnFZhNOd7YDFOKtjBgssYGvo4H/Q3ZY1MA==";
- };
- };
- "mp4-stream-2.0.3" = {
- name = "mp4-stream";
- packageName = "mp4-stream";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/mp4-stream/-/mp4-stream-2.0.3.tgz";
- sha512 = "5NzgI0+bGakoZEwnIYINXqB3mnewkt3Y7jcvkXsTubnCNUSdM8cpP0Vemxf6FLg0qUN8fydTgNMVAc3QU8B92g==";
- };
- };
- "mpath-0.1.1" = {
- name = "mpath";
- packageName = "mpath";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mpath/-/mpath-0.1.1.tgz";
- sha1 = "23da852b7c232ee097f4759d29c0ee9cd22d5e46";
- };
- };
- "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";
- };
- };
- "mqtt-2.18.0" = {
- name = "mqtt";
- packageName = "mqtt";
- version = "2.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mqtt/-/mqtt-2.18.0.tgz";
- sha512 = "d4hXWziT6tLMjaQs5TVh8uHWS072GBfmBIABezbWZ8W0nNzgMUm6iEmXDLvxkj5YVgl8qDdM0pWQ2NwRwhU7nA==";
- };
- };
- "mqtt-packet-5.6.0" = {
- name = "mqtt-packet";
- packageName = "mqtt-packet";
- version = "5.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-5.6.0.tgz";
- sha512 = "QECe2ivqcR1LRsPobRsjenEKAC3i1a5gmm+jNKJLrsiq9PaSQ18LlKFuxvhGxWkvGEPadWv6rKd31O4ICqS1Xw==";
- };
- };
- "mri-1.1.1" = {
- name = "mri";
- packageName = "mri";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mri/-/mri-1.1.1.tgz";
- sha1 = "85aa26d3daeeeedf80dc5984af95cc5ca5cad9f1";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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 = "tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==";
- };
- };
- "ms-rest-1.15.7" = {
- name = "ms-rest";
- packageName = "ms-rest";
- version = "1.15.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest/-/ms-rest-1.15.7.tgz";
- sha1 = "400515e05b1924889cb61a1ec6054290a68e1207";
- };
- };
- "ms-rest-2.3.6" = {
- name = "ms-rest";
- packageName = "ms-rest";
- version = "2.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.3.6.tgz";
- sha512 = "M+Lx9P7Wy4TeAk7jqPLwGS1QS1gvxF6Xo+OHv5j1g3Kcb44T/GTUuSjxTKarF6aKyeacZH1ZD++Nt7pcql7dDA==";
- };
- };
- "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";
- };
- };
- "ms-rest-azure-2.5.7" = {
- name = "ms-rest-azure";
- packageName = "ms-rest-azure";
- version = "2.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.5.7.tgz";
- sha512 = "e4lgB0z29Dx4ufu/c+PmEAYY1WXq98GYUBkE+iRx7WsxsN04lrM3B1vj8y+B8rKt7clPUE0niqB9VovVL8zvag==";
- };
- };
- "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 = "6HuCZHA57WtNUzrKIvjJ8OMxigzveJ6D5i13y6TsgGu3X3zxABpuBvChpppOoGdB9SyWZcmqUs1fwUV/PpSQ7Q==";
- };
- };
- "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.3" = {
- name = "multicast-dns";
- packageName = "multicast-dns";
- version = "6.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz";
- sha512 = "ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==";
- };
- };
- "multicast-dns-7.0.0" = {
- name = "multicast-dns";
- packageName = "multicast-dns";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.0.0.tgz";
- sha512 = "BqB5TtIXHo+8gN33N1CA1clsvPsAJlnc6D49SzfQA0xq75cxj15g2y9NaRdf4x2u4v1P66PBC+Wg6YgPO5Bc/g==";
- };
- };
- "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 = "PZM4dhYFmCF6uZGWpEmoPMUqJBywS9IcAgybT2GmSpYI1BvGvoWSdbio+ik+q/YD2vodhvslESWIS3NnkKYdqQ==";
- };
- };
- "multimatch-2.1.0" = {
- name = "multimatch";
- packageName = "multimatch";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz";
- sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b";
- };
- };
- "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.4" = {
- name = "multiparty";
- packageName = "multiparty";
- version = "4.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/multiparty/-/multiparty-4.1.4.tgz";
- sha1 = "4c96dcbdc11e3f7917e1615e640b4b5022be64fd";
- };
- };
- "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";
- };
- };
- "multistream-2.1.1" = {
- name = "multistream";
- packageName = "multistream";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/multistream/-/multistream-2.1.1.tgz";
- sha512 = "xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==";
- };
- };
- "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 = "oprzxd2zhfrJqEuB98qc1dRMMonClBQ57UPDjnbcrah4orEMTq1jq3+AcdFe5ePzdbJXI7zmdhfftIdMnhYFoQ==";
- };
- };
- "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 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==";
- };
- };
- "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" = {
- name = "nan";
- packageName = "nan";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-1.0.0.tgz";
- sha1 = "ae24f8850818d662fcab5acf7f3b95bfaa2ccf38";
- };
- };
- "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";
- };
- };
- "nan-2.10.0" = {
- name = "nan";
- packageName = "nan";
- version = "2.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz";
- sha512 = "bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==";
- };
- };
- "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";
- };
- };
- "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-4.3.3" = {
- name = "nanobus";
- packageName = "nanobus";
- version = "4.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanobus/-/nanobus-4.3.3.tgz";
- sha512 = "4/uzl+LkMGoVv/9eMzH2QFvefmlJErT0KR7EmuYbmht2QvxSEqTjhFFOZ/KHE6chH58fKL3njrOcEwbYV0h9Yw==";
- };
- };
- "nanoid-1.2.0" = {
- name = "nanoid";
- packageName = "nanoid";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanoid/-/nanoid-1.2.0.tgz";
- sha512 = "rJvd0q5Bq375+jrMAJh8vZk+0Q4lnHyuqZL2fbrc9moYy4DCld5VSycYLXvwFHbbut1+UcjA+fm0bq4ADVBYQg==";
- };
- };
- "nanolru-1.0.0" = {
- name = "nanolru";
- packageName = "nanolru";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanolru/-/nanolru-1.0.0.tgz";
- sha512 = "GyQkE8M32pULhQk7Sko5raoIbPalAk90ICG+An4fq6fCsFHsP6fB2K46WGXVdoJpy4SGMnZ/EKbo123fZJomWg==";
- };
- };
- "nanomatch-1.2.13" = {
- name = "nanomatch";
- packageName = "nanomatch";
- version = "1.2.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz";
- sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==";
- };
- };
- "nanoscheduler-1.0.3" = {
- name = "nanoscheduler";
- packageName = "nanoscheduler";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanoscheduler/-/nanoscheduler-1.0.3.tgz";
- sha512 = "jBbrF3qdU9321r8n9X7yu18DjP31Do2ItJm3mWrt90wJTrnDO+HXpoV7ftaUglAtjgj9s+OaCxGufbvx6pvbEQ==";
- };
- };
- "nanotiming-7.3.1" = {
- name = "nanotiming";
- packageName = "nanotiming";
- version = "7.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanotiming/-/nanotiming-7.3.1.tgz";
- sha512 = "l3lC7v/PfOuRWQa8vV29Jo6TG10wHtnthLElFXs4Te4Aas57Fo4n1Q8LH9n+NDh9riOzTVvb2QNBhTS4JUKNjw==";
- };
- };
- "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.4" = {
- name = "natives";
- packageName = "natives";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/natives/-/natives-1.1.4.tgz";
- sha512 = "Q29yeg9aFKwhLVdkTAejM/HvYG0Y1Am1+HUkFQGn5k2j8GS+v60TVmZh6nujpEAj/qql+wGUrlryO8bF+b1jEg==";
- };
- };
- "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";
- };
- };
- "nconf-0.10.0" = {
- name = "nconf";
- packageName = "nconf";
- version = "0.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nconf/-/nconf-0.10.0.tgz";
- sha512 = "fKiXMQrpP7CYWJQzKkPPx9hPgmq+YLDyxcG9N8RpiE9FoCkCbzD0NyW0YhE3xn3Aupe7nnDeIx4PFzYehpHT9Q==";
- };
- };
- "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";
- };
- };
- "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-input-1.8.0" = {
- name = "neat-input";
- packageName = "neat-input";
- version = "1.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/neat-input/-/neat-input-1.8.0.tgz";
- sha512 = "9LsyX7NcQBOT0/VEthxOCpYlKXgo0UZeGlMSx/a2SKFkE4ZiU/wTUBoF9brQKtKspmBZyLnXqDiktsbopEb0Tg==";
- };
- };
- "neat-log-2.4.0" = {
- name = "neat-log";
- packageName = "neat-log";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/neat-log/-/neat-log-2.4.0.tgz";
- sha512 = "5Gb0J17bqRxKBfgetrYCZav7kpFgunDhFq0i+kEq5Kn36Cuw4IskIl3yd+/P8jCcAzaKrQ7mrb+p6r/NP5esWA==";
- };
- };
- "neat-spinner-1.0.0" = {
- name = "neat-spinner";
- packageName = "neat-spinner";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/neat-spinner/-/neat-spinner-1.0.0.tgz";
- sha512 = "+T6UtYItDTE1L30g/nLRjP55dFlvldrzCRsn4CrcNHIbhg5JUe0hnOx1DHFViysUC7I1cevBQVjdGJ9ZftY9DA==";
- };
- };
- "neat-tasks-1.1.1" = {
- name = "neat-tasks";
- packageName = "neat-tasks";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/neat-tasks/-/neat-tasks-1.1.1.tgz";
- sha512 = "U8HkIv90/lrdNlHVp63PoF3FeuQUvJ6toMX6InqRqpBmQq9iukZRAnq/yCE4Ii6WHZRYa6DEiTH/EGFTZ0rIGg==";
- };
- };
- "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.2.2" = {
- name = "needle";
- packageName = "needle";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/needle/-/needle-2.2.2.tgz";
- sha512 = "mW7W8dKuVYefCpNzE3Z7xUmPI9wSrSL/1qH31YGMxmSOAnjatS3S9Zv3cmiHrhx3Jkp1SrWWBdOFXjfF48Uq3A==";
- };
- };
- "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#full-parse-access" = {
- name = "negotiator";
- packageName = "negotiator";
- version = "0.6.1";
- src = fetchgit {
- url = "https://github.com/arlolra/negotiator";
- rev = "0418ab4e9a665772b7e233564a4525c9d9a8ec3a";
- sha256 = "243e90fbf6616ef39f3c71bbcd027799e35cbf2ef3f25203676f65b20f7f7394";
- };
- };
- "neo-async-2.5.1" = {
- name = "neo-async";
- packageName = "neo-async";
- version = "2.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/neo-async/-/neo-async-2.5.1.tgz";
- sha512 = "3KL3fvuRkZ7s4IFOMfztb7zJp3QaVWnBeGoJlgB38XnCRPj/0tLzzLG5IB8NYOHbJ8g8UGrgZv44GLDk6CxTxA==";
- };
- };
- "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/network-address/-/network-address-0.0.5.tgz";
- sha1 = "a400225438cacb67cd6108e8e826d5920a705dcc";
- };
- };
- "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";
- };
- };
- "next-event-1.0.0" = {
- name = "next-event";
- packageName = "next-event";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/next-event/-/next-event-1.0.0.tgz";
- sha1 = "e7778acde2e55802e0ad1879c39cf6f75eda61d8";
- };
- };
- "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";
- };
- };
- "nice-try-1.0.4" = {
- name = "nice-try";
- packageName = "nice-try";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz";
- sha512 = "2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA==";
- };
- };
- "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 = "rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==";
- };
- };
- "node-abi-2.4.3" = {
- name = "node-abi";
- packageName = "node-abi";
- version = "2.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-abi/-/node-abi-2.4.3.tgz";
- sha512 = "b656V5C0628gOOA2kwcpNA/bxdlqYF9FvxJ+qqVX0ctdXNVZpS8J6xEUYir3WAKc7U0BH/NRlSpNbGsy+azjeg==";
- };
- };
- "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.48" = {
- name = "node-appc";
- packageName = "node-appc";
- version = "0.2.48";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-appc/-/node-appc-0.2.48.tgz";
- sha512 = "fKPynW61a+PmqssitvJXxN2FZAN/w4eBvmE5zqJXl+eDfOip/b26y7SIGGJOn23KjAYX2uyl2Oy/+qTaRz/gHQ==";
- };
- };
- "node-cache-4.2.0" = {
- name = "node-cache";
- packageName = "node-cache";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-cache/-/node-cache-4.2.0.tgz";
- sha512 = "obRu6/f7S024ysheAjoYFEEBqqDWv4LOMNJEuO8vMeEw2AT4z+NCzO4hlc2lhI4vATzbCQv6kke9FVdx0RbCOw==";
- };
- };
- "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 = "DUqXaoEFcx0xqZnMyYniyEzTKcdBhAC5GAcNsRS4tiG3VR8tidwth73cr5/rc4NzbjXIk+Jje8P4VJI+fWXHuw==";
- };
- };
- "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 = "NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==";
- };
- };
- "node-fetch-2.0.0" = {
- name = "node-fetch";
- packageName = "node-fetch";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.0.0.tgz";
- sha1 = "982bba43ecd4f2922a29cc186a6bbb0bb73fcba6";
- };
- };
- "node-fetch-2.2.0" = {
- name = "node-fetch";
- packageName = "node-fetch";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.2.0.tgz";
- sha512 = "OayFWziIxiHY8bCUyLX6sTpDH8Jsbp4FfYd1j1f7vZyfgkcOnAyM4oQR16f8a0s7Gl/viMGRey8eScYk4V4EZA==";
- };
- };
- "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.5" = {
- name = "node-forge";
- packageName = "node-forge";
- version = "0.7.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz";
- sha512 = "MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ==";
- };
- };
- "node-gyp-3.8.0" = {
- name = "node-gyp";
- packageName = "node-gyp";
- version = "3.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz";
- sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==";
- };
- };
- "node-gyp-build-3.4.0" = {
- name = "node-gyp-build";
- packageName = "node-gyp-build";
- version = "3.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.4.0.tgz";
- sha512 = "YoviGBJYGrPdLOKDIQB0sKxuKy/EEsxzooNkOZak4vSTKT/qH0Pa6dj3t1MJjEQGsefih61IyHDmO1WW7xOFfw==";
- };
- };
- "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 = "5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==";
- };
- };
- "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 = "MIBs+AAd6dJ2SklbbE8RUDRlIVhU8MaNLh1A9SUZDUHPiZkWLFde6UNwG41yQHZEToHgJMXqyVZ9UcS/ReOVTg==";
- };
- };
- "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 = "OsJV74qxnvz/AMGgcfZoDaeDXKD3oY3QVIbBmwszTFkRisTSXbMQyn4UWzUMOtA5SVhrBZOTp0wcoSBgfMfMmQ==";
- };
- };
- "node-red-node-email-0.1.29" = {
- name = "node-red-node-email";
- packageName = "node-red-node-email";
- version = "0.1.29";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-email/-/node-red-node-email-0.1.29.tgz";
- sha512 = "+tqda0bNT8A0PM9G47XqFiUP9gEe1zvB/9f+JJhbLWTEk9TeRB4UeyycubmCbR1/TzJnk2v9yCDogFhDJQWbOw==";
- };
- };
- "node-red-node-feedparser-0.1.12" = {
- name = "node-red-node-feedparser";
- packageName = "node-red-node-feedparser";
- version = "0.1.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-feedparser/-/node-red-node-feedparser-0.1.12.tgz";
- sha512 = "kwo7k7pXhl9wANXqgQTRo1WqxyrpJFelvZ2u9EnKfDA2yKrsZq0ZeYB8BDc/uVIycqh8XEJeX44EnAHkidddvQ==";
- };
- };
- "node-red-node-rbe-0.2.3" = {
- name = "node-red-node-rbe";
- packageName = "node-red-node-rbe";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.2.3.tgz";
- sha512 = "5+MtH9t8tX6Aw6M+SeoyGR23XplNTOln3aTQ7El9tj/606bxea4GxYyvV4ymTmuoODz3GXQlLLQVdGkFLyIdDQ==";
- };
- };
- "node-red-node-twitter-1.0.1" = {
- name = "node-red-node-twitter";
- packageName = "node-red-node-twitter";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-1.0.1.tgz";
- sha512 = "NAM6mlAiZk1EwHtdPNnP/E8P5EIijnqSag1vzE/Ya+ggywTiELt9HtYX26evyB/MrnVS+FIJg+M8S5HobklERg==";
- };
- };
- "node-request-by-swagger-1.1.3" = {
- name = "node-request-by-swagger";
- packageName = "node-request-by-swagger";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-request-by-swagger/-/node-request-by-swagger-1.1.3.tgz";
- sha512 = "granjsEA0c+1GnJaKnOjJy1E3wWLADUnAg+x1eopWOo+oMDfRYKJjCBaInUgrli/yEnvUAJoymGhExP/6tcOyQ==";
- };
- };
- "node-ssdp-2.9.1" = {
- name = "node-ssdp";
- packageName = "node-ssdp";
- version = "2.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-ssdp/-/node-ssdp-2.9.1.tgz";
- sha1 = "2d6ba8e7eff9bf5b338564f91f7ac5d5cdddc55b";
- };
- };
- "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 = "bd7zO5hvCWzdglgwz9t82T4mYTEUzEG5pXnSqEzitvmEacusbhl8/VwuCbMaYR9g2PNK5191yBtAEQLJEmQh1A==";
- };
- };
- "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.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-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";
- };
- };
- "nodebmc-0.0.7" = {
- name = "nodebmc";
- packageName = "nodebmc";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodebmc/-/nodebmc-0.0.7.tgz";
- sha1 = "fae179165265509302cefbebeabd29bd4035184d";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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-fetch-1.6.0" = {
- name = "nodemailer-fetch";
- packageName = "nodemailer-fetch";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer-fetch/-/nodemailer-fetch-1.6.0.tgz";
- sha1 = "79c4908a1c0f5f375b73fe888da9828f6dc963a4";
- };
- };
- "nodemailer-shared-1.1.0" = {
- name = "nodemailer-shared";
- packageName = "nodemailer-shared";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer-shared/-/nodemailer-shared-1.1.0.tgz";
- sha1 = "cf5994e2fd268d00f5cf0fa767a08169edb07ec0";
- };
- };
- "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/nodemailer-smtp-transport/-/nodemailer-smtp-transport-1.1.0.tgz";
- sha1 = "e6c37f31885ab3080e7ded3cf528c4ad7e691398";
- };
- };
- "nodemailer-wellknown-0.1.10" = {
- name = "nodemailer-wellknown";
- packageName = "nodemailer-wellknown";
- version = "0.1.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz";
- sha1 = "586db8101db30cb4438eb546737a41aad0cf13d5";
- };
- };
- "nodesecurity-npm-utils-6.0.0" = {
- name = "nodesecurity-npm-utils";
- packageName = "nodesecurity-npm-utils";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodesecurity-npm-utils/-/nodesecurity-npm-utils-6.0.0.tgz";
- sha512 = "NLRle1woNaT2orR6fue2jNqkhxDTktgJj3sZxvR/8kp21pvOY7Gwlx5wvo0H8ZVPqdgd2nE2ADB9wDu5Cl8zNg==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "nopt-1.0.10" = {
- name = "nopt";
- packageName = "nopt";
- version = "1.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
- sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
- };
- };
- "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 = "9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==";
- };
- };
- "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 = "D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==";
- };
- };
- "now-and-later-2.0.0" = {
- name = "now-and-later";
- packageName = "now-and-later";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.0.tgz";
- sha1 = "bc61cbb456d79cb32207ce47ca05136ff2e7d6ee";
- };
- };
- "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-6.1.0" = {
- name = "npm";
- packageName = "npm";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-6.1.0.tgz";
- sha512 = "e38cCtJ0lEjLXXpc4twEfj8Xw5hDLolc2Py87ueWnUhJfZ8GA/5RVIeD+XbSr1+aVRGsRsdtLdzUNO63PvQJ1w==";
- };
- };
- "npm-bundled-1.0.4" = {
- name = "npm-bundled";
- packageName = "npm-bundled";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.4.tgz";
- sha512 = "FLIrRxfuX2EOA9krlthXp8lyFR5vW21zNu6ORrfWGD5ZYWTqx3tOCUwsPUSuzPdUBLxLD7bwPkG3YfgWSfqOtg==";
- };
- };
- "npm-conf-1.1.3" = {
- name = "npm-conf";
- packageName = "npm-conf";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz";
- sha512 = "Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==";
- };
- };
- "npm-keyword-5.0.0" = {
- name = "npm-keyword";
- packageName = "npm-keyword";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-keyword/-/npm-keyword-5.0.0.tgz";
- sha1 = "99b85aec29fcb388d2dd351f0013bf5268787e67";
- };
- };
- "npm-lifecycle-2.0.3" = {
- name = "npm-lifecycle";
- packageName = "npm-lifecycle";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-2.0.3.tgz";
- sha512 = "0U4Iim5ix2NHUT672G7FBpldJX0N2xKBjJqRTAzioEJjb6I6KpQXq+y1sB5EDSjKaAX8VCC9qPK31Jy+p3ix5A==";
- };
- };
- "npm-package-arg-6.1.0" = {
- name = "npm-package-arg";
- packageName = "npm-package-arg";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-6.1.0.tgz";
- sha512 = "zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA==";
- };
- };
- "npm-packlist-1.1.11" = {
- name = "npm-packlist";
- packageName = "npm-packlist";
- version = "1.1.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.11.tgz";
- sha512 = "CxKlZ24urLkJk+9kCm48RTQ7L4hsmgSVzEk0TLGPzzyuFxD7VNgy5Sl24tOLMzQv773a/NeJ1ce1DKeacqffEA==";
- };
- };
- "npm-path-2.0.4" = {
- name = "npm-path";
- packageName = "npm-path";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-path/-/npm-path-2.0.4.tgz";
- sha512 = "IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==";
- };
- };
- "npm-paths-1.0.0" = {
- name = "npm-paths";
- packageName = "npm-paths";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-paths/-/npm-paths-1.0.0.tgz";
- sha512 = "COlxSO5PK9UvZXIa7/sqJDZOlffWFx9+CKJJWkdbhUJMBwcf9sof2jxt4uiVsl+nY3sy0/XFGl4iGr8GoKfiXA==";
- };
- };
- "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";
- };
- };
- "npm-registry-client-8.5.1" = {
- name = "npm-registry-client";
- packageName = "npm-registry-client";
- version = "8.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.5.1.tgz";
- sha512 = "7rjGF2eA7hKDidGyEWmHTiKfXkbrcQAsGL/Rh4Rt3x3YNRNHhwaTzVJfW3aNvvlhg4G62VCluif0sLCb/i51Hg==";
- };
- };
- "npm-run-4.1.2" = {
- name = "npm-run";
- packageName = "npm-run";
- version = "4.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-run/-/npm-run-4.1.2.tgz";
- sha1 = "1030e1ec56908c89fcc3fa366d03a2c2ba98eb99";
- };
- };
- "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";
- };
- };
- "npm-which-3.0.1" = {
- name = "npm-which";
- packageName = "npm-which";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-which/-/npm-which-3.0.1.tgz";
- sha1 = "9225f26ec3a285c209cae67c3b11a6b4ab7140aa";
- };
- };
- "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.3" = {
- name = "npmconf";
- packageName = "npmconf";
- version = "2.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/npmconf/-/npmconf-2.1.3.tgz";
- sha512 = "iTK+HI68GceCoGOHAQiJ/ik1iDfI7S+cgyG8A+PP18IU3X83kRhQIRhAUNj4Bp2JMx6Zrt5kCiozYa9uGWTjhA==";
- };
- };
- "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 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==";
- };
- };
- "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 = fetchurl {
- url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz";
- sha1 = "9929acdf628fc2c41098deab82ac580cf149aae4";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "numeral-2.0.6" = {
- name = "numeral";
- packageName = "numeral";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz";
- sha1 = "4ad080936d443c2561aed9f2197efffe25f4e506";
- };
- };
- "nwmatcher-1.4.4" = {
- name = "nwmatcher";
- packageName = "nwmatcher";
- version = "1.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.4.tgz";
- sha512 = "3iuY4N5dhgMpCUrOVnuAdGrgxVqV2cJpM+XNccjR2DKOB1RUP0aA+wGXEiNziG/UKboFyGBIoKOaNlJxx8bciQ==";
- };
- };
- "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.11.0" = {
- name = "oauth2orize";
- packageName = "oauth2orize";
- version = "1.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/oauth2orize/-/oauth2orize-1.11.0.tgz";
- sha1 = "793cef251d45ebdeac32ae40a8b6814faab1d483";
- };
- };
- "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/object-assign/-/object-assign-3.0.0.tgz";
- sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2";
- };
- };
- "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";
- };
- };
- "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.3.0" = {
- name = "object-hash";
- packageName = "object-hash";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-hash/-/object-hash-1.3.0.tgz";
- sha512 = "05KzQ70lSeGSrZJQXE5wNDiTkBJDlUT/myi6RX9dVIvz7a7Qh4oH93BQdiPMn27nldYvVQCKMUaM83AfizZlsQ==";
- };
- };
- "object-keys-1.0.12" = {
- name = "object-keys";
- packageName = "object-keys";
- version = "1.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz";
- sha512 = "FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==";
- };
- };
- "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 = "exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==";
- };
- };
- "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.2" = {
- name = "once";
- packageName = "once";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/once/-/once-1.3.2.tgz";
- sha1 = "d8feeca93b039ec1dcdee7741c92bdac5e28081b";
- };
- };
- "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 = "http://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";
- };
- };
- "ono-4.0.5" = {
- name = "ono";
- packageName = "ono";
- version = "4.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ono/-/ono-4.0.5.tgz";
- sha512 = "ZVNuV9kJbr/2tWs83I2snrYo+WIS0DISF/xUfX9p9b6GyDD6F5N9PzHjW+p/dep6IGwSYylf1HCub5I/nM0R5Q==";
- };
- };
- "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-wrapper-0.3.4" = {
- name = "openssl-wrapper";
- packageName = "openssl-wrapper";
- version = "0.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.3.4.tgz";
- sha1 = "c01ec98e4dcd2b5dfe0b693f31827200e3b81b07";
- };
- };
- "opentracing-0.13.0" = {
- name = "opentracing";
- packageName = "opentracing";
- version = "0.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/opentracing/-/opentracing-0.13.0.tgz";
- sha1 = "6a341442f09d7d866bc11ed03de1e3828e3d6aab";
- };
- };
- "opentracing-0.14.3" = {
- name = "opentracing";
- packageName = "opentracing";
- version = "0.14.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/opentracing/-/opentracing-0.14.3.tgz";
- sha1 = "23e3ad029fa66a653926adbe57e834469f8550aa";
- };
- };
- "opn-5.3.0" = {
- name = "opn";
- packageName = "opn";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz";
- sha512 = "bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==";
- };
- };
- "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 = 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.4.0" = {
- name = "ora";
- packageName = "ora";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ora/-/ora-1.4.0.tgz";
- sha512 = "iMK1DOQxzzh2MBlVsU42G80mnrvUhqsMh74phHtDlrcTZPK0pH6o7l7DRshK+0YsxDyEuaOkziVdvM3T0QTzpw==";
- };
- };
- "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-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 = "3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==";
- };
- };
- "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.5" = {
- name = "osenv";
- packageName = "osenv";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
- sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
- };
- };
- "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 = "Ef0tVa4CZ5pTAmKn+Cg3w8ABBXh+hHO1aV8281dKOoUHfX+3tjG2EaFcC+aZyagg9b4EYGsHEjz21DnEE8Og2g==";
- };
- };
- "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 = "RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==";
- };
- };
- "p-cancelable-0.4.1" = {
- name = "p-cancelable";
- packageName = "p-cancelable";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz";
- sha512 = "HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==";
- };
- };
- "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.3.0" = {
- name = "p-limit";
- packageName = "p-limit";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz";
- sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==";
- };
- };
- "p-limit-2.0.0" = {
- name = "p-limit";
- packageName = "p-limit";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz";
- sha512 = "fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==";
- };
- };
- "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-locate-3.0.0" = {
- name = "p-locate";
- packageName = "p-locate";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz";
- sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==";
- };
- };
- "p-map-1.2.0" = {
- name = "p-map";
- packageName = "p-map";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz";
- sha512 = "r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==";
- };
- };
- "p-map-series-1.0.0" = {
- name = "p-map-series";
- packageName = "p-map-series";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz";
- sha1 = "bf98fe575705658a9e1351befb85ae4c1f07bdca";
- };
- };
- "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-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 = "88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==";
- };
- };
- "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";
- };
- };
- "p-try-2.0.0" = {
- name = "p-try";
- packageName = "p-try";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz";
- sha512 = "hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==";
- };
- };
- "p-waterfall-1.0.0" = {
- name = "p-waterfall";
- packageName = "p-waterfall";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-waterfall/-/p-waterfall-1.0.0.tgz";
- sha1 = "7ed94b3ceb3332782353af6aae11aa9fc235bb00";
- };
- };
- "pac-proxy-agent-2.0.2" = {
- name = "pac-proxy-agent";
- packageName = "pac-proxy-agent";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-2.0.2.tgz";
- sha512 = "cDNAN1Ehjbf5EHkNY5qnRhGPUCp6SnpyVof5fRzN800QV1Y2OkzbH9rmjZkbBRa8igof903yOnjIl6z0SlAhxA==";
- };
- };
- "pac-resolver-3.0.0" = {
- name = "pac-resolver";
- packageName = "pac-resolver";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pac-resolver/-/pac-resolver-3.0.0.tgz";
- sha512 = "tcc38bsjuE3XZ5+4vP96OfhOugrX+JcnpUbhfuc4LuXBLQhoTthOstZeoQJBDnQUDYzYmdImKsbz0xSl1/9qeA==";
- };
- };
- "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-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";
- };
- };
- "package-json-5.0.0" = {
- name = "package-json";
- packageName = "package-json";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/package-json/-/package-json-5.0.0.tgz";
- sha512 = "EeHQFFTlEmLrkIQoxbE9w0FuAWHoc1XpthDqnZ/i9keOt701cteyXwAxQFLpVqVjj3feh2TodkihjLaRUtIgLg==";
- };
- };
- "package-json-versionify-1.0.4" = {
- name = "package-json-versionify";
- packageName = "package-json-versionify";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/package-json-versionify/-/package-json-versionify-1.0.4.tgz";
- sha1 = "5860587a944873a6b7e6d26e8e51ffb22315bf17";
- };
- };
- "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 = "lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==";
- };
- };
- "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";
- };
- };
- "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.1" = {
- name = "parse-asn1";
- packageName = "parse-asn1";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz";
- sha512 = "KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==";
- };
- };
- "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-github-url-1.0.2" = {
- name = "parse-github-url";
- packageName = "parse-github-url";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz";
- sha512 = "kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==";
- };
- };
- "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-1.0.0" = {
- name = "parse-help";
- packageName = "parse-help";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-help/-/parse-help-1.0.0.tgz";
- sha512 = "dlOrbBba6Rrw/nrJ+V7/vkGZdiimWJQzMHZZrYsUq03JE8AV3fAv6kOYX7dP/w2h67lIdmRf8ES8mU44xAgE/Q==";
- };
- };
- "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-3.0.0" = {
- name = "parse-json";
- packageName = "parse-json";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-json/-/parse-json-3.0.0.tgz";
- sha1 = "fa6f47b18e23826ead32f263e744d0e1e847fb13";
- };
- };
- "parse-json-4.0.0" = {
- name = "parse-json";
- packageName = "parse-json";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz";
- sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
- };
- };
- "parse-numeric-range-0.0.2" = {
- name = "parse-numeric-range";
- packageName = "parse-numeric-range";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-0.0.2.tgz";
- sha1 = "b4f09d413c7adbcd987f6e9233c7b4b210c938e4";
- };
- };
- "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.9.1" = {
- name = "parse-torrent";
- packageName = "parse-torrent";
- version = "5.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-5.9.1.tgz";
- sha512 = "yy7UTSmliOT/7Yl+P4hwwW2W7PbCTAMcD0lasaVG+k4/2laj42YWzLm468bLFGDoFPIb29g3BuwBcA3gLopKww==";
- };
- };
- "parse-torrent-6.1.1" = {
- name = "parse-torrent";
- packageName = "parse-torrent";
- version = "6.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-6.1.1.tgz";
- sha512 = "VOQseFSgXOJE1tnwLJHA6GAILC62GaXRtoCkf3cOiTxMt2P/Xjz1Oe6TVJB7BCm4WkgOY7QS22bjqA7Z4ryuJA==";
- };
- };
- "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";
- };
- };
- "parse5-1.5.1" = {
- name = "parse5";
- packageName = "parse5";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz";
- sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94";
- };
- };
- "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 = "rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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.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-0.12.7" = {
- name = "path";
- packageName = "path";
- version = "0.12.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/path/-/path-0.12.7.tgz";
- sha1 = "d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f";
- };
- };
- "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-browserify-0.0.1" = {
- name = "path-browserify";
- packageName = "path-browserify";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz";
- sha512 = "BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==";
- };
- };
- "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";
- };
- };
- "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.6" = {
- name = "path-loader";
- packageName = "path-loader";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-loader/-/path-loader-1.0.6.tgz";
- sha512 = "vAtndQsgWS0s2JOjT+NWtJyP5Gc940SlQQ55j0+qSj/SJQ4dmt/L8gLeW9wJF0rM32qEts+3NDvKjs6TUxwFtg==";
- };
- };
- "path-parse-1.0.6" = {
- name = "path-parse";
- packageName = "path-parse";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
- sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
- };
- };
- "path-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-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-to-regexp-2.2.1" = {
- name = "path-to-regexp";
- packageName = "path-to-regexp";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz";
- sha512 = "gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==";
- };
- };
- "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 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==";
- };
- };
- "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.16" = {
- name = "pbkdf2";
- packageName = "pbkdf2";
- version = "3.0.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz";
- sha512 = "y4CXP3thSxqf7c0qmOF+9UeOTrifiVTIM+u7NWlq+PRsHbr7r7dpCmvzrZxa96JJUNi0Y5w9VqG5ZNeCVMoDcA==";
- };
- };
- "peer-wire-protocol-0.7.1" = {
- name = "peer-wire-protocol";
- packageName = "peer-wire-protocol";
- version = "0.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/peer-wire-protocol/-/peer-wire-protocol-0.7.1.tgz";
- sha512 = "V9oTa/ZcfNNz9fAST28Gg0fXbPeFPk3SBImsYO8GDDG5D0E195vxXmjZ+SPrzr4BJyMQmdDmwUfTf9MZ62z4mw==";
- };
- };
- "peer-wire-swarm-0.12.2" = {
- name = "peer-wire-swarm";
- packageName = "peer-wire-swarm";
- version = "0.12.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/peer-wire-swarm/-/peer-wire-swarm-0.12.2.tgz";
- sha512 = "sIWZ1nTL9l6mI9J18kW1AeByBwagvNzGJlMmQA9pM+otKQtTIwnigK8SR0nEFrNZYqZelI6RQ6g4udvtQ2TI1g==";
- };
- };
- "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#fork" = {
- name = "pegjs";
- packageName = "pegjs";
- version = "0.8.0";
- src = fetchgit {
- url = "https://github.com/tstarling/pegjs";
- rev = "36d584bd7bbc564c86c058c5dfe8053b1fe1d584";
- sha256 = "df0bf31b132e63beae73a28f1edfe0a2e9edf01660632c72834c682e2b484905";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "phantom-4.0.12" = {
- name = "phantom";
- packageName = "phantom";
- version = "4.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/phantom/-/phantom-4.0.12.tgz";
- sha512 = "Tz82XhtPmwCk1FFPmecy7yRGZG2btpzY2KI9fcoPT7zT9det0CcMyfBFPp1S8DqzsnQnm8ZYEfdy528mwVtksA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "piece-length-1.0.0" = {
- name = "piece-length";
- packageName = "piece-length";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/piece-length/-/piece-length-1.0.0.tgz";
- sha1 = "4db7167157fd69fef14caf7262cd39f189b24508";
- };
- };
- "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";
- };
- };
- "pino-4.17.6" = {
- name = "pino";
- packageName = "pino";
- version = "4.17.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/pino/-/pino-4.17.6.tgz";
- sha512 = "LFDwmhyWLBnmwO/2UFbWu1jEGVDzaPupaVdx0XcZ3tIAx1EDEBauzxXf2S0UcFK7oe+X9MApjH0hx9U1XMgfCA==";
- };
- };
- "pino-5.0.0-rc.4" = {
- name = "pino";
- packageName = "pino";
- version = "5.0.0-rc.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/pino/-/pino-5.0.0-rc.4.tgz";
- sha512 = "n5aJmABDjzZbwrB0AEbUeugz1Rh55c9T62yVGv6YL1vP1GuqpjIcLgwZIM1SI8E4Nfmcoo46SSmPgSSA9mPdog==";
- };
- };
- "pino-std-serializers-2.2.0" = {
- name = "pino-std-serializers";
- packageName = "pino-std-serializers";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.2.0.tgz";
- sha512 = "Ef95yX2/cUb5knEmHCpvkfrvjWBx0CTcBwB3WAneX8o0WpEf8y+lmR/XMkgAbJ/Ak2mHbo0eL5ANy8qDqpH1xw==";
- };
- };
- "pkg-dir-2.0.0" = {
- name = "pkg-dir";
- packageName = "pkg-dir";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz";
- sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b";
- };
- };
- "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.3.0" = {
- name = "playerui";
- packageName = "playerui";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/playerui/-/playerui-1.3.0.tgz";
- sha1 = "a32b907f28d17f61b74d45d46fd89dea3c4e88b5";
- };
- };
- "please-upgrade-node-3.1.1" = {
- name = "please-upgrade-node";
- packageName = "please-upgrade-node";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz";
- sha512 = "KY1uHnQ2NlQHqIJQpnh/i54rKkuxCEBx+voJIS/Mvb+L2iYd2NMotwduhKTMjfC1uKoX3VXOxLjIYG66dfJTVQ==";
- };
- };
- "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";
- };
- };
- "plist-3.0.1" = {
- name = "plist";
- packageName = "plist";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/plist/-/plist-3.0.1.tgz";
- sha512 = "GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ==";
- };
- };
- "plist-with-patches-0.5.1" = {
- name = "plist-with-patches";
- packageName = "plist-with-patches";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/plist-with-patches/-/plist-with-patches-0.5.1.tgz";
- sha1 = "868aae2e0df8989b026562b35cbc19cfd8bb780d";
- };
- };
- "plugin-error-0.1.2" = {
- name = "plugin-error";
- packageName = "plugin-error";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz";
- sha1 = "3b9bb3335ccf00f425e07437e19276967da47ace";
- };
- };
- "plugin-error-1.0.1" = {
- name = "plugin-error";
- packageName = "plugin-error";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz";
- sha512 = "L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==";
- };
- };
- "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 = "ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==";
- };
- };
- "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 = "petRj39w05GvH1WKuGFmzxR9+k+R9E7zX5XWTFee7P/qf88hMuLT7aAO/RsmldpQMtJsWQISkTQlfMRECKlxhw==";
- };
- };
- "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.23" = {
- name = "postcss";
- packageName = "postcss";
- version = "6.0.23";
- src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz";
- sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==";
- };
- };
- "prebuild-install-2.1.2" = {
- name = "prebuild-install";
- packageName = "prebuild-install";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-2.1.2.tgz";
- sha1 = "d9ae0ca85330e03962d93292f95a8b44c2ebf505";
- };
- };
- "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 = "UCDQscAfQ1HArwvSUobJWbc3sTGLqGpYkRqXUpBZgf+zOWpOjz2dxnpRsOu+qxIj1K0n5UT1wgbCCgetsIwiug==";
- };
- };
- "printf-0.2.5" = {
- name = "printf";
- packageName = "printf";
- version = "0.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/printf/-/printf-0.2.5.tgz";
- sha1 = "c438ca2ca33e3927671db4ab69c0e52f936a4f0f";
- };
- };
- "prisma-json-schema-0.0.4" = {
- name = "prisma-json-schema";
- packageName = "prisma-json-schema";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/prisma-json-schema/-/prisma-json-schema-0.0.4.tgz";
- sha512 = "NTbourUhkmhM18rrcnp+IdxTdWftUsepZcNX2QntOqkOOwccYADmmZJpTr9tuvCYsW3i48B8LVEwvm0v1pAhxQ==";
- };
- };
- "prisma-yml-1.0.50" = {
- name = "prisma-yml";
- packageName = "prisma-yml";
- version = "1.0.50";
- src = fetchurl {
- url = "https://registry.npmjs.org/prisma-yml/-/prisma-yml-1.0.50.tgz";
- sha512 = "Vpt6q+YzS6yozMnIPU75hlHzmDR1Hj4Z3FXaazJrOXUyeQx/xDqeEwRJ+ii4xl/GRYiFnMEVSLfsPzjLehA1Zw==";
- };
- };
- "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 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==";
- };
- };
- "probe-image-size-4.0.0" = {
- name = "probe-image-size";
- packageName = "probe-image-size";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/probe-image-size/-/probe-image-size-4.0.0.tgz";
- sha512 = "nm7RvWUxps+2+jZKNLkd04mNapXNariS6G5WIEVzvAqjx7EUuKcY1Dp3e6oUK7GLwzJ+3gbSbPLFAASHFQrPcQ==";
- };
- };
- "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";
- };
- };
- "process-nextick-args-2.0.0" = {
- name = "process-nextick-args";
- packageName = "process-nextick-args";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz";
- sha512 = "MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==";
- };
- };
- "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 = "JymvIR4IJ0qTyma7ExefBeJGp2IGaXYGWv8Z//Jq+AhrCd0uKlMPK9IWJ0LL6zbXbAN8fhLe1TL1hl1ZKOljDw==";
- };
- };
- "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 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==";
- };
- };
- "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-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-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.2" = {
- name = "prop-types";
- packageName = "prop-types";
- version = "15.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz";
- sha512 = "3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ==";
- };
- };
- "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";
- };
- };
- "protochain-1.0.5" = {
- name = "protochain";
- packageName = "protochain";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/protochain/-/protochain-1.0.5.tgz";
- sha1 = "991c407e99de264aadf8f81504b5e7faf7bfa260";
- };
- };
- "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 = "SmjEuAf3hc3h3rWZ6V1YaaQw2MNJWK848gLJgzx/sefOJdNLujKinJVXIS0q2cBQpQn2Q32TinawZyDZPzm4kQ==";
- };
- };
- "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.4" = {
- name = "proxy-addr";
- packageName = "proxy-addr";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz";
- sha512 = "5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==";
- };
- };
- "proxy-agent-2.3.1" = {
- name = "proxy-agent";
- packageName = "proxy-agent";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.3.1.tgz";
- sha512 = "CNKuhC1jVtm8KJYFTS2ZRO71VCBx3QSA92So/e6NrY6GoJonkx3Irnk4047EsCcswczwqAekRj3s8qLRGahSKg==";
- };
- };
- "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/prr/-/prr-0.0.0.tgz";
- sha1 = "1a84b85908325501411853d0081ee3fa86e2926a";
- };
- };
- "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-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";
- };
- };
- "ps-tree-1.1.0" = {
- name = "ps-tree";
- packageName = "ps-tree";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz";
- sha1 = "b421b24140d6203f1ed3c76996b4427b08e8c014";
- };
- };
- "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";
- };
- };
- "psl-1.1.29" = {
- name = "psl";
- packageName = "psl";
- version = "1.1.29";
- src = fetchurl {
- url = "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz";
- sha512 = "AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==";
- };
- };
- "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 = "q5I5vLRMVtdWa8n/3UEzZX7Lfghzrg9eG2IKk2ENLSofKRCXVqMvMUHxCKgXNaqH/8ebhBxrqftHWnyTFweJ5Q==";
- };
- };
- "public-encrypt-4.0.2" = {
- name = "public-encrypt";
- packageName = "public-encrypt";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz";
- sha512 = "4kJ5Esocg8X3h8YgJsKAuoesBgB7mqH3eowiDzMUPKiRDDE7E/BqqZD1hnTByIaAFiwAw246YEltSq7tdrOH0Q==";
- };
- };
- "pug-2.0.3" = {
- name = "pug";
- packageName = "pug";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug/-/pug-2.0.3.tgz";
- sha1 = "71cba82537c95a5eab7ed04696e4221f53aa878e";
- };
- };
- "pug-attrs-2.0.3" = {
- name = "pug-attrs";
- packageName = "pug-attrs";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-attrs/-/pug-attrs-2.0.3.tgz";
- sha1 = "a3095f970e64151f7bdad957eef55fb5d7905d15";
- };
- };
- "pug-code-gen-2.0.1" = {
- name = "pug-code-gen";
- packageName = "pug-code-gen";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-2.0.1.tgz";
- sha1 = "0951ec83225d74d8cfc476a7f99a259b5f7d050c";
- };
- };
- "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-3.1.0" = {
- name = "pug-filters";
- packageName = "pug-filters";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-filters/-/pug-filters-3.1.0.tgz";
- sha1 = "27165555bc04c236e4aa2b0366246dfa021b626e";
- };
- };
- "pug-lexer-4.0.0" = {
- name = "pug-lexer";
- packageName = "pug-lexer";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-lexer/-/pug-lexer-4.0.0.tgz";
- sha1 = "210c18457ef2e1760242740c5e647bd794cec278";
- };
- };
- "pug-linker-3.0.5" = {
- name = "pug-linker";
- packageName = "pug-linker";
- version = "3.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-linker/-/pug-linker-3.0.5.tgz";
- sha1 = "9e9a7ae4005682d027deeb96b000f88eeb83a02f";
- };
- };
- "pug-load-2.0.11" = {
- name = "pug-load";
- packageName = "pug-load";
- version = "2.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-load/-/pug-load-2.0.11.tgz";
- sha1 = "e648e57ed113fe2c1f45d57858ea2bad6bc01527";
- };
- };
- "pug-parser-5.0.0" = {
- name = "pug-parser";
- packageName = "pug-parser";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-parser/-/pug-parser-5.0.0.tgz";
- sha1 = "e394ad9b3fca93123940aff885c06e44ab7e68e4";
- };
- };
- "pug-runtime-2.0.4" = {
- name = "pug-runtime";
- packageName = "pug-runtime";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-runtime/-/pug-runtime-2.0.4.tgz";
- sha1 = "e178e1bda68ab2e8c0acfc9bced2c54fd88ceb58";
- };
- };
- "pug-strip-comments-1.0.3" = {
- name = "pug-strip-comments";
- packageName = "pug-strip-comments";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-1.0.3.tgz";
- sha1 = "f1559592206edc6f85310dacf4afb48a025af59f";
- };
- };
- "pug-walk-1.1.7" = {
- name = "pug-walk";
- packageName = "pug-walk";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-walk/-/pug-walk-1.1.7.tgz";
- sha1 = "c00d5c5128bac5806bec15d2b7e7cdabe42531f3";
- };
- };
- "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-defer-0.2.2" = {
- name = "pull-defer";
- packageName = "pull-defer";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-defer/-/pull-defer-0.2.2.tgz";
- sha1 = "0887b0ffb30af32a56dbecfa72c1672271f07b13";
- };
- };
- "pull-level-2.0.4" = {
- name = "pull-level";
- packageName = "pull-level";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-level/-/pull-level-2.0.4.tgz";
- sha512 = "fW6pljDeUThpq5KXwKbRG3X7Ogk3vc75d5OQU/TvXXui65ykm+Bn+fiktg+MOx2jJ85cd+sheufPL+rw9QSVZg==";
- };
- };
- "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.2.0" = {
- name = "pull-pushable";
- packageName = "pull-pushable";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-pushable/-/pull-pushable-2.2.0.tgz";
- sha1 = "5f2f3aed47ad86919f01b12a2e99d6f1bd776581";
- };
- };
- "pull-stream-3.6.8" = {
- name = "pull-stream";
- packageName = "pull-stream";
- version = "3.6.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.8.tgz";
- sha512 = "wQUIptQBcM0rFsUhZoEpOT3vUn73DtTGVq3NQ86c4T7iMOSprDzeKWYq2ksXnbwiuExTKvt+8G9fzNLFQuiO+A==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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 = "8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw==";
- };
- };
- "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 = "ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==";
- };
- };
- "pump-3.0.0" = {
- name = "pump";
- packageName = "pump";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz";
- sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==";
- };
- };
- "pumpify-1.5.1" = {
- name = "pumpify";
- packageName = "pumpify";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz";
- sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==";
- };
- };
- "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";
- };
- };
- "punycode-1.4.1" = {
- name = "punycode";
- packageName = "punycode";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
- sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
- };
- };
- "punycode-2.1.1" = {
- name = "punycode";
- packageName = "punycode";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
- sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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.2.0" = {
- name = "qjobs";
- packageName = "qjobs";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz";
- sha512 = "8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==";
- };
- };
- "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" = {
- name = "qs";
- packageName = "qs";
- version = "0.6.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-0.6.5.tgz";
- sha1 = "294b268e4b0d4250f6dde19b3b8b34935dff14ef";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "qs-3.1.0" = {
- name = "qs";
- packageName = "qs";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-3.1.0.tgz";
- sha1 = "d0e9ae745233a12dc43fb4f3055bba446261153c";
- };
- };
- "qs-4.0.0" = {
- name = "qs";
- packageName = "qs";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz";
- sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607";
- };
- };
- "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";
- };
- };
- "qs-6.2.3" = {
- name = "qs";
- packageName = "qs";
- version = "6.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz";
- sha1 = "1cfcb25c10a9b2b483053ff39f5dfc9233908cfe";
- };
- };
- "qs-6.3.2" = {
- name = "qs";
- packageName = "qs";
- version = "6.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz";
- sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c";
- };
- };
- "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.0" = {
- name = "qs";
- packageName = "qs";
- version = "6.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.5.0.tgz";
- sha512 = "fjVFjW9yhqMhVGwRExCXLhJKrLlkYSaxNWdyc9rmHlrVZbk35YHH312dFd7191uQeXkI3mKLZTIbSvIeFwFemg==";
- };
- };
- "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 = "eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==";
- };
- };
- "qs-6.5.2" = {
- name = "qs";
- packageName = "qs";
- version = "6.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz";
- sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "query-string-5.1.1" = {
- name = "query-string";
- packageName = "query-string";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz";
- sha512 = "gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz";
- sha1 = "0ca581de3174becef25ac3c2e8956342381db698";
- };
- };
- "quick-format-unescaped-3.0.0" = {
- name = "quick-format-unescaped";
- packageName = "quick-format-unescaped";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-3.0.0.tgz";
- sha512 = "XmIOc07VM2kPm6m3j/U6jgxyUgDm2Rgh2c1PPy0JUHoQRdoh86hOym0bHyF6G1T6sn+N5lildhvl/T59H5KVyA==";
- };
- };
- "quick-lru-1.1.0" = {
- name = "quick-lru";
- packageName = "quick-lru";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/quick-lru/-/quick-lru-1.1.0.tgz";
- sha1 = "4360b17c61136ad38078397ff11416e186dcfbb8";
- };
- };
- "rai-0.1.12" = {
- name = "rai";
- packageName = "rai";
- version = "0.1.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/rai/-/rai-0.1.12.tgz";
- sha1 = "8ccfd014d0f9608630dd73c19b8e4b057754a6a6";
- };
- };
- "random-access-file-2.0.1" = {
- name = "random-access-file";
- packageName = "random-access-file";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/random-access-file/-/random-access-file-2.0.1.tgz";
- sha512 = "nb4fClpzoUY+v1SHrro+9yykN90eMA1rc+xM39tnZ5R3BgFY+J/NxPZ0KuUpishEsvnwou9Fvm2wa3cjeuG7vg==";
- };
- };
- "random-access-memory-3.0.0" = {
- name = "random-access-memory";
- packageName = "random-access-memory";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.0.0.tgz";
- sha512 = "O/d5C/kTOs/aDix1CD+N7z4SgNVGPx+xpFKXGfrC0TFpqYVrsJEUmQCl3ITTg7FVMoCmLBo5rdkA5FcFg00NTA==";
- };
- };
- "random-access-storage-1.3.0" = {
- name = "random-access-storage";
- packageName = "random-access-storage";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/random-access-storage/-/random-access-storage-1.3.0.tgz";
- sha512 = "pdS9Mcb9TB7oICypPRALlheaSuszuAKmLVEPKJMuYor7R/zDuHh5ALuQoS+ox31XRwQUL+tDwWH2GPdyspwelA==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "randomatic-3.1.0" = {
- name = "randomatic";
- packageName = "randomatic";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz";
- sha512 = "KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ==";
- };
- };
- "randombytes-2.0.6" = {
- name = "randombytes";
- packageName = "randombytes";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz";
- sha512 = "CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==";
- };
- };
- "randomfill-1.0.4" = {
- name = "randomfill";
- packageName = "randomfill";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz";
- sha512 = "87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==";
- };
- };
- "range-parser-0.0.4" = {
- name = "range-parser";
- packageName = "range-parser";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz";
- sha1 = "c0427ffef51c10acba0782a46c9602e744ff620b";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "range-slice-stream-1.2.0" = {
- name = "range-slice-stream";
- packageName = "range-slice-stream";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/range-slice-stream/-/range-slice-stream-1.2.0.tgz";
- sha1 = "01ba954276052b783900e63d6118d8fcf3875d7f";
- };
- };
- "raven-js-3.26.4" = {
- name = "raven-js";
- packageName = "raven-js";
- version = "3.26.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/raven-js/-/raven-js-3.26.4.tgz";
- sha512 = "5VmC3IWhTQJkaiQaCY0S5V8za4bpUgbbuVT1MkDH7JVqgu8CPQ750XaFF8BVRbLV9F5nvoz7n0UT0CKteDuZAg==";
- };
- };
- "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.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.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-body-2.3.3" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz";
- sha512 = "9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==";
- };
- };
- "raw-socket-1.6.2" = {
- name = "raw-socket";
- packageName = "raw-socket";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-socket/-/raw-socket-1.6.2.tgz";
- sha512 = "JbmNAXPFNI+yJv3Kx0Lsl+ao2doZ/kdz9J4Ba9+ggC1U4e50BK0GfHHYuLFj8acnYzqXgKiLzhi2ixOPk6/kcw==";
- };
- };
- "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.8" = {
- name = "rc";
- packageName = "rc";
- version = "1.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz";
- sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==";
- };
- };
- "rc-config-loader-2.0.2" = {
- name = "rc-config-loader";
- packageName = "rc-config-loader";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-2.0.2.tgz";
- sha512 = "Nx9SNM47eNRqe0TdntOY600qWb8NDh+xU9sv5WnTscEtzfTB0ukihlqwuCLPteyJksvZ0sEVPoySNE01TKrmTQ==";
- };
- };
- "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-metadata-1.0.0" = {
- name = "read-metadata";
- packageName = "read-metadata";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-metadata/-/read-metadata-1.0.0.tgz";
- sha1 = "6df9cbe51184e8ceb7d0668b40ee5191e6f3dac6";
- };
- };
- "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.13" = {
- name = "read-package-json";
- packageName = "read-package-json";
- version = "2.0.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.13.tgz";
- sha512 = "/1dZ7TRZvGrYqE0UAfN6qQb5GYBsNcqS1C0tNK601CFOJmtHI7NIGXwetEPU/OtoFHZL3hDxm4rolFFVE9Bnmg==";
- };
- };
- "read-package-tree-5.2.1" = {
- name = "read-package-tree";
- packageName = "read-package-tree";
- version = "5.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.2.1.tgz";
- sha512 = "2CNoRoh95LxY47LvqrehIAfUVda2JbuFE/HaGYs42bNrGG+ojbw1h3zOcPcQ+1GQ3+rkzNndZn85u1XyZ3UsIA==";
- };
- };
- "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-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-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-pkg-up-3.0.0" = {
- name = "read-pkg-up";
- packageName = "read-pkg-up";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz";
- sha1 = "3ed496685dba0f8fe118d0691dc51f4a1ff96f07";
- };
- };
- "read-pkg-up-4.0.0" = {
- name = "read-pkg-up";
- packageName = "read-pkg-up";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz";
- sha512 = "6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==";
- };
- };
- "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.6" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "2.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz";
- sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==";
- };
- };
- "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" = {
- name = "readdirp";
- packageName = "readdirp";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz";
- sha1 = "4ed0ad060df3073300c48440373f72d1cc642d78";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "recast-0.11.23" = {
- name = "recast";
- packageName = "recast";
- version = "0.11.23";
- src = fetchurl {
- url = "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz";
- sha1 = "451fd3004ab1e4df9b4e4b66376b2a21912462d3";
- };
- };
- "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";
- };
- };
- "record-cache-1.1.0" = {
- name = "record-cache";
- packageName = "record-cache";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/record-cache/-/record-cache-1.1.0.tgz";
- sha512 = "u8rbtLEJV7HRacl/ZYwSBFD8NFyB3PfTTfGLP37IW3hftQCwu6z4Q2RLyxo1YJUNRTEzJfpLpGwVuEYdaIkG9Q==";
- };
- };
- "recursive-readdir-2.2.2" = {
- name = "recursive-readdir";
- packageName = "recursive-readdir";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz";
- sha512 = "nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==";
- };
- };
- "recursive-watch-1.1.4" = {
- name = "recursive-watch";
- packageName = "recursive-watch";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.4.tgz";
- sha512 = "fWejAmdLi7B/jipBUjTLnqId+PK+573fbGNbdaNA/AiAnQAx6OYOLCGWRs0W5+PyM1rLzZSWK2f40QpHSR49PQ==";
- };
- };
- "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";
- };
- };
- "redent-2.0.0" = {
- name = "redent";
- packageName = "redent";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz";
- sha1 = "c1b2007b42d57eb1389079b3c8333639d5e1ccaa";
- };
- };
- "redis-0.10.3" = {
- name = "redis";
- packageName = "redis";
- version = "0.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/redis/-/redis-0.10.3.tgz";
- sha1 = "8927fe2110ee39617bcf3fd37b89d8e123911bb6";
- };
- };
- "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";
- };
- };
- "redis-0.7.3" = {
- name = "redis";
- packageName = "redis";
- version = "0.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/redis/-/redis-0.7.3.tgz";
- sha1 = "ee57b7a44d25ec1594e44365d8165fa7d1d4811a";
- };
- };
- "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";
- };
- };
- "regenerator-runtime-0.10.5" = {
- name = "regenerator-runtime";
- packageName = "regenerator-runtime";
- version = "0.10.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz";
- sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658";
- };
- };
- "regenerator-runtime-0.11.1" = {
- name = "regenerator-runtime";
- packageName = "regenerator-runtime";
- version = "0.11.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
- sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==";
- };
- };
- "regenerator-runtime-0.9.6" = {
- name = "regenerator-runtime";
- packageName = "regenerator-runtime";
- version = "0.9.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz";
- sha1 = "d33eb95d0d2001a4be39659707c51b0cb71ce029";
- };
- };
- "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 = "nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==";
- };
- };
- "regex-not-1.0.2" = {
- name = "regex-not";
- packageName = "regex-not";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz";
- sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
- };
- };
- "regexp.prototype.flags-1.2.0" = {
- name = "regexp.prototype.flags";
- packageName = "regexp.prototype.flags";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz";
- sha512 = "ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA==";
- };
- };
- "regexpp-1.1.0" = {
- name = "regexpp";
- packageName = "regexpp";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz";
- sha512 = "LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw==";
- };
- };
- "regexpp-2.0.0" = {
- name = "regexpp";
- packageName = "regexpp";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/regexpp/-/regexpp-2.0.0.tgz";
- sha512 = "g2FAVtR8Uh8GO1Nv5wpxW7VFVwHcCEr4wyA8/MHiRkO8uHoR5ntAA8Uq3P1vvMTX/BeQiRVSpDGLd+Wn5HNOTA==";
- };
- };
- "registry-auth-token-3.3.2" = {
- name = "registry-auth-token";
- packageName = "registry-auth-token";
- version = "3.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz";
- sha512 = "JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==";
- };
- };
- "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";
- };
- };
- "reinterval-1.1.0" = {
- name = "reinterval";
- packageName = "reinterval";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/reinterval/-/reinterval-1.1.0.tgz";
- sha1 = "3361ecfa3ca6c18283380dd0bb9546f390f5ece7";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "relaxed-json-1.0.1" = {
- name = "relaxed-json";
- packageName = "relaxed-json";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/relaxed-json/-/relaxed-json-1.0.1.tgz";
- sha1 = "7c8d4aa2f095704cd020e32e8099bcae103f0bd4";
- };
- };
- "remove-array-items-1.0.0" = {
- name = "remove-array-items";
- packageName = "remove-array-items";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/remove-array-items/-/remove-array-items-1.0.0.tgz";
- sha1 = "07bf42cb332f4cf6e85ead83b5e4e896d2326b21";
- };
- };
- "remove-bom-buffer-3.0.0" = {
- name = "remove-bom-buffer";
- packageName = "remove-bom-buffer";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz";
- sha512 = "8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==";
- };
- };
- "remove-bom-stream-1.2.0" = {
- name = "remove-bom-stream";
- packageName = "remove-bom-stream";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz";
- sha1 = "05f1a593f16e42e1fb90ebf59de8e569525f9523";
- };
- };
- "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";
- };
- };
- "render-media-3.1.3" = {
- name = "render-media";
- packageName = "render-media";
- version = "3.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/render-media/-/render-media-3.1.3.tgz";
- sha512 = "K7ziKKlIcgYpAovRsABDiSaNn7TzDDyyuFGpRwM52cloNcajInB6sCxFPUEzOuTJUeyvKCqT/k5INOjpKLCjhQ==";
- };
- };
- "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";
- };
- };
- "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-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";
- };
- };
- "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-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";
- };
- };
- "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";
- };
- };
- "replace-ext-1.0.0" = {
- name = "replace-ext";
- packageName = "replace-ext";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz";
- sha1 = "de63128373fcbf7c3ccfa4de5a480c45a67958eb";
- };
- };
- "replaceall-0.1.6" = {
- name = "replaceall";
- packageName = "replaceall";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/replaceall/-/replaceall-0.1.6.tgz";
- sha1 = "81d81ac7aeb72d7f5c4942adf2697a3220688d8e";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "request-2.74.0" = {
- name = "request";
- packageName = "request";
- version = "2.74.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.74.0.tgz";
- sha1 = "7693ca768bbb0ea5c8ce08c084a45efa05b892ab";
- };
- };
- "request-2.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";
- };
- };
- "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 = "lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==";
- };
- };
- "request-2.87.0" = {
- name = "request";
- packageName = "request";
- version = "2.87.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.87.0.tgz";
- sha512 = "fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==";
- };
- };
- "request-2.9.203" = {
- name = "request";
- packageName = "request";
- version = "2.9.203";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.9.203.tgz";
- sha1 = "6c1711a5407fb94a114219563e44145bcbf4723a";
- };
- };
- "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";
- };
- };
- "request-promise-4.2.2" = {
- name = "request-promise";
- packageName = "request-promise";
- version = "4.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/request-promise/-/request-promise-4.2.2.tgz";
- sha1 = "d1ea46d654a6ee4f8ee6a4fea1018c22911904b4";
- };
- };
- "request-promise-core-1.1.1" = {
- name = "request-promise-core";
- packageName = "request-promise-core";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz";
- sha1 = "3eee00b2c5aa83239cfb04c5700da36f81cd08b6";
- };
- };
- "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-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";
- };
- };
- "require-from-string-2.0.2" = {
- name = "require-from-string";
- packageName = "require-from-string";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz";
- sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "requirejs-2.3.5" = {
- name = "requirejs";
- packageName = "requirejs";
- version = "2.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/requirejs/-/requirejs-2.3.5.tgz";
- sha512 = "svnO+aNcR/an9Dpi44C7KSAy5fFGLtmPbaaCeQaklUz8BQhS64tWWIIlvEA5jrWICzlO/X9KSzSeXFnZdBu8nw==";
- };
- };
- "requires-port-1.0.0" = {
- name = "requires-port";
- packageName = "requires-port";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz";
- sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff";
- };
- };
- "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";
- };
- };
- "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.8.1" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz";
- sha512 = "AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==";
- };
- };
- "resolve-cwd-2.0.0" = {
- name = "resolve-cwd";
- packageName = "resolve-cwd";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz";
- sha1 = "00a9f7387556e27038eae232caa372a6a59b665a";
- };
- };
- "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-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 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==";
- };
- };
- "resolve-options-1.1.0" = {
- name = "resolve-options";
- packageName = "resolve-options";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz";
- sha1 = "32bb9e39c06d67338dc9378c0d6d6074566ad131";
- };
- };
- "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";
- };
- };
- "restify-clients-1.5.2" = {
- name = "restify-clients";
- packageName = "restify-clients";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/restify-clients/-/restify-clients-1.5.2.tgz";
- sha1 = "d4b13d82f287e77e2eb5daae14e6ef8534aa7389";
- };
- };
- "restify-errors-3.0.0" = {
- name = "restify-errors";
- packageName = "restify-errors";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/restify-errors/-/restify-errors-3.0.0.tgz";
- sha1 = "3b17177d43954acece4291465a97ce1b58cf3d57";
- };
- };
- "restify-errors-3.1.0" = {
- name = "restify-errors";
- packageName = "restify-errors";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/restify-errors/-/restify-errors-3.1.0.tgz";
- sha1 = "06b5479477874c0856d782a12c8707dcdad53f16";
- };
- };
- "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";
- };
- };
- "ret-0.1.15" = {
- name = "ret";
- packageName = "ret";
- version = "0.1.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz";
- sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
- };
- };
- "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.4" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.4.tgz";
- sha1 = "b528ce2ebe0e6d89fb03b265de11d61da0dbcf82";
- };
- };
- "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 = "lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==";
- };
- };
- "ripemd160-2.0.2" = {
- name = "ripemd160";
- packageName = "ripemd160";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz";
- sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==";
- };
- };
- "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" = {
- name = "root-check";
- packageName = "root-check";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/root-check/-/root-check-1.0.0.tgz";
- 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.3" = {
- name = "router";
- packageName = "router";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/router/-/router-1.3.3.tgz";
- sha1 = "c142f6b5ea4d6b3359022ca95b6580bd217f89cf";
- };
- };
- "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 = "OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==";
- };
- };
- "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.9" = {
- name = "run-parallel";
- packageName = "run-parallel";
- version = "1.1.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz";
- sha512 = "DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==";
- };
- };
- "run-parallel-limit-1.0.5" = {
- name = "run-parallel-limit";
- packageName = "run-parallel-limit";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/run-parallel-limit/-/run-parallel-limit-1.0.5.tgz";
- sha512 = "NsY+oDngvrvMxKB3G8ijBzIema6aYbQMD2bHOamvN52BysbIGTnEY2xsNyfrcr9GhY995/t/0nQN3R3oZvaDlg==";
- };
- };
- "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";
- };
- };
- "run-series-1.1.8" = {
- name = "run-series";
- packageName = "run-series";
- version = "1.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/run-series/-/run-series-1.1.8.tgz";
- sha512 = "+GztYEPRpIsQoCSraWHDBs9WVy4eVME16zhOtDB4H9J4xN0XRhknnmLOl+4gRgZtu8dpp9N/utSPjKH/xmDzXg==";
- };
- };
- "rusha-0.8.13" = {
- name = "rusha";
- packageName = "rusha";
- version = "0.8.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/rusha/-/rusha-0.8.13.tgz";
- sha1 = "9a084e7b860b17bff3015b92c67a6a336191513a";
- };
- };
- "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.11" = {
- name = "rxjs";
- packageName = "rxjs";
- version = "5.5.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.11.tgz";
- sha512 = "3bjO7UwWfA2CV7lmwYMBzj4fQ6Cq+ftHc2MvUe+WMS7wcdJ1LosDWmdjPQanYp2dBRj572p7PeU81JUxHKOcBA==";
- };
- };
- "rxjs-6.2.2" = {
- name = "rxjs";
- packageName = "rxjs";
- version = "6.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rxjs/-/rxjs-6.2.2.tgz";
- sha512 = "0MI8+mkKAXZUF9vMrEoPnaoHkfzBPP4IGwUYRJhIRJF6/w3uByO1e91bEHn8zd43RdkTMKiooYKmwz7RH6zfOQ==";
- };
- };
- "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 = "kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==";
- };
- };
- "safe-buffer-5.1.2" = {
- name = "safe-buffer";
- packageName = "safe-buffer";
- version = "5.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
- sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
- };
- };
- "safe-json-stringify-1.2.0" = {
- name = "safe-json-stringify";
- packageName = "safe-json-stringify";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz";
- sha512 = "gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==";
- };
- };
- "safe-regex-1.1.0" = {
- name = "safe-regex";
- packageName = "safe-regex";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz";
- sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
- };
- };
- "safer-buffer-2.1.2" = {
- name = "safer-buffer";
- packageName = "safer-buffer";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
- sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
- };
- };
- "sander-0.5.1" = {
- name = "sander";
- packageName = "sander";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz";
- sha1 = "741e245e231f07cafb6fdf0f133adfa216a502ad";
- };
- };
- "sanitize-html-1.18.4" = {
- name = "sanitize-html";
- packageName = "sanitize-html";
- version = "1.18.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.18.4.tgz";
- sha512 = "hjyDYCYrQuhnEjq+5lenLlIfdPBtnZ7z0DkQOC8YGxvkuOInH+1SrkNTj30t4f2/SSv9c5kLniB+uCIpBvYuew==";
- };
- };
- "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-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 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==";
- };
- };
- "schema-utils-0.4.7" = {
- name = "schema-utils";
- packageName = "schema-utils";
- version = "0.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz";
- sha512 = "v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==";
- };
- };
- "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";
- };
- };
- "scuid-1.1.0" = {
- name = "scuid";
- packageName = "scuid";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/scuid/-/scuid-1.1.0.tgz";
- sha512 = "MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==";
- };
- };
- "secure-keys-1.0.0" = {
- name = "secure-keys";
- packageName = "secure-keys";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/secure-keys/-/secure-keys-1.0.0.tgz";
- sha1 = "f0c82d98a3b139a8776a8808050b824431087fca";
- };
- };
- "seek-bzip-1.0.5" = {
- name = "seek-bzip";
- packageName = "seek-bzip";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz";
- sha1 = "cfe917cb3d274bcffac792758af53173eb1fabdc";
- };
- };
- "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.0" = {
- name = "semver";
- packageName = "semver";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.1.0.tgz";
- sha1 = "85f2cf8550465c4df000cf7d86f6b054106ab9e5";
- };
- };
- "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.5.0" = {
- name = "semver";
- packageName = "semver";
- version = "5.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
- sha512 = "4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==";
- };
- };
- "semver-compare-1.0.0" = {
- name = "semver-compare";
- packageName = "semver-compare";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz";
- sha1 = "0dee216a1c941ab37e9efb1788f6afc5ff5537fc";
- };
- };
- "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.2" = {
- name = "semver-utils";
- packageName = "semver-utils";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.2.tgz";
- sha512 = "+RvtdCZJdLJXN6ozVqbypYII/m4snihgWvmFHW8iWusxqGVdEP31QdUVVaC6GeJ9EYE0JCMdWiNlLF3edjifEw==";
- };
- };
- "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.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.2" = {
- name = "send";
- packageName = "send";
- version = "0.16.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.16.2.tgz";
- sha512 = "E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "serialize-javascript-1.5.0" = {
- name = "serialize-javascript";
- packageName = "serialize-javascript";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz";
- sha512 = "Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ==";
- };
- };
- "serializerr-1.0.3" = {
- name = "serializerr";
- packageName = "serializerr";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/serializerr/-/serializerr-1.0.3.tgz";
- sha1 = "12d4c5aa1c3ffb8f6d1dc5f395aa9455569c3f91";
- };
- };
- "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.5.0" = {
- name = "serve-favicon";
- packageName = "serve-favicon";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz";
- sha1 = "935d240cdfe0f5805307fdfe967d88942a2cbcf0";
- };
- };
- "serve-handler-3.6.0" = {
- name = "serve-handler";
- packageName = "serve-handler";
- version = "3.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-handler/-/serve-handler-3.6.0.tgz";
- sha512 = "YPMV1OCfOxub4OnGQQtcGEJNI6e49r0vfSid2U5xrcOB1l6TFWfvHmUhEbfrvU7sqhZgmicfVtVBiAAGRH7NTA==";
- };
- };
- "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.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.2" = {
- name = "serve-static";
- packageName = "serve-static";
- version = "1.13.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz";
- sha512 = "p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==";
- };
- };
- "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.3.0" = {
- name = "service-runner";
- packageName = "service-runner";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/service-runner/-/service-runner-2.3.0.tgz";
- sha1 = "09039dfdcc40cdbd0259dd3f982916675838cb59";
- };
- };
- "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" = {
- 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 = "hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==";
- };
- };
- "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 = "BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==";
- };
- };
- "sha.js-2.4.11" = {
- name = "sha.js";
- packageName = "sha.js";
- version = "2.4.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz";
- sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==";
- };
- };
- "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.2" = {
- name = "shelljs";
- packageName = "shelljs";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.2.tgz";
- sha512 = "pRXeNrCA2Wd9itwhvLp5LZQvPJ0wU6bcjaTMywHHGX5XWhVN2nzSu7WV0q+oUY7mGK3mgSkDDzP3MgjqdyIgbQ==";
- };
- };
- "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 = "vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==";
- };
- };
- "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.3.1" = {
- name = "sign-addon";
- packageName = "sign-addon";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.3.1.tgz";
- sha512 = "feaoG7+8IXr9SymOEd8VTZCSlVZArWcBDZ33IIdfXlU5NWWzXdCxCjPDqAkLQplFa7RRZr1S4lSmgMPn80Ze1A==";
- };
- };
- "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-errors-1.0.1" = {
- name = "simple-errors";
- packageName = "simple-errors";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-errors/-/simple-errors-1.0.1.tgz";
- sha1 = "b0bbecac1f1082f13b3962894b4a9e88f3a0c9ef";
- };
- };
- "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.8.1" = {
- name = "simple-get";
- packageName = "simple-get";
- version = "2.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz";
- sha512 = "lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw==";
- };
- };
- "simple-get-3.0.3" = {
- name = "simple-get";
- packageName = "simple-get";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-get/-/simple-get-3.0.3.tgz";
- sha512 = "Wvre/Jq5vgoz31Z9stYWPLn0PqRqmBDpFSdypAnHu5AvRVCYPRYGnvryNLiXu8GOBNDH82J2FRHUGMjjHUpXFw==";
- };
- };
- "simple-git-1.96.0" = {
- name = "simple-git";
- packageName = "simple-git";
- version = "1.96.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-git/-/simple-git-1.96.0.tgz";
- sha512 = "+gXuzJFpGtK9zCa7rPMMNs8AF2weWMsB0Vlyym5VkFX2VGQ3VBzKhnxPN//PWrGuPFGQ/u0F1yL6rZoPhj/KPQ==";
- };
- };
- "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-peer-9.1.2" = {
- name = "simple-peer";
- packageName = "simple-peer";
- version = "9.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.1.2.tgz";
- sha512 = "MUWWno5o5cvISKOH4pYQ18PQJLpDaNWoKUbrPPKuspCLCkkh+zhtuQyTE8h2U2Ags+/OUN5wnUe92+9B8/Sm2Q==";
- };
- };
- "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.1" = {
- name = "simple-sha1";
- packageName = "simple-sha1";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-sha1/-/simple-sha1-2.1.1.tgz";
- sha512 = "pFMPd+I/lQkpf4wFUeS/sED5IqdIG1lUlrQviBMV4u4mz8BRAcB5fvUx5Ckfg3kBigEglAjHg7E9k/yy2KlCqA==";
- };
- };
- "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";
- };
- };
- "simple-websocket-7.2.0" = {
- name = "simple-websocket";
- packageName = "simple-websocket";
- version = "7.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-websocket/-/simple-websocket-7.2.0.tgz";
- sha512 = "wdxFg1fHw1yqFKWDcw+yNb4VIYqtl+vknZMlpLhvZSlR6l7/iVuwozqo+Qtl73mB1IH5QnXzonD1S+hAaLNTvQ==";
- };
- };
- "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.1" = {
- name = "siphash24";
- packageName = "siphash24";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.1.tgz";
- sha512 = "dKKwjIoTOa587TARYLlBRXq2lkbu5Iz35XrEVWpelhBP1m8r2BGOy1QlaZe84GTFHG/BTucEUd2btnNc8QzIVA==";
- };
- };
- "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";
- };
- };
- "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 = "POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==";
- };
- };
- "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";
- };
- };
- "smartdc-auth-2.5.7" = {
- name = "smartdc-auth";
- packageName = "smartdc-auth";
- version = "2.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/smartdc-auth/-/smartdc-auth-2.5.7.tgz";
- sha1 = "42d45710e791deb92df91326c8eed1bd5a842cb6";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "snapdragon-0.8.2" = {
- name = "snapdragon";
- packageName = "snapdragon";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz";
- sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==";
- };
- };
- "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 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==";
- };
- };
- "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 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==";
- };
- };
- "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 = "FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==";
- };
- };
- "snyk-1.90.2" = {
- name = "snyk";
- packageName = "snyk";
- version = "1.90.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.90.2.tgz";
- sha512 = "SbV6dlDRbXx6q0I2m176NH3LER1wTibuwctcthphsywl1zjoPAdJlMmAOK3BQ61XtjV4xQmzk4OYYf6TUr9ZEw==";
- };
- };
- "snyk-config-2.2.0" = {
- name = "snyk-config";
- packageName = "snyk-config";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-config/-/snyk-config-2.2.0.tgz";
- sha512 = "mq0wbP/AgjcmRq5i5jg2akVVV3iSYUPTowZwKn7DChRLDL8ySOzWAwan+ImXiyNbrWo87FNI/15O6MpOnTxOIg==";
- };
- };
- "snyk-docker-plugin-1.10.3" = {
- name = "snyk-docker-plugin";
- packageName = "snyk-docker-plugin";
- version = "1.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-1.10.3.tgz";
- sha512 = "nIw6zS705SiQLEhBwoO2qsJ3lVN1DZ48tyMgqhlr5f5GuOrwUJ0ivUK5HQUI79xA6pF7tU18495OlbsKuEHUOw==";
- };
- };
- "snyk-go-plugin-1.5.2" = {
- name = "snyk-go-plugin";
- packageName = "snyk-go-plugin";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.5.2.tgz";
- sha512 = "XWajcSh6Ld+I+WdcyU3DGDuE2ydThQd8ORkESy0nQ2LwekygLYVYN66OBy0uxpqYfd4qoqeg+J8lb4oGzCmyGA==";
- };
- };
- "snyk-gradle-plugin-1.3.0" = {
- name = "snyk-gradle-plugin";
- packageName = "snyk-gradle-plugin";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-1.3.0.tgz";
- sha512 = "rKZcPwbDM9zk3pFcO0w77MIKOZTkk5ZBVBkBlTlUiFg+eNOKqPTmw2hBGF5NB4ASQmMnx3uB1C8+hrQ405CthA==";
- };
- };
- "snyk-module-1.8.2" = {
- name = "snyk-module";
- packageName = "snyk-module";
- version = "1.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-module/-/snyk-module-1.8.2.tgz";
- sha512 = "XqhdbZ/CUuJ5gSaYdYfapLqx9qm2Mp6nyRMBCLXe9tJSiohOJsc9fQuUDbdOiRCqpA4BD6WLl+qlwOJmJoszBg==";
- };
- };
- "snyk-mvn-plugin-1.2.0" = {
- name = "snyk-mvn-plugin";
- packageName = "snyk-mvn-plugin";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-1.2.0.tgz";
- sha512 = "ieTWhn1MB88gEQ6nUtGCeUKQ6Xoxm+u+QmD9u3zfP1QS5ep9fWt3YYDUQjgUiDTJJy7QyVQdZ/fsz3RECnOA7w==";
- };
- };
- "snyk-nuget-plugin-1.6.4" = {
- name = "snyk-nuget-plugin";
- packageName = "snyk-nuget-plugin";
- version = "1.6.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.6.4.tgz";
- sha512 = "D7cwfPC1U/HABAs4Tc9jviajoblMggWOYvWpjf1F4InG6gTfp5lDeeonFp/Xoj6wcju/j88w2gAveWrJWXNj6w==";
- };
- };
- "snyk-php-plugin-1.5.1" = {
- name = "snyk-php-plugin";
- packageName = "snyk-php-plugin";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-php-plugin/-/snyk-php-plugin-1.5.1.tgz";
- sha512 = "g5QSHBsRJ2O4cNxKC4zlWwnQYiSgQ77Y6QgGmo3ihPX3VLZrc1amaZIpPsNe1jwXirnGj2rvR5Xw+jDjbzvHFw==";
- };
- };
- "snyk-policy-1.12.0" = {
- name = "snyk-policy";
- packageName = "snyk-policy";
- version = "1.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-policy/-/snyk-policy-1.12.0.tgz";
- sha512 = "CEioNnDzccHyid7UIVl3bJ1dnG4co4ofI+KxuC1mo0IUXy64gxnBTeVoZF5gVLWbAyxGxSeW8f0+8GmWMHVb7w==";
- };
- };
- "snyk-python-plugin-1.8.1" = {
- name = "snyk-python-plugin";
- packageName = "snyk-python-plugin";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.8.1.tgz";
- sha512 = "DsUBkQZiPlXGkwzhxxEo2Tvfq6XhygWQThWM0yRBythi9M5n8UimZEwdkBHPj7xKC1clsB8boM3+sT/E1x6XGA==";
- };
- };
- "snyk-resolve-1.0.1" = {
- name = "snyk-resolve";
- packageName = "snyk-resolve";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-resolve/-/snyk-resolve-1.0.1.tgz";
- sha512 = "7+i+LLhtBo1Pkth01xv+RYJU8a67zmJ8WFFPvSxyCjdlKIcsps4hPQFebhz+0gC5rMemlaeIV6cqwqUf9PEDpw==";
- };
- };
- "snyk-resolve-deps-3.1.0" = {
- name = "snyk-resolve-deps";
- packageName = "snyk-resolve-deps";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-resolve-deps/-/snyk-resolve-deps-3.1.0.tgz";
- sha512 = "YVAelR+dTpqLgfk6lf6WgOlw+MGmGI0r3/Dny8tUbJJ9uVTHTRAOdZCbUyTFqJG7oEmEZxUwmfjqgAuniYwx8Q==";
- };
- };
- "snyk-sbt-plugin-1.3.1" = {
- name = "snyk-sbt-plugin";
- packageName = "snyk-sbt-plugin";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-1.3.1.tgz";
- sha512 = "un9ddM4M+7Ye/zhkh5Cm6EYMXU0Z/aM8wuYZvu4O+wd8sonoUClwckzJlsaI2BA7xvfDL9qQUaImtpgy94v5JQ==";
- };
- };
- "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.3.1" = {
- name = "snyk-try-require";
- packageName = "snyk-try-require";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-1.3.1.tgz";
- sha1 = "6e026f92e64af7fcccea1ee53d524841e418a212";
- };
- };
- "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.1.1" = {
- name = "socket.io";
- packageName = "socket.io";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz";
- sha512 = "rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==";
- };
- };
- "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.1.1" = {
- name = "socket.io-client";
- packageName = "socket.io-client";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz";
- sha512 = "jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ==";
- };
- };
- "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.2.0" = {
- name = "socket.io-parser";
- packageName = "socket.io-parser";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz";
- sha512 = "FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==";
- };
- };
- "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 = "ZwEDymm204mTzvdqyUqOdovVr2YRd2NYskrYrF2LXyZ9qDiMAoFESGK8CRphiO7rtbo2Y757k2Nia3x2hGtalA==";
- };
- };
- "sodium-javascript-0.5.5" = {
- name = "sodium-javascript";
- packageName = "sodium-javascript";
- version = "0.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.5.5.tgz";
- sha512 = "UMmCHovws/sxIBZsIRhIl8uRPou/RFDD0vVop81T1hG106NLLgqajKKuHAOtAP6hflnZ0UrVA2VFwddTd/NQyA==";
- };
- };
- "sodium-native-2.2.1" = {
- name = "sodium-native";
- packageName = "sodium-native";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.2.1.tgz";
- sha512 = "3CfftYV2ATXQFMIkLOvcNUk/Ma+lran0855j5Z/HEjUkSTzjLZi16CK362udOoNVrwn/TwGV8bKEt5OylsFrQA==";
- };
- };
- "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 = "csdVyakzHJRyCevY4aZC2Eacda8paf+4nmRGF2N7KxCLKY2Ajn72JsExaQlJQ2BiXJncp44p3T+b80cU+2TTsg==";
- };
- };
- "sonic-boom-0.5.0" = {
- name = "sonic-boom";
- packageName = "sonic-boom";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-0.5.0.tgz";
- sha512 = "IqUrLNxgsUQGVyMLW8w8vELMa1BZIQ/uBjBuxLK0jg7HqWwedCgmBLqvgMFGihhXCoQ8w5m2vcnMs47C4KYxuQ==";
- };
- };
- "sorcery-0.10.0" = {
- name = "sorcery";
- packageName = "sorcery";
- version = "0.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sorcery/-/sorcery-0.10.0.tgz";
- sha1 = "8ae90ad7d7cb05fc59f1ab0c637845d5c15a52b7";
- };
- };
- "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-3.0.0" = {
- name = "sort-on";
- packageName = "sort-on";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sort-on/-/sort-on-3.0.0.tgz";
- sha512 = "e2RHeY1iM6dT9od3RoqeJSyz3O7naNFsGy34+EFEcwghjAncuOXC2/Xwq87S4FbypqLVp6PcizYEsGEGsGIDXA==";
- };
- };
- "sorted-array-functions-1.2.0" = {
- name = "sorted-array-functions";
- packageName = "sorted-array-functions";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.2.0.tgz";
- sha512 = "sWpjPhIZJtqO77GN+LD8dDsDKcWZ9GCOJNqKzi1tvtjGIzwfoyuRH8S0psunmc6Z5P+qfDqztSbwYR5X/e1UTg==";
- };
- };
- "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 = "I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==";
- };
- };
- "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.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 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==";
- };
- };
- "source-map-resolve-0.5.2" = {
- name = "source-map-resolve";
- packageName = "source-map-resolve";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz";
- sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==";
- };
- };
- "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 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==";
- };
- };
- "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.3" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.3.tgz";
- sha512 = "eKkTgWYeBOQqFGXRfKabMFdnWepo51vWqEdoeikaEPFiJC7MCU5j2h4+6Q8npkZTeLGbSyecZvRxiSoWl3rh+w==";
- };
- };
- "source-map-support-0.5.6" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.5.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz";
- sha512 = "N4KXEz7jcKqPf2b2vZF11lQIz9W5ZMuUcIOGj243lduidkf2fjkVKJS9vNxVWn3u/uxX38AcE8U9nnH9FPcq+g==";
- };
- };
- "source-map-support-0.5.8" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.5.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.8.tgz";
- sha512 = "WqAEWPdb78u25RfKzOF0swBpY0dKrNdjc4GvLwm7ScX/o9bj8Eh/YL8mcMhBHYDGl87UkkSXDOFnW4G7GhWhGg==";
- };
- };
- "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";
- };
- };
- "sourcemap-codec-1.4.1" = {
- name = "sourcemap-codec";
- packageName = "sourcemap-codec";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.1.tgz";
- sha512 = "hX1eNBNuilj8yfFnECh0DzLgwKpBLMIvmhgEhixXNui8lMLBInTI8Kyxt++RwJnMNu7cAUo635L2+N1TxMJCzA==";
- };
- };
- "sparkles-1.0.1" = {
- name = "sparkles";
- packageName = "sparkles";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz";
- sha512 = "dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==";
- };
- };
- "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-3.0.0" = {
- name = "spdx-correct";
- packageName = "spdx-correct";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz";
- sha512 = "N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==";
- };
- };
- "spdx-exceptions-2.1.0" = {
- name = "spdx-exceptions";
- packageName = "spdx-exceptions";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz";
- sha512 = "4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg==";
- };
- };
- "spdx-expression-parse-3.0.0" = {
- name = "spdx-expression-parse";
- packageName = "spdx-expression-parse";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz";
- sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==";
- };
- };
- "spdx-license-ids-3.0.0" = {
- name = "spdx-license-ids";
- packageName = "spdx-license-ids";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz";
- sha512 = "2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA==";
- };
- };
- "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.1.0" = {
- name = "speedometer";
- packageName = "speedometer";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/speedometer/-/speedometer-1.1.0.tgz";
- sha512 = "z/wAiTESw2XVPssY2XRcme4niTc4S5FkkJ4gknudtVoc33Zil8TdTxHy5torRcgqMqksJV2Yz8HQcvtbsnw0mQ==";
- };
- };
- "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 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==";
- };
- };
- "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 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==";
- };
- };
- "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 = "RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==";
- };
- };
- "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";
- };
- };
- "sprintf-js-1.1.1" = {
- name = "sprintf-js";
- packageName = "sprintf-js";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz";
- sha1 = "36be78320afe5801f6cea3ee78b6e5aab940ea0c";
- };
- };
- "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.14.1" = {
- name = "sshpk";
- packageName = "sshpk";
- version = "1.14.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz";
- sha1 = "130f5975eddad963f1d56f92b9ac6c51fa9f83eb";
- };
- };
- "sshpk-1.14.2" = {
- name = "sshpk";
- packageName = "sshpk";
- version = "1.14.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz";
- sha1 = "c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98";
- };
- };
- "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";
- };
- };
- "sshpk-agent-1.7.0" = {
- name = "sshpk-agent";
- packageName = "sshpk-agent";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sshpk-agent/-/sshpk-agent-1.7.0.tgz";
- sha512 = "zR4GV5XYSypCusFzfTeTSXVqrFJJsK79Ec2KXZdo/x7qxBGSJPPZFtqMcqpXPaJ9VCK7Zn/vI+/kMrqeQILv4w==";
- };
- };
- "ssri-5.3.0" = {
- name = "ssri";
- packageName = "ssri";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz";
- sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==";
- };
- };
- "stable-0.1.8" = {
- name = "stable";
- packageName = "stable";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz";
- sha512 = "ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==";
- };
- };
- "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";
- };
- };
- "stat-mode-0.2.2" = {
- name = "stat-mode";
- packageName = "stat-mode";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/stat-mode/-/stat-mode-0.2.2.tgz";
- sha1 = "e6c80b623123d7d80cf132ce538f346289072502";
- };
- };
- "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";
- };
- };
- "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 = "zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==";
- };
- };
- "statuses-1.5.0" = {
- name = "statuses";
- packageName = "statuses";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz";
- sha1 = "161c7dac177659fd9811f43771fa99381478628c";
- };
- };
- "stealthy-require-1.1.1" = {
- name = "stealthy-require";
- packageName = "stealthy-require";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz";
- sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b";
- };
- };
- "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.1" = {
- name = "stream-consume";
- packageName = "stream-consume";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz";
- sha512 = "tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg==";
- };
- };
- "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.3" = {
- name = "stream-each";
- packageName = "stream-each";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz";
- sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==";
- };
- };
- "stream-http-2.8.3" = {
- name = "stream-http";
- packageName = "stream-http";
- version = "2.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz";
- sha512 = "+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==";
- };
- };
- "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-blob-1.0.1" = {
- name = "stream-to-blob";
- packageName = "stream-to-blob";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-to-blob/-/stream-to-blob-1.0.1.tgz";
- sha512 = "aRy4neA4rf+qMtLT9fCRLPGWdrsIKtCx4kUdNTIPgPQ2hkHkdxbViVAvABMx9oRM6yCWfngHx6pwXfbYkVuPuw==";
- };
- };
- "stream-to-blob-url-2.1.1" = {
- name = "stream-to-blob-url";
- packageName = "stream-to-blob-url";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-to-blob-url/-/stream-to-blob-url-2.1.1.tgz";
- sha512 = "DKJPEmCmIZoBfGVle9IhSfERiWaN5cuOtmfPxP2dZbLDRZxkBWZ4QbYxEJOSALk1Kf+WjBgedAMO6qkkf7Lmrg==";
- };
- };
- "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";
- };
- };
- "stream-with-known-length-to-buffer-1.0.2" = {
- name = "stream-with-known-length-to-buffer";
- packageName = "stream-with-known-length-to-buffer";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-with-known-length-to-buffer/-/stream-with-known-length-to-buffer-1.0.2.tgz";
- sha512 = "UxSISjxmguvfYzZdq6d4XAjc3gAocqTIOS1CjgwkDkkGT/LMTsIYiV8agIw42IHFFHf8k4lPOoroCCf4W9oqzg==";
- };
- };
- "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 = "WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==";
- };
- };
- "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-length-2.0.0" = {
- name = "string-length";
- packageName = "string-length";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz";
- sha1 = "d40dbb686a3ace960c1cffca562bf2c45f8363ed";
- };
- };
- "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 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==";
- };
- };
- "string.prototype.codepointat-0.2.1" = {
- name = "string.prototype.codepointat";
- packageName = "string.prototype.codepointat";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz";
- sha512 = "2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==";
- };
- };
- "string.prototype.matchall-2.0.0" = {
- name = "string.prototype.matchall";
- packageName = "string.prototype.matchall";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-2.0.0.tgz";
- sha512 = "WoZ+B2ypng1dp4iFLF2kmZlwwlE19gmjgKuhL1FJfDgCREWb3ye3SDVHSzLH6bxfnvYmkCxbzkmWcQZHA4P//Q==";
- };
- };
- "string2compact-1.3.0" = {
- name = "string2compact";
- packageName = "string2compact";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/string2compact/-/string2compact-1.3.0.tgz";
- sha512 = "004ulKKANDuQilQsNxy2lisrpMG0qUJxBU+2YCEF7KziRyNR0Nredm2qk0f1V82nva59H3y9GWeHXE63HzGRFw==";
- };
- };
- "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 = "4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==";
- };
- };
- "string_decoder-1.1.1" = {
- name = "string_decoder";
- packageName = "string_decoder";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
- sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
- };
- };
- "stringstream-0.0.6" = {
- name = "stringstream";
- packageName = "stringstream";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz";
- sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==";
- };
- };
- "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-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-bom-string-1.0.0" = {
- name = "strip-bom-string";
- packageName = "strip-bom-string";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz";
- sha1 = "e5211e9224369fbb81d633a2f00044dc8cedad92";
- };
- };
- "strip-dirs-2.1.0" = {
- name = "strip-dirs";
- packageName = "strip-dirs";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz";
- sha512 = "JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==";
- };
- };
- "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-indent-2.0.0" = {
- name = "strip-indent";
- packageName = "strip-indent";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz";
- sha1 = "5ef8db295d01e6ed6cbf7aab96998d7822527b68";
- };
- };
- "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";
- };
- };
- "strip-outer-1.0.1" = {
- name = "strip-outer";
- packageName = "strip-outer";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz";
- sha512 = "k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==";
- };
- };
- "strong-data-uri-1.0.6" = {
- name = "strong-data-uri";
- packageName = "strong-data-uri";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.6.tgz";
- sha512 = "zhzBZev0uhT2IrFUerenXhfaE0vFUYwAZsnG0gIKGpfM/Gi6jOUQ3cmcvyTsXeDLIPiTubHESeO7EbD6FoPmzw==";
- };
- };
- "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";
- };
- };
- "strsplit-1.0.0" = {
- name = "strsplit";
- packageName = "strsplit";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strsplit/-/strsplit-1.0.0.tgz";
- sha1 = "0fdedc68e91addcfcb2e6be9c262581a6e8c28aa";
- };
- };
- "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.3" = {
- name = "superagent";
- packageName = "superagent";
- version = "3.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz";
- sha512 = "GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==";
- };
- };
- "superagent-proxy-1.0.3" = {
- name = "superagent-proxy";
- packageName = "superagent-proxy";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/superagent-proxy/-/superagent-proxy-1.0.3.tgz";
- sha512 = "79Ujg1lRL2ICfuHUdX+H2MjIw73kB7bXsIkxLwHURz3j0XUmEEEoJ+u/wq+mKwna21Uejsm2cGR3OESA00TIjA==";
- };
- };
- "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 = "Ts0Mu/A1S1aZxEJNG88I4Oc9rcZSBFNac5e27yh4j2mqbhZSSzR1Ah79EYwSn9Zuh7lrlGD2cVGzw1RKGzyLSg==";
- };
- };
- "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 = "Ry0AwkoKjDpVKK4sV4h6o3UJmNRbjYm2uXhwfj3J56lMVdvnUNqzQVRztOOMGQ++w1K/TjNDFvpJk0F/LoeBCQ==";
- };
- };
- "supports-color-5.4.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "5.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz";
- sha512 = "zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "symbol-tree-3.2.2" = {
- name = "symbol-tree";
- packageName = "symbol-tree";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz";
- sha1 = "ae27db38f660a7ae2e1c3b7d1bc290819b8519e6";
- };
- };
- "sync-exec-0.6.2" = {
- name = "sync-exec";
- packageName = "sync-exec";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/sync-exec/-/sync-exec-0.6.2.tgz";
- sha1 = "717d22cc53f0ce1def5594362f3a89a2ebb91105";
- };
- };
- "sync-request-3.0.0" = {
- name = "sync-request";
- packageName = "sync-request";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sync-request/-/sync-request-3.0.0.tgz";
- sha1 = "8030046939b00096e625c0dd6b3905bc7b85709c";
- };
- };
- "syntax-error-1.4.0" = {
- name = "syntax-error";
- packageName = "syntax-error";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz";
- sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
- };
- };
- "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.3" = {
- name = "table";
- packageName = "table";
- version = "4.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-4.0.3.tgz";
- sha512 = "S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==";
- };
- };
- "tabtab-1.3.2" = {
- name = "tabtab";
- packageName = "tabtab";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/tabtab/-/tabtab-1.3.2.tgz";
- 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";
- };
- };
- "tabula-1.10.0" = {
- name = "tabula";
- packageName = "tabula";
- version = "1.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tabula/-/tabula-1.10.0.tgz";
- sha1 = "2ed67caf8cad091de80e43622850d899713b2f47";
- };
- };
- "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";
- };
- };
- "tapable-1.0.0" = {
- name = "tapable";
- packageName = "tapable";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tapable/-/tapable-1.0.0.tgz";
- sha512 = "dQRhbNQkRnaqauC7WqSJ21EEksgT0fYZX2lqXzGkpo8JNig9zGZTYoMGvyI2nWmXlE2VSVXVDu7wLVGu/mQEsg==";
- };
- };
- "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 = "pQNFsg+Wb6VXsrIPUnuQwrHR4wD5ASBR0jRyiT4/AALFA2Nl+CjhkDX5fTmIwCuULRtyQR3Dae2BBnP2EFHscw==";
- };
- };
- "tar-4.4.6" = {
- name = "tar";
- packageName = "tar";
- version = "4.4.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-4.4.6.tgz";
- sha512 = "tMkTnh9EdzxyfW+6GK6fCahagXsnYk6kE6S9Gr9pjVdys769+laCTbodXDhPAjzVtEBazRgP0gYqOjnk9dQzLg==";
- };
- };
- "tar-fs-1.16.3" = {
- name = "tar-fs";
- packageName = "tar-fs";
- version = "1.16.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.3.tgz";
- sha512 = "NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw==";
- };
- };
- "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 = "PPRybI9+jM5tjtCbN2cxmmRU7YmqT3Zv/UDy48tAh2XRkLa9bAORtSWLkVc13+GJF+cdTh1yEnHEk3cpTaL5Kg==";
- };
- };
- "tar-stream-1.6.1" = {
- name = "tar-stream";
- packageName = "tar-stream";
- version = "1.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.1.tgz";
- sha512 = "IFLM5wp3QrJODQFPm6/to3LJZrONdBY/otxcvDIQzu217zKye6yVR3hhi9lAjrC2Z+m/j5oDxMPb1qcd8cIvpA==";
- };
- };
- "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-2.0.0" = {
- name = "tempfile";
- packageName = "tempfile";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz";
- sha1 = "6b0446856a9b1114d1856ffcbe509cccb0977265";
- };
- };
- "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 = "AKXZeDq230UaSzaO5s3qQUZOaC7iKbzq0jOFL614R7d9R593HLqAOL0cYoqLdkNrjBSOdmoQI06yigq1TSBXAg==";
- };
- };
- "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.2" = {
- name = "thriftrw";
- packageName = "thriftrw";
- version = "3.11.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/thriftrw/-/thriftrw-3.11.2.tgz";
- sha512 = "3iCowlHgCEXjabCkurHTaECb2+U0V+NzqBmwfKHn8fzJJwXd/oDo7Wh6Vs0kaESN7YNJMRPC8ObL3AfQ1gxKmQ==";
- };
- };
- "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 = "/EY8VpvlqJ+sFtLPeOgc8Pl7kQVOWv0woD87KTXVHPIAE842FGT+rokxIhe8xIUP1cfgrkt0as0vDLjDiMtr8w==";
- };
- };
- "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.2.7" = {
- name = "through";
- packageName = "through";
- version = "2.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/through/-/through-2.2.7.tgz";
- sha1 = "6e8e21200191d4eb6a99f6f010df46aa1c6eb2bd";
- };
- };
- "through-2.3.4" = {
- name = "through";
- packageName = "through";
- version = "2.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/through/-/through-2.3.4.tgz";
- sha1 = "495e40e8d8a8eaebc7c275ea88c2b8fc14c56455";
- };
- };
- "through-2.3.8" = {
- name = "through";
- packageName = "through";
- 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";
- };
- };
- "thunkify-wrap-1.0.4" = {
- name = "thunkify-wrap";
- packageName = "thunkify-wrap";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/thunkify-wrap/-/thunkify-wrap-1.0.4.tgz";
- sha1 = "b52be548ddfefda20e00b58c6096762b43dd6880";
- };
- };
- "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-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.10" = {
- name = "timers-browserify";
- packageName = "timers-browserify";
- version = "2.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz";
- sha512 = "YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==";
- };
- };
- "timers-ext-0.1.5" = {
- name = "timers-ext";
- packageName = "timers-ext";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.5.tgz";
- sha512 = "tsEStd7kmACHENhsUPaxb8Jf8/+GZZxyNFQbZD07HQOyooOa6At1rQqjffgvg7n+dxscQa9cjjMdWhJtsP2sxg==";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "titleize-1.0.1" = {
- name = "titleize";
- packageName = "titleize";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/titleize/-/titleize-1.0.1.tgz";
- sha512 = "rUwGDruKq1gX+FFHbTl5qjI7teVO7eOe+C8IcQ7QT+1BK3eEUXJqbZcBOeaRP4FwSC/C1A5jDoIVta0nIQ9yew==";
- };
- };
- "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 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==";
- };
- };
- "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.1" = {
- name = "to-buffer";
- packageName = "to-buffer";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz";
- sha512 = "lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==";
- };
- };
- "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-fast-properties-2.0.0" = {
- name = "to-fast-properties";
- packageName = "to-fast-properties";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz";
- sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e";
- };
- };
- "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.2" = {
- name = "to-regex";
- packageName = "to-regex";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz";
- sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==";
- };
- };
- "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-through-2.0.0" = {
- name = "to-through";
- packageName = "to-through";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz";
- sha1 = "fc92adaba072647bc0b67d6b03664aa195093af6";
- };
- };
- "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";
- };
- };
- "toidentifier-1.0.0" = {
- name = "toidentifier";
- packageName = "toidentifier";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz";
- sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==";
- };
- };
- "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 = "FOinMMjECHmDt6PZkSmcbM8ir41kGwYCbVW7NczWkWNNeuX9/mQHz31oNSJKZrkvgfas692ZoZ+G1jdM43qVGA==";
- };
- };
- "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 = "O7L5hhSQHxuufWUdcTRPfuTh3phKfAZ/dqfxZFoxPCj2RYmpaSGLEIs016FCXItQwNr08yefUB5TSjzRYnajTA==";
- };
- };
- "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-discovery-9.0.2" = {
- name = "torrent-discovery";
- packageName = "torrent-discovery";
- version = "9.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.0.2.tgz";
- sha512 = "UpkOyi/QUXRAwts8vSsFu/jRQ1mwGkaqv2OxLTJGr4DJKCiXpLHZ1+A4rxabcOWinM9RiqmS5mAjDuFfPHiJvw==";
- };
- };
- "torrent-piece-1.1.2" = {
- name = "torrent-piece";
- packageName = "torrent-piece";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-1.1.2.tgz";
- sha512 = "ElXPyXKKG73o+uziHJ8qlYE9EuyDVxnK2zWL+pW/2bma7RsLpSwFFIJAb8Qui7/tel2hsHQW1z3zBnfQNREpWA==";
- };
- };
- "torrent-piece-2.0.0" = {
- name = "torrent-piece";
- packageName = "torrent-piece";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-2.0.0.tgz";
- sha512 = "H/Z/yCuvZJj1vl1IQHI8dvF2QrUuXRJoptT5DW5967/dsLpXlCg+uyhFR5lfNj5mNaYePUbKtnL+qKWZGXv4Nw==";
- };
- };
- "torrent-stream-1.0.4" = {
- name = "torrent-stream";
- packageName = "torrent-stream";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-1.0.4.tgz";
- sha512 = "IIAoMzagHFzjRQrFjwAZrE3yQYAPsmkbx0gYMCu/x5vf/Cj5yBjZqW1/98vOcaGGGelH/LhkmrJ56VYhiAKi5g==";
- };
- };
- "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 = "WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==";
- };
- };
- "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.4" = {
- name = "tough-cookie";
- packageName = "tough-cookie";
- version = "2.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz";
- sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==";
- };
- };
- "tough-cookie-2.4.3" = {
- name = "tough-cookie";
- packageName = "tough-cookie";
- version = "2.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz";
- sha512 = "Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==";
- };
- };
- "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 = "6Di70O1dWm45SJ5xrGzlE805z3gYn4ZUmNKomIrI4OojzRA4zyQzJ/4lAxQbJlq0ihG/mUE2xbP4q85Q68ig2g==";
- };
- };
- "toxic-1.0.1" = {
- name = "toxic";
- packageName = "toxic";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/toxic/-/toxic-1.0.1.tgz";
- sha512 = "WI3rIGdcaKULYg7KVoB0zcjikqvcYYvcuT6D89bFPz2rVR0Rl0PK6x8/X62rtdLtBKIE985NzVf/auTtGegIIg==";
- };
- };
- "tr46-0.0.3" = {
- name = "tr46";
- packageName = "tr46";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz";
- sha1 = "8184fd347dac9cdc185992f3a6622e14b9d9ab6a";
- };
- };
- "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-chain-0.1.0" = {
- name = "traverse-chain";
- packageName = "traverse-chain";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/traverse-chain/-/traverse-chain-0.1.0.tgz";
- sha1 = "61dbc2d53b69ff6091a12a168fd7d433107e40f1";
- };
- };
- "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 = "DlX6dR0lOIRDFxI0mjL9IYg6OTncLm/Zt+JiBhE5OlFcAR8yc9S7FFXU9so0oda47frdM/JFsk7UjNt9vscKcg==";
- };
- };
- "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-newlines-2.0.0" = {
- name = "trim-newlines";
- packageName = "trim-newlines";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz";
- sha1 = "b403d0b91be50c331dfc4b82eeceb22c3de16d20";
- };
- };
- "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-repeated-1.0.0" = {
- name = "trim-repeated";
- packageName = "trim-repeated";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz";
- sha1 = "e3646a2ea4e891312bf7eace6cfb05380bc01c21";
- };
- };
- "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";
- };
- };
- "truncate-2.0.1" = {
- name = "truncate";
- packageName = "truncate";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/truncate/-/truncate-2.0.1.tgz";
- sha1 = "dd1a6d15630515663d8475f6f24edf2f800ebb1b";
- };
- };
- "tslib-1.9.3" = {
- name = "tslib";
- packageName = "tslib";
- version = "1.9.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz";
- sha512 = "4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==";
- };
- };
- "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 = "+bGy9iDAqg3WSfc2ZrprToSPJhZjqy7vUv9wupQzsiv+BVPVx1T2a6G4T0290SpQj+56Toaw9BiLO5j5Bd7QzA==";
- };
- };
- "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";
- };
- };
- "tty-browserify-0.0.1" = {
- name = "tty-browserify";
- packageName = "tty-browserify";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz";
- sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==";
- };
- };
- "tunnel-0.0.2" = {
- name = "tunnel";
- packageName = "tunnel";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.2.tgz";
- sha1 = "f23bcd8b7a7b8a864261b2084f66f93193396334";
- };
- };
- "tunnel-0.0.5" = {
- name = "tunnel";
- packageName = "tunnel";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.5.tgz";
- sha512 = "gj5sdqherx4VZKMcBA4vewER7zdK25Td+z1npBqpbDys4eJrLx+SlYjJvq1bDXs2irkuJM5pf8ktaEQVipkrbA==";
- };
- };
- "tunnel-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-1.12.0" = {
- name = "twig";
- packageName = "twig";
- version = "1.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/twig/-/twig-1.12.0.tgz";
- sha512 = "zm5OQXb8bQDGQUPytFgjqMKHhqcz/s6pU6Nwsy+rKPhsoOOVwYeHnziiDGFzeTDiFd28M8EVkEO8we6ikcrGjQ==";
- };
- };
- "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.8" = {
- name = "type-detect";
- packageName = "type-detect";
- version = "4.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz";
- sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==";
- };
- };
- "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.16" = {
- name = "type-is";
- packageName = "type-is";
- version = "1.6.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz";
- sha512 = "HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==";
- };
- };
- "typechecker-4.5.0" = {
- name = "typechecker";
- packageName = "typechecker";
- version = "4.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/typechecker/-/typechecker-4.5.0.tgz";
- sha512 = "bqPE/ck3bVIaXP7gMKTKSHrypT32lpYTpiqzPYeYzdSQnmaGvaGhy7TnN/M/+5R+2rs/kKcp9ZLPRp/Q9Yj+4w==";
- };
- };
- "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";
- };
- };
- "typedarray-to-buffer-3.1.5" = {
- name = "typedarray-to-buffer";
- packageName = "typedarray-to-buffer";
- version = "3.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz";
- sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==";
- };
- };
- "typescript-2.7.2" = {
- name = "typescript";
- packageName = "typescript";
- version = "2.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-2.7.2.tgz";
- sha512 = "p5TCYZDAO0m4G344hD+wx/LATebLWZNkkh2asWUFqSsD2OrDNhbAHuSjobrmsUmdzjJjEeZVU9g1h3O6vpstnw==";
- };
- };
- "typescript-2.8.3" = {
- name = "typescript";
- packageName = "typescript";
- version = "2.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz";
- sha512 = "K7g15Bb6Ra4lKf7Iq2l/I5/En+hLIHmxWZGq3D4DIRNFxMNV6j2SHSvDOqs2tGd4UvD/fJvrwopzQXjLrT7Itw==";
- };
- };
- "typescript-2.9.2" = {
- name = "typescript";
- packageName = "typescript";
- version = "2.9.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz";
- sha512 = "Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==";
- };
- };
- "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";
- };
- };
- "uc.micro-1.0.5" = {
- name = "uc.micro";
- packageName = "uc.micro";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.5.tgz";
- sha512 = "JoLI4g5zv5qNyT09f4YAvEZIIV1oOjqnewYg5D38dkQljIzpPT296dbIGvKro3digYI1bkb7W6EP1y4uDlmzLg==";
- };
- };
- "uglify-es-3.3.10" = {
- name = "uglify-es";
- packageName = "uglify-es";
- version = "3.3.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.10.tgz";
- sha512 = "rPzPisCzW68Okj1zNrfa2dR9uEm43SevDmpR6FChoZABFk9dANGnzzBMgHYUXI3609//63fnVkyQ1SQmAMyjww==";
- };
- };
- "uglify-js-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.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.3.25" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.3.25";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.25.tgz";
- sha512 = "hobogryjDV36VrLK3Y69ou4REyrTApzUblVFmdQOYRe8cYaSmFJXMb4dR9McdvYDSbeNdzUgYr2YVukJaErJcA==";
- };
- };
- "uglify-js-3.4.7" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.7.tgz";
- sha512 = "J0M2i1mQA+ze3EdN9SBi751DNdAXmeFLfJrd/MDIkRc3G3Gbb9OPVSx7GIQvVwfWxQARcYV2DTxIkMyDAk3o9Q==";
- };
- };
- "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-1.2.7" = {
- name = "uglifyjs-webpack-plugin";
- packageName = "uglifyjs-webpack-plugin";
- version = "1.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.7.tgz";
- sha512 = "1VicfKhCYHLS8m1DCApqBhoulnASsEoJ/BvpUpP4zoNAPpKzdH+ghk0olGJMmwX2/jprK2j3hAHdUbczBSy2FA==";
- };
- };
- "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 = "KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==";
- };
- };
- "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.2" = {
- name = "uint64be";
- packageName = "uint64be";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uint64be/-/uint64be-2.0.2.tgz";
- sha512 = "9QqdvpGQTXgxthP+lY4e/gIBy+RuqcBaC6JVwT5I3bDLgT/btL6twZMR0pI3/Fgah9G/pdwzIprE5gL6v9UvyQ==";
- };
- };
- "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 = "UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==";
- };
- };
- "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";
- };
- };
- "umd-3.0.3" = {
- name = "umd";
- packageName = "umd";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz";
- sha512 = "4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow==";
- };
- };
- "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 = "izD3jxT8xkzwtXRUZjtmRwKnZoeECrfZ8ra/ketwOcusbZEp4mjULMnJOCfTDZBgGQAAY1AJ/IgxcwkavcX9Og==";
- };
- };
- "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";
- };
- };
- "undeclared-identifiers-1.1.2" = {
- name = "undeclared-identifiers";
- packageName = "undeclared-identifiers";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.2.tgz";
- sha512 = "13EaeocO4edF/3JKime9rD7oB6QI8llAGhgn5fKOPyfkJbRb6NFv9pYV6dFEmpa4uRjKeBqLZP8GpuzqHlKDMQ==";
- };
- };
- "undefsafe-2.0.2" = {
- name = "undefsafe";
- packageName = "undefsafe";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.2.tgz";
- sha1 = "225f6b9e0337663e0d8e7cfd686fc2836ccace76";
- };
- };
- "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-1.9.1" = {
- name = "underscore";
- packageName = "underscore";
- version = "1.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz";
- sha512 = "5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==";
- };
- };
- "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";
- };
- };
- "unicode-5.2.0-0.7.5" = {
- name = "unicode-5.2.0";
- packageName = "unicode-5.2.0";
- version = "0.7.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/unicode-5.2.0/-/unicode-5.2.0-0.7.5.tgz";
- sha512 = "KVGLW1Bri30x00yv4HNM8kBxoqFXr0Sbo55735nvrlsx4PYBZol3UtoWgO492fSwmsetzPEZzy73rbU8OGXJcA==";
- };
- };
- "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";
- };
- };
- "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-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-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";
- };
- };
- "universalify-0.1.2" = {
- name = "universalify";
- packageName = "universalify";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz";
- sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==";
- };
- };
- "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.1" = {
- name = "unordered-set";
- packageName = "unordered-set";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/unordered-set/-/unordered-set-2.0.1.tgz";
- sha512 = "eUmNTPzdx+q/WvOHW0bgGYLWvWHNT3PTKEQLg0MAQhc0AHASHVHoP/9YytYd4RBVariqno/mEUhVZN98CmD7bg==";
- };
- };
- "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.3" = {
- name = "untildify";
- packageName = "untildify";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz";
- sha512 = "iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==";
- };
- };
- "unyield-0.0.1" = {
- name = "unyield";
- packageName = "unyield";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/unyield/-/unyield-0.0.1.tgz";
- sha1 = "150e65da42bf7742445b958a64eb9b85d1d2b180";
- };
- };
- "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.1.0" = {
- name = "upath";
- packageName = "upath";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz";
- sha512 = "bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==";
- };
- };
- "update-check-1.5.2" = {
- name = "update-check";
- packageName = "update-check";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/update-check/-/update-check-1.5.2.tgz";
- sha512 = "1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ==";
- };
- };
- "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-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-notifier-2.5.0" = {
- name = "update-notifier";
- packageName = "update-notifier";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz";
- sha512 = "gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==";
- };
- };
- "upnp-device-client-1.0.2" = {
- name = "upnp-device-client";
- packageName = "upnp-device-client";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/upnp-device-client/-/upnp-device-client-1.0.2.tgz";
- sha1 = "91f84705f2349bf89082855fff4e3006ac435337";
- };
- };
- "upnp-mediarenderer-client-1.2.4" = {
- name = "upnp-mediarenderer-client";
- packageName = "upnp-mediarenderer-client";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/upnp-mediarenderer-client/-/upnp-mediarenderer-client-1.2.4.tgz";
- sha1 = "0c63a51802082b6b03b596c475cc64fc1e0877c8";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "uri-js-4.2.2" = {
- name = "uri-js";
- packageName = "uri-js";
- version = "4.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz";
- sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
- };
- };
- "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-join-2.0.5" = {
- name = "url-join";
- packageName = "url-join";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz";
- sha1 = "5af22f18c052a000a48d7b82c5e9c2e2feeda728";
- };
- };
- "url-join-4.0.0" = {
- name = "url-join";
- packageName = "url-join";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/url-join/-/url-join-4.0.0.tgz";
- sha1 = "4d3340e807d3773bda9991f8305acdcc2a665d2a";
- };
- };
- "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-regex-3.2.0" = {
- name = "url-regex";
- packageName = "url-regex";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/url-regex/-/url-regex-3.2.0.tgz";
- sha1 = "dbad1e0c9e29e105dd0b1f09f6862f7fdb482724";
- };
- };
- "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-3.1.1" = {
- name = "use";
- packageName = "use";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz";
- sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==";
- };
- };
- "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";
- };
- };
- "ut_metadata-3.2.2" = {
- name = "ut_metadata";
- packageName = "ut_metadata";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ut_metadata/-/ut_metadata-3.2.2.tgz";
- sha512 = "PltK6kZ85DMscFl1gwyvOyja6UGROdyLI1ufWCTLsYnLfBaMyhtOEcbtgEgOwYEz8QuchR49qgHXTdJ2H05VHA==";
- };
- };
- "ut_pex-1.2.1" = {
- name = "ut_pex";
- packageName = "ut_pex";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ut_pex/-/ut_pex-1.2.1.tgz";
- sha512 = "ZrxMCbffYtxQDqvREN9kBXK2CB9tPnd5PylHoqQX9ai+3HV9/S39FnA5JnhLOC82dxIQQg0nTN2wmhtAdGNtOA==";
- };
- };
- "utf-8-validate-5.0.1" = {
- name = "utf-8-validate";
- packageName = "utf-8-validate";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.1.tgz";
- sha512 = "Qef1AuiWWxQeZ1Oa4DTV3ArRafpZvsK+CLrlB8khLfsV+9mwhj58hNSGmel0ns5jYP+3yEwav6vxxW7Gz85bVw==";
- };
- };
- "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.10.4" = {
- name = "util";
- packageName = "util";
- version = "0.10.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/util/-/util-0.10.4.tgz";
- sha512 = "0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==";
- };
- };
- "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 = "i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==";
- };
- };
- "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";
- };
- };
- "utilities-0.0.37" = {
- name = "utilities";
- packageName = "utilities";
- version = "0.0.37";
- src = fetchurl {
- url = "https://registry.npmjs.org/utilities/-/utilities-0.0.37.tgz";
- sha1 = "a3470d0a7f688142d9e8a57cee1128f12e19e196";
- };
- };
- "utilities-1.0.5" = {
- name = "utilities";
- packageName = "utilities";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/utilities/-/utilities-1.0.5.tgz";
- sha1 = "f2b77a88f3510733fc7215b5c486a504a75ab245";
- };
- };
- "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.7.2" = {
- name = "utp-native";
- packageName = "utp-native";
- version = "1.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/utp-native/-/utp-native-1.7.2.tgz";
- sha512 = "jxNZIa49OXRCFbbqlp0SWsTCasvD9QjumUW85++KMaT21PKMDn6dLl2GsSsf1OsWRI8yKdzXg1OxhNsifPjyEA==";
- };
- };
- "uue-3.1.2" = {
- name = "uue";
- packageName = "uue";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uue/-/uue-3.1.2.tgz";
- sha512 = "axKLXVqwtdI/czrjG0X8hyV1KLgeWx8F4KvSbvVCnS+RUvsQMGRjx0kfuZDXXqj0LYvVJmx3B9kWlKtEdRrJLg==";
- };
- };
- "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.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 = "DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==";
- };
- };
- "uuid-3.3.2" = {
- name = "uuid";
- packageName = "uuid";
- version = "3.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz";
- sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==";
- };
- };
- "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";
- };
- };
- "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.4" = {
- name = "validate-npm-package-license";
- packageName = "validate-npm-package-license";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz";
- sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==";
- };
- };
- "validate-npm-package-name-3.0.0" = {
- name = "validate-npm-package-name";
- packageName = "validate-npm-package-name";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
- sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
- };
- };
- "validator-10.5.0" = {
- name = "validator";
- packageName = "validator";
- version = "10.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-10.5.0.tgz";
- sha512 = "6OOi+eV2mOxCFLq0f2cJDrdB6lrtLXEUxabhNRGjgOLT/l3SSll9J49Cl+LIloUqkWWTPraK/mucEQ3dc2jStQ==";
- };
- };
- "validator-5.2.0" = {
- name = "validator";
- packageName = "validator";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-5.2.0.tgz";
- sha1 = "e66fb3ec352348c1f7232512328738d8d66a9689";
- };
- };
- "validator-9.4.1" = {
- name = "validator";
- packageName = "validator";
- version = "9.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-9.4.1.tgz";
- sha512 = "YV5KjzvRmSyJ1ee/Dm5UED0G+1L4GZnLN3w6/T+zZm8scVua4sOhYKWTUrKa0H/tMiJyO9QLHMPN+9mB/aMunA==";
- };
- };
- "value-or-function-3.0.0" = {
- name = "value-or-function";
- packageName = "value-or-function";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz";
- sha1 = "1c243a50b595c1be54a754bfece8563b9ff8d813";
- };
- };
- "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.3.6" = {
- name = "verror";
- packageName = "verror";
- version = "1.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz";
- sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c";
- };
- };
- "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";
- };
- };
- "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";
- };
- };
- "videostream-2.5.1" = {
- name = "videostream";
- packageName = "videostream";
- version = "2.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/videostream/-/videostream-2.5.1.tgz";
- sha512 = "S3f34WE6NB1d/YUAa/EYcTURTkGaxsUqcDmsGWV1jQpQQJxeagc79/XA7ygNjzBf3DoQQ1MKTD+SocPsWSniAg==";
- };
- };
- "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-2.2.0" = {
- name = "vinyl";
- packageName = "vinyl";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz";
- sha512 = "MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==";
- };
- };
- "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-3.0.3" = {
- name = "vinyl-fs";
- packageName = "vinyl-fs";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz";
- sha512 = "vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==";
- };
- };
- "vinyl-sourcemap-1.1.0" = {
- name = "vinyl-sourcemap";
- packageName = "vinyl-sourcemap";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz";
- sha1 = "92a800593a38703a8cdb11d8b300ad4be63b3e16";
- };
- };
- "vinyl-sourcemaps-apply-0.2.1" = {
- name = "vinyl-sourcemaps-apply";
- packageName = "vinyl-sourcemaps-apply";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz";
- sha1 = "ab6549d61d172c2b1b87be5c508d239c8ef87705";
- };
- };
- "vlc-command-1.1.1" = {
- name = "vlc-command";
- packageName = "vlc-command";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vlc-command/-/vlc-command-1.1.1.tgz";
- sha1 = "349b85def831f980cd6eec560b1990fd989eaf92";
- };
- };
- "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";
- };
- };
- "vm-browserify-1.1.0" = {
- name = "vm-browserify";
- packageName = "vm-browserify";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz";
- sha512 = "iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==";
- };
- };
- "voc-1.1.0" = {
- name = "voc";
- packageName = "voc";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/voc/-/voc-1.1.0.tgz";
- sha512 = "fthgd8OJLqq8vPcLjElTk6Rcl2e3v5ekcXauImaqEnQqd5yUWKg1+ZOBgS2KTWuVKcuvZMQq4TDptiT1uYddUA==";
- };
- };
- "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.2" = {
- name = "vows";
- packageName = "vows";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vows/-/vows-0.8.2.tgz";
- sha1 = "691f79ab26ccde80ba726dde9fec8e73d6bcf2eb";
- };
- };
- "vscode-jsonrpc-3.6.0" = {
- name = "vscode-jsonrpc";
- packageName = "vscode-jsonrpc";
- version = "3.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.6.0.tgz";
- sha512 = "PqHHjuTlz3ks0vyZv3IkdduJReA/lqe6OP5zRl5nXn2ptMLW++fBotNyayyZEQLIF6nNrx/Rn6WhMSHElf02Yw==";
- };
- };
- "vscode-jsonrpc-3.6.2" = {
- name = "vscode-jsonrpc";
- packageName = "vscode-jsonrpc";
- version = "3.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.6.2.tgz";
- sha512 = "T24Jb5V48e4VgYliUXMnZ379ItbrXgOimweKaJshD84z+8q7ZOZjJan0MeDe+Ugb+uqERDVV8SBmemaGMSMugA==";
- };
- };
- "vscode-languageclient-4.0.1" = {
- name = "vscode-languageclient";
- packageName = "vscode-languageclient";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-4.0.1.tgz";
- sha512 = "0fuBZj9pMkeJ8OMyIvSGeRaRVhUaJt+yeFxi7a3sz/AbrngQdcxOovMXPgKuieoBSBKS05gXPS88BsWpJZfBkA==";
- };
- };
- "vscode-languageserver-4.0.0" = {
- name = "vscode-languageserver";
- packageName = "vscode-languageserver";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-4.0.0.tgz";
- sha512 = "bxj9nRadNkXYfVG/fjA5a+KA5WaJCeP1F2Tnj3rYFS0pKALZQCPNqk3KO/LdiGFidjyICMG7xoHvYO9J9xosXg==";
- };
- };
- "vscode-languageserver-4.4.0" = {
- name = "vscode-languageserver";
- packageName = "vscode-languageserver";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-4.4.0.tgz";
- sha512 = "NO4JQg286YLSdU11Fko6cke19kwSob3O0bhf6xDxIJuDhUbFy0VEPRB5ITc3riVmp13+Ki344xtqJYmqfcmCrg==";
- };
- };
- "vscode-languageserver-protocol-3.10.0" = {
- name = "vscode-languageserver-protocol";
- packageName = "vscode-languageserver-protocol";
- version = "3.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.10.0.tgz";
- sha512 = "PNNmKM0IcQPRiY1oUIxfwseBvxS5Sa5aZUpTcq/qsXWclnl8FFNs8oCCoAtyLhBXnuJvybWUNafiA78y0unJDA==";
- };
- };
- "vscode-languageserver-protocol-3.6.0" = {
- name = "vscode-languageserver-protocol";
- packageName = "vscode-languageserver-protocol";
- version = "3.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.6.0.tgz";
- sha512 = "PN5hVQQQxrtHSZR8UCstqaoI9f2H9JctFTtdIpONWjzQNurWrc48qSXXU/vTfnbSrNou8qrJgkZ4QEZsyozOMA==";
- };
- };
- "vscode-languageserver-types-3.10.0" = {
- name = "vscode-languageserver-types";
- packageName = "vscode-languageserver-types";
- version = "3.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.10.0.tgz";
- sha512 = "vxmCsVZGwq8X40SuLP8Ix7V0rq5V/7iQUjRVe2Oxm+TbmjxtjK4dpHHXQCUawjA4fhPA9FwjSRbDhbvQmYCfMw==";
- };
- };
- "vscode-uri-1.0.3" = {
- name = "vscode-uri";
- packageName = "vscode-uri";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.3.tgz";
- sha1 = "631bdbf716dccab0e65291a8dc25c23232085a52";
- };
- };
- "vscode-uri-1.0.5" = {
- name = "vscode-uri";
- packageName = "vscode-uri";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.5.tgz";
- sha1 = "3b899a8ef71c37f3054d79bdbdda31c7bf36f20d";
- };
- };
- "vstream-0.1.0" = {
- name = "vstream";
- packageName = "vstream";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vstream/-/vstream-0.1.0.tgz";
- sha1 = "13587190f34e72ba7a07ebbaa7e70ac147b1fb7d";
- };
- };
- "walk-2.3.14" = {
- name = "walk";
- packageName = "walk";
- version = "2.3.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/walk/-/walk-2.3.14.tgz";
- sha512 = "5skcWAUmySj6hkBdH6B6+3ddMjVQYH5Qy9QGbPmN8kVmLteXk+yVXg+yfk1nbX30EYakahLrr8iPcCxJQSCBeg==";
- };
- };
- "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 = "FMB5VqpLqOCcqrzA9okZFc0wq0Qbmdm396qJxvQZhDpyu0W95G9JCmp74tx7iyYnyOcBtUuKJsgIKAqjozvmmQ==";
- };
- };
- "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.5.0" = {
- name = "watchpack";
- packageName = "watchpack";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/watchpack/-/watchpack-1.5.0.tgz";
- sha512 = "RSlipNQB1u48cq0wH/BNfCu1tD/cJ8ydFIkNYhp9o+3d+8unClkIovpW5qpFPgmL9OE48wfAnlZydXByWP82AA==";
- };
- };
- "watchpack-1.6.0" = {
- name = "watchpack";
- packageName = "watchpack";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz";
- sha512 = "i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==";
- };
- };
- "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-2.0.1" = {
- name = "webidl-conversions";
- packageName = "webidl-conversions";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-2.0.1.tgz";
- sha1 = "3bf8258f7d318c7443c36f2e169402a1a6703506";
- };
- };
- "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 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==";
- };
- };
- "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 = "aqYp18kPphgoO5c/+NaUvEeACtZjMESmDChuD3NBciVpah3XpMEU9VAAtIaB1BsfJWWTSdv8Vv1m3T0aRk2dUw==";
- };
- };
- "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 = "nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==";
- };
- };
- "websocket-stream-5.1.2" = {
- name = "websocket-stream";
- packageName = "websocket-stream";
- version = "5.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/websocket-stream/-/websocket-stream-5.1.2.tgz";
- sha512 = "lchLOk435iDWs0jNuL+hiU14i3ERSrMA0IKSiJh7z6X/i4XNsutBZrtqu2CPOZuA4G/zabiqVAos0vW+S7GEVw==";
- };
- };
- "webtorrent-0.102.1" = {
- name = "webtorrent";
- packageName = "webtorrent";
- version = "0.102.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.102.1.tgz";
- sha512 = "RcJIAJPdgtApjzsL4U2ndmeGIqXCxkbqcS7RkjTZNglVC7EAaVJM7C29a4D/r2QeWGaHmygie2L5w2IB3y/q7w==";
- };
- };
- "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-fetch-2.0.4" = {
- name = "whatwg-fetch";
- packageName = "whatwg-fetch";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz";
- sha512 = "dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==";
- };
- };
- "whatwg-url-6.5.0" = {
- name = "whatwg-url";
- packageName = "whatwg-url";
- version = "6.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz";
- sha512 = "rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==";
- };
- };
- "whatwg-url-compat-0.6.5" = {
- name = "whatwg-url-compat";
- packageName = "whatwg-url-compat";
- version = "0.6.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz";
- sha1 = "00898111af689bb097541cd5a45ca6c8798445bf";
- };
- };
- "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.1" = {
- name = "which";
- packageName = "which";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
- sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
- };
- };
- "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.3" = {
- name = "wide-align";
- packageName = "wide-align";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz";
- sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==";
- };
- };
- "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-fork-1.1.1" = {
- name = "win-fork";
- packageName = "win-fork";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/win-fork/-/win-fork-1.1.1.tgz";
- sha1 = "8f58e0656fca00adc8c86a2b89e3cd2d6a2d5e5e";
- };
- };
- "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";
- };
- };
- "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.4" = {
- name = "winreg";
- packageName = "winreg";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/winreg/-/winreg-1.2.4.tgz";
- sha1 = "ba065629b7a925130e15779108cf540990e98d1b";
- };
- };
- "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.3" = {
- name = "winston";
- packageName = "winston";
- version = "2.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-2.4.3.tgz";
- sha512 = "GYKuysPz2pxYAVJD2NPsDLP5Z79SDEzPm9/j4tCjkF/n89iBNGBMJcR+dMUqxgPNgoSs6fVygPi+Vl2oxIpBuw==";
- };
- };
- "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";
- };
- };
- "worker-farm-1.6.0" = {
- name = "worker-farm";
- packageName = "worker-farm";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz";
- sha512 = "6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==";
- };
- };
- "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 = "l5DUGrc+yDyIflpty1x9XuMj1ehVjC/dTbF3/BasOO77xk0EdEa4M/DuOY8W88MQDAD0fEDqyjc8bkIMHd2E9A==";
- };
- };
- "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 = "xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==";
- };
- };
- "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.2.0" = {
- name = "write-pkg";
- packageName = "write-pkg";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.2.0.tgz";
- sha512 = "tX2ifZ0YqEFOF1wjRW2Pk93NLsj02+n1UP5RvO6rCs0K6R2g1padvf006cY74PQJKMGS2r42NK7FD0dG6Y6paw==";
- };
- };
- "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.5" = {
- name = "ws";
- packageName = "ws";
- version = "1.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz";
- sha512 = "o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==";
- };
- };
- "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 = "nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==";
- };
- };
- "ws-6.0.0" = {
- name = "ws";
- packageName = "ws";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-6.0.0.tgz";
- sha512 = "c2UlYcAZp1VS8AORtpq6y4RJIkJ9dQz18W32SpR/qXGfLDZ2jU4y4wKvvZwqbi7U6gxFQTeE+urMbXU/tsDy4w==";
- };
- };
- "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";
- };
- };
- "xenvar-0.5.1" = {
- name = "xenvar";
- packageName = "xenvar";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/xenvar/-/xenvar-0.5.1.tgz";
- sha1 = "f82d2fedee63af76687b70115ce6274dc71310e9";
- };
- };
- "xhr-2.5.0" = {
- name = "xhr";
- packageName = "xhr";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xhr/-/xhr-2.5.0.tgz";
- sha512 = "4nlO/14t3BNUZRXIXfXe+3N6w3s1KoxcJUUURctd64BLRe67E4gRwp4PjywtDY72fXpZ1y6Ch0VZQRY/gMPzzQ==";
- };
- };
- "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-name-validator-2.0.1" = {
- name = "xml-name-validator";
- packageName = "xml-name-validator";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz";
- sha1 = "4d8b8f1eccd3419aa362061becef515e1e559635";
- };
- };
- "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.19" = {
- name = "xml2js";
- packageName = "xml2js";
- version = "0.4.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz";
- sha512 = "esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==";
- };
- };
- "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-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.7" = {
- name = "xmlbuilder";
- packageName = "xmlbuilder";
- version = "9.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz";
- sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d";
- };
- };
- "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.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 = "jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ==";
- };
- };
- "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 = "PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==";
- };
- };
- "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 = "g1DFmZ5JJ9Qzvt4dMw6m9IydqoCSP381ucU5zm46Owbk3bwmqAr8eEJirOPc7PrXRn45drzOpAyDp8jsnoyXyw==";
- };
- };
- "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";
- };
- };
- "y18n-4.0.0" = {
- name = "y18n";
- packageName = "y18n";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz";
- sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==";
- };
- };
- "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";
- };
- };
- "yaml-ast-parser-0.0.40" = {
- name = "yaml-ast-parser";
- packageName = "yaml-ast-parser";
- version = "0.0.40";
- src = fetchurl {
- url = "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.40.tgz";
- sha1 = "08536d4e73d322b1c9ce207ab8dd70e04d20ae6e";
- };
- };
- "yaml-js-0.0.8" = {
- name = "yaml-js";
- packageName = "yaml-js";
- version = "0.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/yaml-js/-/yaml-js-0.0.8.tgz";
- sha1 = "87cfa5a9613f48e26005420d6a8ee0da6fe8daec";
- };
- };
- "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 = "DqBpQ8NAUX4GyPP/ijDGHsJya4tYqLQrjPr95HNsr1YwL3+daCfvBwg7+gIC6IdJhR2kATh3hb61vjzMWEtjdw==";
- };
- };
- "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 = "ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==";
- };
- };
- "yargs-11.0.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "11.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-11.0.0.tgz";
- sha512 = "Rjp+lMYQOWtgqojx1dEWorjCofi1YN7AoFvYV7b1gx/7dAAeuI4kN5SZiEvr0ZmsZTOpDRcCqrpI10L31tFkBw==";
- };
- };
- "yargs-12.0.1" = {
- name = "yargs";
- packageName = "yargs";
- version = "12.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-12.0.1.tgz";
- sha512 = "B0vRAp1hRX4jgIOWFtjfNjd9OA9RWYZ6tqGA9/I/IrTMsxmKvtWy+ersM+jzpQqbC3YfLzeABPdeTgcJ9eu1qQ==";
- };
- };
- "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.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-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-10.1.0" = {
- name = "yargs-parser";
- packageName = "yargs-parser";
- version = "10.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz";
- sha512 = "VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==";
- };
- };
- "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 = "yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ==";
- };
- };
- "yargs-parser-9.0.2" = {
- name = "yargs-parser";
- packageName = "yargs-parser";
- version = "9.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz";
- sha1 = "9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077";
- };
- };
- "yauzl-2.10.0" = {
- name = "yauzl";
- packageName = "yauzl";
- version = "2.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz";
- sha1 = "c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9";
- };
- };
- "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.2" = {
- name = "yauzl";
- packageName = "yauzl";
- version = "2.9.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.2.tgz";
- sha1 = "4fb1bc7ae1fc2f57037b54af6acc8fe1031c5b77";
- };
- };
- "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";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yeoman-character/-/yeoman-character-1.1.0.tgz";
- sha1 = "90d4b5beaf92759086177015b2fdfa2e0684d7c7";
- };
- };
- "yeoman-doctor-3.0.2" = {
- name = "yeoman-doctor";
- packageName = "yeoman-doctor";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yeoman-doctor/-/yeoman-doctor-3.0.2.tgz";
- sha512 = "/KbouQdKgnqxG6K3Tc8VBPAQLPbruQ7KkbinwR+ah507oOFobHnGs8kqj8oMfafY6rXInHdh7nC5YzicCR4Z0g==";
- };
- };
- "yeoman-environment-2.3.1" = {
- name = "yeoman-environment";
- packageName = "yeoman-environment";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.3.1.tgz";
- sha512 = "7BFbWNnJqG8f0TFR/awcccHj7Vl9CeG66Yuu81DiVIamqO7Uo/EOrdryjNICdRJNFdaQTliN4HUkM1zQBzszCQ==";
- };
- };
- "yosay-2.0.2" = {
- name = "yosay";
- packageName = "yosay";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yosay/-/yosay-2.0.2.tgz";
- sha512 = "avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA==";
- };
- };
- "z-schema-3.22.0" = {
- name = "z-schema";
- packageName = "z-schema";
- version = "3.22.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/z-schema/-/z-schema-3.22.0.tgz";
- sha512 = "Oq82unxX2PTcJ031gFGcksDHE5PNBs5CbcQ1tbre0Sl4Mu5habZTVmEAkuZS4cK//VgIdNg9UG9PMgMlN6KmiA==";
- };
- };
- "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 = "Dhp/R0pqSHj3vPs5O1gVd9kZx5Iew2lqVcfJQOBHx3llM/dLea8vl9wSa9FK8wLdSBQJ6mmgKi9+Rk2DRH3i9Q==";
- };
- };
- "zeparser-0.0.5" = {
- name = "zeparser";
- packageName = "zeparser";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/zeparser/-/zeparser-0.0.5.tgz";
- sha1 = "03726561bc268f2e5444f54c665b7fd4a8c029e2";
- };
- };
- "zero-fill-2.2.3" = {
- name = "zero-fill";
- packageName = "zero-fill";
- version = "2.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/zero-fill/-/zero-fill-2.2.3.tgz";
- sha1 = "a3def06ba5e39ae644850bb4ca2ad4112b4855e9";
- };
- };
- "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";
- };
- };
- "zip-dir-1.0.2" = {
- name = "zip-dir";
- packageName = "zip-dir";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/zip-dir/-/zip-dir-1.0.2.tgz";
- sha1 = "253f907aead62a21acd8721d8b88032b2411c051";
- };
- };
- "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";
- };
- };
- "zip-stream-1.2.0" = {
- name = "zip-stream";
- packageName = "zip-stream";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/zip-stream/-/zip-stream-1.2.0.tgz";
- sha1 = "a8bc45f4c1b49699c6b90198baacaacdbcd4ba04";
- };
- };
- };
-in
-{
- alloy = nodeEnv.buildNodePackage {
- name = "alloy";
- packageName = "alloy";
- version = "1.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/alloy/-/alloy-1.13.1.tgz";
- sha512 = "6Tnj4ylXV+pHnmHHFhDikMpe18ZmosXYQoDeFK8lpu79HMH7k5QFAmM4mRs5hQB3njCS3l3I2O1zpsT7rMQNWA==";
- };
- 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.1"
- sources."babel-code-frame-6.26.0"
- (sources."babel-core-6.26.3" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
- (sources."babel-generator-6.26.1" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
- 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."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."chalk-1.1.3"
- sources."chmodr-1.0.2"
- sources."colors-1.3.1"
- sources."commander-2.17.1"
- sources."concat-map-0.0.1"
- sources."convert-source-map-1.5.1"
- sources."core-js-2.5.7"
- 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."global-paths-1.0.0"
- (sources."global-prefix-0.1.5" // {
- dependencies = [
- sources."is-windows-0.2.0"
- ];
- })
- 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."invariant-2.2.4"
- sources."is-3.2.1"
- sources."is-finite-1.0.2"
- sources."is-windows-1.0.2"
- sources."isexe-2.0.0"
- 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"
- sources."lodash-4.17.10"
- sources."loose-envify-1.4.0"
- sources."matcher-collection-1.0.5"
- 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."node.extend-2.0.0"
- (sources."nomnom-1.8.1" // {
- dependencies = [
- sources."ansi-styles-1.0.0"
- sources."chalk-0.4.0"
- sources."strip-ansi-0.1.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.6"
- sources."pkginfo-0.4.1"
- sources."private-0.1.8"
- sources."regenerator-runtime-0.11.1"
- sources."repeating-2.0.1"
- sources."resolve-1.8.1"
- sources."sax-0.5.8"
- sources."slash-1.0.0"
- sources."source-map-0.6.1"
- (sources."source-map-support-0.4.18" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
- 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.2"
- sources."walk-sync-0.3.2"
- sources."which-1.3.1"
- sources."xml2js-0.2.8"
- sources."xml2tss-0.0.5"
- sources."xmldom-0.1.27"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Appcelerator Titanium MVC Framework";
- homepage = "https://github.com/appcelerator/alloy#readme";
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- asar = nodeEnv.buildNodePackage {
- name = "asar";
- packageName = "asar";
- version = "0.14.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/asar/-/asar-0.14.3.tgz";
- sha512 = "+hNnVVDmYbv05We/a9knj/98w171+A94A9DNHj+3kXUr3ENTQoSEcfbJRvBBRHyOh4vukBYWujmHvvaMmQoQbg==";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."ajv-5.5.2"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."binary-0.3.0"
- sources."brace-expansion-1.1.11"
- 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.6"
- sources."commander-2.17.1"
- sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
- sources."cuint-0.2.2"
- sources."dashdash-1.14.1"
- sources."decompress-zip-0.3.0"
- sources."delayed-stream-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- 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."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.35.0"
- sources."mime-types-2.1.19"
- 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"
- 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.2"
- sources."readable-stream-1.1.14"
- sources."request-2.87.0"
- (sources."rimraf-2.6.2" // {
- dependencies = [
- sources."glob-7.1.2"
- ];
- })
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."sshpk-1.14.2"
- sources."string_decoder-0.10.31"
- sources."tmp-0.0.28"
- (sources."touch-0.0.3" // {
- dependencies = [
- sources."nopt-1.0.10"
- ];
- })
- sources."tough-cookie-2.3.4"
- sources."traverse-0.3.9"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."uuid-3.3.2"
- sources."verror-1.10.0"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Creating Electron app packages";
- homepage = https://github.com/electron/asar;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- azure-cli = nodeEnv.buildNodePackage {
- name = "azure-cli";
- packageName = "azure-cli";
- version = "0.10.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.19.tgz";
- sha512 = "9OBihy+L53g9ALssKTY/vTWEiz8mGEJ1asWiCdfPdQ1Uf++tewiNrN7Fq2Eb6ZYtvK0BYvPZlh3bHguKmKO3yA==";
- };
- dependencies = [
- sources."@types/node-8.10.24"
- sources."JSV-4.0.2"
- sources."adal-node-0.1.28"
- sources."ajv-5.5.2"
- sources."amdefine-1.0.1"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."applicationinsights-0.16.0"
- sources."asap-2.0.6"
- sources."asn1-0.2.4"
- sources."assert-plus-0.2.0"
- sources."async-1.4.2"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.6.0"
- sources."aws4-1.8.0"
- sources."azure-arm-authorization-2.0.0"
- sources."azure-arm-batch-3.1.1"
- sources."azure-arm-cdn-4.0.1"
- sources."azure-arm-commerce-2.0.0"
- 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."request-2.74.0"
- ];
- })
- (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."request-2.74.0"
- ];
- })
- sources."azure-arm-devtestlabs-2.1.1"
- sources."azure-arm-dns-2.1.0"
- 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-5.3.0"
- (sources."azure-arm-powerbiembedded-0.1.1" // {
- dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."request-2.74.0"
- ];
- })
- (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."request-2.74.0"
- ];
- })
- (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."request-2.74.0"
- ];
- })
- sources."azure-arm-servermanagement-1.1.0"
- sources."azure-arm-storage-5.0.0"
- sources."azure-arm-trafficmanager-1.1.0-preview"
- (sources."azure-arm-website-0.11.5" // {
- dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."request-2.74.0"
- ];
- })
- sources."azure-asm-compute-0.18.0"
- sources."azure-asm-hdinsight-0.10.2"
- 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.7" // {
- dependencies = [
- sources."underscore-1.9.1"
- ];
- })
- (sources."azure-batch-3.2.2" // {
- dependencies = [
- sources."underscore-1.9.1"
- ];
- })
- (sources."azure-common-0.9.20" // {
- dependencies = [
- sources."validator-9.4.1"
- sources."xml2js-0.2.7"
- ];
- })
- sources."azure-gallery-2.0.0-pre.18"
- sources."azure-graph-2.2.0"
- (sources."azure-keyvault-1.0.0" // {
- dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."request-2.74.0"
- ];
- })
- (sources."azure-monitoring-0.10.6" // {
- dependencies = [
- sources."underscore-1.9.1"
- ];
- })
- (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."request-2.74.0"
- ];
- })
- (sources."azure-storage-2.10.1" // {
- dependencies = [
- sources."extend-1.2.1"
- sources."readable-stream-2.0.6"
- sources."underscore-1.8.3"
- sources."validator-9.4.1"
- sources."xml2js-0.2.8"
- ];
- })
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- (sources."bl-1.1.2" // {
- dependencies = [
- sources."readable-stream-2.0.6"
- ];
- })
- sources."boom-2.10.1"
- sources."brace-expansion-1.1.11"
- sources."browserify-mime-1.2.9"
- sources."buffer-equal-constant-time-1.0.1"
- sources."buffer-from-1.1.1"
- sources."caller-id-0.1.0"
- sources."caseless-0.11.0"
- sources."chalk-1.1.3"
- sources."clone-1.0.4"
- sources."co-4.6.0"
- sources."colors-1.1.2"
- sources."combined-stream-1.0.6"
- sources."commander-1.0.4"
- sources."concat-map-0.0.1"
- (sources."concat-stream-1.6.2" // {
- dependencies = [
- sources."process-nextick-args-2.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."core-util-is-1.0.2"
- sources."cryptiles-2.0.5"
- sources."ctype-0.5.2"
- sources."cycle-1.0.3"
- (sources."dashdash-1.14.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."date-utils-1.2.21"
- sources."dateformat-1.0.2-1.2.3"
- 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.2"
- sources."ecdsa-sig-formatter-1.0.10"
- sources."envconf-0.0.4"
- sources."escape-string-regexp-1.0.5"
- sources."event-stream-3.1.5"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."eyes-0.1.8"
- sources."fast-deep-equal-1.1.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-1.0.1" // {
- dependencies = [
- sources."async-2.6.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" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."github-0.1.6"
- sources."glob-7.1.2"
- sources."har-schema-2.0.0"
- (sources."har-validator-2.0.6" // {
- dependencies = [
- sources."commander-2.17.1"
- ];
- })
- sources."has-ansi-2.0.0"
- sources."has-color-0.1.7"
- sources."hash-base-3.0.4"
- sources."hawk-3.1.3"
- sources."hoek-2.16.3"
- sources."http-basic-2.5.1"
- sources."http-response-object-1.1.0"
- sources."http-signature-1.1.1"
- sources."i-0.3.6"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."is-buffer-1.1.6"
- sources."is-my-ip-valid-1.0.0"
- sources."is-my-json-valid-2.18.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."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"
- sources."jsonminify-0.4.1"
- sources."jsonparse-1.2.0"
- sources."jsonpointer-4.0.1"
- (sources."jsprim-1.4.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."jsrsasign-4.8.2"
- sources."jwa-1.1.6"
- sources."jws-3.1.5"
- sources."jwt-decode-2.2.0"
- sources."keypress-0.1.0"
- (sources."kuduscript-1.0.16" // {
- dependencies = [
- sources."commander-1.1.1"
- sources."streamline-0.4.11"
- ];
- })
- sources."lodash-4.17.10"
- sources."map-stream-0.1.0"
- sources."md5.js-1.3.4"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."moment-2.22.2"
- (sources."ms-rest-2.3.6" // {
- dependencies = [
- sources."through-2.3.8"
- sources."tunnel-0.0.5"
- ];
- })
- (sources."ms-rest-azure-2.5.7" // {
- dependencies = [
- sources."async-2.6.0"
- ];
- })
- sources."mute-stream-0.0.7"
- sources."ncp-0.4.2"
- sources."node-forge-0.6.23"
- sources."node-uuid-1.4.8"
- (sources."nomnom-1.8.1" // {
- dependencies = [
- sources."ansi-styles-1.0.0"
- sources."chalk-0.4.0"
- sources."strip-ansi-0.1.1"
- sources."underscore-1.6.0"
- ];
- })
- sources."oauth-sign-0.8.2"
- sources."omelette-0.3.2"
- sources."once-1.4.0"
- sources."openssl-wrapper-0.3.4"
- 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."punycode-1.4.1"
- sources."qs-6.2.3"
- sources."read-1.0.7"
- (sources."readable-stream-1.0.34" // {
- dependencies = [
- sources."isarray-0.0.1"
- ];
- })
- (sources."request-2.87.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- sources."aws-sign2-0.7.0"
- sources."caseless-0.12.0"
- sources."form-data-2.3.2"
- sources."har-validator-5.0.3"
- sources."http-signature-1.2.0"
- sources."qs-6.5.2"
- sources."tunnel-agent-0.6.0"
- ];
- })
- sources."revalidator-0.1.8"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."sax-0.5.2"
- sources."sntp-1.0.9"
- 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.14.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- 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.6"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."sync-request-3.0.0"
- sources."then-request-2.2.0"
- sources."through-2.3.4"
- sources."tough-cookie-2.3.4"
- sources."tunnel-0.0.2"
- sources."tunnel-agent-0.4.3"
- sources."tweetnacl-0.14.5"
- sources."typedarray-0.0.6"
- sources."underscore-1.4.4"
- sources."user-home-2.0.0"
- sources."util-deprecate-1.0.2"
- (sources."utile-0.2.1" // {
- dependencies = [
- sources."async-0.2.10"
- ];
- })
- sources."uuid-3.3.2"
- sources."validator-5.2.0"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."wcwidth-1.0.1"
- (sources."winston-2.1.1" // {
- dependencies = [
- sources."async-1.0.0"
- sources."colors-1.0.3"
- sources."pkginfo-0.3.1"
- ];
- })
- sources."wordwrap-0.0.2"
- sources."wrappy-1.0.2"
- sources."xml2js-0.1.14"
- sources."xmlbuilder-0.4.3"
- sources."xmldom-0.1.27"
- sources."xpath.js-1.1.0"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Microsoft Azure Cross Platform Command Line tool";
- homepage = https://github.com/Azure/azure-xplat-cli;
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- bower = nodeEnv.buildNodePackage {
- name = "bower";
- packageName = "bower";
- version = "1.8.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
- sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "The browser package manager";
- homepage = http://bower.io/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- bower2nix = nodeEnv.buildNodePackage {
- name = "bower2nix";
- packageName = "bower2nix";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bower2nix/-/bower2nix-3.2.0.tgz";
- sha1 = "5a0cabad7d5d5e6c35dbc068719c6c919e903fb5";
- };
- dependencies = [
- sources."argparse-1.0.4"
- sources."array-find-index-1.0.2"
- sources."balanced-match-1.0.0"
- sources."bower-1.8.4"
- sources."bower-endpoint-parser-0.2.1"
- sources."bower-json-0.6.0"
- sources."bower-logger-0.2.1"
- sources."brace-expansion-1.1.11"
- 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.2"
- sources."ext-list-2.2.2"
- sources."ext-name-3.0.0"
- sources."find-up-1.1.2"
- (sources."fs-extra-0.26.7" // {
- dependencies = [
- 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.7.1"
- sources."indent-string-2.1.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."intersect-1.0.1"
- 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" // {
- dependencies = [
- sources."graceful-fs-4.1.11"
- ];
- })
- (sources."klaw-1.3.1" // {
- dependencies = [
- sources."graceful-fs-4.1.11"
- ];
- })
- (sources."load-json-file-1.1.0" // {
- dependencies = [
- sources."graceful-fs-4.1.11"
- ];
- })
- 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.35.0"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."ms-2.0.0"
- sources."natives-1.1.4"
- 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" // {
- dependencies = [
- sources."graceful-fs-4.1.11"
- ];
- })
- sources."pify-2.3.0"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- sources."promised-temp-0.1.0"
- sources."q-1.5.1"
- sources."read-pkg-1.1.0"
- sources."read-pkg-up-1.0.1"
- sources."redent-1.0.0"
- sources."repeating-2.0.1"
- (sources."rimraf-2.6.2" // {
- dependencies = [
- sources."glob-7.1.2"
- ];
- })
- sources."semver-5.5.0"
- sources."signal-exit-3.0.2"
- sources."sort-keys-1.1.2"
- sources."sort-keys-length-1.0.1"
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."sprintf-js-1.0.3"
- sources."strip-bom-2.0.0"
- sources."strip-indent-1.0.1"
- (sources."temp-0.8.3" // {
- dependencies = [
- sources."rimraf-2.2.8"
- ];
- })
- sources."trim-newlines-1.0.0"
- sources."validate-npm-package-license-3.0.4"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Generate nix expressions to fetch bower dependencies";
- homepage = https://github.com/rvl/bower2nix;
- license = "GPL-3.0";
- };
- production = true;
- bypassCache = false;
- };
- browserify = nodeEnv.buildNodePackage {
- name = "browserify";
- packageName = "browserify";
- version = "16.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify/-/browserify-16.2.2.tgz";
- sha512 = "fMES05wq1Oukts6ksGUU2TMVHHp06LyQt0SIwbXIHm7waSrQmNBZePsU0iM/4f94zbvb/wHma+D1YrdzWYnF/A==";
- };
- dependencies = [
- sources."JSONStream-1.3.3"
- sources."acorn-5.7.1"
- sources."acorn-dynamic-import-3.0.0"
- sources."acorn-node-1.5.2"
- sources."array-filter-0.0.1"
- sources."array-map-0.0.0"
- sources."array-reduce-0.0.0"
- sources."asn1.js-4.10.1"
- (sources."assert-1.4.1" // {
- dependencies = [
- sources."inherits-2.0.1"
- sources."util-0.10.3"
- ];
- })
- sources."balanced-match-1.0.0"
- sources."base64-js-1.3.0"
- sources."bn.js-4.11.8"
- sources."brace-expansion-1.1.11"
- sources."brorand-1.1.0"
- sources."browser-pack-6.1.0"
- (sources."browser-resolve-1.11.3" // {
- dependencies = [
- sources."resolve-1.1.7"
- ];
- })
- sources."browserify-aes-1.2.0"
- sources."browserify-cipher-1.0.1"
- sources."browserify-des-1.0.2"
- sources."browserify-rsa-4.0.1"
- sources."browserify-sign-4.0.4"
- sources."browserify-zlib-0.2.0"
- sources."buffer-5.2.0"
- sources."buffer-from-1.1.1"
- 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.6.2"
- 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.3"
- sources."create-hash-1.2.0"
- sources."create-hmac-1.1.7"
- 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-5.1.0" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."diffie-hellman-5.0.3"
- sources."domain-browser-1.2.0"
- sources."duplexer2-0.1.4"
- sources."elliptic-6.4.1"
- sources."events-2.1.0"
- sources."evp_bytestokey-1.0.3"
- sources."fs.realpath-1.0.0"
- sources."function-bind-1.1.1"
- sources."get-assigned-identifiers-1.2.0"
- sources."glob-7.1.2"
- sources."has-1.0.3"
- sources."hash-base-3.0.4"
- sources."hash.js-1.1.5"
- sources."hmac-drbg-1.0.1"
- sources."htmlescape-1.1.1"
- sources."https-browserify-1.0.0"
- sources."ieee754-1.1.12"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."inline-source-map-0.6.2"
- sources."insert-module-globals-7.2.0"
- sources."is-buffer-1.1.6"
- sources."isarray-2.0.4"
- sources."json-stable-stringify-0.0.1"
- sources."jsonify-0.0.0"
- sources."jsonparse-1.3.1"
- sources."labeled-stream-splicer-2.0.1"
- sources."lodash.memoize-3.0.4"
- sources."md5.js-1.3.4"
- sources."miller-rabin-4.0.1"
- sources."minimalistic-assert-1.0.1"
- 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-6.1.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.1"
- sources."path-browserify-0.0.1"
- sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
- sources."path-platform-0.11.15"
- sources."pbkdf2-3.0.16"
- sources."process-0.11.10"
- sources."process-nextick-args-2.0.0"
- sources."public-encrypt-4.0.2"
- 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.4"
- sources."read-only-stream-2.0.0"
- (sources."readable-stream-2.3.6" // {
- dependencies = [
- sources."isarray-1.0.0"
- ];
- })
- sources."resolve-1.8.1"
- sources."ripemd160-2.0.2"
- sources."safe-buffer-5.1.2"
- sources."sha.js-2.4.11"
- sources."shasum-1.0.2"
- sources."shell-quote-1.6.1"
- sources."simple-concat-1.0.0"
- sources."source-map-0.5.7"
- sources."stream-browserify-2.0.1"
- sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.3"
- sources."stream-splicer-2.0.0"
- sources."string_decoder-1.1.1"
- (sources."subarg-1.0.0" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."syntax-error-1.4.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.1"
- sources."typedarray-0.0.6"
- sources."umd-3.0.3"
- sources."undeclared-identifiers-1.1.2"
- (sources."url-0.11.0" // {
- dependencies = [
- sources."punycode-1.3.2"
- ];
- })
- sources."util-0.10.4"
- sources."util-deprecate-1.0.2"
- sources."vm-browserify-1.1.0"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "browser-side require() the node way";
- homepage = "https://github.com/browserify/browserify#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- castnow = nodeEnv.buildNodePackage {
- name = "castnow";
- packageName = "castnow";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/castnow/-/castnow-0.6.0.tgz";
- sha512 = "VybZ8QYuJyJHt88TIi12nxsIO/89vmcM1Trna0bTq5O2uzz5SDBE2piU+x87B85V4woosyw9T45f39CZzYjxAw==";
- };
- dependencies = [
- sources."addr-to-ip-port-1.5.1"
- 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.1"
- sources."balanced-match-1.0.0"
- sources."base64-js-1.3.0"
- sources."bencode-2.0.0"
- sources."bitfield-0.1.0"
- (sources."bittorrent-dht-6.4.2" // {
- dependencies = [
- sources."bencode-0.7.0"
- ];
- })
- (sources."bittorrent-tracker-7.7.0" // {
- dependencies = [
- sources."bencode-0.8.0"
- ];
- })
- sources."blob-to-buffer-1.2.8"
- sources."bn.js-4.11.8"
- sources."bncode-0.5.3"
- sources."boom-0.3.8"
- sources."brace-expansion-1.1.11"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-equal-0.0.1"
- sources."buffer-equals-1.0.4"
- sources."buffer-fill-1.0.0"
- sources."buffer-from-1.1.1"
- 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.17.1"
- sources."compact2string-1.4.0"
- sources."concat-map-0.0.1"
- (sources."concat-stream-1.6.2" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- 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."decamelize-1.2.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"
- (sources."end-of-stream-1.0.0" // {
- dependencies = [
- sources."once-1.3.3"
- ];
- })
- sources."error-ex-1.3.2"
- sources."escape-string-regexp-1.0.5"
- sources."exit-on-epipe-1.0.1"
- sources."fifo-0.1.4"
- (sources."figures-1.7.0" // {
- dependencies = [
- sources."object-assign-4.1.1"
- ];
- })
- sources."find-up-1.1.2"
- sources."flatten-0.0.1"
- sources."forever-agent-0.2.0"
- (sources."form-data-0.0.10" // {
- dependencies = [
- sources."mime-1.2.11"
- ];
- })
- (sources."fs-chunk-store-1.7.0" // {
- dependencies = [
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."thunky-1.0.2"
- ];
- })
- 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.7.1"
- 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"
- sources."ip-1.1.5"
- sources."ip-set-1.0.1"
- sources."ipaddr.js-1.8.1"
- 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."k-bucket-2.0.1"
- ];
- })
- sources."k-rpc-socket-1.8.0"
- 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.2.3"
- sources."map-obj-1.0.1"
- (sources."mdns-js-1.0.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."meow-3.7.0" // {
- dependencies = [
- sources."object-assign-4.1.1"
- ];
- })
- sources."mime-1.6.0"
- sources."mimic-response-1.0.1"
- 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" // {
- dependencies = [
- sources."minimist-0.0.10"
- ];
- })
- 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.9.1" // {
- dependencies = [
- sources."get-stdin-6.0.0"
- ];
- })
- (sources."parse-torrent-file-2.1.4" // {
- dependencies = [
- sources."bencode-0.7.0"
- ];
- })
- 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.1" // {
- dependencies = [
- sources."bncode-0.2.3"
- ];
- })
- sources."peer-wire-swarm-0.12.2"
- sources."peerflix-0.34.0"
- sources."pify-2.3.0"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- (sources."playerui-1.3.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-3.0.1"
- sources."process-nextick-args-2.0.0"
- sources."promiscuous-0.6.0"
- sources."protobufjs-3.8.2"
- (sources."pump-0.3.5" // {
- dependencies = [
- sources."once-1.2.0"
- ];
- })
- sources."qap-3.3.1"
- sources."qs-0.5.6"
- sources."query-string-1.0.1"
- (sources."random-access-file-2.0.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- ];
- })
- sources."random-access-storage-1.3.0"
- sources."random-iterate-1.0.1"
- sources."randombytes-2.0.6"
- sources."range-parser-1.2.0"
- (sources."rc-0.4.0" // {
- dependencies = [
- sources."minimist-0.0.10"
- ];
- })
- 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."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."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" // {
- dependencies = [
- sources."mime-1.2.11"
- ];
- })
- sources."rimraf-2.6.2"
- sources."router-0.6.2"
- sources."run-parallel-1.1.9"
- sources."run-series-1.1.8"
- sources."rusha-0.8.13"
- sources."rx-2.5.3"
- sources."safe-buffer-5.1.2"
- 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.8.1"
- (sources."simple-peer-6.4.4" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."simple-sha1-2.1.1"
- (sources."simple-websocket-4.3.1" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."safe-buffer-5.0.1"
- sources."string_decoder-1.1.1"
- sources."ws-2.3.1"
- ];
- })
- sources."single-line-log-0.4.1"
- sources."sntp-0.1.4"
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."speedometer-0.1.4"
- sources."srt2vtt-1.3.1"
- sources."stream-transcoder-0.0.5"
- sources."string2compact-1.3.0"
- 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"
- sources."torrent-piece-1.1.2"
- (sources."torrent-stream-1.0.4" // {
- dependencies = [
- sources."end-of-stream-0.1.5"
- sources."magnet-uri-4.2.3"
- sources."once-1.3.3"
- sources."parse-torrent-4.1.0"
- sources."thirty-two-0.0.2"
- ];
- })
- sources."trim-newlines-1.0.0"
- sources."tunnel-agent-0.2.0"
- sources."typedarray-0.0.6"
- 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.4"
- sources."voc-1.1.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" // {
- dependencies = [
- sources."ultron-1.0.2"
- ];
- })
- sources."xml2js-0.4.19"
- sources."xmlbuilder-9.0.7"
- sources."xmldom-0.1.27"
- sources."xspfr-0.3.1"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "commandline chromecast player";
- homepage = "https://github.com/xat/castnow#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- clean-css = nodeEnv.buildNodePackage {
- name = "clean-css";
- packageName = "clean-css";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz";
- sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==";
- };
- dependencies = [
- sources."source-map-0.6.1"
- ];
- 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";
- version = "1.12.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
- sha512 = "fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "Unfancy JavaScript";
- homepage = http://coffeescript.org/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- coinmon = nodeEnv.buildNodePackage {
- name = "coinmon";
- packageName = "coinmon";
- version = "0.0.22";
- src = fetchurl {
- url = "https://registry.npmjs.org/coinmon/-/coinmon-0.0.22.tgz";
- sha512 = "IiL5bbisnZ4U3IVNn3l5Z8d1RnQ9yvzWuhAJU5VtSGoeYfdCn7jUlliwH02vaFOSggDkMoKdh8eh6OlgqmMu6g==";
- };
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-3.2.1"
- sources."axios-0.17.1"
- sources."chalk-2.4.1"
- sources."cli-cursor-2.1.0"
- sources."cli-spinners-1.3.1"
- sources."cli-table2-0.2.0"
- sources."code-point-at-1.1.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."colors-1.3.1"
- sources."commander-2.17.1"
- sources."debug-3.1.0"
- sources."escape-string-regexp-1.0.5"
- sources."follow-redirects-1.5.2"
- sources."has-flag-3.0.0"
- sources."humanize-plus-1.8.2"
- sources."is-buffer-1.1.6"
- sources."is-fullwidth-code-point-1.0.0"
- sources."lodash-3.10.1"
- sources."log-symbols-2.2.0"
- sources."mimic-fn-1.2.0"
- sources."ms-2.0.0"
- sources."number-is-nan-1.0.1"
- sources."onetime-2.0.1"
- sources."ora-1.4.0"
- 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-5.4.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A cryptocurrency price monitoring tool";
- homepage = "https://github.com/bichenkk/coinmon#readme";
- license = "MIT";
- };
- 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 = "e+fxBy5cCayuNpxt3tcigBIuFsU/+oN48eK3aQtCBV12glavbBMxJa3ut2AEDHhXa/g3pC8r2BorKthrofHGRw==";
- };
- 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.3"
- ];
- 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";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova/-/cordova-8.0.0.tgz";
- sha1 = "2e8446d9493caafd870b1090785e7f03e2ae6a43";
- };
- dependencies = [
- sources."JSONStream-1.3.3"
- sources."abbrev-1.1.1"
- sources."accepts-1.3.5"
- sources."acorn-5.7.1"
- sources."acorn-dynamic-import-3.0.0"
- sources."acorn-node-1.5.2"
- 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.4"
- sources."asn1.js-4.10.1"
- (sources."assert-1.4.1" // {
- dependencies = [
- sources."inherits-2.0.1"
- sources."util-0.10.3"
- ];
- })
- sources."assert-plus-0.2.0"
- sources."async-1.5.2"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.6.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- sources."base64-js-1.2.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."big-integer-1.6.34"
- sources."block-stream-0.0.9"
- sources."bn.js-4.11.8"
- sources."body-parser-1.18.2"
- sources."boom-2.10.1"
- sources."bplist-creator-0.0.7"
- sources."bplist-parser-0.1.1"
- sources."brace-expansion-1.1.11"
- sources."brorand-1.1.0"
- sources."browser-pack-6.1.0"
- (sources."browser-resolve-1.11.3" // {
- dependencies = [
- sources."resolve-1.1.7"
- ];
- })
- (sources."browserify-14.4.0" // {
- dependencies = [
- sources."glob-7.1.2"
- ];
- })
- sources."browserify-aes-1.2.0"
- sources."browserify-cipher-1.0.1"
- sources."browserify-des-1.0.2"
- 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.2.0"
- sources."buffer-from-1.1.1"
- 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.6"
- sources."commander-2.17.1"
- sources."compressible-2.0.14"
- sources."compression-1.7.3"
- sources."concat-map-0.0.1"
- (sources."concat-stream-1.5.2" // {
- dependencies = [
- sources."isarray-1.0.0"
- 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.5"
- (sources."cordova-create-1.1.2" // {
- dependencies = [
- sources."q-1.0.1"
- sources."shelljs-0.3.0"
- ];
- })
- (sources."cordova-fetch-1.3.0" // {
- dependencies = [
- sources."glob-7.1.2"
- sources."shelljs-0.7.8"
- ];
- })
- sources."cordova-js-4.2.4"
- (sources."cordova-lib-8.0.0" // {
- dependencies = [
- sources."base64-js-1.1.2"
- sources."glob-7.1.1"
- sources."nopt-4.0.1"
- sources."plist-2.0.1"
- sources."q-1.0.1"
- sources."shelljs-0.3.0"
- sources."underscore-1.8.3"
- ];
- })
- sources."cordova-registry-mapper-1.1.15"
- sources."cordova-serve-2.0.1"
- sources."core-util-is-1.0.2"
- sources."create-ecdh-4.0.3"
- sources."create-hash-1.2.0"
- sources."create-hmac-1.1.7"
- sources."cryptiles-2.0.5"
- sources."crypto-browserify-3.12.0"
- (sources."dashdash-1.14.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."date-now-0.1.4"
- sources."debug-2.6.9"
- sources."deep-extend-0.6.0"
- sources."defined-1.0.0"
- sources."delayed-stream-1.0.0"
- (sources."dep-graph-1.1.0" // {
- dependencies = [
- sources."underscore-1.2.1"
- ];
- })
- sources."depd-1.1.2"
- (sources."dependency-ls-1.1.1" // {
- dependencies = [
- sources."q-1.4.1"
- ];
- })
- 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.3"
- sources."domain-browser-1.1.7"
- sources."dot-prop-3.0.0"
- sources."duplexer2-0.1.4"
- sources."duplexify-3.6.0"
- sources."ecc-jsbn-0.1.2"
- sources."editor-1.0.0"
- sources."ee-first-1.1.1"
- sources."elementtree-0.1.6"
- sources."elliptic-6.4.1"
- 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.3" // {
- dependencies = [
- sources."safe-buffer-5.1.1"
- ];
- })
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."falafel-2.1.0"
- sources."figures-1.7.0"
- sources."finalhandler-1.1.1"
- 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."get-assigned-identifiers-1.2.0"
- (sources."getpass-0.1.7" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."glob-5.0.15"
- (sources."got-3.3.1" // {
- dependencies = [
- sources."object-assign-3.0.0"
- ];
- })
- sources."graceful-fs-4.1.11"
- sources."har-validator-2.0.6"
- sources."has-1.0.3"
- sources."has-ansi-2.0.0"
- sources."hash-base-3.0.4"
- sources."hash.js-1.1.5"
- sources."hawk-3.1.3"
- sources."hmac-drbg-1.0.1"
- sources."hoek-2.16.3"
- sources."hosted-git-info-2.7.1"
- sources."htmlescape-1.1.1"
- sources."http-errors-1.6.3"
- sources."http-signature-1.1.1"
- sources."https-browserify-1.0.0"
- sources."iconv-lite-0.4.19"
- sources."ieee754-1.1.12"
- 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.3" // {
- dependencies = [
- sources."glob-7.1.2"
- ];
- })
- sources."inline-source-map-0.6.2"
- sources."inquirer-0.10.1"
- (sources."insert-module-globals-7.2.0" // {
- dependencies = [
- sources."concat-stream-1.6.2"
- ];
- })
- (sources."insight-0.8.4" // {
- dependencies = [
- (sources."configstore-1.4.0" // {
- dependencies = [
- sources."uuid-2.0.3"
- ];
- })
- sources."uuid-3.3.2"
- ];
- })
- sources."interpret-1.1.0"
- sources."ipaddr.js-1.8.0"
- 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-ip-valid-1.0.0"
- sources."is-my-json-valid-2.18.0"
- 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.4"
- sources."is-wsl-1.1.0"
- sources."isarray-0.0.1"
- sources."isstream-0.1.2"
- sources."jsbn-0.1.1"
- sources."json-parse-better-errors-1.0.2"
- sources."json-schema-0.2.3"
- sources."json-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.1" // {
- dependencies = [
- sources."isarray-2.0.4"
- ];
- })
- sources."latest-version-1.0.1"
- 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.1"
- 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.35.0"
- sources."mime-types-2.1.19"
- sources."minimalistic-assert-1.0.1"
- 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-6.1.0"
- sources."number-is-nan-1.0.1"
- sources."oauth-sign-0.8.2"
- sources."object-assign-4.1.1"
- sources."object-keys-1.0.12"
- sources."on-finished-2.3.0"
- sources."on-headers-1.0.1"
- sources."once-1.4.0"
- sources."onetime-1.1.0"
- sources."opener-1.4.2"
- sources."opn-5.3.0"
- 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.5"
- (sources."osx-release-1.1.0" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."package-json-1.2.0"
- sources."pako-0.2.9"
- sources."parents-1.0.1"
- sources."parse-asn1-5.1.1"
- sources."parseurl-1.3.2"
- sources."path-browserify-0.0.1"
- sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
- sources."path-platform-0.11.15"
- sources."path-to-regexp-0.1.7"
- sources."pbkdf2-3.0.16"
- sources."pegjs-0.10.0"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- sources."plist-2.1.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.4"
- sources."public-encrypt-4.0.2"
- 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.4"
- sources."range-parser-1.2.0"
- (sources."raw-body-2.3.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."setprototypeof-1.0.3"
- ];
- })
- (sources."rc-1.2.8" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- 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.13" // {
- dependencies = [
- sources."glob-7.1.2"
- ];
- })
- (sources."readable-stream-2.3.6" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."process-nextick-args-2.0.0"
- sources."string_decoder-1.1.1"
- ];
- })
- (sources."readline2-1.0.1" // {
- dependencies = [
- sources."mute-stream-0.0.5"
- ];
- })
- sources."rechoir-0.6.2"
- sources."registry-url-3.1.0"
- sources."repeating-1.1.3"
- (sources."request-2.79.0" // {
- dependencies = [
- sources."qs-6.3.2"
- sources."uuid-3.3.2"
- ];
- })
- sources."resolve-1.8.1"
- sources."restore-cursor-1.0.1"
- (sources."rimraf-2.6.2" // {
- dependencies = [
- sources."glob-7.1.2"
- ];
- })
- sources."ripemd160-2.0.2"
- sources."run-async-0.1.0"
- sources."rx-lite-3.1.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."sax-0.3.5"
- sources."semver-5.5.0"
- sources."semver-diff-2.1.0"
- sources."send-0.16.2"
- sources."serve-static-1.13.2"
- sources."setprototypeof-1.1.0"
- sources."sha.js-2.4.11"
- sources."shasum-1.0.2"
- sources."shell-quote-1.6.1"
- sources."shelljs-0.5.3"
- sources."simple-concat-1.0.0"
- (sources."simple-plist-0.2.1" // {
- dependencies = [
- sources."base64-js-1.1.2"
- sources."plist-2.0.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-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- (sources."sshpk-1.14.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."statuses-1.4.0"
- sources."stream-browserify-2.0.1"
- sources."stream-buffers-2.2.0"
- sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.3"
- sources."stream-shift-1.0.0"
- sources."stream-splicer-2.0.0"
- sources."string-length-1.0.1"
- sources."string.prototype.codepointat-0.2.1"
- sources."string_decoder-1.0.3"
- sources."stringstream-0.0.6"
- sources."strip-ansi-3.0.1"
- sources."strip-json-comments-2.0.1"
- (sources."subarg-1.0.0" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."supports-color-2.0.0"
- sources."syntax-error-1.4.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.4"
- sources."tty-browserify-0.0.1"
- sources."tunnel-agent-0.4.3"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- sources."typedarray-0.0.6"
- sources."umd-3.0.3"
- sources."undeclared-identifiers-1.1.2"
- sources."underscore-1.9.1"
- sources."unorm-1.4.1"
- sources."unpipe-1.0.0"
- (sources."update-notifier-0.5.0" // {
- dependencies = [
- sources."configstore-1.4.0"
- ];
- })
- (sources."url-0.11.0" // {
- dependencies = [
- sources."punycode-1.3.2"
- ];
- })
- sources."util-0.10.4"
- sources."util-deprecate-1.0.2"
- sources."utils-merge-1.0.1"
- sources."uuid-2.0.3"
- sources."valid-identifier-0.0.1"
- sources."validate-npm-package-license-3.0.4"
- sources."validate-npm-package-name-3.0.0"
- sources."vary-1.1.2"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."vm-browserify-0.0.4"
- sources."win-release-1.1.1"
- 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-8.2.2"
- sources."xmldom-0.1.27"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Cordova command line interface tool";
- homepage = "https://github.com/apache/cordova-cli#readme";
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- create-react-app = nodeEnv.buildNodePackage {
- name = "create-react-app";
- packageName = "create-react-app";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-react-app/-/create-react-app-1.5.2.tgz";
- sha512 = "vnYIzsfTaqai2l07P9qtxhsZgHbzirC2omxKmf16wqvpXao9CNCDmpk+BCZRElih7HTn/mpO3soe8DTZV4DsgQ==";
- };
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."balanced-match-1.0.0"
- sources."block-stream-0.0.9"
- sources."brace-expansion-1.1.11"
- sources."buffer-from-0.1.2"
- sources."builtins-1.0.3"
- sources."chalk-1.1.3"
- sources."commander-2.17.1"
- sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
- sources."cross-spawn-4.0.2"
- sources."debug-2.6.9"
- sources."duplexer2-0.0.2"
- sources."envinfo-3.4.2"
- sources."escape-string-regexp-1.0.5"
- sources."fs-extra-1.0.0"
- sources."fs.realpath-1.0.0"
- sources."fstream-1.0.11"
- sources."fstream-ignore-1.0.5"
- sources."glob-7.1.2"
- sources."graceful-fs-4.1.11"
- sources."has-ansi-2.0.0"
- sources."hyperquest-2.1.3"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."isarray-0.0.1"
- sources."isexe-2.0.0"
- sources."jsonfile-2.4.0"
- sources."klaw-1.3.1"
- sources."lru-cache-4.1.3"
- sources."macos-release-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."ms-2.0.0"
- sources."once-1.4.0"
- sources."os-name-2.0.1"
- sources."os-tmpdir-1.0.2"
- sources."path-is-absolute-1.0.1"
- sources."process-nextick-args-2.0.0"
- sources."pseudomap-1.0.2"
- sources."readable-stream-1.1.14"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- sources."semver-5.5.0"
- sources."string_decoder-0.10.31"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."tar-2.2.1"
- (sources."tar-pack-3.4.1" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- (sources."through2-0.6.5" // {
- dependencies = [
- sources."readable-stream-1.0.34"
- ];
- })
- sources."tmp-0.0.31"
- sources."uid-number-0.0.6"
- sources."util-deprecate-1.0.2"
- sources."validate-npm-package-name-3.0.0"
- sources."which-1.3.1"
- sources."win-release-1.1.1"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Create React apps with no build configuration.";
- homepage = "https://github.com/facebookincubator/create-react-app#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- create-react-native-app = nodeEnv.buildNodePackage {
- name = "create-react-native-app";
- packageName = "create-react-native-app";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-react-native-app/-/create-react-native-app-1.0.0.tgz";
- sha1 = "fc6046f4407bde2727ce0c4eb1354bb1a8c0f9e6";
- };
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."babel-runtime-6.26.0"
- sources."chalk-2.4.1"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."core-js-2.5.7"
- sources."cross-spawn-5.1.0"
- sources."escape-string-regexp-1.0.5"
- sources."fs-extra-4.0.3"
- sources."graceful-fs-4.1.11"
- sources."has-flag-3.0.0"
- sources."isexe-2.0.0"
- sources."jsonfile-4.0.0"
- sources."lru-cache-4.1.3"
- sources."minimist-1.2.0"
- sources."path-exists-3.0.0"
- sources."pseudomap-1.0.2"
- sources."regenerator-runtime-0.11.1"
- sources."semver-5.5.0"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."source-map-0.5.7"
- sources."source-map-support-0.4.18"
- sources."supports-color-5.4.0"
- sources."universalify-0.1.2"
- sources."which-1.3.1"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Create React Native apps with no build configuration.";
- homepage = https://github.com/react-community/create-react-native-app;
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = false;
- };
- csslint = nodeEnv.buildNodePackage {
- name = "csslint";
- packageName = "csslint";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/csslint/-/csslint-1.0.5.tgz";
- sha1 = "19cc3eda322160fd3f7232af1cb2a360e898a2e9";
- };
- dependencies = [
- sources."clone-2.1.2"
- sources."parserlib-1.1.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "CSSLint";
- homepage = http://csslint.net/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- dat = nodeEnv.buildNodePackage {
- name = "dat";
- packageName = "dat";
- version = "13.11.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat/-/dat-13.11.3.tgz";
- sha512 = "YOp0II25xNPlD06/RGB5q1x244em2Sh2FdhWECnikZalmOBaujeRRJFfjbd0f5buQfapmebvTT4FVRZTZLB2HQ==";
- };
- dependencies = [
- sources."abstract-random-access-1.1.2"
- sources."ajv-5.5.2"
- sources."ansi-align-2.0.0"
- sources."ansi-diff-1.1.1"
- sources."ansi-regex-3.0.0"
- sources."ansi-split-1.0.1"
- sources."ansi-styles-3.2.1"
- sources."anymatch-1.3.2"
- sources."ap-0.1.0"
- (sources."append-tree-2.4.4" // {
- dependencies = [
- sources."process-nextick-args-1.0.7"
- sources."varint-5.0.0"
- ];
- })
- 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.4"
- 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.8.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bencode-1.0.0"
- (sources."bitfield-rle-2.1.0" // {
- dependencies = [
- sources."varint-4.0.1"
- ];
- })
- sources."bittorrent-dht-7.10.0"
- sources."blake2b-2.1.2"
- sources."blake2b-wasm-1.1.7"
- sources."body-0.1.0"
- sources."boxen-1.3.0"
- sources."brace-expansion-1.1.11"
- sources."braces-1.8.5"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-equals-1.0.4"
- sources."buffer-fill-1.0.0"
- sources."buffer-from-1.1.1"
- sources."bulk-write-stream-1.1.4"
- sources."bytes-3.0.0"
- sources."call-me-maybe-1.0.1"
- sources."camelcase-4.1.0"
- sources."capture-stack-trace-1.0.0"
- sources."caseless-0.12.0"
- sources."chalk-2.4.1"
- sources."ci-info-1.1.3"
- sources."circular-append-file-1.0.1"
- sources."cli-boxes-1.0.0"
- sources."cli-spinners-1.3.1"
- sources."cli-truncate-1.1.0"
- sources."cliclopts-1.1.1"
- sources."co-4.6.0"
- sources."codecs-1.2.1"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."colors-1.3.1"
- sources."combined-stream-1.0.6"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."configstore-3.1.2"
- sources."connections-1.4.2"
- sources."content-types-0.1.0"
- sources."core-util-is-1.0.2"
- sources."corsify-2.1.0"
- sources."create-error-class-3.0.2"
- sources."cross-spawn-5.1.0"
- sources."crypto-random-string-1.0.0"
- sources."cycle-1.0.3"
- sources."dashdash-1.14.1"
- (sources."dat-dns-3.0.2" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."dat-doctor-2.0.0"
- sources."dat-encoding-5.0.1"
- sources."dat-ignore-2.1.1"
- (sources."dat-json-1.0.2" // {
- dependencies = [
- sources."dat-encoding-4.0.2"
- ];
- })
- sources."dat-link-resolve-2.2.0"
- sources."dat-log-1.2.0"
- sources."dat-node-3.5.12"
- sources."dat-registry-4.0.0"
- sources."dat-secret-storage-4.0.1"
- sources."dat-storage-1.0.4"
- sources."dat-swarm-defaults-1.0.1"
- sources."debug-3.1.0"
- sources."deep-equal-0.2.2"
- sources."deep-extend-0.6.0"
- sources."delayed-stream-1.0.0"
- sources."diffy-2.0.0"
- sources."directory-index-html-2.1.0"
- (sources."discovery-channel-5.5.1" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."thunky-0.1.0"
- ];
- })
- sources."discovery-swarm-5.1.2"
- (sources."dns-discovery-6.1.0" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."lru-2.0.1"
- ];
- })
- sources."dns-packet-4.2.0"
- sources."dns-socket-3.0.0"
- sources."dom-walk-0.1.1"
- sources."dot-prop-4.2.0"
- sources."duplexer3-0.1.4"
- sources."duplexify-3.6.0"
- sources."ecc-jsbn-0.1.2"
- sources."end-of-stream-1.4.1"
- sources."escape-string-regexp-1.0.5"
- sources."execa-0.7.0"
- sources."expand-brackets-0.1.5"
- sources."expand-range-1.8.2"
- sources."extend-3.0.2"
- sources."extglob-0.3.2"
- sources."extsprintf-1.3.0"
- sources."eyes-0.1.8"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."fd-read-stream-1.1.0"
- sources."figures-2.0.0"
- sources."filename-regex-2.0.1"
- sources."fill-range-2.2.4"
- sources."flat-tree-1.6.0"
- sources."for-each-0.3.3"
- sources."for-in-1.0.2"
- sources."for-own-0.1.5"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."from2-2.3.0"
- sources."fs.realpath-1.0.0"
- sources."get-stream-3.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."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-3.0.0"
- sources."http-methods-0.1.0"
- sources."http-signature-1.2.0"
- (sources."hypercore-6.18.1" // {
- dependencies = [
- sources."process-nextick-args-1.0.7"
- sources."unordered-set-2.0.1"
- ];
- })
- sources."hypercore-crypto-1.0.0"
- (sources."hypercore-protocol-6.6.4" // {
- dependencies = [
- sources."varint-5.0.0"
- ];
- })
- sources."hyperdrive-9.14.0"
- sources."hyperdrive-http-4.3.3"
- sources."hyperdrive-network-speed-2.1.0"
- sources."i-0.3.6"
- 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."inspect-custom-symbol-1.1.0"
- sources."ip-1.1.5"
- sources."is-buffer-1.1.6"
- sources."is-callable-1.1.4"
- sources."is-ci-1.1.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-2.0.0"
- sources."is-function-1.0.1"
- sources."is-glob-2.0.1"
- sources."is-installed-globally-0.1.0"
- sources."is-npm-1.0.0"
- sources."is-number-2.1.0"
- sources."is-obj-1.0.1"
- sources."is-options-1.0.1"
- sources."is-path-inside-1.0.1"
- sources."is-posix-bracket-0.1.1"
- sources."is-primitive-2.0.0"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."is-stream-1.1.0"
- sources."is-string-1.0.4"
- 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."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.3.1" // {
- dependencies = [
- sources."k-bucket-4.0.1"
- ];
- })
- (sources."k-rpc-socket-1.8.0" // {
- dependencies = [
- sources."bencode-2.0.0"
- ];
- })
- sources."keypress-0.2.1"
- sources."kind-of-3.2.2"
- sources."last-one-wins-1.0.4"
- sources."latest-version-3.1.0"
- sources."length-prefixed-message-3.0.3"
- sources."lodash.throttle-4.1.1"
- sources."lowercase-keys-1.0.1"
- sources."lru-3.1.0"
- sources."lru-cache-4.1.3"
- sources."make-dir-1.3.0"
- sources."math-random-1.0.1"
- sources."memory-pager-1.1.0"
- sources."menu-string-1.2.0"
- sources."merkle-tree-stream-3.0.3"
- sources."micromatch-2.3.11"
- sources."mime-2.3.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."min-document-2.19.0"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- sources."mirror-folder-3.0.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."ms-2.0.0"
- sources."multi-random-access-2.1.1"
- sources."multicast-dns-7.0.0"
- sources."multicb-1.2.2"
- sources."multistream-2.1.1"
- sources."mute-stream-0.0.7"
- sources."mutexify-1.2.0"
- sources."nan-2.10.0"
- sources."nanoassert-1.1.0"
- sources."nanobus-4.3.3"
- sources."nanoscheduler-1.0.3"
- sources."nanotiming-7.3.1"
- sources."ncp-1.0.1"
- sources."neat-input-1.8.0"
- sources."neat-log-2.4.0"
- sources."neat-spinner-1.0.0"
- sources."neat-tasks-1.1.1"
- sources."nets-3.2.0"
- sources."network-address-1.1.2"
- sources."node-gyp-build-3.4.0"
- sources."normalize-path-2.1.1"
- sources."npm-run-path-2.0.2"
- sources."oauth-sign-0.8.2"
- sources."object.omit-2.0.1"
- sources."once-1.4.0"
- sources."os-homedir-1.0.2"
- sources."p-finally-1.0.0"
- sources."package-json-4.0.1"
- sources."parse-glob-3.0.4"
- sources."parse-headers-2.0.1"
- sources."path-is-absolute-1.0.1"
- sources."path-is-inside-1.0.2"
- sources."path-key-2.0.1"
- sources."performance-now-2.1.0"
- sources."pify-3.0.0"
- sources."pkginfo-0.4.1"
- sources."prepend-http-1.0.4"
- 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-2.0.0"
- sources."progress-string-1.2.2"
- sources."prompt-1.0.0"
- (sources."protocol-buffers-encodings-1.1.0" // {
- dependencies = [
- sources."varint-5.0.0"
- ];
- })
- sources."pseudomap-1.0.2"
- sources."pump-3.0.0"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."random-access-file-2.0.1"
- sources."random-access-memory-3.0.0"
- sources."random-access-storage-1.3.0"
- (sources."randomatic-3.1.0" // {
- dependencies = [
- sources."is-number-4.0.0"
- sources."kind-of-6.0.2"
- ];
- })
- sources."randombytes-2.0.6"
- sources."range-parser-1.2.0"
- sources."rc-1.2.8"
- sources."read-1.0.7"
- sources."readable-stream-2.3.6"
- sources."recursive-watch-1.1.4"
- sources."regex-cache-0.4.4"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."remove-array-items-1.0.0"
- sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.2"
- sources."repeat-string-1.6.1"
- sources."request-2.87.0"
- sources."revalidator-0.1.8"
- sources."rimraf-2.6.2"
- sources."rusha-0.8.13"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- 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."signed-varint-2.0.1" // {
- dependencies = [
- sources."varint-5.0.0"
- ];
- })
- sources."simple-sha1-2.1.1"
- sources."siphash24-1.1.1"
- sources."slice-ansi-1.0.0"
- sources."sodium-javascript-0.5.5"
- sources."sodium-native-2.2.1"
- sources."sodium-universal-2.0.0"
- sources."sorted-array-functions-1.2.0"
- sources."sorted-indexof-1.0.0"
- sources."sparse-bitfield-3.0.3"
- sources."speedometer-1.1.0"
- sources."sshpk-1.14.2"
- sources."stack-trace-0.0.10"
- sources."stream-collector-1.0.1"
- sources."stream-each-1.2.3"
- (sources."stream-parser-0.3.1" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."stream-shift-1.0.0"
- sources."string-width-2.1.1"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-4.0.0"
- sources."strip-eof-1.0.0"
- sources."strip-json-comments-2.0.1"
- (sources."subcommand-2.1.0" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."supports-color-5.4.0"
- sources."term-size-1.2.0"
- sources."throttle-1.0.3"
- sources."thunky-1.0.2"
- sources."timed-out-4.0.1"
- sources."to-buffer-1.1.1"
- (sources."toiletdb-1.4.1" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."tough-cookie-2.3.4"
- 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.2"
- sources."unique-string-1.0.0"
- sources."unixify-1.0.0"
- sources."unordered-array-remove-1.0.2"
- sources."unordered-set-1.1.0"
- sources."untildify-3.0.3"
- sources."unzip-response-2.0.1"
- sources."update-notifier-2.5.0"
- sources."url-parse-lax-1.0.0"
- sources."util-deprecate-1.0.2"
- sources."utile-0.3.0"
- sources."utp-native-1.7.2"
- sources."uuid-3.3.2"
- sources."varint-3.0.1"
- sources."verror-1.10.0"
- sources."which-1.3.1"
- sources."widest-line-2.0.0"
- (sources."winston-2.1.1" // {
- dependencies = [
- sources."async-1.0.0"
- sources."colors-1.0.3"
- sources."pkginfo-0.3.1"
- ];
- })
- sources."wrappy-1.0.2"
- sources."write-file-atomic-2.3.0"
- sources."xdg-basedir-3.0.0"
- sources."xhr-2.5.0"
- sources."xsalsa20-1.0.2"
- sources."xtend-4.0.1"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Dat is the package manager for data. Easily share and version control data.";
- homepage = https://datproject.org/;
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = false;
- };
- dhcp = nodeEnv.buildNodePackage {
- name = "dhcp";
- packageName = "dhcp";
- version = "0.2.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/dhcp/-/dhcp-0.2.16.tgz";
- sha512 = "OEqRYUN/9WskTRRvOJyP3mTPa0HQecfUk+c9YgH1MUkGSDdArnIvoJcUvALBlgrezZvqyO2weQwFSBfORAU8Pw==";
- };
- dependencies = [
- sources."minimist-1.2.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A DHCP server written in JavaScript";
- homepage = https://github.com/infusion/node-dhcp;
- license = "MIT OR GPL-2.0";
- };
- production = true;
- bypassCache = false;
- };
- dnschain = nodeEnv.buildNodePackage {
- name = "dnschain";
- packageName = "dnschain";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dnschain/-/dnschain-0.5.3.tgz";
- 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"
- 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.13"
- 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"
- sources."lodash-2.4.2"
- 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.35.0"
- sources."mime-types-2.1.19"
- sources."minimist-0.0.10"
- sources."ms-0.7.0"
- sources."nan-2.10.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-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."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."parseurl-1.3.2"
- sources."path-to-regexp-0.1.3"
- sources."pause-stream-0.0.11"
- sources."pkginfo-0.3.1"
- 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."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."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" // {
- dependencies = [
- sources."mime-db-1.12.0"
- sources."mime-types-2.0.14"
- ];
- })
- 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 = {
- description = "A blockchain-based DNS + HTTPS server that fixes HTTPS security, and more!";
- homepage = https://github.com/okTurtles/dnschain;
- license = "MPL-2.0";
- };
- production = true;
- bypassCache = false;
- };
- docker-registry-server = nodeEnv.buildNodePackage {
- name = "docker-registry-server";
- packageName = "docker-registry-server";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/docker-registry-server/-/docker-registry-server-2.2.0.tgz";
- sha1 = "5b98836cd7f0348f7f472f7f5a42dd3cab231731";
- };
- dependencies = [
- sources."JSONStream-0.8.4"
- (sources."abstract-leveldown-0.12.4" // {
- dependencies = [
- sources."xtend-3.0.0"
- ];
- })
- sources."basic-auth-1.1.0"
- sources."bindings-1.2.1"
- (sources."bl-0.8.2" // {
- dependencies = [
- sources."readable-stream-1.0.34"
- ];
- })
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-fill-1.0.0"
- 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."duplexify-3.6.0" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."end-of-stream-1.4.1"
- (sources."errno-0.1.7" // {
- dependencies = [
- sources."prr-1.0.1"
- ];
- })
- sources."from2-1.3.0"
- sources."fs-blob-store-5.2.1"
- sources."fs-constants-1.0.0"
- 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.7"
- (sources."level-sublevel-6.6.5" // {
- dependencies = [
- (sources."levelup-0.19.1" // {
- dependencies = [
- sources."xtend-3.0.0"
- ];
- })
- sources."readable-stream-1.0.34"
- ];
- })
- sources."leveldown-0.10.6"
- (sources."levelup-0.18.6" // {
- dependencies = [
- sources."readable-stream-1.0.34"
- sources."semver-2.3.2"
- sources."xtend-3.0.0"
- ];
- })
- 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"
- ];
- })
- sources."minimist-0.2.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."murl-0.4.1"
- sources."nan-2.1.0"
- (sources."ndjson-1.5.0" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."minimist-1.2.0"
- sources."readable-stream-2.3.6"
- sources."split2-2.2.0"
- sources."string_decoder-1.1.1"
- 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-2.0.0"
- sources."protein-0.5.0"
- sources."prr-0.0.0"
- sources."pull-cat-1.1.11"
- sources."pull-defer-0.2.2"
- sources."pull-level-2.0.4"
- sources."pull-live-1.0.1"
- sources."pull-pushable-2.2.0"
- sources."pull-stream-3.6.8"
- sources."pull-window-2.1.4"
- sources."pump-1.0.3"
- (sources."pumpify-1.5.1" // {
- 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.2"
- 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" // {
- dependencies = [
- sources."looper-3.0.0"
- ];
- })
- sources."string_decoder-0.10.31"
- (sources."tar-stream-1.6.1" // {
- dependencies = [
- sources."bl-1.2.2"
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."through-2.3.8"
- (sources."through2-0.6.5" // {
- dependencies = [
- sources."readable-stream-1.0.34"
- ];
- })
- sources."thunky-0.1.0"
- sources."to-buffer-1.1.1"
- sources."typewise-1.0.3"
- sources."typewise-core-1.2.0"
- 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 = {
- description = "docker registry server implemented in node";
- homepage = https://github.com/mafintosh/docker-registry-server;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- elasticdump = nodeEnv.buildNodePackage {
- name = "elasticdump";
- packageName = "elasticdump";
- version = "3.3.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/elasticdump/-/elasticdump-3.3.19.tgz";
- sha512 = "vGWC/duKn+EgF3wQMQa2x21w1L1KTqKNydAvw0e2kShD1n/iNVekeF1e8juND/ttZW4yDvHLp4y10ZfoZ4st/Q==";
- };
- dependencies = [
- sources."JSONStream-1.3.3"
- sources."ajv-5.5.2"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."async-2.6.1"
- sources."asynckit-0.4.0"
- sources."aws-sdk-2.290.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."base64-js-1.3.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."buffer-4.9.1"
- sources."caseless-0.12.0"
- sources."co-4.6.0"
- sources."combined-stream-1.0.6"
- sources."core-util-is-1.0.2"
- sources."dashdash-1.14.1"
- sources."decimal.js-10.0.1"
- sources."delayed-stream-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."events-1.1.1"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."getpass-0.1.7"
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- 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.10"
- sources."lossless-json-1.0.3"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- 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.2"
- sources."querystring-0.2.0"
- sources."request-2.87.0"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."sax-1.2.1"
- sources."sshpk-1.14.2"
- sources."through-2.3.8"
- (sources."tough-cookie-2.3.4" // {
- dependencies = [
- sources."punycode-1.4.1"
- ];
- })
- 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.19"
- sources."xmlbuilder-9.0.7"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "import and export tools for elasticsearch";
- homepage = "https://github.com/taskrabbit/elasticsearch-dump#readme";
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- elm-oracle = nodeEnv.buildNodePackage {
- name = "elm-oracle";
- packageName = "elm-oracle";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/elm-oracle/-/elm-oracle-1.1.1.tgz";
- sha1 = "61f6d783221b4ad08e7d101d678b9d5a67d3961c";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "Query for information about values in elm source files.";
- homepage = "https://github.com/ElmCast/elm-oracle#readme";
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = false;
- };
- elm-test = nodeEnv.buildNodePackage {
- name = "elm-test";
- packageName = "elm-test";
- version = "0.18.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/elm-test/-/elm-test-0.18.12.tgz";
- sha512 = "5n1uNviCRxXIx5ciaFuzJd3fshcyicbYvTwyGh/L5t05bfBeq/3FZ5a3mLTz+zRZhp18dul2Oz8WoZmcn8PHcg==";
- };
- 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.4"
- 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.8.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."binary-extensions-1.11.0"
- sources."binstall-1.2.0"
- sources."block-stream-0.0.9"
- sources."boom-2.10.1"
- sources."brace-expansion-1.1.11"
- sources."braces-1.8.5"
- sources."caseless-0.11.0"
- (sources."chalk-2.1.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- ];
- })
- sources."chokidar-1.6.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- 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" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."delayed-stream-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."escape-string-regexp-1.0.5"
- sources."expand-brackets-0.1.5"
- sources."expand-range-1.8.2"
- sources."extend-3.0.2"
- sources."extglob-0.3.2"
- sources."extsprintf-1.3.0"
- sources."filename-regex-2.0.1"
- sources."fill-range-2.2.4"
- (sources."find-elm-dependencies-1.0.2" // {
- dependencies = [
- sources."firstline-1.2.0"
- sources."lodash-4.14.2"
- ];
- })
- sources."find-parent-dir-0.3.0"
- sources."firstline-1.2.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."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."getpass-0.1.7" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- 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" // {
- dependencies = [
- sources."chalk-1.1.3"
- sources."supports-color-2.0.0"
- ];
- })
- sources."has-ansi-2.0.0"
- sources."has-flag-2.0.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-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-ip-valid-1.0.0"
- sources."is-my-json-valid-2.18.0"
- 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."kind-of-3.2.2"
- sources."klaw-1.3.1"
- sources."lodash-4.13.1"
- sources."lru-cache-4.1.3"
- sources."math-random-1.0.1"
- sources."micromatch-2.3.11"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."murmur-hash-js-1.0.0"
- sources."nan-2.10.0"
- (sources."node-elm-compiler-4.3.3" // {
- dependencies = [
- sources."lodash-4.14.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-tmpdir-1.0.2"
- sources."parse-glob-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- sources."preserve-0.2.0"
- sources."process-nextick-args-2.0.0"
- sources."pseudomap-1.0.2"
- sources."punycode-1.4.1"
- sources."qs-6.3.2"
- (sources."randomatic-3.1.0" // {
- dependencies = [
- sources."is-number-4.0.0"
- sources."kind-of-6.0.2"
- ];
- })
- sources."readable-stream-2.3.6"
- 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.2"
- sources."safer-buffer-2.1.2"
- sources."set-immediate-shim-1.0.1"
- sources."sntp-1.0.9"
- sources."split-1.0.1"
- (sources."sshpk-1.14.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."string_decoder-1.1.1"
- sources."stringstream-0.0.6"
- sources."strip-ansi-3.0.1"
- sources."supports-color-4.2.0"
- sources."tar-2.2.1"
- (sources."temp-0.8.3" // {
- dependencies = [
- sources."rimraf-2.2.8"
- ];
- })
- sources."through-2.3.8"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.4.3"
- sources."tweetnacl-0.14.5"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."which-1.3.1"
- sources."wrappy-1.0.2"
- sources."xmlbuilder-8.2.2"
- sources."xtend-4.0.1"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Run elm-test suites.";
- homepage = "https://github.com/rtfeldman/node-test-runner#readme";
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = false;
- };
- emoj = nodeEnv.buildNodePackage {
- name = "emoj";
- packageName = "emoj";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/emoj/-/emoj-2.0.0.tgz";
- sha512 = "f+jc5ZC+EAqRK84plziuC4sfKspUcnnxwZzxLFSFsH0MZn9VbU0iQh5qTONewYXsoRaacNioMOLxYV637MLBDQ==";
- };
- dependencies = [
- sources."ansi-escapes-3.1.0"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-2.2.1"
- sources."arch-2.1.1"
- sources."array-find-index-1.0.2"
- sources."arrify-1.0.1"
- sources."auto-bind-1.2.1"
- sources."babel-code-frame-6.26.0"
- sources."babel-core-6.26.3"
- sources."babel-generator-6.26.1"
- 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."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."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."builtin-modules-1.1.1"
- sources."caller-callsite-2.0.0"
- sources."caller-path-2.0.0"
- sources."callsites-2.0.0"
- sources."camelcase-2.1.1"
- sources."camelcase-keys-2.1.0"
- (sources."chalk-1.1.3" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."has-ansi-2.0.0"
- ];
- })
- sources."cli-cursor-2.1.0"
- sources."clipboardy-1.2.3"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."concat-map-0.0.1"
- sources."conf-1.4.0"
- sources."convert-source-map-1.5.1"
- sources."core-js-2.5.7"
- 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."env-paths-1.0.0"
- sources."error-ex-1.3.2"
- sources."escape-string-regexp-1.0.5"
- sources."esutils-2.0.2"
- sources."execa-0.8.0"
- 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-3.0.0"
- sources."has-symbol-support-x-1.4.2"
- sources."has-to-string-tag-x-1.4.1"
- sources."home-or-tmp-2.0.0"
- sources."hosted-git-info-2.7.1"
- sources."import-jsx-1.3.0"
- sources."imurmurhash-0.1.4"
- sources."indent-string-3.2.0"
- (sources."ink-0.3.1" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."ink-text-input-1.1.1"
- sources."invariant-2.2.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-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."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" // {
- dependencies = [
- sources."pify-2.3.0"
- ];
- })
- sources."locate-path-2.0.0"
- sources."lodash-4.17.10"
- 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."loose-envify-1.4.0"
- sources."loud-rejection-1.6.0"
- sources."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.3"
- sources."make-dir-1.3.0"
- sources."map-obj-1.0.1"
- sources."mem-1.1.0"
- (sources."meow-3.7.0" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."mimic-fn-1.2.0"
- sources."mimic-response-1.0.1"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."ms-2.0.0"
- 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.3.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" // {
- dependencies = [
- sources."pify-2.3.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."prop-types-15.6.2"
- sources."pseudomap-1.0.2"
- sources."read-pkg-1.1.0"
- (sources."read-pkg-up-1.0.1" // {
- dependencies = [
- sources."find-up-1.1.2"
- sources."path-exists-2.1.0"
- ];
- })
- (sources."redent-1.0.0" // {
- dependencies = [
- sources."indent-string-2.1.0"
- ];
- })
- 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.2"
- sources."semver-5.5.0"
- 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-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- (sources."string-width-2.1.1" // {
- dependencies = [
- sources."strip-ansi-4.0.0"
- ];
- })
- (sources."strip-ansi-3.0.1" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."strip-bom-2.0.0"
- sources."strip-eof-1.0.0"
- sources."strip-indent-1.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."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.4"
- sources."which-1.3.1"
- (sources."wrap-ansi-3.0.1" // {
- dependencies = [
- sources."strip-ansi-4.0.0"
- ];
- })
- sources."write-file-atomic-2.3.0"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Find relevant emoji from text on the command-line";
- homepage = "https://github.com/sindresorhus/emoj#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- eslint = nodeEnv.buildNodePackage {
- name = "eslint";
- packageName = "eslint";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-5.3.0.tgz";
- sha512 = "N/tCqlMKkyNvAvLu+zI9AqDasnSLt00K+Hu8kdsERliC9jYEc8ck12XtjvOXrBKu8fK6RrBcN9bat6Xk++9jAg==";
- };
- dependencies = [
- sources."acorn-5.7.1"
- sources."acorn-jsx-4.1.1"
- sources."ajv-6.5.2"
- sources."ajv-keywords-3.2.0"
- sources."ansi-escapes-3.1.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."argparse-1.0.10"
- 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.11"
- sources."caller-path-0.1.0"
- sources."callsites-0.2.0"
- (sources."chalk-2.4.1" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."supports-color-5.4.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."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."concat-map-0.0.1"
- sources."cross-spawn-6.0.5"
- sources."debug-3.1.0"
- sources."deep-is-0.1.3"
- sources."define-properties-1.1.2"
- sources."del-2.2.2"
- sources."doctrine-2.1.0"
- sources."es-abstract-1.12.0"
- sources."es-to-primitive-1.1.1"
- sources."escape-string-regexp-1.0.5"
- sources."eslint-scope-4.0.0"
- sources."eslint-utils-1.3.1"
- sources."eslint-visitor-keys-1.0.0"
- sources."espree-4.0.0"
- sources."esprima-4.0.1"
- sources."esquery-1.0.1"
- sources."esrecurse-4.2.1"
- sources."estraverse-4.2.0"
- sources."esutils-2.0.2"
- sources."external-editor-2.2.0"
- sources."fast-deep-equal-2.0.1"
- sources."fast-json-stable-stringify-2.0.0"
- sources."fast-levenshtein-2.0.6"
- sources."figures-2.0.0"
- sources."file-entry-cache-2.0.0"
- sources."flat-cache-1.3.0"
- sources."foreach-2.0.5"
- sources."fs.realpath-1.0.0"
- sources."function-bind-1.1.1"
- sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.2"
- sources."globals-11.7.0"
- sources."globby-5.0.0"
- sources."graceful-fs-4.1.11"
- sources."has-1.0.3"
- sources."has-ansi-2.0.0"
- sources."has-flag-3.0.0"
- sources."has-symbols-1.0.0"
- sources."iconv-lite-0.4.23"
- sources."ignore-4.0.5"
- sources."imurmurhash-0.1.4"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."inquirer-5.2.0"
- sources."is-callable-1.1.4"
- sources."is-date-object-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.1"
- sources."is-path-inside-1.0.1"
- sources."is-promise-2.1.0"
- sources."is-regex-1.0.4"
- sources."is-resolvable-1.1.0"
- sources."is-symbol-1.0.1"
- sources."isexe-2.0.0"
- sources."js-tokens-3.0.2"
- sources."js-yaml-3.12.0"
- sources."json-schema-traverse-0.4.1"
- sources."json-stable-stringify-without-jsonify-1.0.1"
- sources."levn-0.3.0"
- sources."lodash-4.17.10"
- sources."mimic-fn-1.2.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."nice-try-1.0.4"
- sources."object-assign-4.1.1"
- sources."object-keys-1.0.12"
- 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-key-2.0.1"
- 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."progress-2.0.0"
- sources."punycode-2.1.1"
- sources."regexp.prototype.flags-1.2.0"
- sources."regexpp-2.0.0"
- sources."require-uncached-1.0.3"
- sources."resolve-from-1.0.1"
- sources."restore-cursor-2.0.0"
- sources."rimraf-2.6.2"
- sources."run-async-2.3.0"
- sources."rxjs-5.5.11"
- sources."safer-buffer-2.1.2"
- 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.prototype.matchall-2.0.0"
- (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."symbol-observable-1.0.1"
- sources."table-4.0.3"
- sources."text-table-0.2.0"
- sources."through-2.3.8"
- sources."tmp-0.0.33"
- sources."type-check-0.3.2"
- sources."uri-js-4.2.2"
- sources."which-1.3.1"
- sources."wordwrap-1.0.0"
- sources."wrappy-1.0.2"
- sources."write-0.2.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "An AST-based pattern checker for JavaScript.";
- homepage = https://eslint.org/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- eslint_d = nodeEnv.buildNodePackage {
- name = "eslint_d";
- packageName = "eslint_d";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint_d/-/eslint_d-6.0.1.tgz";
- sha512 = "27O0P4SaTm7RDrykMyLTIX964VhXxmyGEXur6Er1V3qZ1YL1kWvL74pzdPonWOb6N/ghYFZY4a23L7vZDRHjMg==";
- };
- dependencies = [
- sources."acorn-5.7.1"
- sources."acorn-jsx-4.1.1"
- sources."ajv-6.5.2"
- sources."ajv-keywords-3.2.0"
- sources."ansi-escapes-3.1.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."argparse-1.0.10"
- 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."supports-color-2.0.0"
- ];
- })
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."caller-path-0.1.0"
- sources."callsites-0.2.0"
- (sources."chalk-2.4.1" // {
- dependencies = [
- sources."ansi-styles-3.2.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."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."concat-map-0.0.1"
- sources."cross-spawn-6.0.5"
- sources."debug-3.1.0"
- sources."deep-is-0.1.3"
- sources."define-properties-1.1.2"
- sources."del-2.2.2"
- sources."doctrine-2.1.0"
- sources."es-abstract-1.12.0"
- sources."es-to-primitive-1.1.1"
- sources."escape-string-regexp-1.0.5"
- sources."eslint-5.3.0"
- sources."eslint-scope-4.0.0"
- sources."eslint-utils-1.3.1"
- sources."eslint-visitor-keys-1.0.0"
- sources."espree-4.0.0"
- sources."esprima-4.0.1"
- sources."esquery-1.0.1"
- sources."esrecurse-4.2.1"
- sources."estraverse-4.2.0"
- sources."esutils-2.0.2"
- sources."external-editor-2.2.0"
- sources."fast-deep-equal-2.0.1"
- sources."fast-json-stable-stringify-2.0.0"
- sources."fast-levenshtein-2.0.6"
- sources."figures-2.0.0"
- sources."file-entry-cache-2.0.0"
- sources."flat-cache-1.3.0"
- sources."foreach-2.0.5"
- sources."fs.realpath-1.0.0"
- sources."function-bind-1.1.1"
- sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.2"
- sources."globals-11.7.0"
- sources."globby-5.0.0"
- sources."graceful-fs-4.1.11"
- sources."has-1.0.3"
- sources."has-ansi-2.0.0"
- sources."has-flag-3.0.0"
- sources."has-symbols-1.0.0"
- sources."iconv-lite-0.4.23"
- sources."ignore-4.0.5"
- sources."imurmurhash-0.1.4"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."inquirer-5.2.0"
- sources."is-callable-1.1.4"
- sources."is-date-object-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.1"
- sources."is-path-inside-1.0.1"
- sources."is-promise-2.1.0"
- sources."is-regex-1.0.4"
- sources."is-resolvable-1.1.0"
- sources."is-symbol-1.0.1"
- sources."isexe-2.0.0"
- sources."js-tokens-3.0.2"
- sources."js-yaml-3.12.0"
- sources."json-schema-traverse-0.4.1"
- sources."json-stable-stringify-without-jsonify-1.0.1"
- sources."levn-0.3.0"
- sources."lodash-4.17.10"
- sources."mimic-fn-1.2.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."nanolru-1.0.0"
- sources."natural-compare-1.4.0"
- sources."nice-try-1.0.4"
- sources."object-assign-4.1.1"
- sources."object-keys-1.0.12"
- 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-key-2.0.1"
- sources."path-parse-1.0.6"
- 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."progress-2.0.0"
- sources."punycode-2.1.1"
- sources."regexp.prototype.flags-1.2.0"
- sources."regexpp-2.0.0"
- sources."require-uncached-1.0.3"
- sources."resolve-1.8.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."rxjs-5.5.11"
- sources."safer-buffer-2.1.2"
- 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.prototype.matchall-2.0.0"
- (sources."strip-ansi-4.0.0" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- ];
- })
- sources."strip-json-comments-2.0.1"
- sources."supports-color-5.4.0"
- sources."symbol-observable-1.0.1"
- sources."table-4.0.3"
- sources."text-table-0.2.0"
- sources."through-2.3.8"
- sources."tmp-0.0.33"
- sources."type-check-0.3.2"
- sources."uri-js-4.2.2"
- sources."which-1.3.1"
- sources."wordwrap-1.0.0"
- sources."wrappy-1.0.2"
- sources."write-0.2.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Makes eslint the fastest linter on the planet";
- homepage = https://github.com/mantoni/eslint_d.js;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- emojione = nodeEnv.buildNodePackage {
- name = "emojione";
- packageName = "emojione";
- version = "3.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/emojione/-/emojione-3.1.7.tgz";
- sha1 = "2d3c725c696f179c9dde3acb655c621ee9429b1e";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "EmojiOne is a complete set of emojis designed for the web. It includes libraries to easily convert unicode characters to shortnames (:smile:) and shortnames to our custom emoji images. PNG formats provided for the emoji images.";
- homepage = http://www.emojione.com/;
- };
- production = true;
- bypassCache = false;
- };
- "fast-cli-1.x" = nodeEnv.buildNodePackage {
- name = "fast-cli";
- packageName = "fast-cli";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-cli/-/fast-cli-1.0.0.tgz";
- sha1 = "81f5f98043cc2517053f96ba5d61ef5db430c010";
- };
- dependencies = [
- sources."ajv-5.5.2"
- sources."ansi-escapes-1.4.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."array-find-index-1.0.2"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."buffer-from-1.1.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.3.1"
- sources."co-4.6.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."combined-stream-1.0.6"
- sources."concat-stream-1.6.2"
- sources."core-util-is-1.0.2"
- sources."currently-unhandled-0.4.1"
- sources."dashdash-1.14.1"
- sources."debug-2.6.9"
- sources."decamelize-1.2.0"
- sources."delayed-stream-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."error-ex-1.3.2"
- sources."es6-promise-4.2.4"
- sources."escape-string-regexp-1.0.5"
- sources."exit-hook-1.1.1"
- sources."extend-3.0.2"
- sources."extract-zip-1.6.7"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.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.2"
- 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."has-flag-3.0.0"
- sources."hasha-2.2.0"
- sources."hosted-git-info-2.7.1"
- 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-2.2.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."supports-color-5.4.0"
- ];
- })
- 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.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimist-1.2.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."mkpath-1.0.0"
- sources."ms-2.0.0"
- sources."node-phantom-simple-2.2.4"
- 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.4.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."cli-cursor-2.1.0"
- sources."onetime-2.0.1"
- sources."restore-cursor-2.0.0"
- sources."supports-color-5.4.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"
- sources."pify-2.3.0"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- sources."process-nextick-args-2.0.0"
- sources."progress-1.1.8"
- sources."promise-phantom-3.1.6"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."read-pkg-1.1.0"
- sources."read-pkg-up-1.0.1"
- sources."readable-stream-2.3.6"
- sources."redent-1.0.0"
- sources."repeating-2.0.1"
- sources."request-2.87.0"
- sources."request-progress-2.0.1"
- sources."restore-cursor-1.0.1"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- sources."signal-exit-3.0.2"
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.14.2"
- sources."string_decoder-1.1.1"
- 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.4"
- 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.3.2"
- sources."validate-npm-package-license-3.0.4"
- sources."verror-1.10.0"
- sources."which-1.3.1"
- sources."yauzl-2.4.1"
- sources."zen-observable-0.5.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Test your download speed using fast.com";
- homepage = "https://github.com/sindresorhus/fast-cli#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- fetch-bower = nodeEnv.buildNodePackage {
- name = "fetch-bower";
- packageName = "fetch-bower";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fetch-bower/-/fetch-bower-2.0.0.tgz";
- sha1 = "c027feb75a512001d1287bbfb3ffaafba67eb92f";
- };
- dependencies = [
- sources."bower-1.8.4"
- sources."bower-endpoint-parser-0.2.1"
- sources."bower-logger-0.2.1"
- sources."glob-3.2.11"
- sources."inherits-2.0.3"
- sources."lru-cache-2.7.3"
- sources."minimatch-0.3.0"
- sources."sigmund-1.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Companion to bower2nix to be used in the fetchBower fixed-output derivation";
- homepage = https://bitbucket.org/shlevy/fetch-bower;
- };
- production = true;
- bypassCache = false;
- };
- forever = nodeEnv.buildNodePackage {
- name = "forever";
- packageName = "forever";
- version = "0.15.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/forever/-/forever-0.15.3.tgz";
- 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.11"
- sources."braces-1.8.5"
- (sources."broadway-0.3.6" // {
- dependencies = [
- sources."cliff-0.1.9"
- sources."winston-0.8.0"
- ];
- })
- sources."caller-0.0.1"
- sources."chokidar-1.7.0"
- (sources."cliff-0.1.10" // {
- dependencies = [
- sources."colors-1.0.3"
- ];
- })
- sources."clone-1.0.4"
- 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" // {
- dependencies = [
- sources."optimist-0.2.8"
- ];
- })
- 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.4"
- (sources."flatiron-0.4.3" // {
- dependencies = [
- sources."optimist-0.6.0"
- ];
- })
- sources."for-in-1.0.2"
- sources."for-own-0.1.5"
- sources."forever-monitor-1.7.1"
- sources."fs.realpath-1.0.0"
- sources."fsevents-1.2.4"
- 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."math-random-1.0.1"
- sources."micromatch-2.3.11"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.10"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."mute-stream-0.0.7"
- sources."nan-2.10.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.3.1"
- sources."minimist-1.2.0"
- ];
- })
- sources."process-nextick-args-2.0.0"
- sources."prompt-0.2.14"
- sources."ps-tree-0.0.3"
- (sources."randomatic-3.1.0" // {
- dependencies = [
- sources."is-number-4.0.0"
- sources."kind-of-6.0.2"
- ];
- })
- sources."read-1.0.7"
- sources."readable-stream-2.3.6"
- 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."revalidator-0.1.8"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- sources."set-immediate-shim-1.0.1"
- sources."shush-1.0.0"
- sources."stack-trace-0.0.10"
- sources."string_decoder-1.1.1"
- 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"
- sources."winston-0.8.3"
- sources."wordwrap-0.0.3"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)";
- homepage = "https://github.com/foreverjs/forever#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- git-run = nodeEnv.buildNodePackage {
- name = "git-run";
- packageName = "git-run";
- version = "0.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-run/-/git-run-0.5.5.tgz";
- sha512 = "76zCOpXUl/85CMk9aJwWbBy2vGYv+Yn17PcUMhksTtMJLAUujje3eP8v7FufC2pN9SbQx88Gtr4ARXGeVWwAJA==";
- };
- dependencies = [
- sources."async-2.6.1"
- sources."debug-3.1.0"
- sources."lodash-4.17.10"
- 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.96.0"
- sources."tabtab-git+https://github.com/mixu/node-tabtab.git"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A tool for managing multiple git repositories";
- homepage = "https://github.com/mixu/gr#readme";
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = false;
- };
- git-standup = nodeEnv.buildNodePackage {
- name = "git-standup";
- packageName = "git-standup";
- version = "2.1.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-standup/-/git-standup-2.1.9.tgz";
- sha512 = "+XT110zb/S1XzG+amg5gKGWcD6dW58mnstS4GkuiO63aA8qGvpgNB9Cq89qxhFSIQ2smeB/00QGsVLn4CL1V+A==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "Recall what you did on the last working day. Psst! or be nosy and find what someone else in your team did ;-)";
- homepage = "https://github.com/kamranahmedse/git-standup#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- graphql-cli = nodeEnv.buildNodePackage {
- name = "graphql-cli";
- packageName = "graphql-cli";
- version = "2.16.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-cli/-/graphql-cli-2.16.5.tgz";
- sha512 = "a2QYKmjc6H/39ZGpcKGNQIGAtz84BIVYw9LyYy3Iv1cxJ46zeRgyLBdl8vk+f1aYjQ80TAGHL2+qlIKBD7mDfg==";
- };
- dependencies = [
- sources."@babel/generator-7.0.0-beta.38"
- sources."@babel/types-7.0.0-beta.38"
- (sources."@kbrandwijk/swagger-to-graphql-2.4.3" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."cliui-3.2.0"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."yargs-8.0.2"
- sources."yargs-parser-7.0.0"
- ];
- })
- sources."accepts-1.3.5"
- sources."adm-zip-0.4.7"
- sources."agent-base-4.2.1"
- sources."ajv-5.5.2"
- sources."ansi-align-2.0.0"
- sources."ansi-escapes-3.1.0"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- (sources."apollo-codegen-0.19.1" // {
- dependencies = [
- (sources."graphql-config-1.2.1" // {
- dependencies = [
- sources."graphql-0.12.3"
- ];
- })
- sources."node-fetch-1.7.3"
- sources."yargs-10.1.2"
- ];
- })
- sources."argparse-1.0.10"
- sources."array-flatten-1.1.1"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."async-2.6.1"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."babel-runtime-6.26.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bluebird-3.5.1"
- (sources."body-parser-1.18.2" // {
- dependencies = [
- sources."iconv-lite-0.4.19"
- ];
- })
- sources."boxen-1.3.0"
- sources."brace-expansion-1.1.11"
- sources."buffer-equal-constant-time-1.0.1"
- sources."buffer-from-1.1.1"
- sources."builtin-modules-1.1.1"
- sources."bytes-3.0.0"
- sources."call-me-maybe-1.0.1"
- sources."camel-case-3.0.0"
- sources."camelcase-4.1.0"
- sources."capture-stack-trace-1.0.0"
- sources."caseless-0.12.0"
- sources."chalk-2.4.1"
- sources."change-case-3.0.2"
- sources."chardet-0.4.2"
- sources."ci-info-1.1.3"
- sources."cli-boxes-1.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-spinners-1.3.1"
- sources."cli-width-2.2.0"
- sources."cliui-4.1.0"
- sources."clone-1.0.4"
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- (sources."columnify-1.5.4" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."strip-ansi-3.0.1"
- ];
- })
- sources."combined-stream-1.0.6"
- sources."command-exists-1.2.7"
- sources."commander-2.17.1"
- sources."common-tags-1.8.0"
- sources."concat-map-0.0.1"
- sources."configstore-3.1.2"
- sources."constant-case-2.0.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."core-js-2.5.7"
- sources."core-util-is-1.0.2"
- (sources."cosmiconfig-3.1.0" // {
- dependencies = [
- sources."parse-json-3.0.0"
- ];
- })
- sources."create-error-class-3.0.2"
- (sources."cross-fetch-2.0.0" // {
- dependencies = [
- sources."node-fetch-2.0.0"
- ];
- })
- sources."cross-spawn-6.0.5"
- sources."crypto-random-string-1.0.0"
- (sources."cucumber-html-reporter-3.0.4" // {
- dependencies = [
- sources."fs-extra-3.0.1"
- sources."jsonfile-3.0.1"
- ];
- })
- sources."dashdash-1.14.1"
- sources."debug-2.6.9"
- sources."decamelize-1.2.0"
- sources."deep-extend-0.6.0"
- sources."defaults-1.0.3"
- sources."delayed-stream-1.0.0"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
- sources."diff-1.4.0"
- (sources."disparity-2.0.0" // {
- dependencies = [
- sources."ansi-styles-2.2.1"
- ];
- })
- sources."dot-case-2.1.1"
- sources."dot-prop-4.2.0"
- sources."dotenv-5.0.1"
- sources."duplexer3-0.1.4"
- sources."ecc-jsbn-0.1.2"
- sources."ecdsa-sig-formatter-1.0.10"
- sources."ee-first-1.1.1"
- sources."encodeurl-1.0.2"
- sources."encoding-0.1.12"
- sources."errno-0.1.7"
- sources."error-ex-1.3.2"
- sources."es6-promise-4.2.4"
- sources."es6-promisify-5.0.0"
- sources."escape-html-1.0.3"
- sources."escape-string-regexp-1.0.5"
- sources."esprima-4.0.1"
- sources."esutils-2.0.2"
- sources."etag-1.8.1"
- (sources."execa-0.7.0" // {
- dependencies = [
- sources."cross-spawn-5.1.0"
- ];
- })
- sources."expand-tilde-2.0.2"
- sources."express-4.16.3"
- (sources."express-request-proxy-2.2.0" // {
- dependencies = [
- (sources."body-parser-1.18.3" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."debug-3.1.0"
- sources."path-to-regexp-1.7.0"
- sources."qs-6.5.2"
- sources."raw-body-2.3.3"
- ];
- })
- sources."extend-3.0.2"
- sources."external-editor-2.2.0"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."figures-2.0.0"
- sources."finalhandler-1.1.1"
- sources."find-0.2.9"
- sources."find-up-2.1.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."format-util-1.0.3"
- sources."forwarded-0.1.2"
- sources."fresh-0.5.2"
- sources."fs-extra-5.0.0"
- sources."fs.realpath-1.0.0"
- sources."get-caller-file-1.0.3"
- sources."get-stream-3.0.0"
- sources."getpass-0.1.7"
- sources."glob-7.1.2"
- sources."global-dirs-0.1.1"
- sources."global-modules-1.0.0"
- sources."global-prefix-1.0.2"
- sources."got-6.7.1"
- sources."graceful-fs-4.1.11"
- sources."graphcool-json-schema-1.2.1"
- (sources."graphcool-yml-0.4.15" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."dotenv-4.0.0"
- sources."fs-extra-4.0.3"
- ];
- })
- (sources."graphql-0.13.2" // {
- dependencies = [
- sources."iterall-1.2.2"
- ];
- })
- (sources."graphql-cli-prepare-1.4.19" // {
- dependencies = [
- sources."chalk-2.3.1"
- sources."lodash-4.17.5"
- ];
- })
- sources."graphql-config-2.0.1"
- sources."graphql-config-extension-graphcool-1.0.8"
- sources."graphql-config-extension-openapi-1.0.6"
- sources."graphql-config-extension-prisma-0.0.11"
- sources."graphql-import-0.4.5"
- (sources."graphql-playground-html-1.5.5" // {
- dependencies = [
- sources."graphql-config-2.0.0"
- ];
- })
- sources."graphql-playground-middleware-express-1.6.2"
- sources."graphql-request-1.8.1"
- sources."graphql-schema-linter-0.1.1"
- sources."graphql-static-binding-0.9.3"
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."has-flag-3.0.0"
- sources."header-case-1.0.1"
- sources."homedir-polyfill-1.0.1"
- sources."hosted-git-info-2.7.1"
- sources."http-errors-1.6.3"
- (sources."http-proxy-agent-2.1.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."http-signature-1.2.0"
- (sources."https-proxy-agent-2.2.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."iconv-lite-0.4.23"
- sources."import-lazy-2.1.0"
- sources."imurmurhash-0.1.4"
- sources."inflected-2.0.4"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."ini-1.3.5"
- sources."inquirer-5.1.0"
- sources."invert-kv-1.0.0"
- sources."ip-regex-1.0.3"
- sources."ipaddr.js-1.8.0"
- sources."is-arrayish-0.2.1"
- sources."is-builtin-module-1.0.0"
- sources."is-ci-1.1.0"
- sources."is-directory-0.3.1"
- sources."is-fullwidth-code-point-1.0.0"
- sources."is-installed-globally-0.1.0"
- sources."is-lower-case-1.1.3"
- 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."is-upper-case-1.1.2"
- sources."is-url-superb-2.0.0"
- sources."is-windows-1.0.2"
- sources."is-wsl-1.1.0"
- sources."isarray-0.0.1"
- sources."isexe-2.0.0"
- (sources."isomorphic-fetch-2.2.1" // {
- dependencies = [
- sources."node-fetch-1.7.3"
- ];
- })
- sources."isstream-0.1.2"
- sources."iterall-1.1.3"
- sources."js-base64-2.4.8"
- sources."js-yaml-3.12.0"
- sources."jsbn-0.1.1"
- sources."jsesc-2.5.1"
- sources."json-schema-0.2.3"
- (sources."json-schema-ref-parser-3.3.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."json-schema-traverse-0.3.1"
- sources."json-stable-stringify-1.0.1"
- sources."json-stringify-safe-5.0.1"
- sources."jsonfile-4.0.0"
- sources."jsonify-0.0.0"
- (sources."jsonwebtoken-8.3.0" // {
- dependencies = [
- sources."ms-2.1.1"
- ];
- })
- sources."jsprim-1.4.1"
- sources."jwa-1.1.6"
- sources."jws-3.1.5"
- sources."latest-version-3.1.0"
- sources."lcid-1.0.0"
- sources."load-json-file-2.0.0"
- sources."locate-path-2.0.0"
- sources."lodash-4.17.10"
- sources."lodash.get-4.4.2"
- sources."lodash.includes-4.3.0"
- sources."lodash.isboolean-3.0.3"
- sources."lodash.isequal-4.5.0"
- sources."lodash.isinteger-4.0.4"
- sources."lodash.isnumber-3.0.3"
- sources."lodash.isplainobject-4.0.6"
- sources."lodash.isstring-4.0.1"
- sources."lodash.once-4.1.1"
- sources."log-symbols-2.2.0"
- sources."lower-case-1.1.4"
- sources."lower-case-first-1.0.2"
- sources."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.3"
- (sources."make-dir-1.3.0" // {
- dependencies = [
- sources."pify-3.0.0"
- ];
- })
- sources."media-typer-0.3.0"
- sources."mem-1.1.0"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."mime-1.4.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.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."negotiator-0.6.1"
- sources."nice-try-1.0.4"
- sources."no-case-2.3.2"
- sources."node-fetch-2.2.0"
- sources."node-request-by-swagger-1.1.3"
- sources."normalize-package-data-2.4.0"
- sources."npm-path-2.0.4"
- sources."npm-paths-1.0.0"
- (sources."npm-run-4.1.2" // {
- dependencies = [
- sources."cross-spawn-5.1.0"
- sources."minimist-1.2.0"
- ];
- })
- sources."npm-run-path-2.0.2"
- sources."npm-which-3.0.1"
- sources."number-is-nan-1.0.1"
- sources."oauth-sign-0.8.2"
- sources."on-finished-2.3.0"
- sources."once-1.4.0"
- sources."onetime-2.0.1"
- sources."ono-4.0.5"
- sources."open-0.0.5"
- sources."opn-5.3.0"
- sources."ora-1.4.0"
- sources."os-locale-2.1.0"
- sources."os-tmpdir-1.0.2"
- sources."p-finally-1.0.0"
- sources."p-limit-1.3.0"
- sources."p-locate-2.0.0"
- sources."p-try-1.0.0"
- sources."package-json-4.0.1"
- sources."param-case-2.1.1"
- sources."parse-github-url-1.0.2"
- sources."parse-json-2.2.0"
- sources."parse-passwd-1.0.0"
- sources."parseurl-1.3.2"
- sources."pascal-case-2.0.1"
- sources."path-case-2.1.1"
- 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-to-regexp-0.1.7"
- sources."path-type-2.0.0"
- sources."performance-now-2.1.0"
- sources."pify-2.3.0"
- sources."prepend-http-1.0.4"
- sources."prisma-json-schema-0.0.4"
- (sources."prisma-yml-1.0.50" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."dotenv-4.0.0"
- ];
- })
- sources."process-nextick-args-2.0.0"
- sources."protochain-1.0.5"
- sources."proxy-addr-2.0.4"
- sources."prr-1.0.1"
- sources."pseudomap-1.0.2"
- sources."psl-1.1.29"
- sources."punycode-1.4.1"
- sources."qs-6.5.1"
- sources."range-parser-1.2.0"
- (sources."raw-body-2.3.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."setprototypeof-1.0.3"
- ];
- })
- (sources."rc-1.2.8" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."read-pkg-2.0.0"
- sources."read-pkg-up-2.0.0"
- (sources."readable-stream-2.3.6" // {
- dependencies = [
- sources."isarray-1.0.0"
- ];
- })
- sources."regenerator-runtime-0.11.1"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."replaceall-0.1.6"
- (sources."request-2.87.0" // {
- dependencies = [
- sources."tough-cookie-2.3.4"
- ];
- })
- sources."request-promise-4.2.2"
- sources."request-promise-core-1.1.1"
- sources."require-directory-2.1.1"
- sources."require-from-string-2.0.2"
- sources."require-main-filename-1.0.1"
- sources."resolve-dir-1.0.1"
- sources."restore-cursor-2.0.0"
- sources."rimraf-2.6.2"
- sources."run-async-2.3.0"
- sources."rxjs-5.5.11"
- sources."safe-buffer-5.1.1"
- sources."safer-buffer-2.1.2"
- sources."scuid-1.1.0"
- sources."semver-5.5.0"
- sources."semver-diff-2.1.0"
- sources."send-0.16.2"
- sources."sentence-case-2.1.1"
- sources."serializerr-1.0.3"
- sources."serve-static-1.13.2"
- sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.0"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- sources."simple-errors-1.0.1"
- sources."snake-case-2.1.0"
- sources."source-map-0.5.7"
- (sources."source-map-support-0.5.8" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.2"
- sources."statuses-1.4.0"
- sources."stealthy-require-1.1.1"
- (sources."string-width-2.1.1" // {
- dependencies = [
- sources."is-fullwidth-code-point-2.0.0"
- ];
- })
- sources."string_decoder-1.1.1"
- sources."strip-ansi-4.0.0"
- sources."strip-bom-3.0.0"
- sources."strip-eof-1.0.0"
- sources."strip-json-comments-2.0.1"
- sources."supports-color-5.4.0"
- sources."swap-case-1.1.2"
- sources."symbol-observable-1.0.1"
- sources."sync-exec-0.6.2"
- sources."term-size-1.2.0"
- sources."through-2.3.8"
- sources."through2-2.0.3"
- sources."timed-out-4.0.1"
- sources."title-case-2.1.1"
- sources."tmp-0.0.33"
- sources."to-fast-properties-2.0.0"
- sources."tough-cookie-2.4.3"
- sources."traverse-chain-0.1.0"
- sources."trim-right-1.0.1"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- sources."unique-string-1.0.0"
- sources."universalify-0.1.2"
- sources."unpipe-1.0.0"
- sources."unzip-response-2.0.1"
- sources."update-notifier-2.5.0"
- sources."upper-case-1.1.3"
- sources."upper-case-first-1.1.2"
- sources."url-join-4.0.0"
- sources."url-parse-lax-1.0.0"
- sources."url-regex-3.2.0"
- sources."util-deprecate-1.0.2"
- sources."utils-merge-1.0.1"
- sources."uuid-3.3.2"
- sources."validate-npm-package-license-3.0.4"
- sources."validator-10.5.0"
- sources."vary-1.1.2"
- sources."verror-1.10.0"
- sources."wcwidth-1.0.1"
- sources."whatwg-fetch-2.0.3"
- sources."which-1.3.1"
- sources."which-module-2.0.0"
- sources."widest-line-2.0.0"
- (sources."wrap-ansi-2.1.0" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- ];
- })
- sources."wrappy-1.0.2"
- sources."write-file-atomic-2.3.0"
- sources."xdg-basedir-3.0.0"
- sources."xtend-4.0.1"
- sources."y18n-3.2.1"
- sources."yallist-2.1.2"
- sources."yaml-ast-parser-0.0.40"
- (sources."yargs-11.0.0" // {
- dependencies = [
- sources."yargs-parser-9.0.2"
- ];
- })
- sources."yargs-parser-8.1.0"
- sources."z-schema-3.22.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "GraphQL CLI";
- homepage = "https://github.com/graphql-cli/graphql-cli#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- grunt-cli = nodeEnv.buildNodePackage {
- name = "grunt-cli";
- packageName = "grunt-cli";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz";
- sha1 = "562b119ebb069ddb464ace2845501be97b35b6a8";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."concat-map-0.0.1"
- sources."findup-sync-0.3.0"
- 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"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "The grunt command line interface";
- homepage = "https://github.com/gruntjs/grunt-cli#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- "guifi-earth-https://github.com/jmendeth/guifi-earth/tarball/f3ee96835fd4fb0e3e12fadbd2cb782770d64854 " = nodeEnv.buildNodePackage {
- name = "guifi-earth";
- packageName = "guifi-earth";
- version = "0.2.1";
- src = fetchurl {
- name = "guifi-earth-0.2.1.tar.gz";
- url = https://codeload.github.com/jmendeth/guifi-earth/legacy.tar.gz/f3ee96835fd4fb0e3e12fadbd2cb782770d64854;
- sha256 = "a51a5beef55c14c68630275d51cf66c44a4462d1b20c0f08aef6d88a62ca077c";
- };
- dependencies = [
- sources."acorn-2.7.0"
- sources."acorn-globals-1.0.9"
- 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" // {
- dependencies = [
- sources."wordwrap-0.0.2"
- ];
- })
- 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"
- 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.10.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."is-promise-1.0.1"
- sources."promise-2.0.0"
- sources."source-map-0.1.43"
- sources."uglify-js-2.2.5"
- ];
- })
- (sources."uglify-js-2.8.29" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
- sources."uglify-to-browserify-1.0.2"
- sources."void-elements-2.0.1"
- sources."weak-map-1.0.5"
- sources."window-size-0.1.0"
- (sources."with-4.0.3" // {
- dependencies = [
- sources."acorn-1.2.2"
- ];
- })
- sources."wordwrap-0.0.3"
- sources."xml2js-0.4.19"
- sources."xmlbuilder-9.0.7"
- sources."yargs-3.10.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "See a representation of the Guifi.net network in Google Earth.";
- homepage = https://github.com/jmendeth/guifi-earth;
- };
- production = true;
- bypassCache = false;
- };
- gulp = nodeEnv.buildNodePackage {
- name = "gulp";
- packageName = "gulp";
- version = "3.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz";
- 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."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.1.1"
- sources."balanced-match-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."beeper-1.1.1"
- sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."cache-base-1.0.1"
- sources."chalk-1.1.3"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."clone-1.0.4"
- 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-2.0.2"
- sources."deprecated-0.0.1"
- sources."detect-file-1.0.0"
- sources."duplexer2-0.0.2"
- sources."end-of-stream-0.1.5"
- sources."escape-string-regexp-1.0.5"
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."expand-tilde-2.0.2"
- sources."extend-3.0.2"
- (sources."extend-shallow-3.0.2" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."fancy-log-1.3.2"
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."find-index-0.1.1"
- sources."findup-sync-2.0.0"
- sources."fined-1.1.0"
- sources."first-chunk-stream-1.0.0"
- sources."flagged-respawn-1.0.0"
- sources."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" // {
- dependencies = [
- sources."readable-stream-1.0.34"
- sources."through2-0.6.5"
- ];
- })
- sources."glob-watcher-0.0.6"
- sources."glob2base-0.0.12"
- sources."global-modules-1.0.0"
- sources."global-prefix-1.0.2"
- (sources."globule-0.1.0" // {
- dependencies = [
- sources."glob-3.1.21"
- sources."graceful-fs-1.2.3"
- sources."inherits-1.0.2"
- sources."minimatch-0.2.14"
- ];
- })
- sources."glogg-1.0.1"
- sources."graceful-fs-3.0.11"
- sources."gulp-util-3.0.8"
- sources."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" // {
- dependencies = [
- sources."kind-of-4.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-0.1.1"
- sources."is-extglob-2.1.1"
- sources."is-glob-3.1.0"
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."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.2"
- sources."isarray-0.0.1"
- sources."isexe-2.0.0"
- sources."isobject-3.0.1"
- sources."kind-of-6.0.2"
- sources."liftoff-2.5.0"
- sources."lodash-1.0.2"
- sources."lodash._basecopy-3.0.1"
- sources."lodash._basetostring-3.0.1"
- sources."lodash._basevalues-3.0.0"
- sources."lodash._getnative-3.9.1"
- sources."lodash._isiterateecall-3.0.9"
- sources."lodash._reescape-3.0.0"
- sources."lodash._reevaluate-3.0.0"
- sources."lodash._reinterpolate-3.0.0"
- sources."lodash._root-3.0.1"
- sources."lodash.escape-3.2.0"
- sources."lodash.isarguments-3.1.0"
- sources."lodash.isarray-3.0.4"
- sources."lodash.keys-3.1.2"
- sources."lodash.restparam-3.6.1"
- sources."lodash.template-3.6.2"
- sources."lodash.templatesettings-3.1.1"
- sources."lru-cache-2.7.3"
- sources."make-iterator-1.0.1"
- sources."map-cache-0.2.2"
- sources."map-visit-1.0.0"
- sources."micromatch-3.1.10"
- sources."minimatch-2.0.10"
- sources."minimist-1.2.0"
- (sources."mixin-deep-1.3.1" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."ms-2.0.0"
- sources."multipipe-0.1.2"
- sources."nanomatch-1.2.13"
- sources."natives-1.1.4"
- sources."object-assign-3.0.0"
- (sources."object-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
- sources."object-visit-1.0.1"
- sources."object.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.6"
- 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-2.0.0"
- sources."readable-stream-1.1.14"
- sources."rechoir-0.6.2"
- sources."regex-not-1.0.2"
- sources."repeat-element-1.1.2"
- sources."repeat-string-1.6.1"
- sources."replace-ext-0.0.1"
- sources."resolve-1.8.1"
- sources."resolve-dir-1.0.1"
- sources."resolve-url-0.2.1"
- sources."ret-0.1.15"
- sources."safe-buffer-5.1.2"
- sources."safe-regex-1.1.0"
- sources."semver-4.3.6"
- sources."sequencify-0.0.7"
- (sources."set-value-2.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."sigmund-1.0.1"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- (sources."snapdragon-util-3.0.1" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."source-map-0.5.7"
- sources."source-map-resolve-0.5.2"
- sources."source-map-url-0.4.0"
- sources."sparkles-1.0.1"
- sources."split-string-3.1.0"
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."stream-consume-0.1.1"
- 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" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."tildify-1.2.0"
- sources."time-stamp-1.1.0"
- (sources."to-object-path-0.3.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
- sources."unc-path-regex-0.1.2"
- (sources."union-value-1.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."set-value-0.4.3"
- ];
- })
- sources."unique-stream-1.0.0"
- (sources."unset-value-1.0.0" // {
- dependencies = [
- (sources."has-value-0.3.1" // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- })
- sources."has-values-0.1.4"
- sources."isarray-1.0.0"
- ];
- })
- sources."urix-0.1.0"
- sources."use-3.1.1"
- sources."user-home-1.1.1"
- sources."util-deprecate-1.0.2"
- sources."v8flags-2.1.1"
- sources."vinyl-0.5.3"
- (sources."vinyl-fs-0.3.14" // {
- dependencies = [
- sources."clone-0.2.0"
- sources."readable-stream-1.0.34"
- sources."through2-0.6.5"
- sources."vinyl-0.4.6"
- ];
- })
- sources."which-1.3.1"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "The streaming build system";
- homepage = http://gulpjs.com/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- hipache = nodeEnv.buildNodePackage {
- name = "hipache";
- packageName = "hipache";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hipache/-/hipache-0.3.1.tgz";
- sha1 = "e21764eafe6429ec8dc9377b55e1ca86799704d5";
- };
- dependencies = [
- sources."eventemitter3-3.1.0"
- sources."http-proxy-1.0.2"
- sources."lru-cache-2.5.2"
- sources."minimist-0.0.8"
- sources."redis-0.10.3"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Complete high-scaled reverse-proxy solution";
- homepage = https://github.com/dotcloud/hipache;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- htmlhint = nodeEnv.buildNodePackage {
- name = "htmlhint";
- packageName = "htmlhint";
- version = "0.9.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/htmlhint/-/htmlhint-0.9.13.tgz";
- sha1 = "08163cb1e6aa505048ebb0b41063a7ca07dc6c88";
- };
- dependencies = [
- sources."async-1.4.2"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- (sources."cli-0.6.6" // {
- dependencies = [
- sources."glob-3.2.11"
- 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."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."entities-1.1.1"
- ];
- })
- sources."domelementtype-1.3.0"
- sources."domhandler-2.3.0"
- sources."domutils-1.5.1"
- sources."entities-1.0.0"
- 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."isarray-0.0.1"
- (sources."jshint-2.8.0" // {
- dependencies = [
- 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 = {
- description = "A Static Code Analysis Tool for HTML";
- homepage = "https://github.com/yaniswang/HTMLHint#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- html-minifier = nodeEnv.buildNodePackage {
- name = "html-minifier";
- packageName = "html-minifier";
- version = "3.5.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.19.tgz";
- sha512 = "Qr2JC9nsjK8oCrEmuB430ZIA8YWbF3D5LSjywD75FTuXmeqacwHgIM8wp3vHYzzPbklSjp53RdmDuzR4ub2HzA==";
- };
- dependencies = [
- sources."camel-case-3.0.0"
- sources."clean-css-4.1.11"
- sources."commander-2.16.0"
- sources."he-1.1.1"
- sources."lower-case-1.1.4"
- sources."no-case-2.3.2"
- sources."param-case-2.1.1"
- sources."relateurl-0.2.7"
- sources."source-map-0.5.7"
- (sources."uglify-js-3.4.7" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."upper-case-1.1.3"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Highly configurable, well-tested, JavaScript-based HTML minifier.";
- homepage = https://kangax.github.io/html-minifier/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- ionic = nodeEnv.buildNodePackage {
- name = "ionic";
- packageName = "ionic";
- version = "4.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/ionic/-/ionic-4.0.6.tgz";
- sha512 = "OaRISaUCxW2TXYinZX8LZPyYEhTxznMV3V/TFGpm9nPma9EmZ9zOqDxceIgfnQCVaqfqFYEhoJ1MTpgLkQBb0Q==";
- };
- dependencies = [
- sources."@ionic/cli-framework-1.0.5"
- sources."@ionic/cli-utils-2.0.6"
- sources."@ionic/discover-1.0.3"
- sources."@types/cross-spawn-6.0.0"
- sources."@types/debug-0.0.30"
- sources."@types/events-1.2.0"
- sources."@types/glob-5.0.35"
- sources."@types/inquirer-0.0.42"
- sources."@types/klaw-2.1.1"
- sources."@types/lodash-4.14.116"
- sources."@types/make-dir-1.0.3"
- sources."@types/minimatch-3.0.3"
- sources."@types/minimist-1.2.0"
- sources."@types/ncp-2.0.1"
- sources."@types/node-6.0.116"
- sources."@types/rimraf-2.0.2"
- sources."@types/rx-4.1.1"
- sources."@types/rx-core-4.0.3"
- sources."@types/rx-core-binding-4.0.4"
- sources."@types/rx-lite-4.0.5"
- sources."@types/rx-lite-aggregates-4.0.3"
- sources."@types/rx-lite-async-4.0.2"
- sources."@types/rx-lite-backpressure-4.0.3"
- sources."@types/rx-lite-coincidence-4.0.3"
- sources."@types/rx-lite-experimental-4.0.1"
- sources."@types/rx-lite-joinpatterns-4.0.1"
- sources."@types/rx-lite-testing-4.0.1"
- sources."@types/rx-lite-time-4.0.3"
- sources."@types/rx-lite-virtualtime-4.0.3"
- sources."@types/string-width-2.0.0"
- sources."@types/strip-ansi-3.0.0"
- sources."@types/through-0.0.29"
- sources."@types/untildify-3.0.0"
- sources."@types/wrap-ansi-3.0.0"
- sources."@types/write-file-atomic-2.1.1"
- sources."agent-base-4.2.1"
- sources."ansi-align-2.0.0"
- sources."ansi-escapes-3.1.0"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- sources."ast-types-0.11.5"
- sources."async-limiter-1.0.0"
- sources."asynckit-0.4.0"
- sources."balanced-match-1.0.0"
- sources."boxen-1.3.0"
- sources."brace-expansion-1.1.11"
- sources."bytes-3.0.0"
- sources."camelcase-4.1.0"
- sources."capture-stack-trace-1.0.0"
- sources."chalk-2.4.1"
- sources."chardet-0.5.0"
- sources."chownr-1.0.1"
- sources."ci-info-1.1.3"
- sources."cli-boxes-1.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."co-4.6.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."combined-stream-1.0.6"
- sources."component-emitter-1.2.1"
- sources."concat-map-0.0.1"
- sources."configstore-3.1.2"
- sources."cookiejar-2.1.2"
- 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."data-uri-to-buffer-1.2.0"
- sources."debug-3.1.0"
- sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
- sources."degenerator-1.0.4"
- sources."delayed-stream-1.0.0"
- sources."depd-1.1.2"
- sources."diff-3.5.0"
- sources."dot-prop-4.2.0"
- sources."duplexer2-0.1.4"
- sources."duplexer3-0.1.4"
- sources."elementtree-0.1.7"
- sources."es6-promise-4.2.4"
- sources."es6-promisify-5.0.0"
- sources."escape-string-regexp-1.0.5"
- sources."escodegen-1.11.0"
- sources."esprima-3.1.3"
- sources."estraverse-4.2.0"
- sources."esutils-2.0.2"
- sources."execa-0.7.0"
- sources."extend-3.0.2"
- sources."external-editor-3.0.1"
- sources."fast-levenshtein-2.0.6"
- sources."figures-2.0.0"
- sources."file-uri-to-path-1.0.0"
- sources."form-data-2.3.2"
- sources."formidable-1.2.1"
- sources."fs-minipass-1.2.5"
- sources."fs.realpath-1.0.0"
- (sources."ftp-0.3.10" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."get-stream-3.0.0"
- (sources."get-uri-2.0.2" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."glob-7.1.2"
- sources."global-dirs-0.1.1"
- sources."got-6.7.1"
- sources."graceful-fs-4.1.11"
- sources."has-flag-3.0.0"
- sources."http-errors-1.6.3"
- sources."http-proxy-agent-2.1.0"
- sources."https-proxy-agent-2.2.1"
- sources."iconv-lite-0.4.23"
- 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-6.1.0"
- sources."ip-1.1.5"
- sources."is-ci-1.1.0"
- 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-wsl-1.1.0"
- sources."isarray-1.0.0"
- sources."isexe-2.0.0"
- sources."klaw-3.0.0"
- sources."latest-version-3.1.0"
- (sources."leek-0.0.24" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."levn-0.3.0"
- sources."lodash-4.17.10"
- 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."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.3"
- sources."macos-release-1.1.0"
- sources."make-dir-1.3.0"
- sources."methods-1.1.2"
- sources."mime-1.6.0"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- (sources."minipass-2.3.3" // {
- dependencies = [
- sources."yallist-3.0.2"
- ];
- })
- sources."minizlib-1.1.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."ms-2.0.0"
- sources."mute-stream-0.0.7"
- sources."ncp-2.0.0"
- sources."netmask-1.0.6"
- sources."npm-run-path-2.0.2"
- sources."once-1.4.0"
- sources."onetime-2.0.1"
- sources."opn-5.3.0"
- sources."optionator-0.8.2"
- sources."os-name-2.0.1"
- sources."os-tmpdir-1.0.2"
- sources."p-finally-1.0.0"
- sources."pac-proxy-agent-2.0.2"
- sources."pac-resolver-3.0.0"
- sources."package-json-4.0.1"
- 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."prelude-ls-1.1.2"
- sources."prepend-http-1.0.4"
- sources."process-nextick-args-2.0.0"
- sources."proxy-agent-2.3.1"
- sources."proxy-from-env-1.0.0"
- sources."pseudomap-1.0.2"
- sources."qs-6.5.2"
- sources."raw-body-2.3.3"
- sources."rc-1.2.8"
- sources."readable-stream-2.3.6"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."restore-cursor-2.0.0"
- sources."rimraf-2.6.2"
- sources."rsvp-3.6.2"
- sources."run-async-2.3.0"
- sources."rxjs-6.2.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."sax-1.1.4"
- sources."semver-5.5.0"
- sources."semver-diff-2.1.0"
- sources."setprototypeof-1.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."smart-buffer-1.1.15"
- sources."socks-1.1.10"
- sources."socks-proxy-agent-3.0.1"
- sources."source-map-0.6.1"
- sources."split2-2.2.0"
- sources."ssh-config-1.1.3"
- sources."statuses-1.5.0"
- sources."stream-combiner2-1.1.1"
- sources."string-width-2.1.1"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-4.0.0"
- sources."strip-eof-1.0.0"
- sources."strip-json-comments-2.0.1"
- sources."superagent-3.8.3"
- sources."superagent-proxy-1.0.3"
- sources."supports-color-5.4.0"
- (sources."tar-4.4.6" // {
- dependencies = [
- sources."yallist-3.0.2"
- ];
- })
- sources."term-size-1.2.0"
- sources."through-2.3.8"
- sources."through2-2.0.3"
- sources."thunkify-2.1.2"
- sources."timed-out-4.0.1"
- sources."tmp-0.0.33"
- sources."tree-kill-1.2.0"
- sources."tslib-1.9.3"
- sources."type-check-0.3.2"
- sources."unique-string-1.0.0"
- sources."unpipe-1.0.0"
- sources."untildify-3.0.3"
- sources."unzip-response-2.0.1"
- sources."update-notifier-2.5.0"
- sources."url-parse-lax-1.0.0"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."which-1.3.1"
- sources."widest-line-2.0.0"
- sources."win-release-1.1.1"
- sources."wordwrap-1.0.0"
- sources."wrap-ansi-3.0.1"
- sources."wrappy-1.0.2"
- sources."write-file-atomic-2.3.0"
- sources."ws-6.0.0"
- sources."xdg-basedir-3.0.0"
- sources."xregexp-2.0.0"
- sources."xtend-4.0.1"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A tool for creating and developing Ionic Framework mobile apps.";
- homepage = https://ionicframework.com/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- ios-deploy = nodeEnv.buildNodePackage {
- name = "ios-deploy";
- packageName = "ios-deploy";
- version = "1.9.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ios-deploy/-/ios-deploy-1.9.3.tgz";
- sha512 = "i/8DxXzcL2feqqL6DjUfjqUHyWVmHYNkzZFTyf6yoC4glrI3jQ+8Hhg63vzw/5OoFXN7OyXqjkshAj9c1EsVSw==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "launch iOS apps iOS devices from the command line (Xcode 7)";
- homepage = "https://github.com/ios-control/ios-deploy#readme";
- license = "GPLv3";
- };
- production = true;
- bypassCache = false;
- };
- istanbul = nodeEnv.buildNodePackage {
- name = "istanbul";
- packageName = "istanbul";
- version = "0.4.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz";
- sha1 = "65c7d73d4c4da84d4f3ac310b918fb0b8033733b";
- };
- dependencies = [
- sources."abbrev-1.0.9"
- sources."align-text-0.1.4"
- sources."amdefine-1.0.1"
- sources."argparse-1.0.10"
- sources."async-1.5.2"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."camelcase-1.2.1"
- sources."center-align-0.1.3"
- (sources."cliui-2.1.0" // {
- dependencies = [
- sources."wordwrap-0.0.2"
- ];
- })
- 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 = [
- sources."source-map-0.4.4"
- ];
- })
- 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.12.0" // {
- dependencies = [
- sources."esprima-4.0.1"
- ];
- })
- 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"
- ];
- })
- sources."nopt-3.0.6"
- sources."once-1.4.0"
- (sources."optimist-0.6.1" // {
- dependencies = [
- sources."wordwrap-0.0.3"
- ];
- })
- 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."uglify-to-browserify-1.0.2"
- sources."which-1.3.1"
- sources."window-size-0.1.0"
- sources."wordwrap-1.0.0"
- sources."wrappy-1.0.2"
- sources."yargs-3.10.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests ";
- homepage = "https://github.com/gotwarlost/istanbul#readme";
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = false;
- };
- imapnotify = nodeEnv.buildNodePackage {
- name = "imapnotify";
- packageName = "imapnotify";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/imapnotify/-/imapnotify-0.4.1.tgz";
- sha512 = "GjAGPnMmGEpnyDOmyjE5TGEcUIzz/rTDgw+pV8EOcLOhYBIw5Ol7JLi1vJT/WwlRKFbGRiEvIvjyCibLzaNiHQ==";
- };
- dependencies = [
- sources."async-0.2.10"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."bunyan-1.8.12"
- sources."colors-0.6.2"
- sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
- sources."cycle-1.0.3"
- sources."dtrace-provider-0.8.7"
- sources."eyes-0.1.8"
- sources."glob-6.0.4"
- sources."imap-0.8.19"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."isarray-0.0.1"
- sources."isstream-0.1.2"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.10"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."moment-2.22.2"
- sources."mv-2.1.1"
- sources."nan-2.10.0"
- sources."ncp-2.0.0"
- sources."once-1.4.0"
- sources."optimist-0.6.1"
- sources."path-is-absolute-1.0.1"
- sources."pkginfo-0.3.1"
- sources."printf-0.2.5"
- sources."readable-stream-1.1.14"
- sources."rimraf-2.4.5"
- sources."safe-json-stringify-1.2.0"
- sources."semver-5.3.0"
- sources."stack-trace-0.0.10"
- sources."string_decoder-0.10.31"
- sources."utf7-1.0.2"
- sources."winston-0.8.3"
- sources."wordwrap-0.0.3"
- sources."wrappy-1.0.2"
- sources."xenvar-0.5.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Execute scripts on new messages using IDLE imap command";
- homepage = "https://github.com/a-sk/node-imapnotify#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- jake = nodeEnv.buildNodePackage {
- name = "jake";
- packageName = "jake";
- version = "8.0.18";
- src = fetchurl {
- url = "https://registry.npmjs.org/jake/-/jake-8.0.18.tgz";
- sha512 = "KSF3QH/uNR7pKcWgBuS7U1nYoYdcqitLEB86nvIcYztiiDsePkn2/JoSutiKP77O1MTNlbhTiNHorIrlpyy4sA==";
- };
- dependencies = [
- sources."ansi-styles-1.0.0"
- sources."async-0.9.2"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."chalk-0.4.0"
- sources."concat-map-0.0.1"
- (sources."filelist-0.0.6" // {
- dependencies = [
- sources."utilities-0.0.37"
- ];
- })
- sources."has-color-0.1.7"
- sources."minimatch-3.0.4"
- sources."strip-ansi-0.1.1"
- sources."utilities-1.0.5"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "JavaScript build tool, similar to Make or Rake";
- homepage = "https://github.com/jakejs/jake#readme";
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- javascript-typescript-langserver = nodeEnv.buildNodePackage {
- name = "javascript-typescript-langserver";
- packageName = "javascript-typescript-langserver";
- version = "2.9.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.9.4.tgz";
- sha512 = "kJTsyRj6KZZ5yVvoFyaxMkBOpiJbQeaFXihDJqWlKIYLwBL1SbkBdFOWPbfY9hf7N7gT6ifsqAhYberaqBZ66A==";
- };
- dependencies = [
- sources."ansi-color-0.2.1"
- sources."ansi-styles-3.2.1"
- sources."any-promise-1.3.0"
- sources."assertion-error-1.1.0"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."bufrw-1.2.1"
- sources."chai-4.1.2"
- sources."chai-as-promised-7.1.1"
- sources."chalk-2.4.1"
- sources."check-error-1.0.2"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."commander-2.17.1"
- 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-3.0.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."iterare-0.0.8"
- (sources."jaeger-client-3.11.0" // {
- dependencies = [
- sources."opentracing-0.13.0"
- ];
- })
- sources."lodash-4.17.10"
- 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.3.0"
- sources."once-1.4.0"
- sources."opentracing-0.14.3"
- sources."path-is-absolute-1.0.1"
- sources."pathval-1.1.0"
- sources."rxjs-5.5.11"
- sources."semaphore-async-await-1.5.1"
- sources."string-similarity-1.2.0"
- sources."string-template-0.2.1"
- sources."supports-color-5.4.0"
- sources."symbol-observable-1.0.1"
- sources."thenify-3.3.0"
- sources."thenify-all-1.6.0"
- sources."thriftrw-3.11.2"
- sources."type-detect-4.0.8"
- sources."typescript-2.8.3"
- sources."uuid-3.3.2"
- sources."vscode-jsonrpc-3.6.2"
- sources."vscode-languageserver-4.4.0"
- sources."vscode-languageserver-protocol-3.10.0"
- sources."vscode-languageserver-types-3.10.0"
- sources."vscode-uri-1.0.5"
- sources."wrappy-1.0.2"
- sources."xorshift-0.2.1"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Implementation of the Language Server Protocol for JavaScript and TypeScript";
- homepage = https://github.com/sourcegraph/javascript-typescript-langserver;
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- jayschema = nodeEnv.buildNodePackage {
- name = "jayschema";
- packageName = "jayschema";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/jayschema/-/jayschema-0.3.2.tgz";
- sha512 = "UHLk2ya7ItaLjmMVJWGE9b5t7jD3DZfmURdmz+rOVSiSYnrCtgcxvNXuQavcK7bhUBlXFmrXwRAPXkCMDxxANg==";
- };
- dependencies = [
- sources."when-3.4.6"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A comprehensive JSON Schema validator for Node.js";
- homepage = https://github.com/natesilva/jayschema;
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = false;
- };
- jsdoc = nodeEnv.buildNodePackage {
- name = "jsdoc";
- packageName = "jsdoc";
- version = "3.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.5.5.tgz";
- sha512 = "6PxB65TAU4WO0Wzyr/4/YhlGovXl0EVYfpKbpSroSj0qBxT4/xod/l40Opkm38dRHRdQgdeY836M0uVnJQG7kg==";
- };
- dependencies = [
- sources."babylon-7.0.0-beta.19"
- sources."bluebird-3.5.1"
- sources."catharsis-0.8.9"
- 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.19"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- (sources."requizzle-0.2.1" // {
- dependencies = [
- sources."underscore-1.6.0"
- ];
- })
- sources."strip-json-comments-2.0.1"
- sources."taffydb-2.6.2"
- sources."underscore-1.8.3"
- (sources."underscore-contrib-0.3.0" // {
- dependencies = [
- sources."underscore-1.6.0"
- ];
- })
- sources."xmlcreate-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "An API documentation generator for JavaScript.";
- homepage = "https://github.com/jsdoc3/jsdoc#readme";
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- jshint = nodeEnv.buildNodePackage {
- name = "jshint";
- packageName = "jshint";
- version = "2.9.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/jshint/-/jshint-2.9.6.tgz";
- sha512 = "KO9SIAKTlJQOM4lE64GQUtGBRpTOuvbrRrSZw3AhUxMNG266nX9hK2cKA4SBhXOj0irJGyNyGSLT62HGOVDEOA==";
- };
- dependencies = [
- sources."ajv-5.5.2"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."async-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."brace-expansion-1.1.11"
- sources."buffer-from-1.1.1"
- sources."caseless-0.12.0"
- sources."cli-1.0.1"
- sources."co-4.6.0"
- sources."colors-1.0.3"
- sources."combined-stream-1.0.6"
- sources."concat-map-0.0.1"
- (sources."concat-stream-1.6.2" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."console-browserify-1.1.0"
- sources."core-util-is-1.0.2"
- sources."cycle-1.0.3"
- sources."dashdash-1.14.1"
- sources."date-now-0.1.4"
- sources."debug-2.6.9"
- sources."delayed-stream-1.0.0"
- (sources."dom-serializer-0.1.0" // {
- dependencies = [
- sources."domelementtype-1.1.3"
- sources."entities-1.1.1"
- ];
- })
- sources."domelementtype-1.3.0"
- sources."domhandler-2.3.0"
- sources."domutils-1.5.1"
- sources."ecc-jsbn-0.1.2"
- sources."entities-1.0.0"
- sources."es6-promise-4.2.4"
- sources."exit-0.1.2"
- sources."extend-3.0.2"
- sources."extract-zip-1.6.7"
- sources."extsprintf-1.3.0"
- sources."eyes-0.1.8"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."fd-slicer-1.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."fs-extra-1.0.0"
- sources."fs.realpath-1.0.0"
- 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."hasha-2.2.0"
- sources."htmlparser2-3.8.3"
- sources."http-signature-1.2.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- 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."jsonfile-2.4.0"
- sources."jsprim-1.4.1"
- sources."kew-0.7.0"
- sources."klaw-1.3.1"
- sources."lodash-4.17.10"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."ms-2.0.0"
- sources."oauth-sign-0.8.2"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."pend-1.2.0"
- sources."performance-now-2.1.0"
- sources."phantom-4.0.12"
- sources."phantomjs-prebuilt-2.1.16"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- sources."process-nextick-args-2.0.0"
- sources."progress-1.1.8"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."readable-stream-1.1.14"
- sources."request-2.87.0"
- sources."request-progress-2.0.1"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."shelljs-0.3.0"
- sources."split-1.0.1"
- sources."sshpk-1.14.2"
- sources."stack-trace-0.0.10"
- sources."string_decoder-0.10.31"
- sources."strip-json-comments-1.0.4"
- sources."throttleit-1.0.0"
- sources."through-2.3.8"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."typedarray-0.0.6"
- sources."unicode-5.2.0-0.7.5"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."verror-1.10.0"
- sources."which-1.3.1"
- sources."winston-2.4.3"
- sources."wrappy-1.0.2"
- sources."yauzl-2.4.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Static analysis tool for JavaScript";
- homepage = http://jshint.com/;
- license = "(MIT AND JSON)";
- };
- production = true;
- bypassCache = false;
- };
- json = nodeEnv.buildNodePackage {
- name = "json";
- packageName = "json";
- version = "9.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/json/-/json-9.0.6.tgz";
- sha1 = "7972c2a5a48a42678db2730c7c2c4ee6e4e24585";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "a 'json' command for massaging and processing JSON on the command line";
- homepage = "https://github.com/trentm/json#readme";
- };
- production = true;
- bypassCache = false;
- };
- js-beautify = nodeEnv.buildNodePackage {
- name = "js-beautify";
- packageName = "js-beautify";
- version = "1.7.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.7.5.tgz";
- sha512 = "9OhfAqGOrD7hoQBLJMTA+BKuKmoEtTJXzZ7WDF/9gvjtey1koVLuZqIY6c51aPDjbNdNtIXAkiWKVhziawE9Og==";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."bluebird-3.5.1"
- sources."commander-2.17.1"
- 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."pseudomap-1.0.2"
- sources."semver-5.5.0"
- sources."sigmund-1.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "jsbeautifier.org for node";
- homepage = http://jsbeautifier.org/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- jsonlint = nodeEnv.buildNodePackage {
- name = "jsonlint";
- packageName = "jsonlint";
- version = "1.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.3.tgz";
- sha512 = "jMVTMzP+7gU/IyC6hvKyWpUU8tmTkK5b3BPNuMI9U8Sit+YAWLlZwB6Y6YrdCxfg2kNz05p3XY3Bmm4m26Nv3A==";
- };
- dependencies = [
- sources."JSV-4.0.2"
- sources."ansi-styles-1.0.0"
- sources."chalk-0.4.0"
- sources."has-color-0.1.7"
- sources."nomnom-1.8.1"
- sources."strip-ansi-0.1.1"
- sources."underscore-1.6.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Validate JSON";
- homepage = http://zaach.github.com/jsonlint/;
- };
- production = true;
- bypassCache = false;
- };
- jsontool = nodeEnv.buildNodePackage {
- name = "jsontool";
- packageName = "jsontool";
- version = "7.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsontool/-/jsontool-7.0.2.tgz";
- sha1 = "e29d3d1b0766ba4e179a18a96578b904dca43207";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "a 'json' command for massaging JSON on the command line";
- homepage = https://github.com/trentm/json;
- };
- production = true;
- bypassCache = false;
- };
- json-diff = nodeEnv.buildNodePackage {
- name = "json-diff";
- packageName = "json-diff";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-diff/-/json-diff-0.5.2.tgz";
- sha512 = "N7oapTQdD4rLMUtA7d1HATCPY/BpHuSNL1mhvIuoS0u5NideDvyR+gB/ntXB7ejFz/LM0XzPLNUJQcC68n5sBw==";
- };
- dependencies = [
- sources."cli-color-0.1.7"
- sources."difflib-0.2.4"
- sources."dreamopt-0.6.0"
- sources."es5-ext-0.8.2"
- sources."heap-0.2.6"
- sources."wordwrap-1.0.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "JSON diff";
- homepage = https://github.com/andreyvit/json-diff;
- };
- production = true;
- bypassCache = false;
- };
- json-refs = nodeEnv.buildNodePackage {
- name = "json-refs";
- packageName = "json-refs";
- version = "3.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-refs/-/json-refs-3.0.8.tgz";
- sha512 = "Yd6c51emldJK8f0rRzjg+5mZOthqTuIHdKxagRtbIfBAiycElEyOOdI0/idMYQoJFE2T/Rd3l5TfeDSHL81VdA==";
- };
- dependencies = [
- sources."argparse-1.0.10"
- sources."asynckit-0.4.0"
- sources."combined-stream-1.0.6"
- sources."commander-2.11.0"
- sources."component-emitter-1.2.1"
- sources."cookiejar-2.1.2"
- sources."core-util-is-1.0.2"
- sources."debug-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."esprima-4.0.1"
- sources."extend-3.0.2"
- sources."form-data-2.3.2"
- sources."formidable-1.2.1"
- sources."graphlib-2.1.5"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."js-yaml-3.12.0"
- sources."lodash-4.17.10"
- sources."methods-1.1.2"
- sources."mime-1.6.0"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."ms-2.0.0"
- sources."native-promise-only-0.8.1"
- sources."path-loader-1.0.6"
- sources."process-nextick-args-2.0.0"
- sources."punycode-2.1.1"
- sources."qs-6.5.2"
- sources."readable-stream-2.3.6"
- sources."safe-buffer-5.1.2"
- sources."slash-1.0.0"
- sources."sprintf-js-1.0.3"
- sources."string_decoder-1.1.1"
- sources."superagent-3.8.3"
- sources."uri-js-3.0.2"
- sources."util-deprecate-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Various utilities for JSON References (http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03).";
- homepage = https://github.com/whitlockjc/json-refs;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- json-server = nodeEnv.buildNodePackage {
- name = "json-server";
- packageName = "json-server";
- version = "0.14.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-server/-/json-server-0.14.0.tgz";
- sha512 = "8RVRAb1TO6LlCny6+8GC+sXDsESYv7gv7fSLdVANklVt866I416/7Z5fdqrtzSru92nyreddgavbEk8pjqcWoA==";
- };
- dependencies = [
- sources."accepts-1.3.5"
- sources."ajv-5.5.2"
- sources."ansi-align-2.0.0"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- sources."array-flatten-1.1.1"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- (sources."basic-auth-2.0.0" // {
- dependencies = [
- sources."safe-buffer-5.1.1"
- ];
- })
- sources."bcrypt-pbkdf-1.0.2"
- sources."body-parser-1.18.3"
- 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.4.1"
- sources."ci-info-1.1.3"
- sources."cli-boxes-1.0.0"
- sources."cliui-4.1.0"
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."combined-stream-1.0.6"
- sources."compressible-2.0.14"
- sources."compression-1.7.3"
- sources."configstore-3.1.2"
- 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."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.6.0"
- 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.2"
- 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.3" // {
- dependencies = [
- sources."body-parser-1.18.2"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."iconv-lite-0.4.19"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."safe-buffer-5.1.1"
- sources."statuses-1.4.0"
- ];
- })
- (sources."express-urlrewrite-1.2.0" // {
- dependencies = [
- sources."path-to-regexp-1.7.0"
- ];
- })
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- (sources."finalhandler-1.1.1" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."find-up-2.1.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."forwarded-0.1.2"
- sources."fresh-0.5.2"
- sources."get-caller-file-1.0.3"
- 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-3.0.0"
- sources."http-errors-1.6.3"
- sources."http-signature-1.2.0"
- sources."iconv-lite-0.4.23"
- 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.8.0"
- sources."is-ci-1.1.0"
- 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.4.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.10"
- sources."lodash-id-0.14.0"
- sources."lowdb-0.15.5"
- sources."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.3"
- sources."make-dir-1.3.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.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimist-1.2.0"
- sources."morgan-1.9.0"
- sources."ms-2.0.0"
- sources."nanoid-1.2.0"
- 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.3.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.1.1"
- sources."pluralize-7.0.0"
- sources."prepend-http-1.0.4"
- sources."proxy-addr-2.0.4"
- sources."pseudomap-1.0.2"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."range-parser-1.2.0"
- sources."raw-body-2.3.3"
- sources."rc-1.2.8"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."request-2.87.0"
- sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- sources."semver-compare-1.0.0"
- sources."semver-diff-2.1.0"
- (sources."send-0.16.2" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."serve-static-1.13.2"
- sources."server-destroy-1.0.1"
- sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.0"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- sources."sshpk-1.14.2"
- sources."statuses-1.5.0"
- sources."steno-0.4.4"
- 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-5.4.0"
- sources."term-size-1.2.0"
- sources."timed-out-4.0.1"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- sources."unique-string-1.0.0"
- sources."unpipe-1.0.0"
- sources."unzip-response-2.0.1"
- sources."update-notifier-2.5.0"
- sources."url-parse-lax-1.0.0"
- sources."utils-merge-1.0.1"
- sources."uuid-3.3.2"
- sources."vary-1.1.2"
- sources."verror-1.10.0"
- sources."which-1.3.1"
- sources."which-module-2.0.0"
- sources."widest-line-2.0.0"
- (sources."wrap-ansi-2.1.0" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."is-fullwidth-code-point-1.0.0"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- ];
- })
- sources."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"
- sources."yargs-parser-8.1.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Serves JSON files through REST routes.";
- homepage = https://github.com/typicode/json-server;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- js-yaml = nodeEnv.buildNodePackage {
- name = "js-yaml";
- packageName = "js-yaml";
- version = "3.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz";
- sha512 = "PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==";
- };
- dependencies = [
- sources."argparse-1.0.10"
- sources."esprima-4.0.1"
- sources."sprintf-js-1.0.3"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "YAML 1.2 parser and serializer";
- homepage = https://github.com/nodeca/js-yaml;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- karma = nodeEnv.buildNodePackage {
- name = "karma";
- packageName = "karma";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/karma/-/karma-3.0.0.tgz";
- sha512 = "ZTjyuDXVXhXsvJ1E4CnZzbCjSxD6sEdzEsFYogLuZM0yqvg/mgz+O+R1jb0J7uAQeuzdY8kJgx6hSNXLwFuHIQ==";
- };
- dependencies = [
- sources."accepts-1.3.5"
- sources."after-0.8.2"
- sources."anymatch-2.0.0"
- sources."arr-diff-4.0.0"
- sources."arr-flatten-1.1.0"
- sources."arr-union-3.1.0"
- sources."array-slice-0.2.3"
- sources."array-unique-0.3.2"
- sources."arraybuffer.slice-0.0.7"
- sources."assign-symbols-1.0.0"
- sources."async-each-1.0.1"
- sources."async-limiter-1.0.0"
- sources."atob-2.1.1"
- sources."backo2-1.0.2"
- sources."balanced-match-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."base64-arraybuffer-0.1.5"
- sources."base64id-1.0.0"
- sources."better-assert-1.0.2"
- sources."binary-extensions-1.11.0"
- sources."blob-0.0.4"
- sources."bluebird-3.5.1"
- sources."body-parser-1.18.3"
- sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-fill-1.0.0"
- sources."bytes-3.0.0"
- sources."cache-base-1.0.1"
- sources."callsite-1.0.0"
- sources."chokidar-2.0.4"
- sources."circular-json-0.5.5"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."collection-visit-1.0.0"
- sources."colors-1.3.1"
- sources."combine-lists-1.0.1"
- 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."connect-3.6.6"
- sources."content-type-1.0.4"
- sources."cookie-0.3.1"
- sources."copy-descriptor-0.1.1"
- sources."core-js-2.5.7"
- sources."core-util-is-1.0.2"
- sources."custom-event-1.0.1"
- sources."date-format-1.2.0"
- sources."debug-2.6.9"
- sources."decode-uri-component-0.2.0"
- sources."define-property-2.0.2"
- sources."depd-1.1.2"
- sources."di-0.0.1"
- sources."dom-serialize-2.2.1"
- sources."ee-first-1.1.1"
- sources."encodeurl-1.0.2"
- (sources."engine.io-3.2.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."engine.io-client-3.2.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."engine.io-parser-2.1.2"
- sources."ent-2.2.0"
- sources."escape-html-1.0.3"
- sources."eventemitter3-3.1.0"
- (sources."expand-braces-0.1.2" // {
- dependencies = [
- sources."array-unique-0.2.1"
- sources."braces-0.1.5"
- ];
- })
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."expand-range-0.1.1" // {
- dependencies = [
- sources."is-number-0.1.1"
- sources."repeat-string-0.2.2"
- ];
- })
- sources."extend-3.0.2"
- sources."extend-shallow-3.0.2"
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- (sources."finalhandler-1.1.0" // {
- dependencies = [
- sources."statuses-1.3.1"
- ];
- })
- (sources."follow-redirects-1.5.2" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."for-in-1.0.2"
- sources."fragment-cache-0.2.1"
- sources."fs.realpath-1.0.0"
- sources."fsevents-1.2.4"
- sources."get-value-2.0.6"
- sources."glob-7.1.2"
- (sources."glob-parent-3.1.0" // {
- dependencies = [
- sources."is-glob-3.1.0"
- ];
- })
- sources."graceful-fs-4.1.11"
- (sources."has-binary2-1.0.3" // {
- dependencies = [
- sources."isarray-2.0.1"
- ];
- })
- sources."has-cors-1.1.0"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."http-errors-1.6.3"
- sources."http-proxy-1.17.0"
- sources."iconv-lite-0.4.23"
- sources."indexof-0.0.1"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."is-accessor-descriptor-1.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-buffer-1.1.6"
- sources."is-data-descriptor-1.0.0"
- sources."is-descriptor-1.0.2"
- sources."is-extendable-1.0.1"
- sources."is-extglob-2.1.1"
- sources."is-glob-4.0.0"
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-plain-object-2.0.4"
- sources."is-windows-1.0.2"
- sources."isarray-1.0.0"
- sources."isbinaryfile-3.0.3"
- sources."isobject-3.0.1"
- sources."kind-of-6.0.2"
- sources."lodash-4.17.10"
- sources."lodash.debounce-4.0.8"
- (sources."log4js-3.0.4" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."lru-cache-2.2.4"
- sources."map-cache-0.2.2"
- sources."map-visit-1.0.0"
- sources."media-typer-0.3.0"
- sources."micromatch-3.1.10"
- sources."mime-2.3.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mixin-deep-1.3.1"
- sources."mkdirp-0.5.1"
- sources."ms-2.0.0"
- sources."nan-2.10.0"
- sources."nanomatch-1.2.13"
- sources."negotiator-0.6.1"
- sources."normalize-path-2.1.1"
- sources."object-component-0.0.3"
- (sources."object-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
- sources."object-visit-1.0.1"
- sources."object.pick-1.3.0"
- sources."on-finished-2.3.0"
- sources."once-1.4.0"
- sources."optimist-0.6.1"
- sources."os-tmpdir-1.0.2"
- sources."parseqs-0.0.5"
- sources."parseuri-0.0.5"
- sources."parseurl-1.3.2"
- sources."pascalcase-0.1.1"
- sources."path-dirname-1.0.2"
- sources."path-is-absolute-1.0.1"
- sources."posix-character-classes-0.1.1"
- sources."process-nextick-args-2.0.0"
- sources."qjobs-1.2.0"
- sources."qs-6.5.2"
- sources."range-parser-1.2.0"
- sources."raw-body-2.3.3"
- sources."readable-stream-2.3.6"
- sources."readdirp-2.1.0"
- sources."regex-not-1.0.2"
- 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."resolve-url-0.2.1"
- sources."ret-0.1.15"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- sources."safe-regex-1.1.0"
- sources."safer-buffer-2.1.2"
- sources."set-immediate-shim-1.0.1"
- (sources."set-value-2.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- sources."setprototypeof-1.1.0"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- sources."source-map-0.5.7"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- (sources."snapdragon-util-3.0.1" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."socket.io-2.1.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."socket.io-adapter-1.1.1"
- (sources."socket.io-client-2.1.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."socket.io-parser-3.2.0" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."isarray-2.0.1"
- ];
- })
- sources."source-map-0.6.1"
- sources."source-map-resolve-0.5.2"
- sources."source-map-url-0.4.0"
- sources."split-string-3.1.0"
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."statuses-1.5.0"
- (sources."streamroller-0.7.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."string_decoder-1.1.1"
- sources."tmp-0.0.33"
- sources."to-array-0.1.4"
- (sources."to-object-path-0.3.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
- sources."type-is-1.6.16"
- sources."ultron-1.1.1"
- (sources."union-value-1.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- sources."set-value-0.4.3"
- ];
- })
- sources."unpipe-1.0.0"
- (sources."unset-value-1.0.0" // {
- dependencies = [
- (sources."has-value-0.3.1" // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- })
- sources."has-values-0.1.4"
- ];
- })
- sources."upath-1.1.0"
- sources."urix-0.1.0"
- sources."use-3.1.1"
- sources."useragent-2.2.1"
- sources."util-deprecate-1.0.2"
- sources."utils-merge-1.0.1"
- sources."void-elements-2.0.1"
- sources."wordwrap-0.0.3"
- sources."wrappy-1.0.2"
- sources."ws-3.3.3"
- sources."xmlhttprequest-ssl-1.5.5"
- sources."yeast-0.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Spectacular Test Runner for JavaScript.";
- homepage = http://karma-runner.github.io/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- "kibana-authentication-proxy-git://github.com/fangli/kibana-authentication-proxy.git" = nodeEnv.buildNodePackage {
- name = "kibana-authentication-proxy";
- packageName = "kibana-authentication-proxy";
- version = "1.1.0";
- src = fetchgit {
- url = "git://github.com/fangli/kibana-authentication-proxy.git";
- rev = "0c0173b0cb51b392b7fc04d0cc728ffb64671ef3";
- sha256 = "a282e834ff67715017f299468ff0d7e496d2bc0f1f7b075b557568b7feb3dba7";
- };
- dependencies = [
- 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.14"
- sources."compression-1.5.2"
- sources."connect-2.30.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."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"
- sources."depd-1.0.1"
- sources."destroy-1.0.4"
- sources."ee-first-1.1.1"
- (sources."errorhandler-1.4.3" // {
- dependencies = [
- sources."accepts-1.3.5"
- sources."escape-html-1.0.3"
- sources."negotiator-0.6.1"
- ];
- })
- sources."escape-html-1.0.2"
- sources."etag-1.7.0"
- sources."express-3.21.2"
- (sources."express-session-1.11.3" // {
- dependencies = [
- sources."uid-safe-2.0.0"
- ];
- })
- sources."finalhandler-0.4.0"
- 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."ms-2.0.0"
- sources."vary-1.1.2"
- ];
- })
- sources."methods-1.1.2"
- sources."mime-1.3.4"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- 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."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."readable-stream-1.1.14"
- (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."destroy-1.0.3"
- sources."statuses-1.2.1"
- ];
- })
- (sources."serve-favicon-2.3.2" // {
- dependencies = [
- sources."ms-0.7.2"
- ];
- })
- (sources."serve-index-1.7.3" // {
- dependencies = [
- sources."escape-html-1.0.3"
- ];
- })
- (sources."serve-static-1.10.3" // {
- dependencies = [
- sources."depd-1.1.2"
- sources."escape-html-1.0.3"
- sources."send-0.13.2"
- sources."statuses-1.2.1"
- ];
- })
- sources."statuses-1.5.0"
- sources."stream-counter-0.2.0"
- sources."string_decoder-0.10.31"
- sources."tsscmp-1.0.5"
- sources."type-is-1.6.16"
- 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.7"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Hosts the latest kibana3 and elasticsearch behind Google OAuth2, Basic Auth or CAS Authentication";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- lcov-result-merger = nodeEnv.buildNodePackage {
- name = "lcov-result-merger";
- packageName = "lcov-result-merger";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-3.1.0.tgz";
- sha512 = "vGXaMNGZRr4cYvW+xMVg+rg7qd5DX9SbGXl+0S3k85+gRZVK4K7UvxPWzKb/qiMwe+4bx3EOrW2o4mbdb1WnsA==";
- };
- dependencies = [
- sources."append-buffer-1.0.2"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."buffer-equal-1.0.0"
- sources."clone-2.1.2"
- sources."clone-buffer-1.0.0"
- sources."clone-stats-1.0.0"
- sources."cloneable-readable-1.1.2"
- sources."concat-map-0.0.1"
- sources."convert-source-map-1.5.1"
- sources."core-util-is-1.0.2"
- sources."define-properties-1.1.2"
- sources."duplexify-3.6.0"
- sources."end-of-stream-1.4.1"
- sources."extend-3.0.2"
- sources."flush-write-stream-1.0.3"
- sources."foreach-2.0.5"
- sources."fs-mkdirp-stream-1.0.0"
- sources."fs.realpath-1.0.0"
- sources."function-bind-1.1.1"
- sources."glob-7.1.2"
- sources."glob-parent-3.1.0"
- sources."glob-stream-6.1.0"
- sources."graceful-fs-4.1.11"
- sources."has-symbols-1.0.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."is-absolute-1.0.0"
- sources."is-buffer-1.1.6"
- sources."is-extglob-2.1.1"
- sources."is-glob-3.1.0"
- sources."is-negated-glob-1.0.0"
- sources."is-relative-1.0.0"
- sources."is-unc-path-1.0.0"
- sources."is-utf8-0.2.1"
- sources."is-valid-glob-1.0.0"
- sources."is-windows-1.0.2"
- sources."isarray-1.0.0"
- sources."json-stable-stringify-1.0.1"
- sources."jsonify-0.0.0"
- sources."lazystream-1.0.0"
- sources."lead-1.0.0"
- sources."minimatch-3.0.4"
- sources."normalize-path-2.1.1"
- sources."now-and-later-2.0.0"
- sources."object-keys-1.0.12"
- sources."object.assign-4.1.0"
- sources."once-1.4.0"
- sources."ordered-read-streams-1.0.1"
- sources."path-dirname-1.0.2"
- sources."path-is-absolute-1.0.1"
- sources."process-nextick-args-2.0.0"
- sources."pump-2.0.1"
- sources."pumpify-1.5.1"
- sources."readable-stream-2.3.6"
- sources."remove-bom-buffer-3.0.0"
- sources."remove-bom-stream-1.2.0"
- sources."remove-trailing-separator-1.1.0"
- sources."replace-ext-1.0.0"
- sources."resolve-options-1.1.0"
- sources."safe-buffer-5.1.2"
- sources."stream-shift-1.0.0"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- sources."through2-filter-2.0.0"
- sources."to-absolute-glob-2.0.2"
- sources."to-through-2.0.0"
- sources."unc-path-regex-0.1.2"
- sources."unique-stream-2.2.1"
- sources."util-deprecate-1.0.2"
- sources."value-or-function-3.0.0"
- sources."vinyl-2.2.0"
- sources."vinyl-fs-3.0.3"
- sources."vinyl-sourcemap-1.1.0"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Merges multiple lcov results into one";
- homepage = https://github.com/mweibel/lcov-result-merger;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- leetcode-cli = nodeEnv.buildNodePackage {
- name = "leetcode-cli";
- packageName = "leetcode-cli";
- version = "2.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/leetcode-cli/-/leetcode-cli-2.5.2.tgz";
- sha512 = "KneaqL2/SAfJQpxR1yheLrnB10f8vwJJbVBA4vxtRl6aENbO+JKsJSgE1cZvO/4isD+MPI7C5HPjJbL5+MOmnw==";
- };
- dependencies = [
- sources."abab-1.0.4"
- sources."acorn-2.7.0"
- sources."acorn-globals-1.0.9"
- sources."ajv-5.5.2"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-3.2.0"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."async-1.5.2"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."boolbase-1.0.0"
- sources."boom-4.3.1"
- sources."brace-expansion-1.1.11"
- sources."camelcase-2.1.1"
- sources."caseless-0.12.0"
- (sources."chalk-2.4.1" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."cheerio-0.20.0"
- sources."cli-cursor-2.1.0"
- sources."cli-spinners-1.3.1"
- sources."cliui-3.2.0"
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."colors-1.3.1"
- sources."combined-stream-1.0.6"
- sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
- sources."cross-spawn-5.1.0"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."css-select-1.2.0"
- sources."css-what-2.1.0"
- sources."cssom-0.3.4"
- sources."cssstyle-0.2.37"
- sources."cycle-1.0.3"
- sources."dashdash-1.14.1"
- sources."decamelize-1.2.0"
- sources."deep-equal-0.2.2"
- sources."deep-is-0.1.3"
- sources."delayed-stream-1.0.0"
- (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"
- sources."ecc-jsbn-0.1.2"
- sources."entities-1.1.1"
- sources."escape-string-regexp-1.0.5"
- sources."escodegen-1.11.0"
- sources."esprima-3.1.3"
- sources."estraverse-4.2.0"
- sources."esutils-2.0.2"
- sources."execa-0.7.0"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."eyes-0.1.8"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."fast-levenshtein-2.0.6"
- sources."find-up-2.1.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."fs.realpath-1.0.0"
- sources."get-caller-file-1.0.3"
- sources."get-stream-3.0.0"
- sources."getpass-0.1.7"
- sources."glob-7.1.2"
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."has-flag-3.0.0"
- sources."hawk-6.0.2"
- sources."he-1.1.1"
- sources."hoek-4.2.1"
- (sources."htmlparser2-3.8.3" // {
- dependencies = [
- sources."entities-1.0.0"
- ];
- })
- sources."http-signature-1.2.0"
- sources."i-0.3.6"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."ini-1.3.5"
- sources."invert-kv-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."jsdom-7.2.2"
- 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."lcid-1.0.0"
- sources."levn-0.3.0"
- sources."locate-path-2.0.0"
- sources."lodash-4.17.10"
- sources."log-symbols-2.2.0"
- sources."lru-cache-4.1.3"
- sources."mem-1.1.0"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."moment-2.22.2"
- sources."mute-stream-0.0.7"
- (sources."nconf-0.10.0" // {
- dependencies = [
- sources."yargs-3.32.0"
- ];
- })
- sources."ncp-1.0.1"
- sources."npm-run-path-2.0.2"
- sources."nth-check-1.0.1"
- sources."number-is-nan-1.0.1"
- sources."nwmatcher-1.4.4"
- sources."oauth-sign-0.8.2"
- sources."once-1.4.0"
- sources."onetime-2.0.1"
- sources."optionator-0.8.2"
- sources."ora-1.4.0"
- sources."os-locale-1.4.0"
- sources."p-finally-1.0.0"
- sources."p-limit-1.3.0"
- sources."p-locate-2.0.0"
- sources."p-try-1.0.0"
- sources."parse5-1.5.1"
- sources."path-exists-3.0.0"
- sources."path-is-absolute-1.0.1"
- sources."path-key-2.0.1"
- sources."performance-now-2.1.0"
- sources."pkginfo-0.4.1"
- sources."prelude-ls-1.1.2"
- sources."prompt-1.0.0"
- sources."pseudomap-1.0.2"
- sources."psl-1.1.29"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."read-1.0.7"
- sources."readable-stream-1.1.14"
- (sources."request-2.83.0" // {
- dependencies = [
- sources."tough-cookie-2.3.4"
- ];
- })
- sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
- sources."restore-cursor-2.0.0"
- sources."revalidator-0.1.8"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."sax-1.2.4"
- sources."secure-keys-1.0.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."sntp-2.1.0"
- sources."source-map-0.6.1"
- sources."sprintf-js-1.1.1"
- sources."sshpk-1.14.2"
- sources."stack-trace-0.0.10"
- sources."string-width-1.0.2"
- sources."string_decoder-0.10.31"
- sources."stringstream-0.0.6"
- sources."strip-ansi-3.0.1"
- sources."strip-eof-1.0.0"
- (sources."supports-color-5.1.0" // {
- dependencies = [
- sources."has-flag-2.0.0"
- ];
- })
- sources."symbol-tree-3.2.2"
- sources."tough-cookie-2.4.3"
- sources."tr46-0.0.3"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-check-0.3.2"
- sources."underscore-1.8.3"
- (sources."utile-0.3.0" // {
- dependencies = [
- sources."async-0.9.2"
- ];
- })
- sources."uuid-3.3.2"
- sources."verror-1.10.0"
- sources."webidl-conversions-2.0.1"
- sources."whatwg-url-compat-0.6.5"
- sources."which-1.3.1"
- sources."which-module-2.0.0"
- sources."window-size-0.1.4"
- (sources."winston-2.1.1" // {
- dependencies = [
- sources."async-1.0.0"
- sources."colors-1.0.3"
- sources."pkginfo-0.3.1"
- ];
- })
- sources."wordwrap-1.0.0"
- sources."wrap-ansi-2.1.0"
- sources."wrappy-1.0.2"
- sources."xml-name-validator-2.0.1"
- sources."y18n-3.2.1"
- sources."yallist-2.1.2"
- (sources."yargs-10.0.3" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."os-locale-2.1.0"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- ];
- })
- (sources."yargs-parser-8.1.0" // {
- dependencies = [
- sources."camelcase-4.1.0"
- ];
- })
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A cli tool to enjoy leetcode!";
- homepage = "https://github.com/skygragon/leetcode-cli#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- lerna = nodeEnv.buildNodePackage {
- name = "lerna";
- packageName = "lerna";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lerna/-/lerna-3.0.1.tgz";
- sha512 = "oLo6mf6C/qk2+PhROGH5durWu58eT35XgzMLNk+HPN15SSKLsVc4JtpfTrdwLNDRLmNcTYF1xmkmUgeMX1G+zA==";
- };
- dependencies = [
- sources."@lerna/add-3.0.0"
- sources."@lerna/batch-packages-3.0.0"
- sources."@lerna/bootstrap-3.0.0"
- sources."@lerna/changed-3.0.0"
- sources."@lerna/child-process-3.0.0"
- sources."@lerna/clean-3.0.0"
- sources."@lerna/cli-3.0.1"
- sources."@lerna/collect-updates-3.0.0"
- sources."@lerna/command-3.0.0"
- sources."@lerna/conventional-commits-3.0.0"
- sources."@lerna/create-3.0.0"
- sources."@lerna/create-symlink-3.0.0"
- sources."@lerna/diff-3.0.0"
- sources."@lerna/exec-3.0.0"
- sources."@lerna/filter-options-3.0.0"
- sources."@lerna/filter-packages-3.0.0"
- sources."@lerna/get-npm-exec-opts-3.0.0"
- sources."@lerna/global-options-3.0.0"
- sources."@lerna/import-3.0.0"
- sources."@lerna/init-3.0.0"
- sources."@lerna/link-3.0.0"
- sources."@lerna/list-3.0.0"
- sources."@lerna/listable-3.0.0"
- sources."@lerna/log-packed-3.0.0"
- sources."@lerna/npm-conf-3.0.0"
- sources."@lerna/npm-dist-tag-3.0.0"
- sources."@lerna/npm-install-3.0.0"
- sources."@lerna/npm-publish-3.0.0"
- sources."@lerna/npm-run-script-3.0.0"
- sources."@lerna/output-3.0.0"
- sources."@lerna/package-3.0.0"
- sources."@lerna/package-graph-3.0.0"
- sources."@lerna/project-3.0.0"
- sources."@lerna/prompt-3.0.0"
- sources."@lerna/publish-3.0.1"
- sources."@lerna/resolve-symlink-3.0.0"
- sources."@lerna/rimraf-dir-3.0.0"
- sources."@lerna/run-3.0.0"
- sources."@lerna/run-lifecycle-3.0.0"
- sources."@lerna/run-parallel-batches-3.0.0"
- sources."@lerna/symlink-binary-3.0.0"
- sources."@lerna/symlink-dependencies-3.0.0"
- sources."@lerna/validation-error-3.0.0"
- sources."@lerna/version-3.0.0"
- sources."@lerna/write-log-file-3.0.0"
- sources."@mrmlnc/readdir-enhanced-2.2.1"
- sources."@nodelib/fs.stat-1.1.0"
- sources."JSONStream-1.3.3"
- sources."abbrev-1.1.1"
- sources."ajv-5.5.2"
- (sources."align-text-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."amdefine-1.0.1"
- sources."ansi-escapes-3.1.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-3.2.1"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
- sources."argparse-1.0.10"
- sources."arr-diff-4.0.0"
- sources."arr-flatten-1.1.0"
- sources."arr-union-3.1.0"
- sources."array-differ-1.0.0"
- 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."array-unique-0.3.2"
- sources."arrify-1.0.1"
- sources."asap-2.0.6"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."assign-symbols-1.0.0"
- sources."async-1.5.2"
- sources."asynckit-0.4.0"
- sources."atob-2.1.1"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."bcrypt-pbkdf-1.0.2"
- sources."block-stream-0.0.9"
- sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."buffer-from-1.1.1"
- sources."builtin-modules-1.1.1"
- sources."builtins-1.0.3"
- sources."byline-5.0.0"
- sources."byte-size-4.0.3"
- sources."cache-base-1.0.1"
- sources."call-me-maybe-1.0.1"
- sources."camelcase-4.1.0"
- sources."camelcase-keys-4.2.0"
- sources."capture-stack-trace-1.0.0"
- sources."caseless-0.12.0"
- sources."center-align-0.1.3"
- sources."chalk-2.4.1"
- sources."chardet-0.4.2"
- sources."ci-info-1.1.3"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- (sources."cliui-2.1.0" // {
- dependencies = [
- sources."wordwrap-0.0.2"
- ];
- })
- sources."clone-1.0.4"
- sources."cmd-shim-2.0.2"
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."collection-visit-1.0.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."columnify-1.5.4"
- sources."combined-stream-1.0.6"
- (sources."compare-func-1.3.2" // {
- dependencies = [
- sources."dot-prop-3.0.0"
- ];
- })
- sources."component-emitter-1.2.1"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."config-chain-1.1.11"
- sources."console-control-strings-1.1.0"
- sources."conventional-changelog-angular-1.6.6"
- (sources."conventional-changelog-core-2.0.11" // {
- dependencies = [
- sources."load-json-file-1.1.0"
- sources."parse-json-2.2.0"
- sources."path-type-1.1.0"
- sources."pify-2.3.0"
- sources."read-pkg-1.1.0"
- sources."strip-bom-2.0.0"
- ];
- })
- sources."conventional-changelog-preset-loader-1.1.8"
- sources."conventional-changelog-writer-3.0.9"
- sources."conventional-commits-filter-1.1.6"
- sources."conventional-commits-parser-2.1.7"
- sources."conventional-recommended-bump-2.0.9"
- sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
- sources."cosmiconfig-5.0.6"
- sources."create-error-class-3.0.2"
- sources."cross-spawn-6.0.5"
- sources."currently-unhandled-0.4.1"
- sources."dargs-4.1.0"
- sources."dashdash-1.14.1"
- sources."dateformat-3.0.3"
- sources."debug-2.6.9"
- sources."debuglog-1.0.1"
- sources."decamelize-1.2.0"
- (sources."decamelize-keys-1.1.0" // {
- dependencies = [
- sources."map-obj-1.0.1"
- ];
- })
- sources."decode-uri-component-0.2.0"
- sources."dedent-0.7.0"
- sources."deep-extend-0.6.0"
- sources."defaults-1.0.3"
- sources."define-property-2.0.2"
- sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
- sources."detect-indent-5.0.0"
- sources."dezalgo-1.0.3"
- sources."dir-glob-2.0.0"
- sources."dot-prop-4.2.0"
- sources."duplexer-0.1.1"
- sources."duplexer3-0.1.4"
- sources."ecc-jsbn-0.1.2"
- sources."error-ex-1.3.2"
- sources."escape-string-regexp-1.0.5"
- sources."esprima-4.0.1"
- sources."execa-0.10.0"
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."extend-3.0.2"
- (sources."extend-shallow-3.0.2" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- sources."external-editor-2.2.0"
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- (sources."fast-glob-2.2.2" // {
- dependencies = [
- sources."is-glob-4.0.0"
- ];
- })
- sources."fast-json-stable-stringify-2.0.0"
- sources."figures-2.0.0"
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."find-up-2.1.0"
- sources."for-in-1.0.2"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."fragment-cache-0.2.1"
- sources."fs-extra-6.0.1"
- sources."fs.realpath-1.0.0"
- sources."fstream-1.0.11"
- (sources."gauge-2.7.4" // {
- dependencies = [
- sources."is-fullwidth-code-point-1.0.0"
- sources."string-width-1.0.2"
- ];
- })
- sources."get-caller-file-1.0.3"
- (sources."get-pkg-repo-1.4.0" // {
- dependencies = [
- sources."camelcase-2.1.1"
- sources."camelcase-keys-2.1.0"
- sources."indent-string-2.1.0"
- sources."map-obj-1.0.1"
- sources."meow-3.7.0"
- sources."minimist-1.2.0"
- sources."redent-1.0.0"
- sources."strip-indent-1.0.1"
- sources."trim-newlines-1.0.0"
- ];
- })
- sources."get-port-3.2.0"
- sources."get-stdin-4.0.1"
- sources."get-stream-3.0.0"
- sources."get-value-2.0.6"
- sources."getpass-0.1.7"
- sources."git-raw-commits-1.3.6"
- (sources."git-remote-origin-url-2.0.0" // {
- dependencies = [
- sources."pify-2.3.0"
- ];
- })
- sources."git-semver-tags-1.3.6"
- sources."gitconfiglocal-1.0.0"
- sources."glob-7.1.2"
- sources."glob-parent-3.1.0"
- sources."glob-to-regexp-0.3.0"
- sources."globby-8.0.1"
- sources."got-6.7.1"
- sources."graceful-fs-4.1.11"
- (sources."handlebars-4.0.11" // {
- dependencies = [
- sources."source-map-0.4.4"
- ];
- })
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."has-flag-3.0.0"
- sources."has-unicode-2.0.1"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."hosted-git-info-2.7.1"
- sources."http-signature-1.2.0"
- sources."iconv-lite-0.4.23"
- sources."ignore-3.3.10"
- sources."import-local-1.0.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."init-package-json-1.10.3"
- (sources."inquirer-5.2.0" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- sources."invert-kv-1.0.0"
- sources."is-accessor-descriptor-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-data-descriptor-1.0.0"
- sources."is-descriptor-1.0.2"
- sources."is-directory-0.3.1"
- sources."is-extendable-0.1.1"
- sources."is-extglob-2.1.1"
- sources."is-finite-1.0.2"
- sources."is-fullwidth-code-point-2.0.0"
- sources."is-glob-3.1.0"
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-obj-1.0.1"
- sources."is-plain-obj-1.1.0"
- 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-subset-0.1.1"
- sources."is-text-path-1.0.1"
- sources."is-typedarray-1.0.0"
- sources."is-utf8-0.2.1"
- sources."is-windows-1.0.2"
- sources."isarray-1.0.0"
- sources."isexe-2.0.0"
- sources."isobject-3.0.1"
- sources."isstream-0.1.2"
- sources."js-yaml-3.12.0"
- sources."jsbn-0.1.1"
- sources."json-parse-better-errors-1.0.2"
- sources."json-schema-0.2.3"
- sources."json-schema-traverse-0.3.1"
- sources."json-stringify-safe-5.0.1"
- sources."jsonfile-4.0.0"
- sources."jsonparse-1.3.1"
- sources."jsprim-1.4.1"
- sources."kind-of-6.0.2"
- sources."lazy-cache-1.0.4"
- sources."lcid-1.0.0"
- sources."load-json-file-4.0.0"
- sources."locate-path-2.0.0"
- sources."lodash-4.17.10"
- 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.1"
- sources."lru-cache-4.1.3"
- sources."make-dir-1.3.0"
- sources."map-cache-0.2.2"
- sources."map-obj-2.0.0"
- sources."map-visit-1.0.0"
- sources."mem-1.1.0"
- (sources."meow-4.0.1" // {
- dependencies = [
- sources."minimist-1.2.0"
- sources."read-pkg-up-3.0.0"
- ];
- })
- sources."merge2-1.2.2"
- sources."micromatch-3.1.10"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimatch-3.0.4"
- sources."minimist-0.1.0"
- sources."minimist-options-3.0.2"
- (sources."mixin-deep-1.3.1" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."modify-values-1.0.1"
- sources."moment-2.22.2"
- sources."ms-2.0.0"
- sources."multimatch-2.1.0"
- sources."mute-stream-0.0.7"
- sources."nanomatch-1.2.13"
- sources."nice-try-1.0.4"
- (sources."node-gyp-3.8.0" // {
- dependencies = [
- sources."semver-5.3.0"
- ];
- })
- sources."nopt-3.0.6"
- sources."normalize-package-data-2.4.0"
- sources."npm-lifecycle-2.0.3"
- sources."npm-package-arg-6.1.0"
- sources."npm-run-path-2.0.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."object-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
- sources."object-visit-1.0.1"
- sources."object.pick-1.3.0"
- sources."once-1.4.0"
- sources."onetime-2.0.1"
- (sources."optimist-0.6.1" // {
- dependencies = [
- sources."minimist-0.0.10"
- ];
- })
- sources."os-homedir-1.0.2"
- (sources."os-locale-2.1.0" // {
- dependencies = [
- sources."cross-spawn-5.1.0"
- sources."execa-0.7.0"
- ];
- })
- sources."os-tmpdir-1.0.2"
- sources."osenv-0.1.5"
- sources."p-finally-1.0.0"
- sources."p-limit-1.3.0"
- sources."p-locate-2.0.0"
- sources."p-map-1.2.0"
- sources."p-map-series-1.0.0"
- sources."p-reduce-1.0.0"
- sources."p-try-1.0.0"
- sources."p-waterfall-1.0.0"
- sources."package-json-4.0.1"
- sources."parse-github-repo-url-1.4.1"
- sources."parse-json-4.0.0"
- sources."pascalcase-0.1.1"
- sources."path-dirname-1.0.2"
- sources."path-exists-3.0.0"
- sources."path-is-absolute-1.0.1"
- sources."path-key-2.0.1"
- sources."path-type-3.0.0"
- sources."performance-now-2.1.0"
- sources."pify-3.0.0"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- sources."pkg-dir-2.0.0"
- sources."posix-character-classes-0.1.1"
- sources."prepend-http-1.0.4"
- sources."process-nextick-args-2.0.0"
- sources."promzard-0.3.0"
- sources."proto-list-1.2.4"
- sources."pseudomap-1.0.2"
- sources."punycode-1.4.1"
- sources."q-1.5.1"
- sources."qs-6.5.2"
- sources."quick-lru-1.1.0"
- (sources."rc-1.2.8" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."read-1.0.7"
- sources."read-cmd-shim-1.0.1"
- sources."read-package-json-2.0.13"
- sources."read-package-tree-5.2.1"
- sources."read-pkg-3.0.0"
- (sources."read-pkg-up-1.0.1" // {
- dependencies = [
- sources."find-up-1.1.2"
- sources."load-json-file-1.1.0"
- sources."parse-json-2.2.0"
- sources."path-exists-2.1.0"
- sources."path-type-1.1.0"
- sources."pify-2.3.0"
- sources."read-pkg-1.1.0"
- sources."strip-bom-2.0.0"
- ];
- })
- sources."readable-stream-2.3.6"
- sources."readdir-scoped-modules-1.0.2"
- sources."redent-2.0.0"
- sources."regex-not-1.0.2"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."repeat-element-1.1.2"
- sources."repeat-string-1.6.1"
- sources."repeating-2.0.1"
- sources."request-2.87.0"
- sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
- (sources."resolve-cwd-2.0.0" // {
- dependencies = [
- sources."resolve-from-3.0.0"
- ];
- })
- sources."resolve-from-4.0.0"
- sources."resolve-url-0.2.1"
- sources."restore-cursor-2.0.0"
- sources."ret-0.1.15"
- sources."right-align-0.1.3"
- sources."rimraf-2.6.2"
- sources."run-async-2.3.0"
- sources."rxjs-5.5.11"
- sources."safe-buffer-5.1.2"
- sources."safe-regex-1.1.0"
- sources."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- sources."set-blocking-2.0.0"
- (sources."set-value-2.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- sources."slash-1.0.0"
- sources."slide-1.1.6"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- (sources."snapdragon-util-3.0.1" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."sort-keys-2.0.0"
- sources."source-map-0.5.7"
- sources."source-map-resolve-0.5.2"
- sources."source-map-url-0.4.0"
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."split-1.0.1"
- sources."split-string-3.1.0"
- sources."split2-2.2.0"
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.2"
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."string-width-2.1.1" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
- sources."strip-bom-3.0.0"
- sources."strip-eof-1.0.0"
- sources."strip-indent-2.0.0"
- sources."strip-json-comments-2.0.1"
- sources."strong-log-transformer-1.0.6"
- sources."supports-color-5.4.0"
- sources."symbol-observable-1.0.1"
- sources."tar-2.2.1"
- sources."temp-dir-1.0.0"
- sources."temp-write-3.4.0"
- 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."to-object-path-0.3.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
- sources."tough-cookie-2.3.4"
- sources."trim-newlines-2.0.0"
- sources."trim-off-newlines-1.0.1"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."typedarray-0.0.6"
- (sources."uglify-js-2.8.29" // {
- dependencies = [
- sources."camelcase-1.2.1"
- sources."yargs-3.10.0"
- ];
- })
- sources."uglify-to-browserify-1.0.2"
- sources."uid-number-0.0.6"
- sources."umask-1.1.0"
- (sources."union-value-1.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."set-value-0.4.3"
- ];
- })
- sources."universalify-0.1.2"
- (sources."unset-value-1.0.0" // {
- dependencies = [
- (sources."has-value-0.3.1" // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- })
- sources."has-values-0.1.4"
- ];
- })
- sources."unzip-response-2.0.1"
- sources."urix-0.1.0"
- sources."url-parse-lax-1.0.0"
- sources."use-3.1.1"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."validate-npm-package-license-3.0.4"
- sources."validate-npm-package-name-3.0.0"
- sources."verror-1.10.0"
- sources."wcwidth-1.0.1"
- sources."which-1.3.1"
- sources."which-module-2.0.0"
- sources."wide-align-1.1.3"
- sources."window-size-0.1.0"
- sources."wordwrap-0.0.3"
- (sources."wrap-ansi-2.1.0" // {
- dependencies = [
- sources."is-fullwidth-code-point-1.0.0"
- sources."string-width-1.0.2"
- ];
- })
- sources."wrappy-1.0.2"
- sources."write-file-atomic-2.3.0"
- sources."write-json-file-2.3.0"
- sources."write-pkg-3.2.0"
- sources."xregexp-4.0.0"
- sources."xtend-4.0.1"
- sources."y18n-4.0.0"
- sources."yallist-2.1.2"
- (sources."yargs-12.0.1" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."cliui-4.1.0"
- sources."decamelize-2.0.0"
- sources."find-up-3.0.0"
- sources."locate-path-3.0.0"
- sources."p-limit-2.0.0"
- sources."p-locate-3.0.0"
- sources."p-try-2.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- sources."yargs-parser-10.1.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A tool for managing JavaScript projects with multiple packages.";
- homepage = https://lernajs.io/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- less = nodeEnv.buildNodePackage {
- name = "less";
- packageName = "less";
- version = "3.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/less/-/less-3.8.1.tgz";
- sha512 = "8HFGuWmL3FhQR0aH89escFNBQH/nEiYPP2ltDFdQw2chE28Yx2E3lhAIq9Y2saYwLSwa699s4dBVEfCY8Drf7Q==";
- };
- dependencies = [
- sources."ajv-5.5.2"
- sources."asap-2.0.6"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."caseless-0.12.0"
- sources."clone-2.1.2"
- sources."co-4.6.0"
- sources."combined-stream-1.0.6"
- sources."core-util-is-1.0.2"
- sources."dashdash-1.14.1"
- sources."delayed-stream-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."errno-0.1.7"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."getpass-0.1.7"
- sources."graceful-fs-4.1.11"
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."http-signature-1.2.0"
- 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-schema-traverse-0.3.1"
- sources."json-stringify-safe-5.0.1"
- sources."jsprim-1.4.1"
- sources."mime-1.6.0"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."promise-7.3.1"
- sources."prr-1.0.1"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."request-2.87.0"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."source-map-0.6.1"
- sources."sshpk-1.14.2"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."uuid-3.3.2"
- 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;
- };
- live-server = nodeEnv.buildNodePackage {
- name = "live-server";
- packageName = "live-server";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/live-server/-/live-server-1.2.0.tgz";
- sha1 = "4498644bbf81a66f18dd8dffdef61c4c1c374ca3";
- };
- dependencies = [
- sources."accepts-1.3.5"
- 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" // {
- dependencies = [
- sources."safe-buffer-5.1.1"
- ];
- })
- sources."batch-0.6.1"
- sources."bcryptjs-2.4.3"
- sources."binary-extensions-1.11.0"
- sources."brace-expansion-1.1.11"
- sources."braces-1.8.5"
- sources."chokidar-1.7.0"
- sources."colors-1.3.1"
- 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.4"
- 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.2.4"
- 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.3" // {
- dependencies = [
- sources."statuses-1.5.0"
- ];
- })
- sources."http-parser-js-0.4.13"
- 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."math-random-1.0.1"
- sources."micromatch-2.3.11"
- sources."mime-1.4.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- 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.10.0"
- sources."negotiator-0.6.1"
- 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."on-headers-1.0.1"
- sources."opn-5.3.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-2.0.0"
- sources."proxy-middleware-0.15.0"
- (sources."randomatic-3.1.0" // {
- dependencies = [
- sources."is-number-4.0.0"
- sources."kind-of-6.0.2"
- ];
- })
- sources."range-parser-1.2.0"
- sources."readable-stream-2.3.6"
- 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.2"
- (sources."send-0.16.2" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- sources."statuses-1.4.0"
- ];
- })
- (sources."serve-index-1.9.1" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- })
- sources."set-immediate-shim-1.0.1"
- sources."setprototypeof-1.1.0"
- sources."split-0.3.3"
- sources."statuses-1.3.1"
- sources."stream-combiner-0.0.4"
- sources."string_decoder-1.1.1"
- 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.3.2"
- sources."vary-1.1.2"
- sources."websocket-driver-0.7.0"
- sources."websocket-extensions-0.1.3"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "simple development http server with live reload capability";
- homepage = "https://github.com/tapio/live-server#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- livedown = nodeEnv.buildNodePackage {
- name = "livedown";
- packageName = "livedown";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/livedown/-/livedown-2.1.1.tgz";
- sha512 = "C5x12+bwk7m2Sx3U27VZ7h5KP7vIlKfZGCabMi73nBGp0zPHtCaxQTPXDRoX5479EZUvycYJI0aD4h1d4+ds7w==";
- };
- dependencies = [
- sources."accepts-1.3.5"
- sources."after-0.8.2"
- sources."ajv-5.5.2"
- sources."anymatch-1.3.2"
- sources."argparse-1.0.10"
- 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.4"
- 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.8.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.2"
- sources."better-assert-1.0.2"
- sources."binary-extensions-1.11.0"
- sources."blob-0.0.4"
- sources."body-parser-1.18.3"
- sources."brace-expansion-1.1.11"
- sources."braces-1.8.5"
- 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.6"
- 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."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.2"
- sources."ee-first-1.1.1"
- sources."emoji-regex-6.1.1"
- sources."encodeurl-1.0.2"
- (sources."engine.io-3.2.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."engine.io-client-3.2.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- 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.3" // {
- dependencies = [
- sources."body-parser-1.18.2"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."iconv-lite-0.4.19"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."safe-buffer-5.1.1"
- sources."statuses-1.4.0"
- ];
- })
- sources."extend-3.0.2"
- sources."extglob-0.3.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."filename-regex-2.0.1"
- sources."fill-range-2.2.4"
- (sources."finalhandler-1.1.1" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."for-in-1.0.2"
- sources."for-own-0.1.5"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."forwarded-0.1.2"
- sources."fresh-0.5.2"
- sources."fsevents-1.2.4"
- 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.3" // {
- dependencies = [
- sources."isarray-2.0.1"
- ];
- })
- sources."has-cors-1.1.0"
- sources."html-entities-1.2.1"
- sources."http-errors-1.6.3"
- sources."http-signature-1.2.0"
- sources."iconv-lite-0.4.23"
- sources."indexof-0.0.1"
- sources."inherits-2.0.3"
- sources."innertext-1.0.3"
- sources."ipaddr.js-1.8.0"
- 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.2"
- sources."markdown-it-emoji-1.4.0"
- sources."markdown-it-github-headings-1.1.1"
- sources."markdown-it-task-checkbox-1.0.6"
- sources."math-random-1.0.1"
- sources."mdurl-1.0.1"
- 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.4.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- sources."ms-2.0.0"
- sources."nan-2.10.0"
- sources."negotiator-0.6.1"
- 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."opn-5.3.0"
- sources."parse-glob-3.0.4"
- 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."process-nextick-args-2.0.0"
- sources."proxy-addr-2.0.4"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- (sources."randomatic-3.1.0" // {
- dependencies = [
- sources."is-number-4.0.0"
- sources."kind-of-6.0.2"
- ];
- })
- sources."range-parser-1.2.0"
- sources."raw-body-2.3.3"
- sources."readable-stream-2.3.6"
- 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.87.0"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- (sources."send-0.16.2" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."serve-static-1.13.2"
- sources."set-immediate-shim-1.0.1"
- sources."setprototypeof-1.1.0"
- (sources."socket.io-2.1.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."socket.io-adapter-1.1.1"
- (sources."socket.io-client-2.1.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."socket.io-parser-3.2.0" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."isarray-2.0.1"
- ];
- })
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.2"
- sources."statuses-1.5.0"
- sources."string_decoder-1.1.1"
- sources."to-array-0.1.4"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- sources."uc.micro-1.0.5"
- 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.3.2"
- 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"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Live Markdown previews for your favourite editor.";
- homepage = https://github.com/shime/livedown;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- madoko = nodeEnv.buildNodePackage {
- name = "madoko";
- packageName = "madoko";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/madoko/-/madoko-1.1.4.tgz";
- sha1 = "3a2bec6219a2658fcb955494a21d0db11a9e6fe4";
- };
- dependencies = [
- sources."amdefine-1.0.1"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."requirejs-2.3.5"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Madoko is a fast scholarly Markdown processor written in Koka";
- homepage = http://madoko.codeplex.com/;
- };
- production = true;
- bypassCache = false;
- };
- meat = nodeEnv.buildNodePackage {
- name = "meat";
- packageName = "meat";
- version = "0.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/meat/-/meat-0.3.4.tgz";
- sha1 = "e2b6b721014096e30de9c97114e1dd6696135d13";
- };
- dependencies = [
- 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 = {
- description = "Meeting room kiosk app for displaying meeting room schedules and booking rooms in your organization. Built against Google Apps, but other sources can be defined.";
- homepage = https://bitbucket.org/aahmed/meat;
- };
- production = true;
- bypassCache = false;
- };
- meguca = nodeEnv.buildNodePackage {
- name = "meguca";
- packageName = "meguca";
- version = "1.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/meguca/-/meguca-1.0.9.tgz";
- sha512 = "Q2O9s9cqu19UfhsA6+XDnuuYflxFKck5TvvYF2LMhtKWVVmIGuqVZiDAhx1XV3qO22B5A0vjU4gckaeQLALmPQ==";
- };
- dependencies = [
- (sources."@gulp-sourcemaps/identity-map-1.0.2" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."source-map-0.6.1"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- (sources."@gulp-sourcemaps/map-sources-1.0.0" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- (sources."accord-0.28.0" // {
- dependencies = [
- sources."glob-7.1.2"
- sources."minimatch-3.0.4"
- sources."semver-5.5.0"
- sources."uglify-js-2.8.29"
- ];
- })
- sources."acorn-5.7.1"
- sources."ajv-4.11.8"
- (sources."align-text-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."almond-0.3.3"
- sources."amdefine-1.0.1"
- sources."ansi-colors-1.1.0"
- sources."ansi-cyan-0.1.1"
- sources."ansi-gray-0.1.1"
- sources."ansi-red-0.1.1"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."ansi-wrap-0.1.0"
- sources."append-buffer-1.0.2"
- sources."archy-1.0.0"
- 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."asap-2.0.6"
- sources."asn1-0.2.4"
- sources."assert-plus-0.2.0"
- sources."assign-symbols-1.0.0"
- sources."asynckit-0.4.0"
- sources."atob-2.1.1"
- sources."aws-sign2-0.6.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."bcrypt-pbkdf-1.0.2"
- sources."beeper-1.1.1"
- sources."boom-2.10.1"
- sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."buffer-equal-1.0.0"
- sources."cache-base-1.0.1"
- sources."camelcase-1.2.1"
- sources."caseless-0.12.0"
- sources."center-align-0.1.3"
- sources."chalk-1.1.3"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."clean-css-4.2.1" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."cliui-2.1.0"
- sources."clone-1.0.4"
- sources."clone-buffer-1.0.0"
- sources."clone-stats-0.0.1"
- (sources."cloneable-readable-1.1.2" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."co-4.6.0"
- sources."collection-visit-1.0.0"
- sources."color-support-1.1.3"
- sources."combined-stream-1.0.6"
- sources."commander-2.16.0"
- sources."component-emitter-1.2.1"
- sources."concat-map-0.0.1"
- sources."convert-source-map-1.5.1"
- sources."copy-descriptor-0.1.1"
- sources."core-js-2.5.7"
- sources."core-util-is-1.0.2"
- sources."cryptiles-2.0.5"
- (sources."css-2.2.3" // {
- dependencies = [
- sources."source-map-0.1.43"
- ];
- })
- sources."d-1.0.0"
- (sources."dashdash-1.14.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."dateformat-2.2.0"
- sources."debug-2.6.9"
- (sources."debug-fabulous-1.1.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."decamelize-1.2.0"
- sources."decode-uri-component-0.2.0"
- sources."defaults-1.0.3"
- sources."define-properties-1.1.2"
- sources."define-property-2.0.2"
- sources."delayed-stream-1.0.0"
- sources."deprecated-0.0.1"
- sources."detect-file-1.0.0"
- sources."detect-newline-2.1.0"
- sources."dom4-2.1.3"
- (sources."duplexer2-0.0.2" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- ];
- })
- (sources."duplexify-3.6.0" // {
- dependencies = [
- sources."end-of-stream-1.4.1"
- sources."once-1.4.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."ecc-jsbn-0.1.2"
- sources."end-of-stream-0.1.5"
- sources."errno-0.1.7"
- sources."es5-ext-0.10.45"
- sources."es6-iterator-2.0.3"
- sources."es6-symbol-3.1.1"
- sources."es6-weak-map-2.0.2"
- sources."escape-string-regexp-1.0.5"
- sources."event-emitter-0.3.5"
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."expand-tilde-2.0.2"
- sources."extend-3.0.2"
- (sources."extend-shallow-3.0.2" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."extsprintf-1.3.0"
- sources."fancy-log-1.3.2"
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."find-index-0.1.1"
- sources."findup-sync-2.0.0"
- sources."fined-1.1.0"
- sources."first-chunk-stream-1.0.0"
- sources."flagged-respawn-1.0.0"
- (sources."flush-write-stream-1.0.3" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."for-in-1.0.2"
- sources."for-own-1.0.0"
- sources."foreach-2.0.5"
- sources."forever-agent-0.6.1"
- sources."form-data-2.1.4"
- sources."fragment-cache-0.2.1"
- (sources."fs-mkdirp-stream-1.0.0" // {
- dependencies = [
- sources."graceful-fs-4.1.11"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- sources."fs.realpath-1.0.0"
- sources."function-bind-1.1.1"
- sources."gaze-0.5.2"
- sources."get-value-2.0.6"
- (sources."getpass-0.1.7" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."glob-4.5.3"
- sources."glob-parent-3.1.0"
- sources."glob-stream-3.1.18"
- sources."glob-watcher-0.0.6"
- sources."glob2base-0.0.12"
- sources."global-modules-1.0.0"
- sources."global-prefix-1.0.2"
- (sources."globule-0.1.0" // {
- dependencies = [
- sources."glob-3.1.21"
- sources."graceful-fs-1.2.3"
- sources."inherits-1.0.2"
- sources."minimatch-0.2.14"
- ];
- })
- sources."glogg-1.0.1"
- sources."graceful-fs-3.0.11"
- sources."gulp-3.9.1"
- (sources."gulp-clean-css-3.10.0" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- (sources."gulp-less-3.5.0" // {
- dependencies = [
- sources."arr-diff-1.1.0"
- sources."arr-union-2.1.0"
- sources."array-slice-0.2.3"
- sources."extend-shallow-1.1.4"
- sources."kind-of-1.1.0"
- sources."plugin-error-0.1.2"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- (sources."gulp-sourcemaps-2.6.4" // {
- dependencies = [
- sources."graceful-fs-4.1.11"
- sources."readable-stream-2.3.6"
- sources."source-map-0.6.1"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- (sources."gulp-typescript-4.0.2" // {
- dependencies = [
- sources."arr-diff-1.1.0"
- sources."arr-union-2.1.0"
- sources."array-slice-0.2.3"
- sources."clone-2.1.2"
- sources."clone-stats-1.0.0"
- sources."extend-shallow-1.1.4"
- sources."glob-7.1.2"
- sources."glob-stream-6.1.0"
- sources."graceful-fs-4.1.11"
- sources."kind-of-1.1.0"
- sources."minimatch-3.0.4"
- sources."ordered-read-streams-1.0.1"
- sources."plugin-error-0.1.2"
- sources."readable-stream-2.3.6"
- sources."source-map-0.6.1"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- sources."unique-stream-2.2.1"
- sources."vinyl-2.2.0"
- sources."vinyl-fs-3.0.3"
- ];
- })
- (sources."gulp-uglify-3.0.1" // {
- dependencies = [
- sources."lodash-4.17.10"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- (sources."gulp-util-3.0.8" // {
- dependencies = [
- sources."object-assign-3.0.0"
- sources."readable-stream-2.3.6"
- sources."replace-ext-0.0.1"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- sources."vinyl-0.5.3"
- ];
- })
- sources."gulplog-1.0.0"
- sources."har-schema-1.0.5"
- sources."har-validator-4.2.1"
- sources."has-ansi-2.0.0"
- sources."has-gulplog-0.1.0"
- sources."has-symbols-1.0.0"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."hawk-3.1.3"
- sources."hoek-2.16.3"
- sources."homedir-polyfill-1.0.1"
- sources."http-signature-1.1.1"
- sources."image-size-0.5.5"
- sources."indx-0.2.3"
- 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-0.1.1"
- sources."is-extglob-2.1.1"
- sources."is-glob-3.1.0"
- sources."is-negated-glob-1.0.0"
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-plain-object-2.0.4"
- sources."is-promise-2.1.0"
- 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-valid-glob-1.0.0"
- sources."is-windows-1.0.2"
- sources."isarray-1.0.0"
- sources."isexe-2.0.0"
- sources."isobject-3.0.1"
- sources."isstream-0.1.2"
- sources."jsbn-0.1.1"
- sources."json-schema-0.2.3"
- sources."json-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."kind-of-6.0.2"
- sources."lazy-cache-1.0.4"
- (sources."lazystream-1.0.0" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."lead-1.0.0"
- (sources."less-2.7.3" // {
- dependencies = [
- sources."graceful-fs-4.1.11"
- ];
- })
- sources."liftoff-2.5.0"
- sources."lodash-1.0.2"
- sources."lodash._basecopy-3.0.1"
- sources."lodash._basetostring-3.0.1"
- sources."lodash._basevalues-3.0.0"
- sources."lodash._getnative-3.9.1"
- sources."lodash._isiterateecall-3.0.9"
- sources."lodash._reescape-3.0.0"
- sources."lodash._reevaluate-3.0.0"
- sources."lodash._reinterpolate-3.0.0"
- sources."lodash._root-3.0.1"
- sources."lodash.clone-4.5.0"
- sources."lodash.defaults-4.2.0"
- sources."lodash.escape-3.2.0"
- sources."lodash.flatten-4.4.0"
- sources."lodash.isarguments-3.1.0"
- sources."lodash.isarray-3.0.4"
- sources."lodash.keys-3.1.2"
- sources."lodash.merge-4.6.1"
- sources."lodash.partialright-4.2.1"
- sources."lodash.pick-4.4.0"
- sources."lodash.restparam-3.6.1"
- sources."lodash.template-3.6.2"
- sources."lodash.templatesettings-3.1.1"
- sources."lodash.uniq-4.5.0"
- sources."longest-1.0.1"
- sources."lru-cache-2.7.3"
- sources."lru-queue-0.1.0"
- sources."make-error-1.3.4"
- sources."make-error-cause-1.2.2"
- sources."make-iterator-1.0.1"
- sources."map-cache-0.2.2"
- sources."map-visit-1.0.0"
- sources."memoizee-0.4.13"
- sources."micromatch-3.1.10"
- sources."mime-1.6.0"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-2.0.10"
- sources."minimist-1.2.0"
- (sources."mixin-deep-1.3.1" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."ms-2.0.0"
- sources."multipipe-0.1.2"
- sources."nanomatch-1.2.13"
- sources."natives-1.1.4"
- sources."next-tick-1.0.0"
- sources."normalize-path-2.1.1"
- sources."now-and-later-2.0.0"
- sources."oauth-sign-0.8.2"
- sources."object-assign-4.1.1"
- (sources."object-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
- sources."object-keys-1.0.12"
- sources."object-visit-1.0.1"
- sources."object.assign-4.1.0"
- sources."object.defaults-1.1.0"
- sources."object.map-1.0.1"
- sources."object.pick-1.3.0"
- sources."once-1.3.3"
- sources."orchestrator-0.3.8"
- sources."ordered-read-streams-0.1.0"
- sources."os-homedir-1.0.2"
- sources."parse-filepath-1.0.2"
- sources."parse-passwd-1.0.0"
- sources."pascalcase-0.1.1"
- sources."path-dirname-1.0.2"
- sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
- sources."path-root-0.1.1"
- sources."path-root-regex-0.1.2"
- sources."performance-now-0.2.0"
- sources."plugin-error-1.0.1"
- sources."posix-character-classes-0.1.1"
- sources."pretty-hrtime-1.0.3"
- sources."process-nextick-args-2.0.0"
- sources."promise-7.3.1"
- sources."prr-1.0.1"
- (sources."pump-2.0.1" // {
- dependencies = [
- (sources."end-of-stream-1.4.1" // {
- dependencies = [
- sources."once-1.4.0"
- ];
- })
- ];
- })
- sources."pumpify-1.5.1"
- sources."punycode-1.4.1"
- sources."qs-6.4.0"
- (sources."readable-stream-1.0.34" // {
- dependencies = [
- sources."isarray-0.0.1"
- ];
- })
- sources."rechoir-0.6.2"
- sources."regex-not-1.0.2"
- sources."remove-bom-buffer-3.0.0"
- (sources."remove-bom-stream-1.2.0" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.2"
- sources."repeat-string-1.6.1"
- sources."replace-ext-1.0.0"
- sources."request-2.81.0"
- sources."resolve-1.8.1"
- sources."resolve-dir-1.0.1"
- sources."resolve-options-1.1.0"
- sources."resolve-url-0.2.1"
- sources."ret-0.1.15"
- sources."right-align-0.1.3"
- sources."safe-buffer-5.1.2"
- sources."safe-regex-1.1.0"
- sources."safer-buffer-2.1.2"
- sources."semver-4.3.6"
- sources."sequencify-0.0.7"
- (sources."set-value-2.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."sigmund-1.0.1"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- (sources."snapdragon-util-3.0.1" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."sntp-1.0.9"
- sources."source-map-0.5.7"
- sources."source-map-resolve-0.5.2"
- sources."source-map-url-0.4.0"
- sources."sparkles-1.0.1"
- sources."split-string-3.1.0"
- (sources."sshpk-1.14.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."stream-consume-0.1.1"
- sources."stream-shift-1.0.0"
- sources."string_decoder-0.10.31"
- sources."stringstream-0.0.6"
- sources."strip-ansi-3.0.1"
- sources."strip-bom-1.0.0"
- sources."strip-bom-string-1.0.0"
- sources."supports-color-2.0.0"
- sources."through2-0.6.5"
- (sources."through2-filter-2.0.0" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- sources."tildify-1.2.0"
- sources."time-stamp-1.1.0"
- sources."timers-ext-0.1.5"
- sources."to-absolute-glob-2.0.2"
- (sources."to-object-path-0.3.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
- (sources."to-through-2.0.0" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.3"
- ];
- })
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."typescript-2.7.2"
- (sources."uglify-js-3.4.7" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."uglify-to-browserify-1.0.2"
- sources."unc-path-regex-0.1.2"
- (sources."union-value-1.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."set-value-0.4.3"
- ];
- })
- sources."unique-stream-1.0.0"
- (sources."unset-value-1.0.0" // {
- dependencies = [
- (sources."has-value-0.3.1" // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- })
- sources."has-values-0.1.4"
- ];
- })
- sources."urix-0.1.0"
- sources."use-3.1.1"
- sources."user-home-1.1.1"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."v8flags-2.1.1"
- sources."value-or-function-3.0.0"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- (sources."vinyl-0.4.6" // {
- dependencies = [
- sources."clone-0.2.0"
- ];
- })
- sources."vinyl-fs-0.3.14"
- (sources."vinyl-sourcemap-1.1.0" // {
- dependencies = [
- sources."clone-2.1.2"
- sources."clone-stats-1.0.0"
- sources."graceful-fs-4.1.11"
- sources."vinyl-2.2.0"
- ];
- })
- sources."vinyl-sourcemaps-apply-0.2.1"
- sources."whatwg-fetch-2.0.4"
- sources."when-3.7.8"
- sources."which-1.3.1"
- sources."window-size-0.1.0"
- sources."wordwrap-0.0.2"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- sources."yargs-3.10.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "[![GoDoc](https://godoc.org/github.com/bakape/meguca?status.svg)](https://godoc.org/github.com/bakape/meguca) [![Build Status](https://travis-ci.org/bakape/meguca.svg)](https://travis-ci.org/bakape/meguca)";
- homepage = "https://github.com/bakape/meguca#readme";
- license = "AGPL-3.0";
- };
- production = true;
- bypassCache = false;
- };
- mocha = nodeEnv.buildNodePackage {
- name = "mocha";
- packageName = "mocha";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz";
- sha512 = "2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==";
- };
- dependencies = [
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."browser-stdout-1.3.1"
- sources."commander-2.15.1"
- sources."concat-map-0.0.1"
- sources."debug-3.1.0"
- sources."diff-3.5.0"
- sources."escape-string-regexp-1.0.5"
- sources."fs.realpath-1.0.0"
- sources."glob-7.1.2"
- sources."growl-1.10.5"
- sources."has-flag-3.0.0"
- sources."he-1.1.1"
- 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-5.4.0"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "simple, flexible, fun test framework";
- homepage = https://mochajs.org/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- multi-file-swagger = nodeEnv.buildNodePackage {
- name = "multi-file-swagger";
- packageName = "multi-file-swagger";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/multi-file-swagger/-/multi-file-swagger-2.2.0.tgz";
- sha1 = "0161a13e2b3378759e36b9e05be34b46a06decd5";
- };
- dependencies = [
- sources."argparse-1.0.10"
- sources."asynckit-0.4.0"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- sources."component-emitter-1.2.1"
- sources."cookiejar-2.1.2"
- sources."core-util-is-1.0.2"
- sources."debug-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."esprima-4.0.1"
- sources."extend-3.0.2"
- sources."form-data-2.3.2"
- sources."formidable-1.2.1"
- sources."graphlib-2.1.5"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."js-yaml-3.12.0"
- sources."json-refs-2.1.7"
- sources."lodash-4.17.10"
- sources."methods-1.1.2"
- sources."mime-1.6.0"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."ms-2.0.0"
- sources."native-promise-only-0.8.1"
- sources."path-loader-1.0.6"
- sources."process-nextick-args-2.0.0"
- sources."punycode-2.1.1"
- sources."qs-6.5.2"
- sources."readable-stream-2.3.6"
- sources."safe-buffer-5.1.2"
- sources."slash-1.0.0"
- sources."sprintf-js-1.0.3"
- sources."string_decoder-1.1.1"
- sources."superagent-3.8.3"
- sources."uri-js-3.0.2"
- sources."util-deprecate-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Multi-file Swagger example";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- nijs = nodeEnv.buildNodePackage {
- name = "nijs";
- packageName = "nijs";
- version = "0.0.25";
- src = fetchurl {
- url = "https://registry.npmjs.org/nijs/-/nijs-0.0.25.tgz";
- sha1 = "04b035cb530d46859d1018839a518c029133f676";
- };
- dependencies = [
- sources."optparse-1.0.5"
- sources."slasp-0.0.4"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "An internal DSL for the Nix package manager in JavaScript";
- homepage = "https://github.com/svanderburg/nijs#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- node2nix = nodeEnv.buildNodePackage {
- name = "node2nix";
- packageName = "node2nix";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node2nix/-/node2nix-1.6.0.tgz";
- sha512 = "MJY6SsQH3pN59R9N3nMz/L8BsbQ0DlvSF38mgg1fwfwgnaJ+y600s3Nd0vZ+cnETUH+4OPETc4QohflccjPUYw==";
- };
- dependencies = [
- 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.5"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."base64-js-1.2.3"
- sources."bcrypt-pbkdf-1.0.2"
- sources."buffer-from-1.1.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.6"
- sources."concat-stream-1.6.2"
- sources."config-chain-1.1.11"
- sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
- sources."dashdash-1.14.1"
- sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.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.2"
- (sources."fs-extra-0.6.4" // {
- dependencies = [
- sources."mkdirp-0.3.5"
- ];
- })
- (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."hosted-git-info-2.7.1"
- 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.35.0"
- sources."mime-types-2.1.19"
- sources."minimist-0.0.8"
- sources."minipass-2.3.3"
- 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-6.1.0"
- sources."npm-registry-client-8.5.1"
- (sources."npmconf-2.1.3" // {
- dependencies = [
- sources."once-1.3.3"
- sources."semver-4.3.6"
- ];
- })
- sources."npmlog-4.1.2"
- sources."number-is-nan-1.0.1"
- sources."oauth-sign-0.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.5"
- sources."performance-now-2.1.0"
- sources."process-nextick-args-2.0.0"
- sources."proto-list-1.2.4"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."readable-stream-2.3.6"
- sources."request-2.87.0"
- sources."retry-0.10.1"
- sources."rimraf-2.2.8"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- sources."set-blocking-2.0.0"
- sources."signal-exit-3.0.2"
- sources."slasp-0.0.4"
- sources."slide-1.1.6"
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.14.2"
- sources."ssri-5.3.0"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
- sources."tar-3.1.15"
- sources."temp-0.8.3"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."typedarray-0.0.6"
- sources."uid-number-0.0.5"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."validate-npm-package-license-3.0.4"
- sources."validate-npm-package-name-3.0.0"
- sources."verror-1.10.0"
- sources."walk-2.3.14"
- sources."wide-align-1.1.3"
- sources."wrappy-1.0.2"
- sources."yallist-3.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Generate Nix expressions to build NPM packages";
- homepage = https://github.com/svanderburg/node2nix;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- node-gyp = nodeEnv.buildNodePackage {
- name = "node-gyp";
- packageName = "node-gyp";
- version = "3.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz";
- sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==";
- };
- dependencies = [
- 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.5"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."block-stream-0.0.9"
- sources."brace-expansion-1.1.11"
- sources."caseless-0.12.0"
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."combined-stream-1.0.6"
- sources."concat-map-0.0.1"
- sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
- sources."dashdash-1.14.1"
- sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- 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."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.35.0"
- sources."mime-types-2.1.19"
- 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.5"
- sources."path-is-absolute-1.0.1"
- sources."performance-now-2.1.0"
- sources."process-nextick-args-2.0.0"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."readable-stream-2.3.6"
- sources."request-2.87.0"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."semver-5.3.0"
- sources."set-blocking-2.0.0"
- sources."signal-exit-3.0.2"
- sources."sshpk-1.14.2"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
- sources."tar-2.2.1"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."verror-1.10.0"
- sources."which-1.3.1"
- sources."wide-align-1.1.3"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Node.js native addon build tool";
- homepage = "https://github.com/nodejs/node-gyp#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- node-gyp-build = nodeEnv.buildNodePackage {
- name = "node-gyp-build";
- packageName = "node-gyp-build";
- version = "3.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.4.0.tgz";
- sha512 = "YoviGBJYGrPdLOKDIQB0sKxuKy/EEsxzooNkOZak4vSTKT/qH0Pa6dj3t1MJjEQGsefih61IyHDmO1WW7xOFfw==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "Build tool and bindings loader for node-gyp that supports prebuilds";
- homepage = https://github.com/mafintosh/node-gyp-build;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- node-inspector = nodeEnv.buildNodePackage {
- name = "node-inspector";
- packageName = "node-inspector";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-inspector/-/node-inspector-1.1.2.tgz";
- sha1 = "690c9ef7e5813da50b7a2746f334e3ff319bccd7";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."accepts-1.3.5"
- 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.5"
- sources."array-find-index-1.0.2"
- sources."array-flatten-1.1.1"
- sources."asn1-0.2.4"
- 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.8.0"
- sources."balanced-match-1.0.0"
- sources."base64-js-0.0.8"
- sources."bcrypt-pbkdf-1.0.2"
- sources."biased-opener-0.2.8"
- sources."big-integer-1.6.34"
- sources."block-stream-0.0.9"
- sources."body-parser-1.18.2"
- sources."boom-2.10.1"
- sources."bplist-parser-0.1.1"
- sources."brace-expansion-1.1.11"
- sources."browser-launcher2-0.4.6"
- 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.6"
- 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."core-util-is-1.0.2"
- sources."cryptiles-2.0.5"
- sources."currently-unhandled-0.4.1"
- (sources."dashdash-1.14.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."debug-2.6.9"
- sources."decamelize-1.2.0"
- sources."deep-extend-0.6.0"
- 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.2"
- sources."ee-first-1.1.1"
- sources."encodeurl-1.0.2"
- sources."error-ex-1.3.2"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."express-4.16.3"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."finalhandler-1.1.1"
- sources."find-up-1.1.2"
- 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."fstream-ignore-1.0.5"
- sources."gauge-2.7.4"
- sources."get-stdin-4.0.1"
- (sources."getpass-0.1.7" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."glob-5.0.15"
- sources."graceful-fs-4.1.11"
- sources."har-schema-1.0.5"
- sources."har-validator-4.2.1"
- sources."has-unicode-2.0.1"
- sources."hawk-3.1.3"
- sources."headless-0.1.7"
- sources."hoek-2.16.3"
- sources."hosted-git-info-2.7.1"
- sources."http-errors-1.6.3"
- 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.8.0"
- 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."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.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."ms-2.0.0"
- sources."nan-2.10.0"
- sources."negotiator-0.6.1"
- (sources."node-pre-gyp-0.6.39" // {
- dependencies = [
- sources."glob-7.1.2"
- sources."rimraf-2.6.2"
- sources."semver-5.5.0"
- ];
- })
- 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.5"
- 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"
- sources."process-nextick-args-2.0.0"
- sources."proxy-addr-2.0.4"
- sources."punycode-1.4.1"
- sources."qs-6.5.1"
- sources."range-parser-1.2.0"
- (sources."raw-body-2.3.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."rc-1.2.8"
- sources."read-pkg-1.1.0"
- sources."read-pkg-up-1.0.1"
- sources."readable-stream-2.3.6"
- sources."redent-1.0.0"
- sources."repeating-2.0.1"
- (sources."request-2.81.0" // {
- dependencies = [
- sources."qs-6.4.0"
- ];
- })
- sources."rimraf-2.2.8"
- sources."safe-buffer-5.1.1"
- sources."safer-buffer-2.1.2"
- sources."semver-4.3.6"
- sources."send-0.16.2"
- (sources."serve-favicon-2.5.0" // {
- dependencies = [
- sources."ms-2.1.1"
- ];
- })
- sources."serve-static-1.13.2"
- 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-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- (sources."sshpk-1.14.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."statuses-1.4.0"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."stringstream-0.0.6"
- 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.6"
- sources."tar-2.2.1"
- (sources."tar-pack-3.4.1" // {
- dependencies = [
- sources."glob-7.1.2"
- sources."rimraf-2.6.2"
- ];
- })
- sources."tough-cookie-2.3.4"
- sources."trim-newlines-1.0.0"
- sources."truncate-2.0.1"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- sources."uid-0.0.2"
- sources."uid-number-0.0.6"
- sources."ultron-1.0.2"
- 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.3.2"
- sources."v8-debug-1.0.1"
- sources."v8-profiler-5.7.0"
- sources."validate-npm-package-license-3.0.4"
- sources."vary-1.1.2"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."which-1.3.1"
- sources."wide-align-1.1.3"
- (sources."win-detect-browsers-1.0.2" // {
- dependencies = [
- sources."yargs-1.3.3"
- ];
- })
- sources."window-size-0.1.4"
- sources."wrap-ansi-2.1.0"
- sources."wrappy-1.0.2"
- sources."ws-1.1.5"
- sources."x-default-browser-0.3.1"
- (sources."xmlbuilder-4.0.0" // {
- dependencies = [
- sources."lodash-3.10.1"
- ];
- })
- sources."xmldom-0.1.27"
- sources."xtend-4.0.1"
- sources."y18n-3.2.1"
- sources."yargs-3.32.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Web Inspector based nodeJS debugger";
- homepage = http://github.com/node-inspector/node-inspector;
- };
- production = true;
- bypassCache = false;
- };
- node-pre-gyp = nodeEnv.buildNodePackage {
- name = "node-pre-gyp";
- packageName = "node-pre-gyp";
- version = "0.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz";
- sha512 = "d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A==";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."ansi-regex-2.1.1"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."chownr-1.0.1"
- sources."code-point-at-1.1.0"
- sources."concat-map-0.0.1"
- sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
- sources."debug-2.6.9"
- sources."deep-extend-0.6.0"
- sources."delegates-1.0.0"
- sources."detect-libc-1.0.3"
- sources."fs-minipass-1.2.5"
- sources."fs.realpath-1.0.0"
- sources."gauge-2.7.4"
- sources."glob-7.1.2"
- sources."has-unicode-2.0.1"
- sources."iconv-lite-0.4.23"
- sources."ignore-walk-3.0.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."isarray-1.0.0"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."minipass-2.3.3"
- sources."minizlib-1.1.0"
- sources."mkdirp-0.5.1"
- sources."ms-2.0.0"
- sources."needle-2.2.2"
- sources."nopt-4.0.1"
- sources."npm-bundled-1.0.4"
- sources."npm-packlist-1.1.11"
- sources."npmlog-4.1.2"
- sources."number-is-nan-1.0.1"
- 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.5"
- sources."path-is-absolute-1.0.1"
- sources."process-nextick-args-2.0.0"
- (sources."rc-1.2.8" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."readable-stream-2.3.6"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."sax-1.2.4"
- sources."semver-5.5.0"
- sources."set-blocking-2.0.0"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
- sources."strip-json-comments-2.0.1"
- sources."tar-4.4.6"
- sources."util-deprecate-1.0.2"
- sources."wide-align-1.1.3"
- sources."wrappy-1.0.2"
- sources."yallist-3.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Node.js native addon binary install tool";
- homepage = "https://github.com/mapbox/node-pre-gyp#readme";
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = false;
- };
- nodemon = nodeEnv.buildNodePackage {
- name = "nodemon";
- packageName = "nodemon";
- version = "1.18.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.3.tgz";
- sha512 = "XdVfAjGlDKU2nqoGgycxTndkJ5fdwvWJ/tlMGk2vHxMZBrSPVh86OM6z7viAv8BBJWjMgeuYQBofzr6LUoi+7g==";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."ansi-align-2.0.0"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- sources."anymatch-2.0.0"
- sources."arr-diff-4.0.0"
- sources."arr-flatten-1.1.0"
- sources."arr-union-3.1.0"
- sources."array-unique-0.3.2"
- sources."assign-symbols-1.0.0"
- sources."async-each-1.0.1"
- sources."atob-2.1.1"
- sources."balanced-match-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."binary-extensions-1.11.0"
- sources."boxen-1.3.0"
- sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- sources."cache-base-1.0.1"
- sources."camelcase-4.1.0"
- sources."capture-stack-trace-1.0.0"
- sources."chalk-2.4.1"
- sources."chokidar-2.0.4"
- sources."ci-info-1.1.3"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."cli-boxes-1.0.0"
- sources."collection-visit-1.0.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."component-emitter-1.2.1"
- sources."concat-map-0.0.1"
- sources."configstore-3.1.2"
- 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.6.0"
- sources."define-property-2.0.2"
- 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."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- ];
- })
- sources."extend-shallow-3.0.2"
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- sources."for-in-1.0.2"
- sources."fragment-cache-0.2.1"
- sources."from-0.1.7"
- sources."fsevents-1.2.4"
- 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-3.0.0"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
- dependencies = [
- sources."kind-of-4.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-ci-1.1.0"
- 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-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" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-obj-1.0.1"
- sources."is-path-inside-1.0.1"
- sources."is-plain-object-2.0.4"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."is-stream-1.1.0"
- sources."is-windows-1.0.2"
- sources."isarray-1.0.0"
- sources."isexe-2.0.0"
- sources."isobject-3.0.1"
- sources."kind-of-6.0.2"
- sources."latest-version-3.1.0"
- sources."lodash.debounce-4.0.8"
- sources."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.3"
- sources."make-dir-1.3.0"
- sources."map-cache-0.2.2"
- sources."map-stream-0.1.0"
- sources."map-visit-1.0.0"
- sources."micromatch-3.1.10"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- sources."mixin-deep-1.3.1"
- sources."ms-2.0.0"
- sources."nan-2.10.0"
- sources."nanomatch-1.2.13"
- sources."nopt-1.0.10"
- sources."normalize-path-2.1.1"
- sources."npm-run-path-2.0.2"
- (sources."object-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
- sources."object-visit-1.0.1"
- sources."object.pick-1.3.0"
- sources."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-2.0.0"
- sources."ps-tree-1.1.0"
- sources."pseudomap-1.0.2"
- sources."pstree.remy-1.1.0"
- sources."rc-1.2.8"
- sources."readable-stream-2.3.6"
- sources."readdirp-2.1.0"
- sources."regex-not-1.0.2"
- sources."registry-auth-token-3.3.2"
- 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."ret-0.1.15"
- sources."safe-buffer-5.1.2"
- sources."safe-regex-1.1.0"
- sources."semver-5.5.0"
- sources."semver-diff-2.1.0"
- sources."set-immediate-shim-1.0.1"
- (sources."set-value-2.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- (sources."snapdragon-util-3.0.1" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."source-map-0.5.7"
- sources."source-map-resolve-0.5.2"
- sources."source-map-url-0.4.0"
- sources."split-0.3.3"
- sources."split-string-3.1.0"
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."stream-combiner-0.0.4"
- sources."string-width-2.1.1"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-4.0.0"
- sources."strip-eof-1.0.0"
- sources."strip-json-comments-2.0.1"
- sources."supports-color-5.4.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" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
- sources."touch-3.1.0"
- (sources."undefsafe-2.0.2" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- (sources."union-value-1.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- 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."has-values-0.1.4"
- ];
- })
- sources."unzip-response-2.0.1"
- sources."upath-1.1.0"
- sources."update-notifier-2.5.0"
- sources."urix-0.1.0"
- sources."url-parse-lax-1.0.0"
- sources."use-3.1.1"
- sources."util-deprecate-1.0.2"
- sources."which-1.3.1"
- 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 = {
- description = "Simple monitor script for use during development of a node.js app.";
- homepage = http://nodemon.io/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- node-red = nodeEnv.buildNodePackage {
- name = "node-red";
- packageName = "node-red";
- version = "0.18.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red/-/node-red-0.18.7.tgz";
- sha512 = "c88H51qK2chQNITdN3tDzk4TgPWHzBxEGE2jQwHihjeneGnJEihDnoncsGB7CA2s9aU1tlh2lbifdObFhQr8gA==";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."accepts-1.3.5"
- sources."addressparser-0.3.2"
- sources."ajv-5.5.2"
- sources."ansi-regex-2.1.1"
- sources."append-field-0.1.0"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
- sources."argparse-1.0.10"
- sources."array-flatten-1.1.1"
- sources."array-indexofobject-0.0.1"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."async-0.1.22"
- sources."async-limiter-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- sources."basic-auth-2.0.0"
- sources."bcrypt-1.0.3"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bcryptjs-2.4.3"
- sources."bl-1.2.2"
- sources."block-stream-0.0.9"
- sources."body-parser-1.18.3"
- sources."boolbase-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."buffer-from-1.1.1"
- (sources."buildmail-2.0.0" // {
- dependencies = [
- sources."needle-0.10.0"
- ];
- })
- (sources."busboy-0.2.14" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."bytes-3.0.0"
- sources."callback-stream-1.1.0"
- sources."caseless-0.12.0"
- sources."cheerio-0.22.0"
- sources."clone-2.1.1"
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."combined-stream-1.0.6"
- sources."commander-2.15.1"
- sources."commist-1.0.0"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- 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.4"
- sources."crc-3.4.4"
- sources."cron-1.3.0"
- sources."css-select-1.2.0"
- sources."css-what-2.1.0"
- sources."dashdash-1.14.1"
- sources."debug-2.6.9"
- sources."deep-extend-0.6.0"
- 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" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
- (sources."dom-serializer-0.1.0" // {
- dependencies = [
- sources."domelementtype-1.1.3"
- ];
- })
- sources."domelementtype-1.3.0"
- sources."domhandler-2.4.2"
- sources."domutils-1.5.1"
- sources."duplexify-3.6.0"
- sources."ecc-jsbn-0.1.2"
- 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-4.0.1"
- sources."etag-1.8.1"
- (sources."express-4.16.3" // {
- dependencies = [
- sources."body-parser-1.18.2"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."iconv-lite-0.4.19"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."statuses-1.4.0"
- ];
- })
- sources."express-session-1.15.6"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- (sources."feedparser-2.2.9" // {
- dependencies = [
- sources."addressparser-1.0.1"
- ];
- })
- (sources."finalhandler-1.1.1" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- (sources."follow-redirects-1.4.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."forwarded-0.1.2"
- sources."fresh-0.5.2"
- sources."fs-extra-5.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."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."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."has-unicode-2.0.1"
- sources."hash-sum-1.0.2"
- sources."help-me-1.1.0"
- sources."htmlparser2-3.9.2"
- sources."http-errors-1.6.3"
- sources."http-signature-1.2.0"
- sources."i18next-1.10.6"
- sources."i18next-client-1.10.3"
- sources."iconv-lite-0.4.23"
- (sources."imap-0.8.19" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."ini-1.3.5"
- sources."ipaddr.js-1.8.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-negated-glob-1.0.0"
- 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.2"
- sources."isarray-1.0.0"
- sources."isstream-0.1.2"
- sources."js-yaml-3.11.0"
- 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.5.4"
- sources."jsonfile-4.0.0"
- sources."jsonify-0.0.0"
- sources."jsprim-1.4.1"
- sources."keygrip-1.0.2"
- sources."leven-1.0.2"
- sources."libbase64-0.1.0"
- sources."libmime-1.2.0"
- sources."libqp-1.1.0"
- sources."lodash.assign-4.2.0"
- sources."lodash.assignin-4.2.0"
- sources."lodash.bind-4.2.1"
- sources."lodash.defaults-4.2.0"
- sources."lodash.filter-4.6.0"
- sources."lodash.flatten-4.4.0"
- sources."lodash.foreach-4.5.0"
- sources."lodash.get-4.4.2"
- sources."lodash.has-4.5.2"
- sources."lodash.map-4.6.0"
- sources."lodash.merge-4.6.1"
- sources."lodash.pick-4.4.0"
- sources."lodash.reduce-4.6.0"
- sources."lodash.reject-4.6.0"
- sources."lodash.some-4.6.0"
- sources."lodash.uniq-4.5.0"
- sources."lru-cache-4.1.3"
- sources."mailcomposer-2.1.0"
- sources."mailparser-0.6.2"
- sources."media-typer-0.3.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.35.0"
- sources."mime-types-2.1.19"
- (sources."mimelib-0.3.1" // {
- dependencies = [
- sources."addressparser-1.0.1"
- ];
- })
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."moment-2.22.2"
- sources."moment-timezone-0.5.21"
- sources."mqtt-2.18.0"
- sources."mqtt-packet-5.6.0"
- sources."mri-1.1.1"
- sources."ms-2.0.0"
- (sources."multer-1.3.0" // {
- dependencies = [
- sources."object-assign-3.0.0"
- ];
- })
- 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.29"
- sources."node-red-node-feedparser-0.1.12"
- sources."node-red-node-rbe-0.2.3"
- sources."node-red-node-twitter-1.0.1"
- sources."nodemailer-1.11.0"
- sources."nodemailer-direct-transport-1.1.0"
- (sources."nodemailer-smtp-transport-1.1.0" // {
- dependencies = [
- sources."clone-1.0.4"
- ];
- })
- sources."nodemailer-wellknown-0.1.10"
- sources."nopt-4.0.1"
- sources."npmlog-4.1.2"
- 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.11.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" // {
- dependencies = [
- sources."minimist-0.0.10"
- ];
- })
- 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."osenv-0.1.5"
- sources."parseurl-1.3.2"
- sources."passport-0.4.0"
- 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."poplib-0.1.7"
- sources."process-nextick-args-2.0.0"
- sources."proxy-addr-2.0.4"
- sources."pseudomap-1.0.2"
- sources."pump-3.0.0"
- (sources."pumpify-1.5.1" // {
- dependencies = [
- sources."pump-2.0.1"
- ];
- })
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."random-bytes-1.0.0"
- sources."range-parser-1.2.0"
- sources."raw-body-2.3.3"
- sources."rc-1.2.8"
- sources."readable-stream-2.3.6"
- sources."reinterval-1.1.0"
- sources."remove-trailing-separator-1.1.0"
- sources."request-2.87.0"
- sources."retry-0.6.1"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.1"
- sources."safer-buffer-2.1.2"
- sources."sax-1.2.4"
- sources."semver-5.5.0"
- (sources."send-0.16.2" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."sentiment-2.1.0"
- sources."serve-static-1.13.2"
- sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.0"
- sources."signal-exit-3.0.2"
- sources."smtp-connection-1.3.8"
- sources."source-map-0.6.1"
- sources."split2-2.2.0"
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.2"
- sources."statuses-1.5.0"
- sources."stream-shift-1.0.0"
- sources."streamsearch-0.1.2"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- 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."through2-2.0.3"
- sources."through2-filter-2.0.0"
- sources."to-absolute-glob-2.0.2"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."twitter-ng-0.6.2"
- sources."type-is-1.6.16"
- sources."typedarray-0.0.6"
- sources."uglify-js-3.3.25"
- 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."universalify-0.1.2"
- sources."unpipe-1.0.0"
- (sources."utf7-1.0.2" // {
- dependencies = [
- sources."semver-5.3.0"
- ];
- })
- sources."util-deprecate-1.0.2"
- sources."utils-merge-1.0.1"
- sources."uue-3.1.2"
- sources."uuid-3.3.2"
- sources."vary-1.1.2"
- sources."verror-1.10.0"
- (sources."websocket-stream-5.1.2" // {
- dependencies = [
- sources."ws-3.3.3"
- ];
- })
- sources."when-3.7.8"
- sources."wide-align-1.1.3"
- sources."wordwrap-0.0.3"
- sources."wrappy-1.0.2"
- (sources."ws-1.1.5" // {
- dependencies = [
- sources."ultron-1.0.2"
- ];
- })
- sources."xml2js-0.4.19"
- sources."xmlbuilder-9.0.7"
- sources."xtend-4.0.1"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A visual tool for wiring the Internet of Things";
- homepage = http://nodered.org/;
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- "node-uptime-https://github.com/fzaninotto/uptime/tarball/1c65756575f90f563a752e2a22892ba2981c79b7" = nodeEnv.buildNodePackage {
- name = "node-uptime";
- packageName = "node-uptime";
- version = "3.2.0";
- src = fetchurl {
- name = "node-uptime-3.2.0.tar.gz";
- url = https://codeload.github.com/fzaninotto/uptime/legacy.tar.gz/1c65756575f90f563a752e2a22892ba2981c79b7;
- sha256 = "46424d7f9553ce7313cc09995ab11d237dd02257c29f260cfb38d2799e7c7746";
- };
- dependencies = [
- sources."active-x-obfuscator-0.0.1"
- sources."addressparser-1.0.1"
- sources."argparse-0.1.16"
- sources."async-0.1.22"
- sources."balanced-match-1.0.0"
- sources."base64id-0.1.0"
- sources."brace-expansion-1.1.11"
- 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."concat-map-0.0.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" // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- })
- sources."diff-1.0.8"
- sources."ejs-0.8.3"
- sources."esprima-1.0.4"
- sources."express-3.2.0"
- sources."express-partials-0.0.6"
- sources."eyes-0.1.8"
- sources."formidable-1.0.11"
- sources."fresh-0.1.0"
- sources."fs.realpath-1.0.0"
- sources."glob-7.1.2"
- sources."hooks-0.2.1"
- sources."iconv-lite-0.4.15"
- sources."inflight-1.0.6"
- 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."mailcomposer-4.0.2"
- sources."methods-0.0.1"
- sources."mime-1.2.6"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.10"
- sources."mkdirp-0.3.5"
- sources."moment-2.1.0"
- sources."mongodb-1.2.14"
- 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."ms-0.1.0"
- sources."muri-0.3.1"
- sources."nan-1.0.0"
- sources."net-ping-1.1.7"
- 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."path-is-absolute-1.0.1"
- sources."pause-0.0.1"
- sources."policyfile-0.0.4"
- sources."punycode-1.4.1"
- sources."qs-0.5.1"
- sources."rai-0.1.12"
- sources."range-parser-0.0.4"
- (sources."raw-socket-1.6.2" // {
- dependencies = [
- sources."nan-2.10.0"
- ];
- })
- sources."redis-0.7.3"
- sources."semver-1.1.0"
- sources."send-0.1.0"
- sources."simplesmtp-0.3.35"
- sources."sliced-0.0.3"
- sources."socket.io-0.9.14"
- 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.2"
- sources."wordwrap-0.0.3"
- sources."wrappy-1.0.2"
- (sources."ws-0.4.32" // {
- dependencies = [
- sources."commander-2.1.0"
- ];
- })
- sources."xmlhttprequest-1.4.2"
- sources."xoauth2-0.1.8"
- sources."zeparser-0.0.5"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Remote monitoring for HTTP applications";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- npm = nodeEnv.buildNodePackage {
- name = "npm";
- packageName = "npm";
- version = "6.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-6.3.0.tgz";
- sha512 = "oDtLFo3wXue/xe3pU/oks9VHS5501OAWlYrZrApZkFv7l2LXk+9CfPMbjbfZWK7Jqlc1jbNcJMkB6KZC7K/vEA==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "a package manager for JavaScript";
- homepage = https://docs.npmjs.com/;
- license = "Artistic-2.0";
- };
- production = true;
- bypassCache = false;
- };
- "npm2nix-git://github.com/NixOS/npm2nix.git#5.12.0" = nodeEnv.buildNodePackage {
- name = "npm2nix";
- packageName = "npm2nix";
- version = "5.12.0";
- src = fetchgit {
- url = "git://github.com/NixOS/npm2nix.git";
- rev = "0c06be7d278a7f64fc853a5fd42d2031d14496d5";
- sha256 = "e1b252cd883fd8c5c4618b157d03b3fb869fa6aad4170ef51e34681069d50bf5";
- };
- dependencies = [
- 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.5"
- sources."argparse-0.1.15"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."block-stream-0.0.9"
- sources."brace-expansion-1.1.11"
- 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.6"
- 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."dashdash-1.14.1"
- sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.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.2"
- (sources."fs-extra-0.6.4" // {
- dependencies = [
- sources."rimraf-2.2.8"
- ];
- })
- sources."fs.extra-1.3.2"
- sources."fs.realpath-1.0.0"
- (sources."fstream-0.1.31" // {
- dependencies = [
- sources."graceful-fs-3.0.11"
- sources."mkdirp-0.5.1"
- ];
- })
- 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."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.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.3.5"
- sources."natives-1.1.4"
- sources."ncp-0.4.2"
- sources."nopt-2.2.1"
- (sources."npm-registry-client-0.2.27" // {
- dependencies = [
- sources."semver-2.0.11"
- ];
- })
- (sources."npmconf-0.1.1" // {
- dependencies = [
- sources."inherits-1.0.2"
- sources."once-1.1.1"
- 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-2.0.0"
- sources."proto-list-1.2.4"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."readable-stream-2.3.6"
- sources."request-2.87.0"
- sources."retry-0.6.0"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."semver-4.3.6"
- sources."set-blocking-2.0.0"
- sources."signal-exit-3.0.2"
- sources."slide-1.1.6"
- sources."sshpk-1.14.2"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
- (sources."tar-0.1.17" // {
- dependencies = [
- sources."inherits-1.0.2"
- ];
- })
- (sources."temp-0.6.0" // {
- dependencies = [
- sources."graceful-fs-1.2.3"
- sources."rimraf-2.1.4"
- ];
- })
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."underscore-1.4.4"
- sources."underscore.string-2.3.3"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."verror-1.10.0"
- sources."walk-2.3.14"
- sources."wide-align-1.1.3"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Generate nix expressions to build npm packages";
- homepage = https://github.com/NixOS/npm2nix;
- };
- production = true;
- bypassCache = false;
- };
- npm-check-updates = nodeEnv.buildNodePackage {
- name = "npm-check-updates";
- packageName = "npm-check-updates";
- version = "2.14.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-2.14.2.tgz";
- sha512 = "kyrLnGIImPb4WK/S/4AgsxKZ21ztC9KP+6aNTZN31cGJm4+GyH+aNq7ASvvJQO3iOdg/c60qLdZVtLTOn4l0gQ==";
- };
- dependencies = [
- sources."ansi-align-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."argparse-1.0.10"
- sources."bluebird-3.5.1"
- (sources."boxen-1.3.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."camelcase-4.1.0"
- sources."capture-stack-trace-1.0.0"
- sources."chalk-1.1.3"
- sources."ci-info-1.1.3"
- sources."cint-8.2.1"
- sources."cli-boxes-1.0.0"
- sources."cli-table-0.3.1"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."colors-1.0.3"
- sources."commander-2.17.1"
- sources."configstore-3.1.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."deep-extend-0.6.0"
- sources."dot-prop-4.2.0"
- sources."duplexer3-0.1.4"
- sources."escape-string-regexp-1.0.5"
- sources."esprima-4.0.1"
- sources."execa-0.7.0"
- sources."fast-diff-1.1.2"
- sources."find-up-1.1.2"
- sources."get-stdin-5.0.1"
- sources."get-stream-3.0.0"
- sources."global-dirs-0.1.1"
- sources."got-6.7.1"
- sources."graceful-fs-4.1.11"
- sources."has-ansi-2.0.0"
- sources."has-flag-3.0.0"
- sources."import-lazy-2.1.0"
- sources."imurmurhash-0.1.4"
- sources."ini-1.3.5"
- sources."is-ci-1.1.0"
- 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."isexe-2.0.0"
- sources."jju-1.4.0"
- sources."js-yaml-3.12.0"
- sources."json-parse-helpfulerror-1.0.3"
- sources."json5-1.0.1"
- sources."latest-version-3.1.0"
- sources."lodash-4.17.10"
- sources."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.3"
- sources."make-dir-1.3.0"
- sources."minimist-1.2.0"
- sources."ms-2.0.0"
- sources."node-alias-1.0.4"
- sources."npm-3.10.10"
- sources."npm-run-path-2.0.2"
- (sources."npmi-2.0.1" // {
- dependencies = [
- sources."semver-4.3.6"
- ];
- })
- sources."object-assign-4.1.1"
- sources."object-keys-1.0.12"
- sources."p-finally-1.0.0"
- sources."package-json-4.0.1"
- sources."path-exists-2.1.0"
- sources."path-is-inside-1.0.2"
- sources."path-key-2.0.1"
- sources."pify-3.0.0"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- sources."prepend-http-1.0.4"
- sources."pseudomap-1.0.2"
- sources."rc-1.2.8"
- (sources."rc-config-loader-2.0.2" // {
- dependencies = [
- sources."path-exists-3.0.0"
- ];
- })
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."require-from-string-2.0.2"
- sources."safe-buffer-5.1.2"
- sources."semver-5.5.0"
- sources."semver-diff-2.1.0"
- sources."semver-utils-1.1.2"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- sources."spawn-please-0.3.0"
- sources."sprintf-js-1.0.3"
- (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."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."timed-out-4.0.1"
- sources."unique-string-1.0.0"
- sources."unzip-response-2.0.1"
- (sources."update-notifier-2.5.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."url-parse-lax-1.0.0"
- sources."which-1.3.1"
- 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 = {
- description = "Find newer versions of dependencies than what your package.json or bower.json allows";
- homepage = https://github.com/tjunnone/npm-check-updates;
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- nsp = nodeEnv.buildNodePackage {
- name = "nsp";
- packageName = "nsp";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nsp/-/nsp-3.2.1.tgz";
- sha512 = "dLmGi7IGixJEHKetErIH460MYiYIzAoxuVsloZFu9e1p9U8K0yULx7YQ1+VzrjZbB+wqq67ES1SfOvKVb/qMDQ==";
- };
- dependencies = [
- sources."agent-base-4.2.1"
- sources."ansi-escapes-3.1.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-3.2.1"
- sources."boom-5.2.0"
- sources."builtin-modules-1.1.1"
- sources."camelcase-4.1.0"
- sources."chalk-2.4.1"
- 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"
- sources."code-point-at-1.1.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."colors-1.3.1"
- sources."cross-spawn-5.1.0"
- sources."cvss-1.0.3"
- sources."debug-3.1.0"
- sources."decamelize-1.2.0"
- sources."error-ex-1.3.2"
- 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.2.0"
- sources."figures-2.0.0"
- sources."find-up-2.1.0"
- sources."get-caller-file-1.0.3"
- sources."get-stream-3.0.0"
- sources."graceful-fs-4.1.11"
- sources."has-flag-3.0.0"
- sources."hoek-4.2.1"
- sources."hosted-git-info-2.7.1"
- sources."https-proxy-agent-2.2.1"
- sources."iconv-lite-0.4.23"
- (sources."inquirer-3.3.0" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."lodash-4.17.10"
- 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.3"
- sources."mem-1.1.0"
- sources."mimic-fn-1.2.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.3.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."safer-buffer-2.1.2"
- 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."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- 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-5.4.0"
- sources."through-2.3.8"
- sources."tmp-0.0.33"
- sources."validate-npm-package-license-3.0.4"
- sources."which-1.3.1"
- 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 = {
- description = "The Node Security (nodesecurity.io) command line interface";
- homepage = "https://github.com/nodesecurity/nsp#readme";
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- ocaml-language-server = nodeEnv.buildNodePackage {
- name = "ocaml-language-server";
- packageName = "ocaml-language-server";
- version = "1.0.35";
- src = fetchurl {
- url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.35.tgz";
- sha512 = "9RS7+KyrmFFL2BZLjIBjLToqbDTKDTAoCGrQDm8eYgKie/ep6UnodGuvZgRaM9HOQ8RDzBh4rE3CfGdNsggD4g==";
- };
- dependencies = [
- sources."async-2.6.0"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."concat-map-0.0.1"
- sources."deepmerge-2.1.0"
- 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.5"
- sources."lokijs-1.5.3"
- 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.6.0"
- sources."vscode-languageclient-4.0.1"
- sources."vscode-languageserver-4.0.0"
- sources."vscode-languageserver-protocol-3.6.0"
- sources."vscode-languageserver-types-3.10.0"
- sources."vscode-uri-1.0.3"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "OCaml language server";
- homepage = https://github.com/freebroccolo/ocaml-language-server;
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- "parsoid-git://github.com/abbradar/parsoid#stable" = nodeEnv.buildNodePackage {
- name = "parsoid";
- packageName = "parsoid";
- version = "0.8.0";
- src = fetchgit {
- url = "git://github.com/abbradar/parsoid";
- rev = "89958e4f9e5583e0fdc5447103392e3d749d500b";
- sha256 = "1af850ced5bd8db64e20ad30bf59d99c14624efba3127759ca1c34088a0aadd7";
- };
- dependencies = [
- sources."accepts-1.3.5"
- 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.10"
- sources."array-flatten-1.1.1"
- sources."asap-2.0.6"
- sources."asn1-0.2.4"
- 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.8.0"
- sources."babybird-0.0.1"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- (sources."bl-1.2.2" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."bluebird-3.5.1"
- (sources."body-parser-1.18.3" // {
- dependencies = [
- sources."content-type-1.0.4"
- ];
- })
- sources."brace-expansion-1.1.11"
- 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" // {
- dependencies = [
- sources."wordwrap-0.0.2"
- ];
- })
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."colors-1.3.1"
- sources."combined-stream-1.0.6"
- sources."compressible-2.0.14"
- sources."compression-1.7.3"
- 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#master"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."core-js-2.5.7"
- sources."core-util-is-1.0.2"
- 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.1.0"
- sources."domino-1.0.30"
- sources."dtrace-provider-0.8.7"
- sources."ecc-jsbn-0.1.2"
- sources."ee-first-1.1.1"
- sources."encodeurl-1.0.2"
- sources."entities-1.1.1"
- sources."error-ex-1.3.2"
- sources."escape-html-1.0.3"
- sources."esprima-4.0.1"
- sources."etag-1.8.1"
- (sources."express-4.16.3" // {
- dependencies = [
- sources."body-parser-1.18.2"
- sources."content-type-1.0.4"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."iconv-lite-0.4.19"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."safe-buffer-5.1.1"
- sources."statuses-1.4.0"
- ];
- })
- sources."express-handlebars-3.0.0"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- (sources."finalhandler-1.1.1" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."find-up-1.1.2"
- sources."foreach-2.0.5"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- 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.3"
- sources."getpass-0.1.7"
- sources."glob-6.0.4"
- sources."graceful-fs-4.1.11"
- (sources."handlebars-4.0.11" // {
- dependencies = [
- sources."async-1.5.2"
- ];
- })
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."has-symbols-1.0.0"
- sources."hat-0.0.3"
- sources."hosted-git-info-2.7.1"
- sources."hot-shots-4.8.0"
- sources."http-errors-1.6.3"
- sources."http-signature-1.2.0"
- sources."iconv-lite-0.4.23"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."invert-kv-1.0.0"
- sources."ipaddr.js-1.8.0"
- 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.12.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" // {
- dependencies = [
- sources."ms-0.7.3"
- ];
- })
- (sources."kad-fs-0.0.4" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."kad-localstorage-0.0.7"
- (sources."kad-memstore-0.0.1" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."kind-of-3.2.2"
- sources."lazy-cache-1.0.4"
- sources."lcid-1.0.0"
- (sources."limitation-0.2.0" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- 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.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.10"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."moment-2.22.2"
- sources."ms-2.0.0"
- (sources."msgpack5-3.6.0" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."mv-2.1.1"
- sources."nan-2.10.0"
- sources."ncp-2.0.0"
- sources."negotiator-git+https://github.com/arlolra/negotiator#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.12"
- 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#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-2.0.0"
- sources."promise-7.3.1"
- sources."proxy-addr-2.0.4"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."range-parser-1.2.0"
- sources."raw-body-2.3.3"
- 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.87.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.2"
- sources."safe-json-stringify-1.2.0"
- sources."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- (sources."send-0.16.2" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- (sources."serve-favicon-2.5.0" // {
- dependencies = [
- sources."ms-2.1.1"
- sources."safe-buffer-5.1.1"
- ];
- })
- sources."serve-static-1.13.2"
- sources."service-runner-2.3.0"
- sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.0"
- sources."simplediff-0.1.1"
- sources."source-map-0.4.4"
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.2"
- sources."statuses-1.5.0"
- sources."streamsearch-0.1.2"
- sources."string-width-1.0.2"
- sources."string_decoder-0.10.31"
- sources."strip-ansi-3.0.1"
- sources."strip-bom-2.0.0"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- (sources."uglify-js-2.8.29" // {
- dependencies = [
- sources."source-map-0.5.7"
- sources."yargs-3.10.0"
- ];
- })
- 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.3.2"
- sources."validate-npm-package-license-3.0.4"
- 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."yargs-parser-5.0.0" // {
- dependencies = [
- sources."camelcase-3.0.0"
- ];
- })
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Mediawiki parser for the VisualEditor.";
- license = "GPL-2.0+";
- };
- production = true;
- bypassCache = false;
- };
- peerflix = nodeEnv.buildNodePackage {
- name = "peerflix";
- packageName = "peerflix";
- version = "0.39.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/peerflix/-/peerflix-0.39.0.tgz";
- sha512 = "spB+D+GXdM9JcPeWG8bpnWTxfXr/KwyyZ0OjNlpyw62ffxlCsbNhwaSmhXDpDC3wh4HuQejdYc1DlU+zTXL+WA==";
- };
- dependencies = [
- sources."addr-to-ip-port-1.5.1"
- sources."airplay-protocol-2.0.2"
- (sources."airplayer-2.0.0" // {
- dependencies = [
- sources."mime-1.6.0"
- ];
- })
- sources."ansi-escapes-3.1.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-2.0.0"
- sources."big-integer-1.6.34"
- sources."bitfield-0.1.0"
- (sources."bittorrent-dht-6.4.2" // {
- dependencies = [
- sources."bencode-0.7.0"
- ];
- })
- (sources."bittorrent-tracker-7.7.0" // {
- dependencies = [
- sources."bencode-0.8.0"
- ];
- })
- sources."blob-to-buffer-1.2.8"
- 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.11"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-equal-0.0.1"
- sources."buffer-equals-1.0.4"
- sources."buffer-fill-1.0.0"
- sources."buffer-from-1.1.1"
- 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."chardet-0.4.2"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."clivas-0.2.0"
- sources."code-point-at-1.1.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."compact2string-1.4.0"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- 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.6.0"
- 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.2"
- sources."escape-string-regexp-1.0.5"
- sources."external-editor-2.2.0"
- sources."fifo-0.1.4"
- sources."figures-2.0.0"
- sources."find-up-1.1.2"
- sources."flatten-0.0.1"
- (sources."fs-chunk-store-1.7.0" // {
- dependencies = [
- sources."minimist-0.0.8"
- 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."has-flag-3.0.0"
- sources."hat-0.0.3"
- sources."hosted-git-info-2.7.1"
- sources."http-headers-3.0.2"
- sources."iconv-lite-0.4.23"
- 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-5.2.0" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."lodash-4.17.10"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- sources."supports-color-5.4.0"
- ];
- })
- sources."internal-ip-1.2.0"
- sources."ip-1.1.5"
- sources."ip-set-1.0.1"
- sources."ipaddr.js-1.8.1"
- 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."k-bucket-2.0.1"
- ];
- })
- sources."k-rpc-socket-1.8.0"
- 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.2.3"
- sources."map-obj-1.0.1"
- sources."meow-3.7.0"
- sources."mime-2.3.1"
- sources."mimic-fn-1.2.0"
- sources."mimic-response-1.0.1"
- 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.3"
- sources."multicast-dns-service-types-1.1.0"
- sources."mute-stream-0.0.7"
- 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-2.0.6"
- sources."object-assign-4.1.1"
- sources."once-1.4.0"
- sources."onetime-2.0.1"
- sources."open-0.0.5"
- (sources."optimist-0.6.1" // {
- dependencies = [
- sources."minimist-0.0.10"
- ];
- })
- sources."options-0.0.6"
- sources."os-tmpdir-1.0.2"
- sources."parse-json-2.2.0"
- (sources."parse-torrent-5.9.1" // {
- dependencies = [
- sources."get-stdin-6.0.0"
- ];
- })
- (sources."parse-torrent-file-2.1.4" // {
- dependencies = [
- sources."bencode-0.7.0"
- ];
- })
- 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.1" // {
- dependencies = [
- sources."bncode-0.2.3"
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."peer-wire-swarm-0.12.2"
- 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-2.0.0"
- sources."pump-2.0.1"
- (sources."random-access-file-2.0.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- ];
- })
- sources."random-access-storage-1.3.0"
- sources."random-iterate-1.0.1"
- sources."randombytes-2.0.6"
- sources."range-parser-1.2.0"
- sources."rc-1.2.8"
- sources."re-emitter-1.1.3"
- sources."read-pkg-1.1.0"
- sources."read-pkg-up-1.0.1"
- sources."readable-stream-2.3.6"
- sources."redent-1.0.0"
- sources."repeating-2.0.1"
- sources."restore-cursor-2.0.0"
- sources."reverse-http-1.3.0"
- sources."rimraf-2.6.2"
- sources."run-async-2.3.0"
- sources."run-parallel-1.1.9"
- sources."run-series-1.1.8"
- sources."rusha-0.8.13"
- sources."rxjs-5.5.11"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- 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.8.1"
- sources."simple-peer-6.4.4"
- sources."simple-sha1-2.1.1"
- (sources."simple-websocket-4.3.1" // {
- dependencies = [
- sources."safe-buffer-5.0.1"
- sources."ws-2.3.1"
- ];
- })
- sources."single-line-log-1.1.2"
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."speedometer-0.1.4"
- sources."stream-buffers-2.2.0"
- sources."string-width-1.0.2"
- sources."string2compact-1.3.0"
- sources."string_decoder-1.1.1"
- 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."symbol-observable-1.0.1"
- sources."thirty-two-1.0.2"
- sources."through-2.3.8"
- sources."thunky-1.0.2"
- sources."tmp-0.0.33"
- sources."torrent-discovery-5.4.0"
- sources."torrent-piece-1.1.2"
- (sources."torrent-stream-1.0.4" // {
- dependencies = [
- sources."end-of-stream-0.1.5"
- sources."magnet-uri-4.2.3"
- sources."once-1.3.3"
- sources."parse-torrent-4.1.0"
- sources."thirty-two-0.0.2"
- ];
- })
- sources."trim-newlines-1.0.0"
- sources."typedarray-0.0.6"
- sources."ultron-1.1.1"
- sources."uniq-1.0.1"
- sources."util-deprecate-1.0.2"
- sources."utp-0.0.7"
- sources."validate-npm-package-license-3.0.4"
- sources."winreg-1.2.4"
- sources."wordwrap-0.0.3"
- sources."wrappy-1.0.2"
- (sources."ws-1.1.5" // {
- dependencies = [
- sources."ultron-1.0.2"
- ];
- })
- sources."xmlbuilder-4.0.0"
- sources."xmldom-0.1.27"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Streaming torrent client for Node.js";
- homepage = https://github.com/mafintosh/peerflix;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- peerflix-server = nodeEnv.buildNodePackage {
- name = "peerflix-server";
- packageName = "peerflix-server";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/peerflix-server/-/peerflix-server-0.3.1.tgz";
- sha512 = "T0PUe1EkLIammEBDCUM+/BRlOX6D504+ldvT1VWP4YzyZRAxYh/O1qv7BMyfF6FoF68wqOr1VYaNilOycLJ/IA==";
- };
- dependencies = [
- sources."accepts-1.2.13"
- sources."addr-to-ip-port-1.5.1"
- sources."after-0.8.2"
- sources."archiver-2.1.1"
- sources."archiver-utils-1.3.0"
- sources."arraybuffer.slice-0.0.6"
- sources."async-2.6.1"
- sources."aws-sign-0.2.1"
- sources."backo2-1.0.2"
- sources."balanced-match-1.0.0"
- sources."base64-arraybuffer-0.1.5"
- sources."base64-js-1.3.0"
- 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" // {
- dependencies = [
- sources."bencode-0.8.0"
- sources."minimist-1.2.0"
- ];
- })
- sources."bl-1.2.2"
- sources."blob-0.0.4"
- sources."bn.js-4.11.8"
- sources."bncode-0.5.3"
- (sources."body-parser-1.13.3" // {
- dependencies = [
- sources."qs-4.0.0"
- ];
- })
- sources."boom-0.3.8"
- sources."brace-expansion-1.1.11"
- sources."buffer-5.2.0"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-crc32-0.2.13"
- sources."buffer-equal-0.0.1"
- sources."buffer-equals-1.0.4"
- sources."buffer-fill-1.0.0"
- sources."buffer-from-1.1.1"
- 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."compress-commons-1.2.2"
- sources."compressible-2.0.14"
- sources."compression-1.5.2"
- sources."concat-map-0.0.1"
- (sources."connect-2.30.2" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."multiparty-3.3.2"
- sources."qs-4.0.0"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."connect-multiparty-2.1.1"
- sources."connect-timeout-1.6.2"
- sources."content-disposition-0.5.0"
- sources."content-type-1.0.4"
- 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.8.0"
- sources."crc32-stream-2.0.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"
- 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" // {
- dependencies = [
- sources."accepts-1.3.3"
- sources."cookie-0.3.1"
- sources."debug-2.3.3"
- sources."ms-0.7.2"
- sources."negotiator-0.6.1"
- ];
- })
- (sources."engine.io-client-1.8.5" // {
- dependencies = [
- sources."debug-2.3.3"
- sources."ms-0.7.2"
- ];
- })
- sources."engine.io-parser-1.3.2"
- (sources."errorhandler-1.4.3" // {
- dependencies = [
- sources."accepts-1.3.5"
- sources."escape-html-1.0.3"
- sources."negotiator-0.6.1"
- ];
- })
- sources."escape-html-1.0.2"
- sources."etag-1.7.0"
- (sources."express-3.21.2" // {
- dependencies = [
- sources."range-parser-1.0.3"
- ];
- })
- (sources."express-session-1.11.3" // {
- dependencies = [
- sources."crc-3.3.0"
- sources."uid-safe-2.0.0"
- ];
- })
- sources."fd-slicer-1.0.1"
- sources."fifo-0.1.4"
- sources."finalhandler-0.4.0"
- sources."flatten-0.0.1"
- sources."fluent-ffmpeg-2.1.2"
- sources."forever-agent-0.2.0"
- (sources."form-data-0.0.10" // {
- dependencies = [
- sources."async-0.2.10"
- sources."mime-1.2.11"
- ];
- })
- sources."forwarded-0.1.2"
- sources."fresh-0.3.0"
- sources."fs-chunk-store-1.7.0"
- sources."fs-constants-1.0.0"
- sources."fs.realpath-1.0.0"
- sources."get-browser-rtc-1.0.2"
- sources."glob-7.1.2"
- sources."graceful-fs-4.1.11"
- (sources."has-binary-0.1.7" // {
- dependencies = [
- sources."isarray-0.0.1"
- ];
- })
- 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."ieee754-1.1.12"
- 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-1.0.0"
- 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."k-bucket-2.0.1"
- ];
- })
- (sources."k-rpc-socket-1.8.0" // {
- dependencies = [
- sources."bencode-2.0.0"
- ];
- })
- sources."lazystream-1.0.0"
- sources."lodash-4.17.10"
- 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."ms-2.0.0"
- sources."vary-1.1.2"
- ];
- })
- sources."methods-1.1.2"
- sources."mime-1.3.4"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-response-1.0.1"
- 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.4"
- sources."negotiator-0.5.3"
- sources."node-uuid-1.4.8"
- sources."normalize-path-2.1.1"
- 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."peer-wire-protocol-0.7.1" // {
- dependencies = [
- sources."bncode-0.2.3"
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."peer-wire-swarm-0.12.2"
- sources."pend-1.2.0"
- sources."process-nextick-args-2.0.0"
- sources."proxy-addr-1.0.10"
- sources."pump-1.0.3"
- sources."qs-6.5.2"
- sources."random-access-file-2.0.1"
- sources."random-access-storage-1.3.0"
- 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."re-emitter-1.1.3"
- sources."read-torrent-1.3.0"
- sources."readable-stream-2.3.6"
- sources."remove-trailing-separator-1.1.0"
- (sources."request-2.16.6" // {
- dependencies = [
- sources."mime-1.2.11"
- sources."qs-0.5.6"
- ];
- })
- (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.9"
- sources."run-series-1.1.8"
- sources."rusha-0.8.13"
- sources."safe-buffer-5.1.2"
- (sources."send-0.13.0" // {
- dependencies = [
- sources."destroy-1.0.3"
- sources."range-parser-1.0.3"
- sources."statuses-1.2.1"
- ];
- })
- (sources."serve-favicon-2.3.2" // {
- dependencies = [
- sources."ms-0.7.2"
- ];
- })
- (sources."serve-index-1.7.3" // {
- dependencies = [
- sources."escape-html-1.0.3"
- ];
- })
- (sources."serve-static-1.10.3" // {
- dependencies = [
- sources."depd-1.1.2"
- sources."escape-html-1.0.3"
- sources."range-parser-1.0.3"
- sources."send-0.13.2"
- sources."statuses-1.2.1"
- ];
- })
- sources."simple-concat-1.0.0"
- sources."simple-get-2.8.1"
- sources."simple-peer-6.4.4"
- sources."simple-sha1-2.1.1"
- (sources."simple-websocket-4.3.1" // {
- dependencies = [
- sources."safe-buffer-5.0.1"
- sources."ultron-1.1.1"
- sources."ws-2.3.1"
- ];
- })
- sources."sntp-0.1.4"
- (sources."socket.io-1.7.4" // {
- dependencies = [
- sources."debug-2.3.3"
- sources."ms-0.7.2"
- ];
- })
- (sources."socket.io-adapter-0.5.0" // {
- dependencies = [
- sources."debug-2.3.3"
- sources."ms-0.7.2"
- ];
- })
- (sources."socket.io-client-1.7.4" // {
- dependencies = [
- sources."debug-2.3.3"
- sources."ms-0.7.2"
- ];
- })
- (sources."socket.io-parser-2.3.1" // {
- dependencies = [
- sources."component-emitter-1.1.2"
- sources."isarray-0.0.1"
- ];
- })
- sources."speedometer-0.1.4"
- sources."statuses-1.5.0"
- (sources."stream-counter-0.2.0" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."string2compact-1.3.0"
- sources."string_decoder-1.1.1"
- sources."tar-stream-1.6.1"
- sources."thirty-two-0.0.2"
- sources."thunky-1.0.2"
- sources."to-array-0.1.4"
- sources."to-buffer-1.1.1"
- sources."torrent-discovery-5.4.0"
- sources."torrent-piece-1.1.2"
- (sources."torrent-stream-1.0.4" // {
- dependencies = [
- sources."end-of-stream-0.1.5"
- sources."mkdirp-0.3.5"
- sources."once-1.3.3"
- ];
- })
- sources."tsscmp-1.0.5"
- sources."tunnel-agent-0.2.0"
- sources."type-is-1.6.16"
- sources."uid-safe-2.1.4"
- sources."ultron-1.0.2"
- sources."uniq-1.0.1"
- sources."unpipe-1.0.0"
- sources."util-deprecate-1.0.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.1"
- 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"
- sources."zip-stream-1.2.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Streaming torrent client for node.js with web ui.";
- homepage = "https://github.com/asapach/peerflix-server#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- phantomjs = nodeEnv.buildNodePackage {
- name = "phantomjs";
- packageName = "phantomjs";
- version = "2.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/phantomjs/-/phantomjs-2.1.7.tgz";
- sha1 = "c6910f67935c37285b6114329fc2f27d5f3e3134";
- };
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."asn1-0.2.4"
- sources."assert-plus-0.2.0"
- sources."async-2.6.1"
- sources."aws-sign2-0.6.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bl-1.0.3"
- sources."boom-2.10.1"
- sources."brace-expansion-1.1.11"
- sources."caseless-0.11.0"
- sources."chalk-1.1.3"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- 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" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."debug-0.7.4"
- sources."delayed-stream-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."escape-string-regexp-1.0.5"
- sources."extend-3.0.2"
- 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."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" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- 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."is-my-ip-valid-1.0.0"
- sources."is-my-json-valid-2.18.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."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.10"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- 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."safer-buffer-2.1.2"
- sources."sntp-1.0.9"
- (sources."sshpk-1.14.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."string_decoder-0.10.31"
- sources."stringstream-0.0.6"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."throttleit-1.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" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."which-1.2.14"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- sources."yauzl-2.4.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Headless WebKit with JS API";
- homepage = https://github.com/Medium/phantomjs;
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- prettier = nodeEnv.buildNodePackage {
- name = "prettier";
- packageName = "prettier";
- version = "1.14.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-1.14.2.tgz";
- sha512 = "McHPg0n1pIke+A/4VcaS2en+pTNjy4xF+Uuq86u/5dyDO59/TtFZtQ708QIRkEZ3qwKz3GVkVa6mpxK/CpB8Rg==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "Prettier is an opinionated code formatter";
- homepage = https://prettier.io/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- pulp = nodeEnv.buildNodePackage {
- name = "pulp";
- packageName = "pulp";
- version = "12.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pulp/-/pulp-12.3.0.tgz";
- sha512 = "Sm1XQg2h2JBVHWK3bxSHnmMdMoM0hEi5cbGfBBLpM6E2qU1vjJhDJsO/8bEkxC2RvNAAEOWROKMI3tTzmVxLbQ==";
- };
- dependencies = [
- sources."JSONStream-1.3.3"
- sources."acorn-5.7.1"
- sources."acorn-dynamic-import-3.0.0"
- sources."acorn-node-1.5.2"
- sources."anymatch-2.0.0"
- sources."arr-diff-4.0.0"
- sources."arr-flatten-1.1.0"
- sources."arr-union-3.1.0"
- sources."array-filter-0.0.1"
- sources."array-map-0.0.0"
- sources."array-reduce-0.0.0"
- sources."array-unique-0.3.2"
- sources."asn1.js-4.10.1"
- (sources."assert-1.4.1" // {
- dependencies = [
- sources."inherits-2.0.1"
- sources."util-0.10.3"
- ];
- })
- sources."assign-symbols-1.0.0"
- sources."async-1.5.2"
- sources."async-each-1.0.1"
- sources."atob-2.1.1"
- sources."balanced-match-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."base64-js-1.3.0"
- sources."binary-extensions-1.11.0"
- sources."bn.js-4.11.8"
- sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- sources."brorand-1.1.0"
- sources."browser-pack-6.1.0"
- (sources."browser-resolve-1.11.3" // {
- dependencies = [
- sources."resolve-1.1.7"
- ];
- })
- (sources."browserify-13.3.0" // {
- dependencies = [
- (sources."concat-stream-1.5.2" // {
- dependencies = [
- sources."readable-stream-2.0.6"
- ];
- })
- ];
- })
- sources."browserify-aes-1.2.0"
- sources."browserify-cache-api-3.0.1"
- sources."browserify-cipher-1.0.1"
- sources."browserify-des-1.0.2"
- (sources."browserify-incremental-3.1.1" // {
- dependencies = [
- sources."JSONStream-0.10.0"
- sources."jsonparse-0.0.5"
- ];
- })
- 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-crc32-0.2.13"
- sources."buffer-from-1.1.1"
- sources."buffer-xor-1.0.3"
- sources."builtin-status-codes-3.0.0"
- sources."cache-base-1.0.1"
- sources."cached-path-relative-1.0.1"
- sources."chokidar-2.0.4"
- sources."cipher-base-1.0.4"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."collection-visit-1.0.0"
- sources."colors-1.3.1"
- sources."combine-source-map-0.8.0"
- sources."component-emitter-1.2.1"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."console-browserify-1.1.0"
- sources."constants-browserify-1.0.0"
- sources."convert-source-map-1.1.3"
- sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
- sources."create-ecdh-4.0.3"
- sources."create-hash-1.2.0"
- sources."create-hmac-1.1.7"
- sources."crypto-browserify-3.12.0"
- sources."date-now-0.1.4"
- sources."debug-2.6.9"
- sources."decode-uri-component-0.2.0"
- sources."define-property-2.0.2"
- 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.3"
- sources."domain-browser-1.1.7"
- sources."duplexer2-0.1.4"
- sources."elliptic-6.4.1"
- sources."es6-promise-3.3.1"
- sources."events-1.1.1"
- sources."evp_bytestokey-1.0.3"
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- ];
- })
- sources."extend-shallow-3.0.2"
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- sources."for-in-1.0.2"
- sources."fragment-cache-0.2.1"
- sources."fs.realpath-1.0.0"
- sources."fsevents-1.2.4"
- sources."function-bind-1.1.1"
- sources."get-assigned-identifiers-1.2.0"
- sources."get-value-2.0.6"
- sources."glob-7.1.2"
- (sources."glob-parent-3.1.0" // {
- dependencies = [
- sources."is-glob-3.1.0"
- ];
- })
- sources."graceful-fs-4.1.11"
- sources."has-1.0.3"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."hash-base-3.0.4"
- sources."hash.js-1.1.5"
- sources."hmac-drbg-1.0.1"
- sources."htmlescape-1.1.1"
- sources."https-browserify-0.0.1"
- sources."ieee754-1.1.12"
- 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.2.0"
- sources."is-accessor-descriptor-1.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-buffer-1.1.6"
- sources."is-data-descriptor-1.0.0"
- sources."is-descriptor-1.0.2"
- sources."is-extendable-1.0.1"
- sources."is-extglob-2.1.1"
- sources."is-glob-4.0.0"
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-plain-object-2.0.4"
- sources."is-windows-1.0.2"
- sources."isarray-1.0.0"
- sources."isexe-2.0.0"
- sources."isobject-3.0.1"
- sources."json-stable-stringify-0.0.1"
- sources."jsonify-0.0.0"
- sources."jsonparse-1.3.1"
- sources."kind-of-6.0.2"
- (sources."labeled-stream-splicer-2.0.1" // {
- dependencies = [
- sources."isarray-2.0.4"
- ];
- })
- sources."lodash.debounce-4.0.8"
- sources."lodash.memoize-3.0.4"
- sources."map-cache-0.2.2"
- sources."map-visit-1.0.0"
- sources."md5.js-1.3.4"
- sources."micromatch-3.1.10"
- sources."miller-rabin-4.0.1"
- sources."mime-1.6.0"
- sources."minimalistic-assert-1.0.1"
- sources."minimalistic-crypto-utils-1.0.1"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- sources."mixin-deep-1.3.1"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- (sources."module-deps-4.1.1" // {
- dependencies = [
- (sources."concat-stream-1.5.2" // {
- dependencies = [
- sources."readable-stream-2.0.6"
- ];
- })
- ];
- })
- (sources."mold-source-map-0.4.0" // {
- dependencies = [
- sources."through-2.2.7"
- ];
- })
- sources."ms-2.0.0"
- sources."mute-stream-0.0.7"
- sources."nan-2.10.0"
- sources."nanomatch-1.2.13"
- sources."neo-async-2.5.1"
- sources."node-static-0.7.10"
- sources."normalize-path-2.1.1"
- (sources."object-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
- sources."object-visit-1.0.1"
- sources."object.pick-1.3.0"
- sources."once-1.4.0"
- (sources."optimist-0.6.1" // {
- dependencies = [
- sources."minimist-0.0.10"
- sources."wordwrap-0.0.3"
- ];
- })
- 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.1"
- sources."pascalcase-0.1.1"
- sources."path-browserify-0.0.1"
- sources."path-dirname-1.0.2"
- sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
- sources."path-platform-0.11.15"
- sources."pbkdf2-3.0.16"
- sources."posix-character-classes-0.1.1"
- sources."process-0.11.10"
- sources."process-nextick-args-1.0.7"
- sources."public-encrypt-4.0.2"
- 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.4"
- sources."read-1.0.7"
- sources."read-only-stream-2.0.0"
- (sources."readable-stream-2.3.6" // {
- dependencies = [
- sources."process-nextick-args-2.0.0"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."readdirp-2.1.0"
- sources."regex-not-1.0.2"
- sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.2"
- sources."repeat-string-1.6.1"
- sources."resolve-1.8.1"
- sources."resolve-url-0.2.1"
- sources."ret-0.1.15"
- sources."rimraf-2.6.2"
- sources."ripemd160-2.0.2"
- sources."safe-buffer-5.1.2"
- sources."safe-regex-1.1.0"
- sources."sander-0.5.1"
- sources."set-immediate-shim-1.0.1"
- (sources."set-value-2.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- ];
- })
- sources."sha.js-2.4.11"
- sources."shasum-1.0.2"
- sources."shell-quote-1.6.1"
- sources."simple-concat-1.0.0"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- (sources."snapdragon-util-3.0.1" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."sorcery-0.10.0"
- sources."source-map-0.5.7"
- sources."source-map-resolve-0.5.2"
- sources."source-map-url-0.4.0"
- sources."sourcemap-codec-1.4.1"
- sources."split-string-3.1.0"
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."stream-browserify-2.0.1"
- sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.3"
- 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.4.0"
- (sources."temp-0.8.3" // {
- dependencies = [
- sources."rimraf-2.2.8"
- ];
- })
- sources."through-2.3.8"
- sources."through2-2.0.3"
- sources."timers-browserify-1.4.2"
- sources."to-arraybuffer-1.0.1"
- (sources."to-object-path-0.3.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
- sources."tree-kill-1.2.0"
- sources."tty-browserify-0.0.1"
- sources."typedarray-0.0.6"
- sources."umd-3.0.3"
- sources."undeclared-identifiers-1.1.2"
- (sources."union-value-1.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
- sources."set-value-0.4.3"
- ];
- })
- (sources."unset-value-1.0.0" // {
- dependencies = [
- (sources."has-value-0.3.1" // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- })
- sources."has-values-0.1.4"
- ];
- })
- sources."upath-1.1.0"
- sources."urix-0.1.0"
- (sources."url-0.11.0" // {
- dependencies = [
- sources."punycode-1.3.2"
- ];
- })
- sources."use-3.1.1"
- sources."util-0.10.4"
- sources."util-deprecate-1.0.2"
- sources."vm-browserify-0.0.4"
- sources."watchpack-1.6.0"
- sources."which-1.3.1"
- sources."wordwrap-1.0.0"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A build system for PureScript projects";
- homepage = https://github.com/bodil/pulp;
- license = "LGPL-3.0+";
- };
- production = true;
- bypassCache = false;
- };
- quassel-webserver = nodeEnv.buildNodePackage {
- name = "quassel-webserver";
- packageName = "quassel-webserver";
- version = "2.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/quassel-webserver/-/quassel-webserver-2.2.8.tgz";
- sha1 = "195a2a5b6dd76e4a244a807002678b037d70eeaa";
- };
- dependencies = [
- sources."@types/babel-types-7.0.4"
- sources."@types/babylon-6.16.3"
- sources."accepts-1.3.5"
- 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."ansi-regex-2.1.1"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
- sources."array-flatten-1.1.1"
- sources."asap-2.0.6"
- sources."asn1-0.2.4"
- sources."assert-plus-0.2.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.6.0"
- sources."aws4-1.8.0"
- sources."babel-runtime-6.26.0"
- sources."babel-types-6.26.0"
- sources."babylon-6.18.0"
- sources."basic-auth-2.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bindings-1.2.1"
- sources."bl-1.2.2"
- sources."body-parser-1.18.3"
- sources."boom-2.10.1"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-fill-1.0.0"
- 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-4.2.1" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."cliui-2.1.0"
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- sources."console-control-strings-1.1.0"
- sources."constantinople-3.1.2"
- 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-js-2.5.7"
- sources."core-util-is-1.0.2"
- sources."cryptiles-2.0.5"
- (sources."dashdash-1.14.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."debug-2.6.9"
- sources."decamelize-1.2.0"
- sources."deep-extend-0.6.0"
- 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.2"
- sources."ee-first-1.1.1"
- sources."encodeurl-1.0.2"
- sources."end-of-stream-1.4.1"
- sources."errno-0.1.7"
- sources."escape-html-1.0.3"
- sources."esutils-2.0.2"
- sources."etag-1.8.1"
- sources."eventemitter2-3.0.2"
- sources."expand-template-1.1.1"
- (sources."express-4.16.3" // {
- dependencies = [
- sources."body-parser-1.18.2"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."iconv-lite-0.4.19"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."statuses-1.4.0"
- ];
- })
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- (sources."finalhandler-1.1.1" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."forever-agent-0.6.1"
- sources."form-data-2.1.4"
- sources."forwarded-0.1.2"
- sources."fresh-0.5.2"
- sources."fs-constants-1.0.0"
- sources."function-bind-1.1.1"
- sources."gauge-2.7.4"
- (sources."getpass-0.1.7" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."github-from-package-0.0.0"
- sources."graceful-fs-4.1.11"
- sources."har-schema-1.0.5"
- sources."har-validator-4.2.1"
- sources."has-1.0.3"
- sources."has-unicode-2.0.1"
- sources."hawk-3.1.3"
- sources."hoek-2.16.3"
- sources."http-errors-1.6.3"
- sources."http-signature-1.1.1"
- sources."httpolyglot-0.1.2"
- sources."iconv-lite-0.4.23"
- 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.8.0"
- sources."is-3.2.1"
- sources."is-buffer-1.1.6"
- (sources."is-expression-3.0.0" // {
- dependencies = [
- sources."acorn-4.0.13"
- ];
- })
- 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"
- sources."less-middleware-2.2.1"
- sources."libquassel-2.1.9"
- sources."lodash-4.17.10"
- 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.35.0"
- sources."mime-types-2.1.19"
- 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"
- sources."node-abi-2.4.3"
- sources."node.extend-2.0.0"
- sources."noop-logger-0.1.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."on-finished-2.3.0"
- sources."on-headers-1.0.1"
- sources."once-1.4.0"
- sources."os-homedir-1.0.2"
- sources."parseurl-1.3.2"
- sources."path-parse-1.0.6"
- sources."path-to-regexp-0.1.7"
- sources."performance-now-0.2.0"
- (sources."prebuild-install-2.1.2" // {
- dependencies = [
- sources."minimist-1.2.0"
- sources."tunnel-agent-0.4.3"
- ];
- })
- sources."process-nextick-args-2.0.0"
- sources."promise-7.3.1"
- sources."proxy-addr-2.0.4"
- sources."prr-1.0.1"
- sources."pug-2.0.3"
- sources."pug-attrs-2.0.3"
- sources."pug-code-gen-2.0.1"
- sources."pug-error-1.3.2"
- sources."pug-filters-3.1.0"
- sources."pug-lexer-4.0.0"
- sources."pug-linker-3.0.5"
- sources."pug-load-2.0.11"
- sources."pug-parser-5.0.0"
- sources."pug-runtime-2.0.4"
- sources."pug-strip-comments-1.0.3"
- sources."pug-walk-1.1.7"
- sources."pump-1.0.3"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."qtdatastream-0.7.1"
- sources."range-parser-1.2.0"
- sources."raw-body-2.3.3"
- (sources."rc-1.2.8" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."readable-stream-2.3.6"
- sources."regenerator-runtime-0.11.1"
- sources."repeat-string-1.6.1"
- (sources."request-2.81.0" // {
- dependencies = [
- sources."qs-6.4.0"
- ];
- })
- sources."resolve-1.8.1"
- sources."right-align-0.1.3"
- sources."safe-buffer-5.1.1"
- sources."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- (sources."send-0.16.2" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- (sources."serve-favicon-2.3.2" // {
- dependencies = [
- sources."etag-1.7.0"
- sources."fresh-0.3.0"
- sources."ms-0.7.2"
- ];
- })
- sources."serve-static-1.13.2"
- sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.0"
- 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.14.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."statuses-1.5.0"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."stringstream-0.0.6"
- sources."strip-ansi-3.0.1"
- sources."strip-json-comments-2.0.1"
- sources."tar-fs-1.16.3"
- sources."tar-stream-1.6.1"
- sources."to-buffer-1.1.1"
- sources."to-fast-properties-1.0.3"
- sources."token-stream-0.0.1"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- 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.3.2"
- sources."vary-1.1.2"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."void-elements-2.0.1"
- sources."wide-align-1.1.3"
- 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" // {
- dependencies = [
- sources."safe-buffer-5.0.1"
- ];
- })
- sources."xtend-4.0.1"
- sources."yargs-3.10.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Quassel web interface";
- homepage = https://github.com/magne4000/quassel-webserver;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- react-tools = nodeEnv.buildNodePackage {
- name = "react-tools";
- packageName = "react-tools";
- version = "0.13.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/react-tools/-/react-tools-0.13.3.tgz";
- sha1 = "da6ac7d4d7777a59a5e951cf46e72fd4b6b40a2c";
- };
- dependencies = [
- sources."acorn-5.7.1"
- 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.11"
- sources."commander-2.17.1"
- 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.23"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- (sources."jstransform-10.1.0" // {
- dependencies = [
- sources."source-map-0.1.31"
- ];
- })
- 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."safer-buffer-2.1.2"
- sources."source-map-0.5.7"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A set of complementary tools to React, including the JSX transformer.";
- homepage = https://facebook.github.io/react;
- license = "BSD-3-Clause";
- };
- 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.11"
- 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" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- 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"
- 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";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/s3http/-/s3http-0.0.5.tgz";
- sha1 = "c8fa1fffb8258ce68adf75df73f90fbb6f23d198";
- };
- dependencies = [
- sources."ajv-5.5.2"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sdk-1.18.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."bcrypt-pbkdf-1.0.2"
- 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."combined-stream-1.0.6"
- sources."commander-2.0.0"
- (sources."connect-2.11.0" // {
- dependencies = [
- sources."methods-0.0.1"
- ];
- })
- sources."cookie-0.1.0"
- sources."cookie-signature-1.0.1"
- sources."core-util-is-1.0.2"
- sources."crc-0.2.0"
- sources."crypto-0.0.3"
- sources."dashdash-1.14.1"
- sources."debug-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."ecc-jsbn-0.1.2"
- 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.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- 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."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.35.0"
- sources."mime-types-2.1.19"
- 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.2"
- sources."request-2.87.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.2"
- sources."safer-buffer-2.1.2"
- sources."sax-1.2.4"
- sources."send-0.1.4"
- sources."sshpk-1.14.2"
- sources."stream-counter-0.2.0"
- sources."string-1.6.1"
- sources."string_decoder-0.10.31"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."uid2-0.0.3"
- sources."util-0.4.9"
- sources."uuid-3.3.2"
- sources."verror-1.10.0"
- sources."xml2js-0.2.4"
- sources."xmlbuilder-0.4.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- };
- production = true;
- bypassCache = false;
- };
- semver = nodeEnv.buildNodePackage {
- name = "semver";
- packageName = "semver";
- version = "5.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
- sha512 = "4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "The semantic version parser used by npm.";
- homepage = "https://github.com/npm/node-semver#readme";
- license = "ISC";
- };
- production = true;
- bypassCache = false;
- };
- serve = nodeEnv.buildNodePackage {
- name = "serve";
- packageName = "serve";
- version = "9.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve/-/serve-9.4.2.tgz";
- sha512 = "2kSfuxVKvsMhXLyg3AoIYzxHwoY+kiSB6l/+zD7G+9c13W4519DtKl4qK+kbWvOXEVPdphg5MUePfp8ONGr7Yg==";
- };
- dependencies = [
- sources."@zeit/schemas-1.7.0"
- sources."ajv-6.5.2"
- sources."ansi-align-2.0.0"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- sources."arch-2.1.1"
- sources."arg-2.0.0"
- sources."balanced-match-1.0.0"
- sources."boxen-1.3.0"
- sources."brace-expansion-1.1.11"
- sources."bytes-3.0.0"
- sources."camelcase-4.1.0"
- sources."chalk-2.4.1"
- sources."cli-boxes-1.0.0"
- (sources."clipboardy-1.2.3" // {
- dependencies = [
- sources."execa-0.8.0"
- ];
- })
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."concat-map-0.0.1"
- sources."content-disposition-0.5.2"
- sources."cross-spawn-5.1.0"
- sources."deep-extend-0.6.0"
- sources."escape-string-regexp-1.0.5"
- sources."execa-0.7.0"
- sources."fast-deep-equal-2.0.1"
- sources."fast-json-stable-stringify-2.0.0"
- (sources."fast-url-parser-1.1.3" // {
- dependencies = [
- sources."punycode-1.4.1"
- ];
- })
- sources."get-stream-3.0.0"
- sources."glob-slash-1.0.0"
- sources."glob-slasher-1.0.1"
- sources."has-flag-3.0.0"
- sources."ini-1.3.5"
- sources."is-fullwidth-code-point-2.0.0"
- sources."is-stream-1.1.0"
- sources."isexe-2.0.0"
- sources."json-schema-traverse-0.4.1"
- sources."lodash-4.17.10"
- sources."lodash._objecttypes-2.4.1"
- sources."lodash.isobject-2.4.1"
- sources."lru-cache-4.1.3"
- sources."mime-db-1.33.0"
- sources."mime-types-2.1.18"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."path-is-inside-1.0.2"
- sources."path-key-2.0.1"
- sources."path-to-regexp-2.2.1"
- sources."pseudomap-1.0.2"
- sources."punycode-2.1.1"
- sources."rc-1.2.8"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."safe-buffer-5.1.2"
- sources."serve-handler-3.6.0"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- 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-5.4.0"
- sources."term-size-1.2.0"
- sources."toxic-1.0.1"
- sources."update-check-1.5.2"
- sources."uri-js-4.2.2"
- sources."which-1.3.1"
- sources."widest-line-2.0.0"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Static file serving and directory listing";
- homepage = "https://github.com/zeit/serve#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- shout = nodeEnv.buildNodePackage {
- name = "shout";
- packageName = "shout";
- version = "0.53.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/shout/-/shout-0.53.0.tgz";
- sha1 = "13ebfcb3b741759d2475db96107776c81d308ae8";
- };
- dependencies = [
- sources."CSSselect-0.4.1"
- sources."CSSwhat-0.4.7"
- sources."accepts-1.3.5"
- 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.4"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."base64-arraybuffer-0.1.2"
- sources."base64id-0.1.0"
- sources."bcrypt-nodejs-0.0.3"
- sources."bcrypt-pbkdf-1.0.2"
- sources."better-assert-1.0.2"
- sources."blob-0.0.2"
- sources."body-parser-1.18.2"
- sources."bytes-3.0.0"
- sources."callsite-1.0.0"
- sources."caseless-0.12.0"
- sources."cheerio-0.17.0"
- sources."co-4.6.0"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- 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."core-util-is-1.0.2"
- 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.0.1" // {
- dependencies = [
- sources."domelementtype-1.1.3"
- ];
- })
- 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.2"
- 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."engine.io-client-1.3.1" // {
- dependencies = [
- sources."debug-0.7.4"
- ];
- })
- 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.3"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."finalhandler-1.1.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- 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."htmlparser2-3.7.3" // {
- dependencies = [
- sources."domutils-1.5.1"
- sources."entities-1.0.0"
- ];
- })
- sources."http-errors-1.6.3"
- 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.8.0"
- 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.35.0"
- sources."mime-types-2.1.19"
- 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.4"
- sources."punycode-1.4.1"
- sources."qs-6.5.1"
- sources."range-parser-1.2.0"
- (sources."raw-body-2.3.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."read-1.0.7"
- sources."readable-stream-1.1.14"
- sources."request-2.87.0"
- sources."safe-buffer-5.1.1"
- sources."safer-buffer-2.1.2"
- sources."send-0.16.2"
- sources."serve-static-1.13.2"
- 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."socket.io-1.0.6" // {
- dependencies = [
- sources."debug-0.7.4"
- ];
- })
- (sources."socket.io-adapter-0.2.0" // {
- dependencies = [
- sources."debug-0.7.4"
- sources."emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz"
- sources."socket.io-parser-2.1.2"
- ];
- })
- (sources."socket.io-client-1.0.6" // {
- dependencies = [
- sources."debug-0.7.4"
- ];
- })
- (sources."socket.io-parser-2.2.0" // {
- dependencies = [
- sources."debug-0.7.4"
- ];
- })
- sources."split-0.3.3"
- sources."sshpk-1.14.2"
- sources."statuses-1.4.0"
- sources."stream-combiner-0.0.4"
- sources."string_decoder-0.10.31"
- sources."through-2.3.8"
- sources."tinycolor-0.0.1"
- sources."to-array-0.1.3"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- sources."unpipe-1.0.0"
- sources."utf8-2.0.0"
- sources."utils-merge-1.0.1"
- sources."uuid-3.3.2"
- sources."vary-1.1.2"
- sources."verror-1.10.0"
- (sources."ws-0.4.31" // {
- dependencies = [
- sources."commander-0.6.1"
- ];
- })
- sources."xmlhttprequest-https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "The self-hosted Web IRC client";
- homepage = "https://github.com/erming/shout#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- sinopia = nodeEnv.buildNodePackage {
- name = "sinopia";
- packageName = "sinopia";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sinopia/-/sinopia-1.4.0.tgz";
- sha1 = "36bf5209356facbf6cef18fa32274d116043ed24";
- };
- dependencies = [
- sources."JSONStream-1.3.3"
- sources."accepts-1.3.5"
- sources."ajv-5.5.2"
- sources."amdefine-1.0.1"
- sources."ansi-styles-3.2.1"
- sources."argparse-1.0.10"
- sources."array-flatten-2.1.1"
- sources."array-uniq-1.0.3"
- sources."asn1-0.2.4"
- 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.8.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- (sources."body-parser-1.18.3" // {
- dependencies = [
- sources."bytes-3.0.0"
- sources."http-errors-1.6.3"
- sources."iconv-lite-0.4.23"
- sources."qs-6.5.2"
- sources."raw-body-2.3.3"
- sources."setprototypeof-1.1.0"
- sources."statuses-1.5.0"
- ];
- })
- sources."brace-expansion-1.1.11"
- sources."bunyan-1.8.12"
- sources."bytes-1.0.0"
- sources."caseless-0.12.0"
- sources."chalk-2.4.1"
- sources."co-4.6.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- sources."compressible-2.0.14"
- (sources."compression-1.7.3" // {
- 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."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.2"
- sources."domutils-1.7.0"
- sources."dtrace-provider-0.8.7"
- sources."ecc-jsbn-0.1.2"
- 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.1"
- sources."etag-1.8.1"
- sources."express-5.0.0-alpha.6"
- sources."express-json5-0.1.0"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.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.2"
- 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" // {
- dependencies = [
- sources."minimatch-3.0.4"
- ];
- })
- sources."handlebars-2.0.0"
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."has-flag-3.0.0"
- sources."highlight.js-8.9.1"
- (sources."htmlparser2-3.9.2" // {
- dependencies = [
- sources."readable-stream-2.3.6"
- ];
- })
- (sources."http-errors-1.7.0" // {
- dependencies = [
- sources."setprototypeof-1.1.0"
- sources."statuses-1.5.0"
- ];
- })
- 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.4.0"
- sources."js-yaml-3.12.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.isplainobject-4.0.6"
- sources."lodash.isstring-4.0.1"
- sources."lodash.mergewith-4.6.1"
- 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.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-1.0.0"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."moment-2.22.2"
- sources."ms-2.0.0"
- sources."mv-2.1.1"
- sources."nan-2.10.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.23" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."process-nextick-args-2.0.0"
- 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."render-readme-1.3.1"
- (sources."request-2.87.0" // {
- dependencies = [
- sources."qs-6.5.2"
- ];
- })
- sources."rimraf-2.4.5"
- (sources."router-1.3.3" // {
- dependencies = [
- sources."setprototypeof-1.1.0"
- sources."utils-merge-1.0.1"
- ];
- })
- sources."safe-buffer-5.1.2"
- sources."safe-json-stringify-1.2.0"
- sources."safer-buffer-2.1.2"
- sources."sanitize-html-1.18.4"
- sources."semver-4.3.6"
- (sources."send-0.15.6" // {
- dependencies = [
- (sources."http-errors-1.6.3" // {
- dependencies = [
- sources."statuses-1.5.0"
- ];
- })
- sources."setprototypeof-1.1.0"
- ];
- })
- sources."serve-static-1.12.6"
- sources."setprototypeof-1.0.3"
- sources."sigmund-1.0.1"
- sources."sinopia-htpasswd-0.4.5"
- sources."source-map-0.1.43"
- sources."sprintf-js-1.0.3"
- sources."srcset-1.0.0"
- sources."sshpk-1.14.2"
- sources."statuses-1.3.1"
- sources."string_decoder-1.1.1"
- sources."supports-color-5.4.0"
- sources."through-2.3.8"
- sources."toidentifier-1.0.0"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- sources."uc.micro-1.0.5"
- (sources."uglify-js-2.3.6" // {
- dependencies = [
- sources."async-0.2.10"
- ];
- })
- sources."unpipe-1.0.0"
- sources."util-deprecate-1.0.2"
- sources."utils-merge-1.0.0"
- sources."uuid-3.3.2"
- 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 = {
- description = "Private npm repository server";
- homepage = https://github.com/rlidwka/sinopia;
- license = {
- type = "WTFPL";
- url = "http://www.wtfpl.net/txt/copying/";
- };
- };
- production = true;
- bypassCache = false;
- };
- sloc = nodeEnv.buildNodePackage {
- name = "sloc";
- packageName = "sloc";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sloc/-/sloc-0.2.0.tgz";
- sha1 = "b42d3da1a442a489f454c32c628e8ebf0007875c";
- };
- dependencies = [
- sources."async-2.1.5"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- 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.10"
- sources."minimatch-3.0.4"
- sources."process-nextick-args-2.0.0"
- sources."readable-stream-2.3.6"
- sources."readdirp-2.1.0"
- sources."safe-buffer-5.1.2"
- sources."set-immediate-shim-1.0.1"
- sources."string_decoder-1.1.1"
- sources."util-deprecate-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "sloc is a simple tool to count SLOC (source lines of code)";
- homepage = "https://github.com/flosse/sloc#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- smartdc = nodeEnv.buildNodePackage {
- name = "smartdc";
- packageName = "smartdc";
- version = "8.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/smartdc/-/smartdc-8.1.0.tgz";
- 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.11"
- 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.2.0"
- sources."escape-regexp-component-1.0.2"
- sources."extsprintf-1.2.0"
- sources."formidable-1.2.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" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- sources."extsprintf-1.3.0"
- ];
- })
- 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.10.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-2.0.0"
- sources."qs-3.1.0"
- sources."readable-stream-2.3.6"
- (sources."restify-4.0.3" // {
- dependencies = [
- sources."lru-cache-2.7.3"
- (sources."vasync-1.6.3" // {
- dependencies = [
- sources."verror-1.6.0"
- ];
- })
- ];
- })
- sources."rimraf-2.4.5"
- sources."safe-buffer-5.1.2"
- sources."safe-json-stringify-1.2.0"
- sources."safer-buffer-2.1.2"
- sources."semver-4.3.6"
- (sources."smartdc-auth-2.3.1" // {
- dependencies = [
- sources."assert-plus-0.1.2"
- sources."clone-0.1.5"
- sources."dashdash-1.10.1"
- sources."extsprintf-1.0.0"
- (sources."http-signature-1.2.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."json-schema-0.2.2"
- sources."once-1.3.0"
- (sources."vasync-1.4.3" // {
- dependencies = [
- (sources."jsprim-0.3.0" // {
- dependencies = [
- sources."verror-1.3.3"
- ];
- })
- ];
- })
- sources."verror-1.1.0"
- ];
- })
- sources."spdy-1.32.5"
- (sources."sshpk-1.7.1" // {
- dependencies = [
- sources."asn1-0.2.4"
- sources."assert-plus-0.2.0"
- (sources."dashdash-1.14.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- ];
- })
- sources."sshpk-agent-1.2.1"
- sources."stream-transform-0.1.2"
- sources."string_decoder-1.1.1"
- sources."tunnel-agent-0.4.3"
- sources."tweetnacl-0.14.5"
- 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 = {
- description = "Client SDK and CLI for the Joyent SmartDataCenter API";
- homepage = "https://github.com/joyent/node-smartdc#readme";
- };
- production = true;
- bypassCache = false;
- };
- "socket.io" = nodeEnv.buildNodePackage {
- name = "socket.io";
- packageName = "socket.io";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz";
- sha512 = "rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==";
- };
- dependencies = [
- sources."accepts-1.3.5"
- sources."after-0.8.2"
- sources."arraybuffer.slice-0.0.7"
- sources."async-limiter-1.0.0"
- 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-3.1.0"
- sources."engine.io-3.2.0"
- sources."engine.io-client-3.2.1"
- sources."engine.io-parser-2.1.2"
- sources."has-binary2-1.0.3"
- sources."has-cors-1.1.0"
- sources."indexof-0.0.1"
- sources."isarray-2.0.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- 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.2"
- sources."socket.io-adapter-1.1.1"
- sources."socket.io-client-2.1.1"
- sources."socket.io-parser-3.2.0"
- sources."to-array-0.1.4"
- sources."ultron-1.1.1"
- sources."ws-3.3.3"
- sources."xmlhttprequest-ssl-1.5.5"
- sources."yeast-0.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "node.js realtime framework server";
- homepage = "https://github.com/socketio/socket.io#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- stackdriver-statsd-backend = nodeEnv.buildNodePackage {
- name = "stackdriver-statsd-backend";
- packageName = "stackdriver-statsd-backend";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/stackdriver-statsd-backend/-/stackdriver-statsd-backend-0.2.3.tgz";
- sha1 = "6ffead71e5655d4d787c39da8d1c9eaaa59c91d7";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "Send metric data from statsd to Stackdriver";
- homepage = https://www.stackdriver.com/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- statsd = nodeEnv.buildNodePackage {
- name = "statsd";
- packageName = "statsd";
- version = "0.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/statsd/-/statsd-0.8.0.tgz";
- sha1 = "92041479e174a214df7147f2fab1348af0839052";
- };
- dependencies = [
- 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.10.0"
- sources."sequence-2.2.1"
- sources."simple-lru-cache-0.0.2"
- sources."winser-0.1.6"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Network daemon for the collection and aggregation of realtime application metrics";
- homepage = https://github.com/etsy/statsd;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- statsd-influxdb-backend = nodeEnv.buildNodePackage {
- name = "statsd-influxdb-backend";
- packageName = "statsd-influxdb-backend";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/statsd-influxdb-backend/-/statsd-influxdb-backend-0.6.0.tgz";
- sha1 = "25fb83cf0b3af923dfc7d506eb1208def8790d78";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "InfluxDB backend for StatsD";
- homepage = https://github.com/bernd/statsd-influxdb-backend;
- license = "BSD";
- };
- production = true;
- bypassCache = false;
- };
- statsd-librato-backend = nodeEnv.buildNodePackage {
- name = "statsd-librato-backend";
- packageName = "statsd-librato-backend";
- version = "2.0.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/statsd-librato-backend/-/statsd-librato-backend-2.0.16.tgz";
- sha1 = "6c6a0d14684f0341e5ba013eed30302545532bc6";
- };
- dependencies = [
- sources."extend-3.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A StatsD backend for Librato Metrics";
- homepage = https://github.com/librato/statsd-librato-backend;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- stylus = nodeEnv.buildNodePackage {
- name = "stylus";
- packageName = "stylus";
- version = "0.54.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/stylus/-/stylus-0.54.5.tgz";
- sha1 = "42b9560931ca7090ce8515a798ba9e6aa3d6dc79";
- };
- dependencies = [
- sources."amdefine-1.0.1"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."concat-map-0.0.1"
- sources."css-parse-1.7.0"
- sources."debug-3.1.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"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Robust, expressive, and feature-rich CSS superset";
- homepage = https://github.com/stylus/stylus;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- svgo = nodeEnv.buildNodePackage {
- name = "svgo";
- packageName = "svgo";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/svgo/-/svgo-1.0.5.tgz";
- sha512 = "nYrifviB77aNKDNKKyuay3M9aYiK6Hv5gJVDdjj2ZXTQmI8WZc8+UPLR5IpVlktJfSu3co/4XcWgrgI6seGBPg==";
- };
- dependencies = [
- sources."argparse-1.0.10"
- sources."boolbase-1.0.0"
- sources."coa-2.0.1"
- sources."colors-1.1.2"
- sources."css-select-1.3.0-rc0"
- sources."css-select-base-adapter-0.1.0"
- sources."css-tree-1.0.0-alpha25"
- sources."css-url-regex-1.1.0"
- sources."css-what-2.1.0"
- (sources."csso-3.5.1" // {
- dependencies = [
- sources."css-tree-1.0.0-alpha.29"
- ];
- })
- 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."es-abstract-1.12.0"
- sources."es-to-primitive-1.1.1"
- sources."esprima-4.0.1"
- sources."foreach-2.0.5"
- sources."function-bind-1.1.1"
- sources."has-1.0.3"
- sources."is-callable-1.1.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.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."nth-check-1.0.1"
- sources."object-keys-1.0.12"
- 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.8"
- sources."unquote-1.1.1"
- sources."util.promisify-1.0.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Nodejs-based tool for optimizing SVG vector graphics files";
- homepage = https://github.com/svg/svgo;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- tern = nodeEnv.buildNodePackage {
- name = "tern";
- packageName = "tern";
- version = "0.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tern/-/tern-0.21.0.tgz";
- sha1 = "809c87a826e112494398cf8894f7c2d1b3464eb7";
- };
- dependencies = [
- sources."acorn-4.0.13"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
- sources."enhanced-resolve-2.3.0"
- sources."errno-0.1.7"
- 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."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-2.0.0"
- sources."prr-1.0.1"
- sources."readable-stream-2.3.6"
- sources."resolve-from-2.0.0"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- sources."tapable-0.2.8"
- sources."util-deprecate-1.0.2"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A JavaScript code analyzer for deep, cross-editor language support";
- homepage = "https://github.com/ternjs/tern#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- tiddlywiki = nodeEnv.buildNodePackage {
- name = "tiddlywiki";
- packageName = "tiddlywiki";
- version = "5.1.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/tiddlywiki/-/tiddlywiki-5.1.17.tgz";
- sha1 = "bd3311146ba67fb4beee9933dd2e6d55e92665ed";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "a non-linear personal web notebook";
- homepage = "https://github.com/Jermolene/TiddlyWiki5#readme";
- license = "BSD";
- };
- production = true;
- bypassCache = false;
- };
- titanium = nodeEnv.buildNodePackage {
- name = "titanium";
- packageName = "titanium";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/titanium/-/titanium-5.2.0.tgz";
- sha512 = "kB3n4rOfcUznvAA+8yXjuExczfq2ILEp6tUlY2H3YVYRcV5W5tsVsvRJLHeB3sZzijxZY+5DTBuV3txiWevSHA==";
- };
- dependencies = [
- sources."adm-zip-0.4.11"
- sources."ajv-5.5.2"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."async-2.6.1"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."buffer-from-1.1.1"
- sources."caseless-0.12.0"
- sources."co-4.6.0"
- sources."colors-1.3.0"
- sources."combined-stream-1.0.6"
- sources."commander-2.16.0"
- sources."core-util-is-1.0.2"
- sources."cycle-1.0.3"
- sources."dashdash-1.14.1"
- sources."delayed-stream-1.0.0"
- sources."diff-3.5.0"
- sources."ecc-jsbn-0.1.2"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."eyes-0.1.8"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- (sources."fields-0.1.24" // {
- dependencies = [
- sources."colors-0.6.2"
- ];
- })
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."fs-extra-7.0.0"
- sources."getpass-0.1.7"
- sources."graceful-fs-4.1.11"
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."http-signature-1.2.0"
- sources."humanize-0.0.9"
- sources."is-typedarray-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-4.0.0"
- sources."jsprim-1.4.1"
- sources."keypress-0.2.1"
- sources."lodash-4.17.10"
- sources."longjohn-0.2.12"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."minimist-0.0.10"
- sources."moment-2.22.2"
- (sources."node-appc-0.2.48" // {
- dependencies = [
- sources."fs-extra-6.0.1"
- ];
- })
- sources."oauth-sign-0.8.2"
- sources."optimist-0.6.1"
- sources."os-tmpdir-1.0.2"
- sources."performance-now-2.1.0"
- sources."pkginfo-0.3.1"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."request-2.87.0"
- sources."rimraf-2.2.8"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- sources."source-map-0.6.1"
- sources."source-map-support-0.5.8"
- sources."sprintf-0.1.5"
- sources."sshpk-1.14.2"
- sources."stack-trace-0.0.10"
- sources."temp-0.8.3"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."uglify-js-3.4.7"
- sources."universalify-0.1.2"
- sources."uuid-3.3.2"
- sources."verror-1.10.0"
- (sources."winston-1.1.2" // {
- dependencies = [
- sources."async-1.0.0"
- sources."colors-1.0.3"
- ];
- })
- sources."wordwrap-0.0.3"
- sources."xmldom-0.1.27"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Appcelerator Titanium Command line";
- homepage = "https://github.com/appcelerator/titanium#readme";
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- triton = nodeEnv.buildNodePackage {
- name = "triton";
- packageName = "triton";
- version = "6.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/triton/-/triton-6.1.2.tgz";
- sha1 = "1f4376383ea07de8bffbfd00b445719d57a5f474";
- };
- dependencies = [
- sources."asn1-0.2.4"
- sources."assert-plus-0.2.0"
- sources."backoff-2.4.1"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bigspinner-3.1.0"
- sources."brace-expansion-1.1.11"
- sources."bunyan-1.8.12"
- sources."clone-0.1.5"
- (sources."cmdln-4.1.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- sources."extsprintf-1.4.0"
- ];
- })
- sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
- (sources."dashdash-1.14.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."dtrace-provider-0.8.7"
- sources."ecc-jsbn-0.1.2"
- sources."extsprintf-1.0.2"
- sources."fast-safe-stringify-1.2.3"
- sources."fuzzyset.js-0.0.1"
- (sources."getpass-0.1.6" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."glob-5.0.15"
- (sources."http-signature-1.2.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."is-absolute-0.1.7"
- sources."is-relative-0.1.3"
- sources."isarray-1.0.0"
- sources."isexe-1.1.2"
- sources."jsbn-0.1.1"
- sources."json-schema-0.2.3"
- (sources."jsprim-1.4.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- sources."verror-1.3.6"
- ];
- })
- sources."keep-alive-agent-0.0.1"
- sources."lodash-4.17.10"
- (sources."lomstream-1.1.0" // {
- dependencies = [
- sources."assert-plus-0.1.5"
- sources."extsprintf-1.3.0"
- ];
- })
- sources."lru-cache-4.1.3"
- sources."lstream-0.0.4"
- sources."mime-1.6.0"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."moment-2.22.2"
- sources."mooremachine-2.2.1"
- sources."mute-stream-0.0.7"
- sources."mv-2.1.1"
- sources."nan-2.10.0"
- sources."ncp-2.0.0"
- sources."once-1.3.2"
- sources."path-is-absolute-1.0.1"
- sources."precond-0.2.3"
- sources."process-nextick-args-2.0.0"
- sources."pseudomap-1.0.2"
- sources."read-1.0.7"
- sources."readable-stream-2.3.6"
- (sources."restify-clients-1.5.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- (sources."restify-errors-3.1.0" // {
- dependencies = [
- sources."assert-plus-0.2.0"
- sources."lodash-3.10.1"
- ];
- })
- ];
- })
- (sources."restify-errors-3.0.0" // {
- dependencies = [
- sources."assert-plus-0.1.5"
- sources."lodash-3.10.1"
- ];
- })
- sources."rimraf-2.4.4"
- sources."safe-buffer-5.1.2"
- sources."safe-json-stringify-1.2.0"
- sources."safer-buffer-2.1.2"
- sources."semver-5.1.0"
- (sources."smartdc-auth-2.5.7" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- (sources."dashdash-1.10.1" // {
- dependencies = [
- sources."assert-plus-0.1.5"
- ];
- })
- sources."extsprintf-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"
- sources."verror-1.1.0"
- ];
- })
- (sources."sshpk-1.14.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- (sources."sshpk-agent-1.7.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."string_decoder-1.1.1"
- sources."strsplit-1.0.0"
- (sources."tabula-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- (sources."vasync-1.6.3" // {
- dependencies = [
- sources."extsprintf-1.2.0"
- sources."verror-1.6.0"
- ];
- })
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- sources."extsprintf-1.4.0"
- ];
- })
- (sources."vstream-0.1.0" // {
- dependencies = [
- sources."assert-plus-0.1.5"
- sources."extsprintf-1.2.0"
- ];
- })
- sources."which-1.2.4"
- sources."wordwrap-1.0.0"
- sources."wrappy-1.0.2"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Joyent Triton CLI and client (https://www.joyent.com/triton)";
- homepage = https://github.com/joyent/node-triton;
- license = "MPL-2.0";
- };
- production = true;
- bypassCache = false;
- };
- typescript = nodeEnv.buildNodePackage {
- name = "typescript";
- packageName = "typescript";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-3.0.1.tgz";
- sha512 = "zQIMOmC+372pC/CCVLqnQ0zSBiY7HHodU7mpQdjiZddek4GMj31I3dUJ7gAs9o65X7mnRma6OokOkc6f9jjfBg==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "TypeScript is a language for application scale JavaScript development";
- homepage = http://typescriptlang.org/;
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
- typings = nodeEnv.buildNodePackage {
- name = "typings";
- packageName = "typings";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/typings/-/typings-2.1.1.tgz";
- 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" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."brace-expansion-1.1.11"
- sources."buffer-from-1.1.1"
- sources."camelcase-4.1.0"
- sources."capture-stack-trace-1.0.0"
- sources."chalk-1.1.3"
- sources."ci-info-1.1.3"
- sources."cli-boxes-1.0.0"
- sources."cli-cursor-1.0.2"
- sources."cli-truncate-1.1.0"
- sources."clone-1.0.4"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."columnify-1.5.4"
- sources."combined-stream-1.0.6"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."configstore-3.1.2"
- 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.6.0"
- 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.2"
- sources."escape-string-regexp-1.0.5"
- sources."execa-0.7.0"
- sources."exit-hook-1.1.1"
- sources."extend-3.0.2"
- sources."form-data-2.3.2"
- 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.3"
- sources."has-ansi-2.0.0"
- sources."has-flag-3.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.4"
- sources."is-absolute-0.2.6"
- sources."is-arrayish-0.2.1"
- sources."is-ci-1.1.0"
- 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-4.0.0"
- sources."jspm-config-0.3.4"
- sources."latest-version-3.1.0"
- sources."listify-1.0.0"
- sources."lockfile-1.0.4"
- sources."log-update-1.0.2"
- sources."loose-envify-1.4.0"
- sources."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.3"
- sources."make-dir-1.3.0"
- sources."make-error-1.3.4"
- sources."make-error-cause-1.2.2"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- 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" // {
- dependencies = [
- sources."semver-5.5.0"
- ];
- })
- 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."prepend-http-1.0.4"
- sources."process-nextick-args-2.0.0"
- sources."promise-finally-3.0.0"
- sources."pseudomap-1.0.2"
- sources."psl-1.1.29"
- sources."punycode-1.4.1"
- sources."rc-1.2.8"
- sources."readable-stream-2.3.6"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."restore-cursor-1.0.1"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- 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" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- sources."string_decoder-1.1.1"
- 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.4.3"
- sources."typedarray-0.0.6"
- sources."typescript-2.9.2"
- sources."typings-core-2.3.3"
- sources."unc-path-regex-0.1.2"
- sources."unique-string-1.0.0"
- sources."unzip-response-2.0.1"
- (sources."update-notifier-2.5.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."url-parse-lax-1.0.0"
- sources."util-deprecate-1.0.2"
- sources."wcwidth-1.0.1"
- sources."which-1.3.1"
- 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 = {
- description = "The TypeScript Definition Manager";
- homepage = https://github.com/typings/typings;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- uglify-js = nodeEnv.buildNodePackage {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.7.tgz";
- sha512 = "J0M2i1mQA+ze3EdN9SBi751DNdAXmeFLfJrd/MDIkRc3G3Gbb9OPVSx7GIQvVwfWxQARcYV2DTxIkMyDAk3o9Q==";
- };
- dependencies = [
- sources."commander-2.16.0"
- sources."source-map-0.6.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "JavaScript parser, mangler/compressor and beautifier toolkit";
- homepage = "https://github.com/mishoo/UglifyJS2#readme";
- license = "BSD-2-Clause";
- };
- production = true;
- bypassCache = false;
- };
- ungit = nodeEnv.buildNodePackage {
- name = "ungit";
- packageName = "ungit";
- version = "1.4.31";
- src = fetchurl {
- url = "https://registry.npmjs.org/ungit/-/ungit-1.4.31.tgz";
- sha512 = "ppS9UXM6/Gb3UT9JOydlxHnk409A+tVRjwrPYvkOL7QzytE+tvD7L6qu0pExES6bl9mvoNitvNVHMTFayXsNJg==";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."accepts-1.3.5"
- 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.5" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."array-flatten-1.1.1"
- sources."arraybuffer.slice-0.0.7"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."async-0.9.2"
- sources."async-limiter-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.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.2"
- 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.3"
- sources."brace-expansion-1.1.11"
- sources."buffer-from-1.1.1"
- 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.1.0" // {
- 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."clone-2.1.2"
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."color-3.0.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."color-string-1.5.3"
- 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.2" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.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-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."cycle-1.0.3"
- sources."dashdash-1.14.1"
- sources."debug-2.6.9"
- sources."decamelize-2.0.0"
- sources."deep-extend-0.6.0"
- sources."delayed-stream-0.0.5"
- sources."delegates-1.0.0"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
- sources."diff-3.5.0"
- sources."diff2html-2.3.3"
- sources."dnd-page-scroll-0.0.4"
- sources."eachr-3.2.0"
- sources."ecc-jsbn-0.1.2"
- sources."editions-1.3.4"
- sources."ee-first-1.1.1"
- sources."encodeurl-1.0.2"
- (sources."engine.io-3.2.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."engine.io-client-3.2.1" // {
- dependencies = [
- sources."component-emitter-1.2.1"
- sources."debug-3.1.0"
- ];
- })
- 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.3" // {
- dependencies = [
- sources."body-parser-1.18.2"
- (sources."http-errors-1.6.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."iconv-lite-0.4.19"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."statuses-1.4.0"
- ];
- })
- 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.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- (sources."finalhandler-1.1.1" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."find-up-3.0.0"
- sources."forever-agent-0.6.1"
- (sources."form-data-0.1.3" // {
- dependencies = [
- sources."mime-1.2.11"
- ];
- })
- 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.3"
- sources."get-stream-3.0.0"
- sources."getmac-1.4.3"
- 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.3" // {
- dependencies = [
- sources."isarray-2.0.1"
- ];
- })
- sources."has-cors-1.1.0"
- sources."has-unicode-2.0.1"
- sources."hasher-1.2.0"
- (sources."hogan.js-3.0.2" // {
- dependencies = [
- sources."mkdirp-0.3.0"
- ];
- })
- sources."hosted-git-info-2.7.1"
- sources."http-errors-1.6.3"
- sources."http-signature-1.2.0"
- sources."iconv-lite-0.4.23"
- sources."ignore-3.3.10"
- 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.8.0"
- sources."is-arrayish-0.3.2"
- 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."is-wsl-1.1.0"
- sources."isarray-0.0.1"
- sources."isexe-2.0.0"
- sources."isstream-0.1.2"
- sources."jquery-3.3.1"
- sources."jquery-ui-bundle-1.12.1"
- 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.5" // {
- dependencies = [
- sources."methods-1.0.1"
- sources."mime-1.2.11"
- sources."qs-1.2.0"
- sources."superagent-0.21.0"
- ];
- })
- sources."knockout-3.5.0-rc"
- sources."lcid-1.0.0"
- sources."locate-path-3.0.0"
- sources."locks-0.2.2"
- sources."lodash-4.17.10"
- sources."lru-cache-4.1.3"
- 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.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."moment-2.22.2"
- sources."ms-2.0.0"
- sources."negotiator-0.6.1"
- sources."node-cache-4.2.0"
- sources."nopt-1.0.10"
- sources."normalize-package-data-2.4.0"
- sources."npm-6.1.0"
- sources."npm-package-arg-6.1.0"
- sources."npm-registry-client-8.5.1"
- 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."opn-5.3.0"
- sources."os-homedir-1.0.2"
- sources."os-locale-2.1.0"
- sources."os-tmpdir-1.0.2"
- sources."osenv-0.1.5"
- sources."p-finally-1.0.0"
- sources."p-limit-2.0.0"
- sources."p-locate-3.0.0"
- sources."p-try-2.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."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-2.0.0"
- sources."proxy-addr-2.0.4"
- sources."pseudomap-1.0.2"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."random-bytes-1.0.0"
- sources."range-parser-1.2.0"
- sources."raven-js-3.26.4"
- sources."raw-body-2.3.3"
- (sources."rc-1.2.8" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."readable-stream-1.0.27-1"
- sources."reduce-component-1.0.1"
- (sources."request-2.87.0" // {
- dependencies = [
- sources."combined-stream-1.0.6"
- sources."delayed-stream-1.0.0"
- sources."extend-3.0.2"
- sources."form-data-2.3.2"
- ];
- })
- 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."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- (sources."send-0.16.2" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."serve-static-1.13.2"
- sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.0"
- 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."socket.io-2.1.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."socket.io-adapter-1.1.1"
- (sources."socket.io-client-2.1.1" // {
- dependencies = [
- sources."component-emitter-1.2.1"
- sources."debug-3.1.0"
- ];
- })
- (sources."socket.io-parser-3.2.0" // {
- dependencies = [
- sources."component-emitter-1.2.1"
- sources."debug-3.1.0"
- sources."isarray-2.0.1"
- ];
- })
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.14.2"
- sources."ssri-5.3.0"
- sources."stack-trace-0.0.10"
- sources."statuses-1.5.0"
- sources."string-width-1.0.2"
- sources."string_decoder-0.10.31"
- sources."strip-ansi-3.0.1"
- sources."strip-eof-1.0.0"
- sources."strip-json-comments-2.0.1"
- (sources."superagent-3.8.3" // {
- dependencies = [
- sources."combined-stream-1.0.6"
- sources."component-emitter-1.2.1"
- sources."cookiejar-2.1.2"
- sources."debug-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."extend-3.0.2"
- sources."form-data-2.3.2"
- sources."formidable-1.2.1"
- sources."isarray-1.0.0"
- sources."readable-stream-2.3.6"
- sources."string_decoder-1.1.1"
- ];
- })
- (sources."temp-0.8.3" // {
- dependencies = [
- sources."rimraf-2.2.8"
- ];
- })
- sources."to-array-0.1.4"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- sources."typechecker-4.5.0"
- 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.3.2"
- sources."validate-npm-package-license-3.0.4"
- sources."validate-npm-package-name-3.0.0"
- sources."vary-1.1.2"
- sources."verror-1.10.0"
- sources."whatwg-fetch-2.0.4"
- sources."which-1.3.1"
- sources."which-module-2.0.0"
- sources."wide-align-1.1.3"
- (sources."winston-2.4.3" // {
- dependencies = [
- sources."async-1.0.0"
- ];
- })
- sources."wrap-ansi-2.1.0"
- sources."wrappy-1.0.2"
- sources."ws-3.3.3"
- sources."xmlhttprequest-ssl-1.5.5"
- sources."xregexp-4.0.0"
- sources."y18n-4.0.0"
- sources."yallist-2.1.2"
- (sources."yargs-12.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-10.1.0"
- sources."yeast-0.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Git made easy";
- homepage = "https://github.com/FredrikNoren/ungit#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- vue-cli = nodeEnv.buildNodePackage {
- name = "vue-cli";
- packageName = "vue-cli";
- version = "2.9.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.6.tgz";
- sha512 = "swQ0bfyJSWfFr42IXr8A774yA1n+YudhzsaHBKhWSkczSqjvgZvSvM8NEnx6QKnfOHBXbdNR5vhahjNUMlftQQ==";
- };
- dependencies = [
- sources."absolute-0.0.1"
- (sources."ajv-5.5.2" // {
- dependencies = [
- sources."co-4.6.0"
- ];
- })
- sources."align-text-0.1.4"
- sources."amdefine-1.0.1"
- sources."ansi-escapes-3.1.0"
- sources."ansi-red-0.1.1"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- sources."ansi-wrap-0.1.0"
- sources."argparse-1.0.10"
- sources."array-differ-1.0.0"
- sources."array-union-1.0.2"
- sources."array-uniq-1.0.3"
- sources."arrify-1.0.1"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."async-2.6.1"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- sources."base64-js-0.0.8"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bl-1.2.2"
- sources."bluebird-3.5.1"
- sources."brace-expansion-1.1.11"
- sources."buffer-3.6.0"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-crc32-0.2.13"
- sources."buffer-fill-1.0.0"
- sources."builtins-1.0.3"
- sources."camelcase-1.2.1"
- sources."capture-stack-trace-1.0.0"
- sources."caseless-0.12.0"
- sources."caw-2.0.1"
- sources."center-align-0.1.3"
- sources."chalk-2.4.1"
- sources."chardet-0.5.0"
- sources."cli-cursor-2.1.0"
- sources."cli-spinners-1.3.1"
- sources."cli-width-2.2.0"
- (sources."cliui-2.1.0" // {
- dependencies = [
- sources."wordwrap-0.0.2"
- ];
- })
- sources."clone-1.0.4"
- sources."co-3.1.0"
- sources."co-from-stream-0.0.0"
- sources."co-fs-extra-1.2.1"
- sources."co-read-0.0.1"
- sources."coffee-script-1.12.7"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- sources."concat-map-0.0.1"
- sources."config-chain-1.1.11"
- sources."consolidate-0.14.5"
- sources."core-util-is-1.0.2"
- sources."create-error-class-3.0.2"
- sources."dashdash-1.14.1"
- sources."decamelize-1.2.0"
- sources."decompress-4.2.0"
- sources."decompress-tar-4.1.1"
- (sources."decompress-tarbz2-4.1.1" // {
- dependencies = [
- sources."file-type-6.2.0"
- ];
- })
- sources."decompress-targz-4.1.1"
- (sources."decompress-unzip-4.0.1" // {
- dependencies = [
- sources."file-type-3.9.0"
- sources."get-stream-2.3.1"
- ];
- })
- sources."delayed-stream-1.0.0"
- sources."download-5.0.3"
- sources."download-git-repo-1.0.2"
- sources."duplexer3-0.1.4"
- sources."ecc-jsbn-0.1.2"
- sources."enable-1.3.2"
- sources."end-of-stream-1.4.1"
- sources."escape-string-regexp-1.0.5"
- sources."esprima-4.0.1"
- sources."extend-3.0.2"
- sources."extend-shallow-2.0.1"
- sources."external-editor-3.0.1"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."fd-slicer-1.1.0"
- sources."figures-2.0.0"
- sources."file-type-5.2.0"
- sources."filename-reserved-regex-2.0.0"
- sources."filenamify-2.1.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."fs-constants-1.0.0"
- sources."fs-extra-0.26.7"
- sources."fs.realpath-1.0.0"
- sources."get-proxy-2.1.0"
- sources."get-stream-3.0.0"
- sources."getpass-0.1.7"
- sources."git-clone-0.1.0"
- sources."glob-7.1.2"
- sources."got-6.7.1"
- sources."graceful-fs-4.1.11"
- sources."graceful-readlink-1.0.1"
- sources."gray-matter-2.1.1"
- (sources."handlebars-4.0.11" // {
- dependencies = [
- sources."async-1.5.2"
- ];
- })
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- (sources."has-ansi-2.0.0" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."has-flag-3.0.0"
- sources."has-generators-1.0.1"
- sources."has-symbol-support-x-1.4.2"
- sources."has-to-string-tag-x-1.4.1"
- sources."http-signature-1.2.0"
- sources."iconv-lite-0.4.23"
- sources."ieee754-1.1.12"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."ini-1.3.5"
- sources."inquirer-6.1.0"
- sources."is-3.2.1"
- sources."is-buffer-1.1.6"
- sources."is-extendable-0.1.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."is-natural-number-4.0.1"
- sources."is-object-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."is-utf8-0.2.1"
- sources."isarray-1.0.0"
- sources."isstream-0.1.2"
- sources."isurl-1.0.0"
- sources."js-yaml-3.12.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."jsonfile-2.4.0"
- sources."jsprim-1.4.1"
- sources."kind-of-3.2.2"
- sources."klaw-1.3.1"
- sources."lazy-cache-1.0.4"
- sources."lodash-4.17.10"
- sources."log-symbols-2.2.0"
- sources."longest-1.0.1"
- sources."lowercase-keys-1.0.1"
- (sources."make-dir-1.3.0" // {
- dependencies = [
- sources."pify-3.0.0"
- ];
- })
- (sources."metalsmith-2.3.0" // {
- 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."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."multimatch-2.1.0"
- sources."mute-stream-0.0.7"
- (sources."npm-conf-1.1.3" // {
- dependencies = [
- sources."pify-3.0.0"
- ];
- })
- sources."oauth-sign-0.8.2"
- sources."object-assign-4.1.1"
- sources."once-1.4.0"
- sources."onetime-2.0.1"
- sources."optimist-0.6.1"
- sources."ora-1.4.0"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."path-is-absolute-1.0.1"
- 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."prepend-http-1.0.4"
- sources."process-nextick-args-2.0.0"
- sources."proto-list-1.2.4"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."read-metadata-1.0.0"
- sources."readable-stream-2.3.6"
- sources."recursive-readdir-2.2.2"
- sources."repeat-string-1.6.1"
- sources."request-2.87.0"
- sources."restore-cursor-2.0.0"
- sources."right-align-0.1.3"
- sources."rimraf-2.6.2"
- sources."run-async-2.3.0"
- sources."rxjs-6.2.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- (sources."seek-bzip-1.0.5" // {
- dependencies = [
- sources."commander-2.8.1"
- ];
- })
- sources."semver-5.5.0"
- sources."signal-exit-3.0.2"
- sources."source-map-0.4.4"
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.2"
- sources."stat-mode-0.2.2"
- sources."string-width-2.1.1"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-4.0.0"
- sources."strip-dirs-2.1.0"
- sources."strip-outer-1.0.1"
- sources."supports-color-5.4.0"
- sources."tar-stream-1.6.1"
- sources."through-2.3.8"
- sources."thunkify-2.1.2"
- sources."thunkify-wrap-1.0.4"
- sources."tildify-1.2.0"
- sources."timed-out-4.0.1"
- sources."tmp-0.0.33"
- sources."to-buffer-1.1.1"
- sources."toml-2.3.3"
- sources."tough-cookie-2.3.4"
- sources."trim-repeated-1.0.0"
- sources."tslib-1.9.3"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- (sources."uglify-js-2.8.29" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
- sources."uglify-to-browserify-1.0.2"
- sources."uid-0.0.2"
- sources."unbzip2-stream-1.2.5"
- sources."unyield-0.0.1"
- sources."unzip-response-2.0.1"
- sources."url-parse-lax-1.0.0"
- sources."url-to-options-1.0.1"
- sources."user-home-2.0.0"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."validate-npm-package-name-3.0.0"
- sources."verror-1.10.0"
- sources."ware-1.3.0"
- sources."win-fork-1.1.1"
- sources."window-size-0.1.0"
- sources."wordwrap-0.0.3"
- sources."wrap-fn-0.1.5"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- sources."yaml-js-0.0.8"
- sources."yargs-3.10.0"
- sources."yauzl-2.10.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A simple CLI for scaffolding Vue.js projects.";
- homepage = "https://github.com/vuejs/vue-cli#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- webdrvr = nodeEnv.buildNodePackage {
- name = "webdrvr";
- packageName = "webdrvr";
- version = "2.43.0-1";
- src = fetchurl {
- url = "https://registry.npmjs.org/webdrvr/-/webdrvr-2.43.0-1.tgz";
- sha1 = "17c442b94c0a6a3a68293d6ea4deb408f8cb9225";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."adm-zip-0.4.11"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."asn1-0.2.4"
- sources."assert-plus-0.2.0"
- sources."async-2.6.1"
- sources."aws-sign2-0.6.0"
- sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bl-1.0.3"
- sources."boom-2.10.1"
- sources."brace-expansion-1.1.11"
- sources."caseless-0.11.0"
- sources."chalk-1.1.3"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- 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" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."debug-0.7.4"
- sources."delayed-stream-1.0.0"
- sources."ecc-jsbn-0.1.2"
- sources."escape-string-regexp-1.0.5"
- sources."extend-3.0.2"
- (sources."extract-zip-1.5.0" // {
- dependencies = [
- sources."mkdirp-0.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" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- 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-ip-valid-1.0.0"
- sources."is-my-json-valid-2.18.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."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.10"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- 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."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."rimraf-2.6.2"
- sources."safer-buffer-2.1.2"
- sources."semver-2.3.2"
- sources."sntp-1.0.9"
- (sources."sshpk-1.14.2" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."string_decoder-0.10.31"
- sources."stringstream-0.0.6"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."throttleit-1.0.0"
- 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.9.1"
- sources."util-deprecate-1.0.2"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."which-1.2.14"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- sources."yauzl-2.4.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "NPM wrapper for Selenium Webdriver including Chromedriver / IEDriver / IOSDriver / Ghostdriver";
- homepage = https://github.com/uxebu/webdrvr;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- webpack = nodeEnv.buildNodePackage {
- name = "webpack";
- packageName = "webpack";
- version = "4.16.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-4.16.5.tgz";
- sha512 = "i5cHYHonzSc1zBuwB5MSzW4v9cScZFbprkHK8ZgzPDCRkQXGGpYzPmJhbus5bOrZ0tXTcQp+xyImRSvKb0b+Kw==";
- };
- dependencies = [
- sources."@webassemblyjs/ast-1.5.13"
- sources."@webassemblyjs/floating-point-hex-parser-1.5.13"
- sources."@webassemblyjs/helper-api-error-1.5.13"
- sources."@webassemblyjs/helper-buffer-1.5.13"
- sources."@webassemblyjs/helper-code-frame-1.5.13"
- sources."@webassemblyjs/helper-fsm-1.5.13"
- sources."@webassemblyjs/helper-module-context-1.5.13"
- sources."@webassemblyjs/helper-wasm-bytecode-1.5.13"
- sources."@webassemblyjs/helper-wasm-section-1.5.13"
- sources."@webassemblyjs/ieee754-1.5.13"
- (sources."@webassemblyjs/leb128-1.5.13" // {
- dependencies = [
- sources."long-4.0.0"
- ];
- })
- sources."@webassemblyjs/utf8-1.5.13"
- sources."@webassemblyjs/wasm-edit-1.5.13"
- sources."@webassemblyjs/wasm-gen-1.5.13"
- sources."@webassemblyjs/wasm-opt-1.5.13"
- sources."@webassemblyjs/wasm-parser-1.5.13"
- sources."@webassemblyjs/wast-parser-1.5.13"
- sources."@webassemblyjs/wast-printer-1.5.13"
- sources."acorn-5.7.1"
- sources."acorn-dynamic-import-3.0.0"
- sources."ajv-6.5.2"
- sources."ajv-keywords-3.2.0"
- sources."anymatch-2.0.0"
- sources."aproba-1.2.0"
- sources."arr-diff-4.0.0"
- sources."arr-flatten-1.1.0"
- sources."arr-union-3.1.0"
- sources."array-unique-0.3.2"
- sources."asn1.js-4.10.1"
- (sources."assert-1.4.1" // {
- dependencies = [
- sources."inherits-2.0.1"
- sources."util-0.10.3"
- ];
- })
- sources."assign-symbols-1.0.0"
- sources."async-each-1.0.1"
- sources."atob-2.1.1"
- sources."balanced-match-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."base64-js-1.3.0"
- sources."big.js-3.2.0"
- sources."binary-extensions-1.11.0"
- sources."bluebird-3.5.1"
- sources."bn.js-4.11.8"
- sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."brorand-1.1.0"
- sources."browserify-aes-1.2.0"
- sources."browserify-cipher-1.0.1"
- sources."browserify-des-1.0.2"
- 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-from-1.1.1"
- sources."buffer-xor-1.0.3"
- sources."builtin-status-codes-3.0.0"
- sources."cacache-10.0.4"
- sources."cache-base-1.0.1"
- sources."chokidar-2.0.4"
- sources."chownr-1.0.1"
- sources."chrome-trace-event-1.0.0"
- sources."cipher-base-1.0.4"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."collection-visit-1.0.0"
- sources."commander-2.14.1"
- sources."commondir-1.0.1"
- sources."component-emitter-1.2.1"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."console-browserify-1.1.0"
- sources."constants-browserify-1.0.0"
- sources."copy-concurrently-1.0.5"
- sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
- sources."create-ecdh-4.0.3"
- sources."create-hash-1.2.0"
- sources."create-hmac-1.1.7"
- sources."crypto-browserify-3.12.0"
- sources."cyclist-0.2.2"
- sources."date-now-0.1.4"
- sources."debug-3.1.0"
- sources."decode-uri-component-0.2.0"
- sources."define-property-2.0.2"
- sources."des.js-1.0.0"
- sources."diffie-hellman-5.0.3"
- sources."domain-browser-1.2.0"
- sources."duplexify-3.6.0"
- sources."elliptic-6.4.1"
- sources."emojis-list-2.1.0"
- sources."end-of-stream-1.4.1"
- sources."enhanced-resolve-4.1.0"
- sources."errno-0.1.7"
- sources."eslint-scope-4.0.0"
- sources."esrecurse-4.2.1"
- sources."estraverse-4.2.0"
- sources."events-1.1.1"
- sources."evp_bytestokey-1.0.3"
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."extend-shallow-3.0.2" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."fast-deep-equal-2.0.1"
- sources."fast-json-stable-stringify-2.0.0"
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."find-cache-dir-1.0.0"
- sources."find-up-2.1.0"
- sources."flush-write-stream-1.0.3"
- sources."for-in-1.0.2"
- sources."fragment-cache-0.2.1"
- sources."from2-2.3.0"
- sources."fs-write-stream-atomic-1.0.10"
- sources."fs.realpath-1.0.0"
- sources."fsevents-1.2.4"
- sources."get-value-2.0.6"
- sources."glob-7.1.2"
- (sources."glob-parent-3.1.0" // {
- dependencies = [
- sources."is-glob-3.1.0"
- ];
- })
- sources."graceful-fs-4.1.11"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."hash-base-3.0.4"
- sources."hash.js-1.1.5"
- sources."hmac-drbg-1.0.1"
- sources."https-browserify-1.0.0"
- sources."ieee754-1.1.12"
- sources."iferr-0.1.5"
- sources."imurmurhash-0.1.4"
- sources."indexof-0.0.1"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- 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-glob-4.0.0"
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-plain-object-2.0.4"
- sources."is-windows-1.0.2"
- sources."isarray-1.0.0"
- sources."isobject-3.0.1"
- sources."json-parse-better-errors-1.0.2"
- sources."json-schema-traverse-0.4.1"
- sources."json5-0.5.1"
- sources."kind-of-6.0.2"
- sources."loader-runner-2.3.0"
- sources."loader-utils-1.1.0"
- sources."locate-path-2.0.0"
- sources."lodash.debounce-4.0.8"
- sources."long-3.2.0"
- sources."lru-cache-4.1.3"
- sources."make-dir-1.3.0"
- sources."mamacro-0.0.3"
- sources."map-cache-0.2.2"
- sources."map-visit-1.0.0"
- sources."md5.js-1.3.4"
- sources."memory-fs-0.4.1"
- sources."micromatch-3.1.10"
- sources."miller-rabin-4.0.1"
- sources."minimalistic-assert-1.0.1"
- sources."minimalistic-crypto-utils-1.0.1"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mississippi-2.0.0"
- (sources."mixin-deep-1.3.1" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- sources."mkdirp-0.5.1"
- sources."move-concurrently-1.0.1"
- sources."ms-2.0.0"
- sources."nan-2.10.0"
- sources."nanomatch-1.2.13"
- sources."neo-async-2.5.1"
- (sources."node-libs-browser-2.1.0" // {
- dependencies = [
- sources."punycode-1.4.1"
- ];
- })
- sources."normalize-path-2.1.1"
- (sources."object-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
- sources."object-visit-1.0.1"
- sources."object.pick-1.3.0"
- sources."once-1.4.0"
- sources."os-browserify-0.3.0"
- sources."p-limit-1.3.0"
- sources."p-locate-2.0.0"
- sources."p-try-1.0.0"
- sources."pako-1.0.6"
- sources."parallel-transform-1.1.0"
- sources."parse-asn1-5.1.1"
- sources."pascalcase-0.1.1"
- sources."path-browserify-0.0.0"
- sources."path-dirname-1.0.2"
- sources."path-exists-3.0.0"
- sources."path-is-absolute-1.0.1"
- sources."pbkdf2-3.0.16"
- sources."pify-3.0.0"
- sources."pkg-dir-2.0.0"
- sources."posix-character-classes-0.1.1"
- sources."process-0.11.10"
- sources."process-nextick-args-2.0.0"
- sources."promise-inflight-1.0.1"
- sources."prr-1.0.1"
- sources."pseudomap-1.0.2"
- sources."public-encrypt-4.0.2"
- sources."pump-2.0.1"
- sources."pumpify-1.5.1"
- sources."punycode-2.1.1"
- sources."querystring-0.2.0"
- sources."querystring-es3-0.2.1"
- sources."randombytes-2.0.6"
- sources."randomfill-1.0.4"
- sources."readable-stream-2.3.6"
- sources."readdirp-2.1.0"
- sources."regex-not-1.0.2"
- 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."ret-0.1.15"
- sources."rimraf-2.6.2"
- sources."ripemd160-2.0.2"
- sources."run-queue-1.0.3"
- sources."safe-buffer-5.1.2"
- sources."safe-regex-1.1.0"
- sources."schema-utils-0.4.7"
- sources."serialize-javascript-1.5.0"
- sources."set-immediate-shim-1.0.1"
- (sources."set-value-2.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."setimmediate-1.0.5"
- sources."sha.js-2.4.11"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- (sources."snapdragon-util-3.0.1" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."source-list-map-2.0.0"
- sources."source-map-0.5.7"
- sources."source-map-resolve-0.5.2"
- sources."source-map-url-0.4.0"
- sources."split-string-3.1.0"
- sources."ssri-5.3.0"
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."stream-browserify-2.0.1"
- sources."stream-each-1.2.3"
- sources."stream-http-2.8.3"
- sources."stream-shift-1.0.0"
- sources."string_decoder-1.1.1"
- sources."tapable-1.0.0"
- sources."through2-2.0.3"
- sources."timers-browserify-2.0.10"
- sources."to-arraybuffer-1.0.1"
- (sources."to-object-path-0.3.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
- sources."tslib-1.9.3"
- sources."tty-browserify-0.0.0"
- sources."typedarray-0.0.6"
- (sources."uglify-es-3.3.10" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- (sources."uglifyjs-webpack-plugin-1.2.7" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- (sources."union-value-1.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."set-value-0.4.3"
- ];
- })
- sources."unique-filename-1.1.0"
- sources."unique-slug-2.0.0"
- (sources."unset-value-1.0.0" // {
- dependencies = [
- (sources."has-value-0.3.1" // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- })
- sources."has-values-0.1.4"
- ];
- })
- sources."upath-1.1.0"
- sources."uri-js-4.2.2"
- sources."urix-0.1.0"
- (sources."url-0.11.0" // {
- dependencies = [
- sources."punycode-1.3.2"
- ];
- })
- sources."use-3.1.1"
- sources."util-0.10.4"
- sources."util-deprecate-1.0.2"
- sources."vm-browserify-0.0.4"
- sources."watchpack-1.6.0"
- (sources."webpack-sources-1.1.0" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."worker-farm-1.6.0"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- sources."y18n-4.0.0"
- sources."yallist-2.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.";
- homepage = https://github.com/webpack/webpack;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- webtorrent-cli = nodeEnv.buildNodePackage {
- name = "webtorrent-cli";
- packageName = "webtorrent-cli";
- version = "1.12.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-1.12.3.tgz";
- sha512 = "NnBAGkD64CRsl9edM9q0QU+ku6nCX32nM0U+YC8Gs/36c8y+5m9Tya3mWIux3oZKZ54yGiVtnok4tUpqDE5tMA==";
- };
- dependencies = [
- sources."addr-to-ip-port-1.5.1"
- sources."airplay-js-0.3.0"
- sources."ascli-0.3.0"
- sources."async-limiter-1.0.0"
- sources."balanced-match-1.0.0"
- sources."bencode-2.0.0"
- sources."binary-search-1.3.4"
- sources."bitfield-2.0.0"
- (sources."bittorrent-dht-8.4.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."bittorrent-peerid-1.3.0"
- (sources."bittorrent-protocol-3.0.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."bittorrent-tracker-9.10.1" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."simple-get-3.0.3"
- ];
- })
- sources."blob-to-buffer-1.2.8"
- sources."block-stream2-1.1.0"
- sources."bn.js-4.11.8"
- sources."brace-expansion-1.1.11"
- sources."browserify-package-json-1.0.1"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-equals-1.0.4"
- sources."buffer-fill-1.0.0"
- sources."buffer-from-1.1.1"
- sources."buffer-indexof-1.1.1"
- sources."bufferutil-4.0.0"
- sources."bufferview-1.0.1"
- sources."bytebuffer-3.5.5"
- sources."castv2-0.1.9"
- sources."castv2-client-1.2.0"
- (sources."chromecasts-1.9.1" // {
- dependencies = [
- sources."mime-1.6.0"
- ];
- })
- sources."chunk-store-stream-3.0.0"
- sources."clivas-0.2.0"
- sources."closest-to-2.0.0"
- sources."colour-0.7.1"
- sources."compact2string-1.4.0"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."core-util-is-1.0.2"
- sources."create-torrent-3.32.1"
- sources."debug-2.6.9"
- sources."decompress-response-3.3.0"
- sources."defined-1.0.0"
- (sources."dlnacasts-0.1.0" // {
- dependencies = [
- sources."mime-1.6.0"
- ];
- })
- sources."dns-packet-1.3.1"
- sources."dns-txt-2.0.2"
- (sources."ecstatic-3.2.1" // {
- dependencies = [
- sources."mime-1.6.0"
- ];
- })
- sources."elementtree-0.1.7"
- sources."end-of-stream-1.4.1"
- sources."executable-4.1.1"
- sources."filestream-4.1.3"
- sources."flatten-1.0.2"
- (sources."fs-chunk-store-1.7.0" // {
- dependencies = [
- sources."thunky-1.0.2"
- ];
- })
- sources."fs.realpath-1.0.0"
- sources."get-browser-rtc-1.0.2"
- sources."get-stdin-6.0.0"
- sources."glob-7.1.2"
- sources."he-1.1.1"
- sources."immediate-chunk-store-2.0.0"
- 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.8.1"
- sources."is-ascii-1.0.0"
- sources."is-file-1.0.0"
- sources."is-typedarray-1.0.0"
- sources."isarray-1.0.0"
- sources."junk-2.1.0"
- sources."k-bucket-4.0.1"
- sources."k-rpc-5.0.0"
- sources."k-rpc-socket-1.8.0"
- sources."last-one-wins-1.0.4"
- (sources."load-ip-set-2.1.0" // {
- dependencies = [
- sources."simple-get-3.0.3"
- ];
- })
- sources."long-2.4.0"
- sources."lru-3.1.0"
- sources."magnet-uri-5.2.3"
- sources."mdns-js-0.5.0"
- sources."mdns-js-packet-0.2.0"
- sources."mediasource-2.2.2"
- sources."memory-chunk-store-1.3.0"
- sources."mime-2.3.1"
- sources."mimic-response-1.0.1"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."moment-2.22.2"
- sources."mp4-box-encoding-1.3.0"
- sources."mp4-stream-2.0.3"
- sources."ms-2.0.0"
- (sources."multicast-dns-6.2.3" // {
- dependencies = [
- sources."thunky-1.0.2"
- ];
- })
- sources."multistream-2.1.1"
- sources."netmask-1.0.6"
- sources."network-address-1.1.2"
- sources."next-event-1.0.0"
- sources."node-gyp-build-3.4.0"
- sources."node-ssdp-2.9.1"
- sources."nodebmc-0.0.7"
- sources."once-1.4.0"
- sources."open-0.0.5"
- sources."optjs-3.2.2"
- sources."package-json-versionify-1.0.4"
- sources."parse-numeric-range-0.0.2"
- (sources."parse-torrent-6.1.1" // {
- dependencies = [
- sources."simple-get-3.0.3"
- ];
- })
- sources."path-is-absolute-1.0.1"
- sources."piece-length-1.0.0"
- sources."pify-2.3.0"
- (sources."plist-with-patches-0.5.1" // {
- dependencies = [
- sources."xmlbuilder-0.4.3"
- ];
- })
- sources."prettier-bytes-1.0.4"
- sources."process-nextick-args-2.0.0"
- sources."protobufjs-3.8.2"
- sources."pump-3.0.0"
- sources."qap-3.3.1"
- sources."random-access-file-2.0.1"
- sources."random-access-storage-1.3.0"
- sources."random-iterate-1.0.1"
- sources."randombytes-2.0.6"
- sources."range-parser-1.2.0"
- sources."range-slice-stream-1.2.0"
- sources."readable-stream-2.3.6"
- sources."record-cache-1.1.0"
- (sources."render-media-3.1.3" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."rimraf-2.6.2"
- sources."run-parallel-1.1.9"
- sources."run-parallel-limit-1.0.5"
- sources."run-series-1.1.8"
- sources."rusha-0.8.13"
- sources."safe-buffer-5.1.2"
- sources."sax-1.1.4"
- sources."semver-5.1.1"
- sources."simple-concat-1.0.0"
- sources."simple-get-2.8.1"
- (sources."simple-peer-9.1.2" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."simple-sha1-2.1.1"
- (sources."simple-websocket-7.2.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."speedometer-1.1.0"
- sources."split-1.0.1"
- sources."stream-to-blob-1.0.1"
- sources."stream-to-blob-url-2.1.1"
- sources."stream-with-known-length-to-buffer-1.0.2"
- sources."string2compact-1.3.0"
- sources."string_decoder-1.1.1"
- sources."thirty-two-1.0.2"
- sources."through-2.3.8"
- sources."thunky-0.1.0"
- sources."to-arraybuffer-1.0.1"
- (sources."torrent-discovery-9.0.2" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."torrent-piece-2.0.0"
- sources."typedarray-0.0.6"
- sources."typedarray-to-buffer-3.1.5"
- sources."uint64be-2.0.2"
- sources."uniq-1.0.1"
- sources."unordered-array-remove-1.0.2"
- sources."upnp-device-client-1.0.2"
- sources."upnp-mediarenderer-client-1.2.4"
- sources."url-join-2.0.5"
- (sources."ut_metadata-3.2.2" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."ut_pex-1.2.1"
- sources."utf-8-validate-5.0.1"
- sources."util-deprecate-1.0.2"
- sources."videostream-2.5.1"
- sources."vlc-command-1.1.1"
- (sources."webtorrent-0.102.1" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."simple-get-3.0.3"
- ];
- })
- sources."winreg-1.2.4"
- sources."wrappy-1.0.2"
- sources."ws-6.0.0"
- sources."xml2js-0.4.19"
- sources."xmlbuilder-9.0.7"
- sources."xmldom-0.1.27"
- sources."xtend-4.0.1"
- sources."zero-fill-2.2.3"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "WebTorrent, the streaming torrent client. For the command line.";
- homepage = https://webtorrent.io/;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- web-ext = nodeEnv.buildNodePackage {
- name = "web-ext";
- packageName = "web-ext";
- version = "2.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/web-ext/-/web-ext-2.8.0.tgz";
- sha512 = "3JuPYU3yrefysm3pvGwRP5k9plRMPUeLo5KLp2TSnE9g4t7x6SeIWZEWWG3jwVeFsPQuIj3sAuVHEDO5ai9mCw==";
- };
- dependencies = [
- sources."@cliqz-oss/firefox-client-0.3.1"
- sources."@cliqz-oss/node-firefox-connect-1.2.1"
- sources."@types/node-10.5.7"
- sources."JSONSelect-0.2.1"
- sources."abbrev-1.1.1"
- sources."acorn-5.7.1"
- sources."acorn-jsx-4.1.1"
- sources."adbkit-2.11.0"
- sources."adbkit-logcat-1.1.0"
- sources."adbkit-monkey-1.0.1"
- (sources."addons-linter-1.2.6" // {
- dependencies = [
- sources."source-map-0.6.1"
- sources."source-map-support-0.5.6"
- sources."yargs-12.0.1"
- ];
- })
- sources."adm-zip-0.4.11"
- sources."agent-base-4.2.1"
- sources."ajv-6.5.2"
- sources."ajv-keywords-3.2.0"
- sources."ajv-merge-patch-4.1.0"
- sources."ansi-align-2.0.0"
- sources."ansi-escapes-3.1.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."ansicolors-0.3.2"
- sources."any-promise-1.3.0"
- sources."anymatch-2.0.0"
- (sources."archiver-2.1.1" // {
- dependencies = [
- sources."async-2.6.1"
- ];
- })
- sources."archiver-utils-1.3.0"
- sources."archy-1.0.0"
- sources."argparse-1.0.10"
- sources."arr-diff-4.0.0"
- sources."arr-flatten-1.1.0"
- sources."arr-union-3.1.0"
- sources."array-differ-1.0.0"
- sources."array-filter-0.0.1"
- sources."array-from-2.1.1"
- sources."array-map-0.0.0"
- sources."array-reduce-0.0.0"
- sources."array-union-1.0.2"
- sources."array-uniq-1.0.3"
- sources."array-unique-0.3.2"
- sources."arrify-1.0.1"
- sources."asap-2.0.6"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."assign-symbols-1.0.0"
- sources."ast-types-0.11.5"
- sources."async-0.2.10"
- sources."async-each-1.0.1"
- sources."asynckit-0.4.0"
- sources."atob-2.1.1"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- (sources."babel-code-frame-6.26.0" // {
- dependencies = [
- sources."chalk-1.1.3"
- ];
- })
- sources."babel-core-6.26.3"
- sources."babel-generator-6.26.1"
- sources."babel-helpers-6.24.1"
- sources."babel-messages-6.23.0"
- (sources."babel-polyfill-6.26.0" // {
- dependencies = [
- sources."regenerator-runtime-0.10.5"
- ];
- })
- (sources."babel-register-6.26.0" // {
- dependencies = [
- sources."source-map-support-0.4.18"
- ];
- })
- 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."balanced-match-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."base64-js-0.0.2"
- sources."bcrypt-pbkdf-1.0.2"
- sources."binary-extensions-1.11.0"
- sources."bl-1.2.2"
- sources."bluebird-2.9.34"
- sources."boolbase-1.0.0"
- sources."bops-0.1.1"
- sources."boxen-1.3.0"
- sources."brace-expansion-1.1.11"
- (sources."braces-2.3.2" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- (sources."buffer-5.2.0" // {
- dependencies = [
- sources."base64-js-1.3.0"
- ];
- })
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-crc32-0.2.13"
- sources."buffer-equal-constant-time-1.0.1"
- sources."buffer-fill-1.0.0"
- sources."buffer-from-1.1.1"
- sources."builtin-modules-1.1.1"
- sources."bunyan-1.8.12"
- sources."bytes-3.0.0"
- sources."cache-base-1.0.1"
- 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."chalk-2.4.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."chardet-0.4.2"
- sources."cheerio-1.0.0-rc.2"
- sources."chokidar-2.0.4"
- sources."circular-json-0.3.3"
- (sources."class-utils-0.3.6" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."cli-boxes-1.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- (sources."cliui-4.1.0" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- sources."clone-1.0.4"
- sources."clone-deep-0.3.0"
- sources."co-4.6.0"
- sources."code-point-at-1.1.0"
- sources."collection-visit-1.0.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."colors-0.5.1"
- sources."columnify-1.5.4"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- sources."common-tags-1.8.0"
- sources."component-emitter-1.2.1"
- sources."compress-commons-1.2.2"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."configstore-3.1.2"
- sources."convert-source-map-1.5.1"
- sources."copy-descriptor-0.1.1"
- sources."core-js-2.5.7"
- sources."core-util-is-1.0.2"
- sources."crc-3.8.0"
- sources."crc32-stream-2.0.0"
- sources."create-error-class-3.0.2"
- sources."cross-spawn-6.0.5"
- sources."crx-parser-0.1.2"
- 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."data-uri-to-buffer-1.2.0"
- sources."debounce-1.1.0"
- sources."debug-2.6.9"
- (sources."decamelize-2.0.0" // {
- dependencies = [
- sources."xregexp-4.0.0"
- ];
- })
- sources."decode-uri-component-0.2.0"
- sources."deep-equal-1.0.1"
- sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
- sources."deepcopy-0.6.3"
- sources."deepmerge-2.1.1"
- sources."defaults-1.0.3"
- sources."define-properties-1.1.2"
- sources."define-property-2.0.2"
- sources."degenerator-1.0.4"
- sources."del-2.2.2"
- sources."delayed-stream-1.0.0"
- sources."depd-1.1.2"
- sources."detect-indent-4.0.0"
- (sources."dispensary-0.21.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."async-2.6.1"
- sources."chalk-2.4.1"
- sources."pino-4.17.6"
- sources."source-map-0.6.1"
- sources."source-map-support-0.5.8"
- sources."supports-color-5.4.0"
- sources."yargs-12.0.1"
- ];
- })
- sources."doctrine-2.1.0"
- (sources."dom-serializer-0.1.0" // {
- dependencies = [
- sources."domelementtype-1.1.3"
- ];
- })
- sources."domelementtype-1.3.0"
- sources."domhandler-2.4.2"
- sources."domutils-1.5.1"
- sources."dot-prop-4.2.0"
- sources."dtrace-provider-0.8.7"
- sources."duplexer3-0.1.4"
- sources."ecc-jsbn-0.1.2"
- sources."ecdsa-sig-formatter-1.0.10"
- sources."email-validator-2.0.4"
- sources."encoding-0.1.12"
- sources."end-of-stream-1.4.1"
- sources."entities-1.1.1"
- sources."error-ex-1.3.2"
- sources."es-abstract-1.12.0"
- sources."es-to-primitive-1.1.1"
- sources."es5-ext-0.10.45"
- sources."es6-error-4.1.1"
- sources."es6-iterator-2.0.3"
- sources."es6-map-0.1.5"
- sources."es6-promise-2.3.0"
- (sources."es6-promisify-5.0.0" // {
- dependencies = [
- sources."es6-promise-4.2.4"
- ];
- })
- 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."escodegen-1.11.0" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."escope-3.6.0"
- (sources."eslint-5.0.1" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."debug-3.1.0"
- sources."globals-11.7.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- (sources."eslint-plugin-no-unsafe-innerhtml-1.0.16" // {
- dependencies = [
- sources."acorn-3.3.0"
- sources."acorn-jsx-3.0.1"
- sources."ajv-4.11.8"
- sources."ajv-keywords-1.5.1"
- sources."ansi-escapes-1.4.0"
- sources."ansi-regex-3.0.0"
- sources."chalk-1.1.3"
- sources."cli-cursor-1.0.2"
- sources."eslint-3.19.0"
- sources."espree-3.5.4"
- sources."figures-1.7.0"
- sources."inquirer-0.12.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."onetime-1.1.0"
- sources."pluralize-1.2.1"
- sources."progress-1.1.8"
- sources."restore-cursor-1.0.1"
- sources."run-async-0.1.0"
- sources."shelljs-0.7.8"
- sources."slice-ansi-0.0.4"
- sources."string-width-1.0.2"
- sources."strip-ansi-4.0.0"
- (sources."table-3.8.3" // {
- dependencies = [
- sources."string-width-2.1.1"
- ];
- })
- ];
- })
- sources."eslint-scope-4.0.0"
- sources."eslint-visitor-keys-1.0.0"
- sources."espree-4.0.0"
- sources."esprima-3.1.3"
- sources."esquery-1.0.1"
- sources."esrecurse-4.2.1"
- sources."estraverse-4.2.0"
- sources."esutils-2.0.2"
- sources."event-emitter-0.3.5"
- sources."event-to-promise-0.8.0"
- (sources."execa-0.7.0" // {
- dependencies = [
- sources."cross-spawn-5.1.0"
- ];
- })
- sources."exit-hook-1.1.1"
- (sources."expand-brackets-2.1.4" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."extend-3.0.2"
- (sources."extend-shallow-3.0.2" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- sources."external-editor-2.2.0"
- (sources."extglob-2.0.4" // {
- dependencies = [
- sources."define-property-1.0.0"
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-2.0.1"
- sources."fast-json-parse-1.0.3"
- sources."fast-json-patch-2.0.6"
- sources."fast-json-stable-stringify-2.0.0"
- sources."fast-levenshtein-2.0.6"
- sources."fast-redact-1.1.13"
- sources."fast-safe-stringify-1.2.3"
- sources."fd-slicer-1.1.0"
- sources."figures-2.0.0"
- sources."file-entry-cache-2.0.0"
- sources."file-uri-to-path-1.0.0"
- (sources."fill-range-4.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."find-up-3.0.0"
- (sources."firefox-profile-1.1.0" // {
- dependencies = [
- sources."async-2.5.0"
- sources."fs-extra-4.0.3"
- ];
- })
- sources."first-chunk-stream-2.0.0"
- sources."flat-cache-1.3.0"
- sources."flatstr-1.0.8"
- sources."fluent-syntax-0.7.0"
- sources."for-in-1.0.2"
- sources."for-own-1.0.0"
- sources."foreach-2.0.5"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."fragment-cache-0.2.1"
- sources."fs-constants-1.0.0"
- sources."fs-extra-5.0.0"
- sources."fs.realpath-1.0.0"
- sources."fsevents-1.2.4"
- (sources."ftp-0.3.10" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."function-bind-1.1.1"
- sources."functional-red-black-tree-1.0.1"
- (sources."fx-runner-1.0.9" // {
- dependencies = [
- sources."commander-2.9.0"
- sources."isexe-1.1.2"
- sources."which-1.2.4"
- ];
- })
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."get-caller-file-1.0.3"
- sources."get-stream-3.0.0"
- sources."get-uri-2.0.2"
- sources."get-value-2.0.6"
- sources."getpass-0.1.7"
- sources."gettext-parser-1.1.0"
- (sources."git-rev-sync-1.9.1" // {
- dependencies = [
- sources."shelljs-0.7.7"
- ];
- })
- sources."glob-7.1.2"
- (sources."glob-parent-3.1.0" // {
- dependencies = [
- sources."is-glob-3.1.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."graphlib-2.1.5"
- sources."growly-1.3.0"
- sources."har-schema-2.0.0"
- (sources."har-validator-5.0.3" // {
- dependencies = [
- sources."ajv-5.5.2"
- sources."fast-deep-equal-1.1.0"
- sources."json-schema-traverse-0.3.1"
- ];
- })
- sources."has-1.0.3"
- sources."has-ansi-2.0.0"
- sources."has-color-0.1.7"
- sources."has-flag-3.0.0"
- sources."has-symbols-1.0.0"
- sources."has-value-1.0.0"
- (sources."has-values-1.0.0" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- (sources."hasbin-1.2.3" // {
- dependencies = [
- sources."async-1.5.2"
- ];
- })
- sources."home-or-tmp-2.0.0"
- sources."hosted-git-info-2.7.1"
- sources."htmlparser2-3.9.2"
- sources."http-errors-1.6.3"
- (sources."http-proxy-agent-2.1.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."http-signature-1.2.0"
- (sources."https-proxy-agent-2.2.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."iconv-lite-0.4.23"
- sources."ieee754-1.1.12"
- sources."ignore-3.3.10"
- 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-5.2.0" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- sources."interpret-1.1.0"
- sources."invariant-2.2.4"
- sources."invert-kv-1.0.0"
- sources."ip-1.1.5"
- sources."is-absolute-0.1.7"
- (sources."is-accessor-descriptor-1.0.0" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
- 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-callable-1.1.4"
- (sources."is-data-descriptor-1.0.0" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
- sources."is-date-object-1.0.1"
- (sources."is-descriptor-1.0.2" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
- sources."is-extendable-0.1.1"
- sources."is-extglob-2.1.1"
- sources."is-finite-1.0.2"
- sources."is-fullwidth-code-point-1.0.0"
- sources."is-glob-4.0.0"
- sources."is-installed-globally-0.1.0"
- sources."is-mergeable-object-1.1.0"
- sources."is-my-ip-valid-1.0.0"
- sources."is-my-json-valid-2.18.0"
- sources."is-npm-1.0.0"
- sources."is-number-3.0.0"
- sources."is-obj-1.0.1"
- sources."is-path-cwd-1.0.0"
- sources."is-path-in-cwd-1.0.1"
- sources."is-path-inside-1.0.1"
- sources."is-plain-object-2.0.4"
- sources."is-promise-2.1.0"
- sources."is-property-1.0.2"
- sources."is-redirect-1.0.0"
- sources."is-regex-1.0.4"
- sources."is-relative-0.1.3"
- sources."is-resolvable-1.1.0"
- sources."is-retry-allowed-1.1.0"
- sources."is-stream-1.1.0"
- sources."is-symbol-1.0.1"
- sources."is-typedarray-1.0.0"
- sources."is-utf8-0.2.1"
- sources."is-windows-1.0.2"
- sources."is-wsl-1.1.0"
- sources."isarray-1.0.0"
- sources."isexe-2.0.0"
- sources."isobject-3.0.1"
- sources."isstream-0.1.2"
- sources."jed-1.1.1"
- sources."jetpack-id-1.0.0"
- sources."js-select-0.6.0"
- sources."js-tokens-3.0.2"
- (sources."js-yaml-3.12.0" // {
- dependencies = [
- sources."esprima-4.0.1"
- ];
- })
- sources."jsbn-0.1.1"
- sources."jsesc-1.3.0"
- sources."json-merge-patch-0.2.3"
- sources."json-parse-better-errors-1.0.2"
- sources."json-schema-0.2.3"
- sources."json-schema-traverse-0.4.1"
- sources."json-stable-stringify-1.0.1"
- sources."json-stable-stringify-without-jsonify-1.0.1"
- sources."json-stringify-safe-5.0.1"
- sources."json5-0.5.1"
- sources."jsonfile-4.0.0"
- sources."jsonify-0.0.0"
- sources."jsonpointer-4.0.1"
- (sources."jsonwebtoken-8.2.1" // {
- dependencies = [
- sources."ms-2.1.1"
- ];
- })
- sources."jsprim-1.4.1"
- sources."jszip-2.6.1"
- sources."jwa-1.1.6"
- sources."jws-3.1.5"
- sources."kind-of-3.2.2"
- sources."latest-version-3.1.0"
- sources."lazy-cache-0.2.7"
- sources."lazystream-1.0.0"
- sources."lcid-1.0.0"
- sources."levn-0.3.0"
- (sources."load-json-file-1.1.0" // {
- dependencies = [
- sources."parse-json-2.2.0"
- sources."strip-bom-2.0.0"
- ];
- })
- sources."locate-path-3.0.0"
- sources."lodash-4.17.10"
- sources."lodash.assign-4.2.0"
- sources."lodash.assignin-4.2.0"
- sources."lodash.clonedeep-4.5.0"
- sources."lodash.debounce-4.0.8"
- sources."lodash.flatten-4.4.0"
- sources."lodash.get-4.4.2"
- sources."lodash.includes-4.3.0"
- sources."lodash.isboolean-3.0.3"
- sources."lodash.isinteger-4.0.4"
- sources."lodash.isnumber-3.0.3"
- sources."lodash.isplainobject-4.0.6"
- sources."lodash.isstring-4.0.1"
- sources."lodash.once-4.1.1"
- sources."lodash.set-4.3.2"
- sources."lodash.sortby-4.7.0"
- sources."loose-envify-1.4.0"
- sources."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.3"
- sources."macos-release-1.1.0"
- (sources."make-dir-1.3.0" // {
- dependencies = [
- sources."pify-3.0.0"
- ];
- })
- sources."map-cache-0.2.2"
- sources."map-visit-1.0.0"
- sources."mem-1.1.0"
- (sources."micromatch-3.1.10" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- (sources."mixin-deep-1.3.1" // {
- dependencies = [
- sources."is-extendable-1.0.1"
- ];
- })
- (sources."mixin-object-2.0.1" // {
- dependencies = [
- sources."for-in-0.1.8"
- ];
- })
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."moment-2.22.2"
- sources."ms-2.0.0"
- sources."multimatch-2.1.0"
- sources."mute-stream-0.0.7"
- (sources."mv-2.1.1" // {
- dependencies = [
- sources."glob-6.0.4"
- sources."rimraf-2.4.5"
- ];
- })
- sources."mz-2.7.0"
- sources."nan-2.10.0"
- (sources."nanomatch-1.2.13" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
- sources."natural-compare-1.4.0"
- sources."natural-compare-lite-1.4.0"
- (sources."nconf-0.10.0" // {
- dependencies = [
- sources."async-1.5.2"
- sources."camelcase-2.1.1"
- sources."cliui-3.2.0"
- sources."decamelize-1.2.0"
- sources."os-locale-1.4.0"
- sources."string-width-1.0.2"
- sources."y18n-3.2.1"
- sources."yargs-3.32.0"
- ];
- })
- sources."ncp-2.0.0"
- sources."needle-2.2.2"
- sources."neo-async-2.5.1"
- sources."netmask-1.0.6"
- sources."next-tick-1.0.0"
- sources."nice-try-1.0.4"
- sources."node-forge-0.7.5"
- sources."node-notifier-5.2.1"
- (sources."nomnom-1.8.1" // {
- dependencies = [
- sources."ansi-styles-1.0.0"
- sources."chalk-0.4.0"
- sources."strip-ansi-0.1.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-copy-0.1.0" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."is-accessor-descriptor-0.1.6"
- sources."is-data-descriptor-0.1.4"
- (sources."is-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- ];
- })
- sources."object-keys-1.0.12"
- sources."object-visit-1.0.1"
- sources."object.pick-1.3.0"
- sources."once-1.4.0"
- sources."onetime-2.0.1"
- sources."opn-5.3.0"
- sources."optionator-0.8.2"
- sources."os-homedir-1.0.2"
- sources."os-locale-2.1.0"
- sources."os-name-2.0.1"
- sources."os-shim-0.1.3"
- sources."os-tmpdir-1.0.2"
- sources."p-finally-1.0.0"
- sources."p-limit-2.0.0"
- sources."p-locate-3.0.0"
- sources."p-try-2.0.0"
- (sources."pac-proxy-agent-2.0.2" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."pac-resolver-3.0.0"
- sources."package-json-4.0.1"
- sources."pako-1.0.6"
- sources."parse-json-4.0.0"
- sources."parse5-3.0.3"
- sources."pascalcase-0.1.1"
- sources."path-0.12.7"
- sources."path-dirname-1.0.2"
- 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.6"
- 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-5.0.0-rc.4" // {
- dependencies = [
- sources."fast-safe-stringify-2.0.5"
- sources."quick-format-unescaped-3.0.0"
- ];
- })
- sources."pino-std-serializers-2.2.0"
- sources."pkginfo-0.4.1"
- sources."pluralize-7.0.0"
- sources."po2json-0.4.5"
- sources."posix-character-classes-0.1.1"
- (sources."postcss-6.0.23" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."source-map-0.6.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."prelude-ls-1.1.2"
- sources."prepend-http-1.0.4"
- sources."private-0.1.8"
- sources."probe-image-size-4.0.0"
- sources."process-0.11.10"
- sources."process-nextick-args-2.0.0"
- sources."progress-2.0.0"
- sources."promise-7.3.1"
- (sources."proxy-agent-2.3.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."proxy-from-env-1.0.0"
- sources."pseudomap-1.0.2"
- sources."pump-3.0.0"
- sources."punycode-2.1.1"
- sources."qs-6.5.2"
- sources."quick-format-unescaped-1.1.2"
- sources."raw-body-2.3.3"
- sources."rc-1.2.8"
- sources."read-pkg-1.1.0"
- (sources."read-pkg-up-1.0.1" // {
- dependencies = [
- sources."find-up-1.1.2"
- sources."path-exists-2.1.0"
- ];
- })
- sources."readable-stream-2.3.6"
- sources."readdirp-2.1.0"
- (sources."readline2-1.0.1" // {
- dependencies = [
- sources."mute-stream-0.0.5"
- ];
- })
- sources."rechoir-0.6.2"
- sources."recursive-readdir-2.2.2"
- sources."regenerator-runtime-0.11.1"
- sources."regex-not-1.0.2"
- sources."regexp.prototype.flags-1.2.0"
- sources."regexpp-1.1.0"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- (sources."relaxed-json-1.0.1" // {
- dependencies = [
- sources."chalk-1.1.3"
- ];
- })
- 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.87.0"
- sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
- sources."require-uncached-1.0.3"
- sources."resolve-1.8.1"
- sources."resolve-from-1.0.1"
- sources."resolve-url-0.2.1"
- sources."restore-cursor-2.0.0"
- sources."ret-0.1.15"
- sources."rimraf-2.6.2"
- sources."run-async-2.3.0"
- sources."rx-lite-3.1.2"
- sources."rx-lite-aggregates-4.0.8"
- sources."rxjs-5.5.11"
- sources."safe-buffer-5.1.2"
- sources."safe-json-stringify-1.2.0"
- sources."safe-regex-1.1.0"
- sources."safer-buffer-2.1.2"
- sources."sax-1.2.4"
- sources."secure-keys-1.0.0"
- sources."semver-5.5.0"
- sources."semver-diff-2.1.0"
- sources."set-blocking-2.0.0"
- sources."set-immediate-shim-1.0.1"
- (sources."set-value-2.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- ];
- })
- sources."setprototypeof-1.1.0"
- sources."sha.js-2.4.11"
- (sources."shallow-clone-0.1.2" // {
- dependencies = [
- sources."kind-of-2.0.1"
- ];
- })
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."shell-quote-1.6.1"
- sources."shelljs-0.8.2"
- sources."shellwords-0.1.1"
- (sources."sign-addon-0.3.1" // {
- dependencies = [
- sources."babel-polyfill-6.16.0"
- sources."es6-error-4.0.0"
- sources."mz-2.5.0"
- sources."regenerator-runtime-0.9.6"
- sources."source-map-support-0.4.6"
- ];
- })
- sources."signal-exit-3.0.2"
- sources."slash-1.0.0"
- (sources."slice-ansi-1.0.0" // {
- dependencies = [
- sources."is-fullwidth-code-point-2.0.0"
- ];
- })
- sources."smart-buffer-1.1.15"
- (sources."snapdragon-0.8.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- sources."extend-shallow-2.0.1"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- (sources."snapdragon-node-2.1.1" // {
- dependencies = [
- sources."define-property-1.0.0"
- ];
- })
- sources."snapdragon-util-3.0.1"
- (sources."snyk-1.90.2" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."debug-3.1.0"
- sources."inquirer-3.3.0"
- sources."rx-lite-4.0.8"
- sources."strip-ansi-4.0.0"
- sources."supports-color-5.4.0"
- ];
- })
- (sources."snyk-config-2.2.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."snyk-docker-plugin-1.10.3" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."snyk-go-plugin-1.5.2"
- sources."snyk-gradle-plugin-1.3.0"
- (sources."snyk-module-1.8.2" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."snyk-mvn-plugin-1.2.0"
- (sources."snyk-nuget-plugin-1.6.4" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."snyk-php-plugin-1.5.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."snyk-policy-1.12.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."snyk-python-plugin-1.8.1"
- (sources."snyk-resolve-1.0.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."snyk-resolve-deps-3.1.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- (sources."snyk-sbt-plugin-1.3.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."snyk-tree-1.0.0"
- (sources."snyk-try-require-1.3.1" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."socks-1.1.10"
- sources."socks-proxy-agent-3.0.1"
- sources."sonic-boom-0.5.0"
- sources."source-map-0.5.7"
- sources."source-map-resolve-0.5.2"
- (sources."source-map-support-0.5.3" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- sources."source-map-url-0.4.0"
- sources."spawn-sync-1.0.15"
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
- sources."split-0.3.3"
- sources."split-string-3.1.0"
- sources."split2-2.2.0"
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.2"
- (sources."static-extend-0.1.2" // {
- dependencies = [
- sources."define-property-0.2.5"
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."is-descriptor-0.1.6"
- sources."kind-of-5.1.0"
- ];
- })
- sources."statuses-1.5.0"
- 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" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- sources."string.prototype.matchall-2.0.0"
- sources."string_decoder-1.1.1"
- 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."supports-color-2.0.0"
- sources."symbol-observable-1.0.1"
- sources."table-4.0.3"
- sources."tar-stream-1.6.1"
- sources."temp-dir-1.0.0"
- sources."tempfile-2.0.0"
- sources."term-size-1.2.0"
- sources."text-table-0.2.0"
- sources."then-fs-2.0.0"
- sources."thenify-3.3.0"
- sources."thenify-all-1.6.0"
- sources."through-2.3.8"
- sources."through2-2.0.3"
- sources."thunkify-2.1.2"
- sources."timed-out-4.0.1"
- sources."tmp-0.0.33"
- sources."to-buffer-1.1.1"
- sources."to-fast-properties-1.0.3"
- sources."to-object-path-0.3.0"
- sources."to-regex-3.0.2"
- sources."to-regex-range-2.1.1"
- sources."to-utf8-0.0.1"
- sources."toml-2.3.3"
- sources."tosource-1.0.0"
- (sources."tough-cookie-2.3.4" // {
- dependencies = [
- sources."punycode-1.4.1"
- ];
- })
- sources."tr46-1.0.1"
- sources."traverse-0.4.6"
- sources."trim-right-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."undefsafe-2.0.2"
- sources."underscore-1.6.0"
- (sources."union-value-1.0.0" // {
- dependencies = [
- sources."extend-shallow-2.0.1"
- sources."set-value-0.4.3"
- ];
- })
- sources."unique-string-1.0.0"
- sources."universalify-0.1.2"
- sources."unpipe-1.0.0"
- (sources."unset-value-1.0.0" // {
- dependencies = [
- (sources."has-value-0.3.1" // {
- dependencies = [
- sources."isobject-2.1.0"
- ];
- })
- sources."has-values-0.1.4"
- ];
- })
- sources."unzip-response-2.0.1"
- sources."upath-1.1.0"
- sources."update-notifier-2.3.0"
- sources."uri-js-4.2.2"
- sources."urix-0.1.0"
- sources."url-parse-lax-1.0.0"
- sources."use-3.1.1"
- sources."user-home-2.0.0"
- sources."util-0.10.4"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."validate-npm-package-license-3.0.4"
- sources."verror-1.10.0"
- sources."watchpack-1.5.0"
- sources."wcwidth-1.0.1"
- sources."webidl-conversions-4.0.2"
- sources."whatwg-url-6.5.0"
- sources."when-3.7.7"
- sources."which-1.3.1"
- sources."which-module-2.0.0"
- sources."widest-line-2.0.0"
- sources."win-release-1.1.1"
- sources."window-size-0.1.4"
- sources."winreg-0.0.12"
- sources."wordwrap-1.0.0"
- (sources."wrap-ansi-2.1.0" // {
- dependencies = [
- sources."string-width-1.0.2"
- ];
- })
- 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.7"
- sources."xmldom-0.1.27"
- sources."xregexp-2.0.0"
- sources."xtend-4.0.1"
- sources."y18n-4.0.0"
- sources."yallist-2.1.2"
- (sources."yargs-6.6.0" // {
- dependencies = [
- sources."camelcase-3.0.0"
- sources."cliui-3.2.0"
- sources."decamelize-1.2.0"
- sources."os-locale-1.4.0"
- sources."string-width-1.0.2"
- sources."which-module-1.0.0"
- sources."y18n-3.2.1"
- sources."yargs-parser-4.2.1"
- ];
- })
- sources."yargs-parser-10.1.0"
- sources."yauzl-2.9.2"
- sources."zip-1.2.0"
- (sources."zip-dir-1.0.2" // {
- dependencies = [
- sources."async-1.5.2"
- ];
- })
- sources."zip-stream-1.2.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "A command line tool to help build, run, and test web extensions";
- homepage = https://github.com/mozilla/web-ext;
- license = "MPL-2.0";
+ "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";
+ };
};
- production = true;
- bypassCache = false;
};
- wring = nodeEnv.buildNodePackage {
- name = "wring";
- packageName = "wring";
- version = "1.0.0";
+in
+{
+ bower = nodeEnv.buildNodePackage {
+ name = "bower";
+ packageName = "bower";
+ version = "1.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/wring/-/wring-1.0.0.tgz";
- sha1 = "3d8ebe894545bf0b42946fdc84c61e37ae657ce1";
+ url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
+ sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
};
buildInputs = globalBuildInputs;
meta = {
- description = "Extract content from websites using CSS Selectors and XPath";
- homepage = "https://github.com/osener/wring#readme";
+ description = "The browser package manager";
+ homepage = http://bower.io/;
license = "MIT";
};
production = true;
bypassCache = false;
};
- yarn = nodeEnv.buildNodePackage {
- name = "yarn";
- packageName = "yarn";
- version = "1.9.4";
+ coffee-script = nodeEnv.buildNodePackage {
+ name = "coffee-script";
+ packageName = "coffee-script";
+ version = "1.12.7";
src = fetchurl {
- url = "https://registry.npmjs.org/yarn/-/yarn-1.9.4.tgz";
- sha1 = "3b82d8446b652775723900b470d966861976924b";
+ url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
+ sha512 = "fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==";
};
buildInputs = globalBuildInputs;
meta = {
- description = "📦🐈 Fast, reliable, and secure dependency management.";
- homepage = "https://github.com/yarnpkg/yarn#readme";
- license = "BSD-2-Clause";
+ description = "Unfancy JavaScript";
+ homepage = http://coffeescript.org/;
+ license = "MIT";
};
production = true;
bypassCache = false;
};
- yo = nodeEnv.buildNodePackage {
- name = "yo";
- packageName = "yo";
- version = "2.0.5";
+ grunt-cli = nodeEnv.buildNodePackage {
+ name = "grunt-cli";
+ packageName = "grunt-cli";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yo/-/yo-2.0.5.tgz";
- sha512 = "PLyTNZSJjHkks/FIln+QE5PxV224MsekCzbROVhZEW0MvLyj/6ghWIVkdBmrwdAbapH8H9q21F1/pQ9Q0Lk9UA==";
+ url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.1.tgz";
+ sha512 = "UwBRu/QpAjDc53DRLEkyilFdL0zenpxu+fddTIlsF/KJqdNcHaQmvyu1W3cDesZ9rqqZdKK5A8+QDIyLUEWoZQ==";
};
dependencies = [
- sources."@mrmlnc/readdir-enhanced-2.2.1"
- sources."@nodelib/fs.stat-1.1.0"
- 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.1.0"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- sources."are-we-there-yet-1.1.5"
+ sources."abbrev-1.1.1"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
- sources."array-find-index-1.0.2"
- sources."array-union-1.0.2"
- sources."array-uniq-1.0.3"
+ sources."array-each-1.0.1"
+ sources."array-slice-1.1.0"
sources."array-unique-0.3.2"
- sources."arrify-1.0.1"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
sources."assign-symbols-1.0.0"
- sources."astral-regex-1.0.0"
- sources."async-2.6.1"
- sources."asynckit-0.4.0"
- sources."atob-2.1.1"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
+ sources."atob-2.1.2"
(sources."base-0.11.2" // {
dependencies = [
sources."define-property-1.0.0"
];
})
- sources."bcrypt-pbkdf-1.0.2"
- (sources."bin-version-2.0.0" // {
- dependencies = [
- sources."execa-0.1.1"
- ];
- })
- sources."bin-version-check-3.0.0"
- (sources."boxen-1.3.0" // {
- dependencies = [
- sources."camelcase-4.1.0"
- ];
- })
- sources."brace-expansion-1.1.11"
(sources."braces-2.3.2" // {
dependencies = [
sources."extend-shallow-2.0.1"
];
})
- sources."buffer-from-1.1.1"
- sources."builtin-modules-1.1.1"
sources."cache-base-1.0.1"
- (sources."cacheable-request-2.1.4" // {
- dependencies = [
- sources."lowercase-keys-1.0.0"
- ];
- })
- sources."call-me-maybe-1.0.1"
- 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-2.4.1"
- sources."chardet-0.5.0"
- sources."ci-info-1.1.3"
(sources."class-utils-0.3.6" // {
dependencies = [
sources."define-property-0.2.5"
@@ -49971,69 +2148,13 @@ in
sources."kind-of-5.1.0"
];
})
- 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.4"
- sources."clone-regexp-1.0.1"
- 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."collection-visit-1.0.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."combined-stream-1.0.6"
sources."component-emitter-1.2.1"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."conf-1.4.0"
- sources."config-chain-1.1.11"
- sources."configstore-3.1.2"
sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
- sources."create-error-class-3.0.2"
- sources."cross-spawn-6.0.5"
- sources."cross-spawn-async-2.2.5"
- 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.6.0"
- sources."default-uid-1.0.0"
sources."define-property-2.0.2"
- sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
- sources."diff-3.5.0"
- (sources."dir-glob-2.0.0" // {
- dependencies = [
- sources."path-type-3.0.0"
- ];
- })
- sources."dot-prop-4.2.0"
- sources."downgrade-root-1.2.2"
- sources."duplexer3-0.1.4"
- (sources."each-async-1.1.1" // {
- dependencies = [
- sources."onetime-1.1.0"
- ];
- })
- sources."ecc-jsbn-0.1.2"
- sources."env-paths-1.0.0"
- sources."error-ex-1.3.2"
- sources."escape-string-regexp-1.0.5"
- (sources."execa-0.6.3" // {
- dependencies = [
- sources."cross-spawn-5.1.0"
- ];
- })
- sources."execall-1.0.0"
- sources."exit-hook-1.1.1"
+ sources."detect-file-1.0.0"
(sources."expand-brackets-2.1.4" // {
dependencies = [
sources."define-property-0.2.5"
@@ -50052,226 +2173,77 @@ in
sources."kind-of-5.1.0"
];
})
+ sources."expand-tilde-2.0.2"
sources."extend-3.0.2"
(sources."extend-shallow-3.0.2" // {
dependencies = [
sources."is-extendable-1.0.1"
];
})
- sources."external-editor-3.0.1"
(sources."extglob-2.0.4" // {
dependencies = [
sources."define-property-1.0.0"
sources."extend-shallow-2.0.1"
];
})
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-glob-2.2.2"
- sources."fast-json-stable-stringify-2.0.0"
- sources."figures-2.0.0"
(sources."fill-range-4.0.0" // {
dependencies = [
sources."extend-shallow-2.0.1"
];
})
- sources."filter-obj-1.1.0"
- sources."find-up-2.1.0"
- sources."find-versions-2.0.0"
- sources."first-chunk-stream-2.0.0"
+ sources."findup-sync-2.0.0"
+ sources."fined-1.1.0"
+ sources."flagged-respawn-1.0.0"
sources."for-in-1.0.2"
- sources."foreachasync-3.0.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
+ sources."for-own-1.0.0"
sources."fragment-cache-0.2.1"
- sources."from2-2.3.0"
- sources."fs.realpath-1.0.0"
- sources."fullname-3.3.0"
- sources."gauge-1.2.7"
- sources."get-stdin-4.0.1"
- sources."get-stream-3.0.0"
sources."get-value-2.0.6"
- sources."getpass-0.1.7"
- sources."glob-7.1.2"
- (sources."glob-parent-3.1.0" // {
- dependencies = [
- sources."is-glob-3.1.0"
- ];
- })
- sources."glob-to-regexp-0.3.0"
- sources."global-dirs-0.1.1"
- sources."global-tunnel-ng-2.5.4"
- sources."globby-8.0.1"
- sources."got-8.3.2"
- 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" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."has-flag-3.0.0"
- sources."has-symbol-support-x-1.4.2"
- sources."has-to-string-tag-x-1.4.1"
- sources."has-unicode-2.0.1"
+ sources."global-modules-1.0.0"
+ sources."global-prefix-1.0.2"
+ sources."grunt-known-options-1.1.1"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
dependencies = [
sources."kind-of-4.0.0"
];
})
- sources."hosted-git-info-2.7.1"
- sources."http-cache-semantics-3.8.1"
- sources."http-signature-1.2.0"
- sources."humanize-string-1.0.2"
- sources."iconv-lite-0.4.23"
- sources."ignore-3.3.10"
- 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."homedir-polyfill-1.0.1"
sources."ini-1.3.5"
- sources."inquirer-6.1.0"
- (sources."insight-0.10.1" // {
- dependencies = [
- sources."chardet-0.4.2"
- sources."external-editor-2.2.0"
- sources."inquirer-5.2.0"
- sources."rxjs-5.5.11"
- ];
- })
- sources."into-stream-3.1.0"
+ sources."interpret-1.1.0"
+ sources."is-absolute-1.0.0"
sources."is-accessor-descriptor-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-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
- sources."is-docker-1.1.0"
sources."is-extendable-0.1.1"
sources."is-extglob-2.1.1"
- sources."is-finite-1.0.2"
- 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-glob-3.1.0"
(sources."is-number-3.0.0" // {
dependencies = [
sources."kind-of-3.2.2"
];
})
- 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-plain-object-2.0.4"
- 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.1"
- sources."is-typedarray-1.0.0"
- sources."is-utf8-0.2.1"
+ sources."is-relative-1.0.0"
+ sources."is-unc-path-1.0.0"
sources."is-windows-1.0.2"
- sources."is-wsl-1.1.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
- sources."isstream-0.1.2"
- sources."isurl-1.0.0"
- sources."jsbn-0.1.1"
- sources."json-buffer-3.0.0"
- sources."json-parse-better-errors-1.0.2"
- 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."kind-of-6.0.2"
- (sources."latest-version-3.1.0" // {
- dependencies = [
- sources."got-6.7.1"
- sources."package-json-4.0.1"
- sources."prepend-http-1.0.4"
- sources."url-parse-lax-1.0.0"
- ];
- })
- (sources."load-json-file-1.1.0" // {
- dependencies = [
- sources."pify-2.3.0"
- ];
- })
- sources."locate-path-2.0.0"
- sources."locutus-2.0.9"
- sources."lodash-4.17.10"
- sources."lodash.debounce-4.0.8"
- sources."lodash.pad-4.5.1"
- sources."lodash.padend-4.6.1"
- sources."lodash.padstart-4.6.1"
- sources."log-symbols-2.2.0"
- sources."loud-rejection-1.6.0"
- sources."lowercase-keys-1.0.1"
- sources."lru-cache-4.1.3"
- sources."macos-release-1.1.0"
- sources."make-dir-1.3.0"
+ sources."liftoff-2.5.0"
+ sources."make-iterator-1.0.1"
sources."map-cache-0.2.2"
- sources."map-obj-1.0.1"
sources."map-visit-1.0.0"
- sources."mem-1.1.0"
- sources."mem-fs-1.1.3"
- (sources."meow-3.7.0" // {
- dependencies = [
- sources."find-up-1.1.2"
- sources."path-exists-2.1.0"
- sources."read-pkg-up-1.0.1"
- ];
- })
- sources."merge2-1.2.2"
sources."micromatch-3.1.10"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."mimic-response-1.0.1"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
(sources."mixin-deep-1.3.1" // {
dependencies = [
sources."is-extendable-1.0.1"
];
})
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
sources."ms-2.0.0"
- sources."mute-stream-0.0.7"
sources."nanomatch-1.2.13"
- sources."nice-try-1.0.4"
- sources."normalize-package-data-2.4.0"
- sources."normalize-url-2.0.1"
- sources."npm-conf-1.1.3"
- (sources."npm-keyword-5.0.0" // {
- dependencies = [
- sources."got-7.1.0"
- sources."p-cancelable-0.3.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."nopt-4.0.1"
(sources."object-copy-0.1.0" // {
dependencies = [
sources."define-property-0.2.5"
@@ -50285,122 +2257,34 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-values-1.0.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.4.0"
- sources."onetime-2.0.1"
- sources."opn-5.3.0"
sources."os-homedir-1.0.2"
- sources."os-name-2.0.1"
- sources."os-shim-0.1.3"
sources."os-tmpdir-1.0.2"
- sources."p-any-1.1.0"
- sources."p-cancelable-0.4.1"
- sources."p-finally-1.0.0"
- sources."p-is-promise-1.1.0"
- sources."p-limit-1.3.0"
- sources."p-locate-2.0.0"
- sources."p-some-2.0.1"
- sources."p-timeout-2.0.1"
- sources."p-try-1.0.0"
- sources."package-json-5.0.0"
- sources."pad-component-0.0.1"
- sources."parse-help-1.0.0"
- sources."parse-json-2.2.0"
- sources."pascalcase-0.1.1"
- (sources."passwd-user-2.1.0" // {
- dependencies = [
- sources."execa-0.4.0"
- sources."npm-run-path-1.0.0"
- sources."path-key-1.0.0"
- sources."pify-2.3.0"
- ];
- })
- sources."path-dirname-1.0.2"
- 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-type-1.1.0" // {
- dependencies = [
- sources."pify-2.3.0"
- ];
- })
- sources."performance-now-2.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."posix-character-classes-0.1.1"
- sources."prepend-http-2.0.0"
- sources."process-nextick-args-2.0.0"
- sources."proto-list-1.2.4"
- sources."pseudomap-1.0.2"
- sources."psl-1.1.29"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."query-string-5.1.1"
- sources."rc-1.2.8"
- sources."read-pkg-1.1.0"
- (sources."read-pkg-up-4.0.0" // {
- dependencies = [
- sources."find-up-3.0.0"
- sources."load-json-file-4.0.0"
- sources."locate-path-3.0.0"
- sources."p-limit-2.0.0"
- sources."p-locate-3.0.0"
- sources."p-try-2.0.0"
- sources."parse-json-4.0.0"
- sources."path-type-3.0.0"
- sources."read-pkg-3.0.0"
- sources."strip-bom-3.0.0"
- ];
- })
- sources."readable-stream-2.3.6"
- (sources."redent-1.0.0" // {
- dependencies = [
- sources."indent-string-2.1.0"
- ];
- })
+ sources."osenv-0.1.5"
+ sources."parse-filepath-1.0.2"
+ sources."parse-passwd-1.0.0"
+ sources."pascalcase-0.1.1"
+ sources."path-parse-1.0.6"
+ sources."path-root-0.1.1"
+ sources."path-root-regex-0.1.2"
+ sources."posix-character-classes-0.1.1"
+ sources."rechoir-0.6.2"
sources."regex-not-1.0.2"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."repeat-element-1.1.2"
+ sources."repeat-element-1.1.3"
sources."repeat-string-1.6.1"
- sources."repeating-2.0.1"
- sources."replace-ext-0.0.1"
- (sources."request-2.87.0" // {
- dependencies = [
- sources."tough-cookie-2.3.4"
- ];
- })
+ sources."resolve-1.8.1"
+ sources."resolve-dir-1.0.1"
sources."resolve-url-0.2.1"
- sources."responselike-1.0.2"
- sources."restore-cursor-2.0.0"
sources."ret-0.1.15"
- sources."root-check-1.0.0"
- sources."run-async-2.3.0"
- sources."rx-4.1.0"
- sources."rxjs-6.2.2"
- sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
- sources."safer-buffer-2.1.2"
- 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"
- sources."set-immediate-shim-1.0.1"
(sources."set-value-2.0.0" // {
dependencies = [
sources."extend-shallow-2.0.1"
];
})
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- sources."slash-1.0.0"
(sources."snapdragon-0.8.2" // {
dependencies = [
sources."define-property-0.2.5"
@@ -50429,18 +2313,10 @@ in
sources."kind-of-3.2.2"
];
})
- sources."sort-keys-2.0.0"
- sources."sort-on-3.0.0"
sources."source-map-0.5.7"
sources."source-map-resolve-0.5.2"
sources."source-map-url-0.4.0"
- sources."spawn-sync-1.0.15"
- sources."spdx-correct-3.0.0"
- sources."spdx-exceptions-2.1.0"
- sources."spdx-expression-parse-3.0.0"
- sources."spdx-license-ids-3.0.0"
sources."split-string-3.1.0"
- sources."sshpk-1.14.2"
(sources."static-extend-0.1.2" // {
dependencies = [
sources."define-property-0.2.5"
@@ -50458,60 +2334,6 @@ in
sources."kind-of-5.1.0"
];
})
- sources."strict-uri-encode-1.1.0"
- sources."string-length-2.0.0"
- sources."string-width-2.1.1"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-4.0.0"
- 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" // {
- 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."supports-color-5.4.0"
- sources."symbol-observable-1.0.1"
- (sources."tabtab-1.3.2" // {
- dependencies = [
- sources."ansi-escapes-1.4.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."chalk-1.1.3"
- sources."cli-cursor-1.0.2"
- sources."external-editor-1.1.1"
- sources."figures-1.7.0"
- sources."inquirer-1.2.3"
- sources."is-fullwidth-code-point-1.0.0"
- sources."mute-stream-0.0.6"
- sources."onetime-1.1.0"
- sources."restore-cursor-1.0.1"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."tmp-0.0.29"
- ];
- })
- sources."taketalk-1.0.0"
- (sources."term-size-1.2.0" // {
- dependencies = [
- sources."cross-spawn-5.1.0"
- sources."execa-0.7.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.1"
- sources."tmp-0.0.33"
(sources."to-object-path-0.3.0" // {
dependencies = [
sources."kind-of-3.2.2"
@@ -50519,21 +2341,13 @@ in
})
sources."to-regex-3.0.2"
sources."to-regex-range-2.1.1"
- sources."tough-cookie-2.4.3"
- sources."trim-newlines-1.0.0"
- sources."tslib-1.9.3"
- sources."tunnel-0.0.5"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."twig-1.12.0"
- sources."typedarray-0.0.6"
+ sources."unc-path-regex-0.1.2"
(sources."union-value-1.0.0" // {
dependencies = [
sources."extend-shallow-2.0.1"
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" // {
@@ -50544,75 +2358,251 @@ in
sources."has-values-0.1.4"
];
})
- sources."untildify-3.0.3"
- sources."unzip-response-2.0.1"
- sources."update-notifier-2.5.0"
sources."urix-0.1.0"
- sources."url-parse-lax-3.0.0"
- sources."url-to-options-1.0.1"
sources."use-3.1.1"
- sources."user-home-2.0.0"
+ sources."v8flags-3.0.2"
+ sources."which-1.3.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "The grunt command line interface";
+ homepage = "https://github.com/gruntjs/grunt-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = false;
+ };
+ node-gyp = nodeEnv.buildNodePackage {
+ name = "node-gyp";
+ packageName = "node-gyp";
+ version = "3.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz";
+ sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==";
+ };
+ dependencies = [
+ 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.5"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."block-stream-0.0.9"
+ sources."brace-expansion-1.1.11"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.6"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ 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.3"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."has-unicode-2.0.1"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ 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.9.0"
+ 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.5"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-2.0.0"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."readable-stream-2.3.6"
+ sources."request-2.88.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.3.0"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."sshpk-1.14.2"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ sources."tar-2.2.1"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
sources."util-deprecate-1.0.2"
sources."uuid-3.3.2"
- sources."validate-npm-package-license-3.0.4"
sources."verror-1.10.0"
- sources."vinyl-1.2.0"
- (sources."vinyl-file-2.0.0" // {
- dependencies = [
- sources."pify-2.3.0"
- ];
- })
- sources."walk-2.3.14"
sources."which-1.3.1"
- sources."widest-line-2.0.0"
- sources."win-release-1.1.1"
- (sources."wrap-ansi-2.1.0" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- sources."is-fullwidth-code-point-1.0.0"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- ];
- })
+ sources."wide-align-1.1.3"
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."has-flag-1.0.0"
- sources."supports-color-3.2.3"
- ];
- })
- sources."yeoman-doctor-3.0.2"
- (sources."yeoman-environment-2.3.1" // {
- dependencies = [
- sources."chardet-0.4.2"
- sources."debug-3.1.0"
- sources."external-editor-2.2.0"
- sources."inquirer-5.2.0"
- sources."rxjs-5.5.11"
- ];
- })
- (sources."yosay-2.0.2" // {
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Node.js native addon build tool";
+ homepage = "https://github.com/nodejs/node-gyp#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = false;
+ };
+ node-gyp-build = nodeEnv.buildNodePackage {
+ name = "node-gyp-build";
+ packageName = "node-gyp-build";
+ version = "3.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.4.0.tgz";
+ sha512 = "YoviGBJYGrPdLOKDIQB0sKxuKy/EEsxzooNkOZak4vSTKT/qH0Pa6dj3t1MJjEQGsefih61IyHDmO1WW7xOFfw==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Build tool and bindings loader for node-gyp that supports prebuilds";
+ homepage = https://github.com/mafintosh/node-gyp-build;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = false;
+ };
+ node-pre-gyp = nodeEnv.buildNodePackage {
+ name = "node-pre-gyp";
+ packageName = "node-pre-gyp";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz";
+ sha512 = "TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q==";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.5"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."chownr-1.0.1"
+ sources."code-point-at-1.1.0"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."debug-2.6.9"
+ sources."deep-extend-0.6.0"
+ sources."delegates-1.0.0"
+ sources."detect-libc-1.0.3"
+ sources."fs-minipass-1.2.5"
+ sources."fs.realpath-1.0.0"
+ sources."gauge-2.7.4"
+ sources."glob-7.1.3"
+ sources."has-unicode-2.0.1"
+ sources."iconv-lite-0.4.24"
+ sources."ignore-walk-3.0.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."isarray-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."minipass-2.3.4"
+ sources."minizlib-1.1.0"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."needle-2.2.2"
+ sources."nopt-4.0.1"
+ sources."npm-bundled-1.0.5"
+ sources."npm-packlist-1.1.11"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ 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.5"
+ sources."path-is-absolute-1.0.1"
+ sources."process-nextick-args-2.0.0"
+ (sources."rc-1.2.8" // {
dependencies = [
- sources."ansi-regex-2.1.1"
- (sources."chalk-1.1.3" // {
- dependencies = [
- sources."ansi-styles-2.2.1"
- ];
- })
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
+ sources."minimist-1.2.0"
];
})
+ sources."readable-stream-2.3.6"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."semver-5.5.1"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."tar-4.4.6"
+ sources."util-deprecate-1.0.2"
+ sources."wide-align-1.1.3"
+ sources."wrappy-1.0.2"
+ sources."yallist-3.0.2"
];
buildInputs = globalBuildInputs;
meta = {
- description = "CLI tool for running Yeoman generators";
- homepage = http://yeoman.io/;
- license = "BSD-2-Clause";
+ description = "Node.js native addon binary install tool";
+ homepage = "https://github.com/mapbox/node-pre-gyp#readme";
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = false;
+ };
+ pnpm = nodeEnv.buildNodePackage {
+ name = "pnpm";
+ packageName = "pnpm";
+ version = "2.13.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-2.13.6.tgz";
+ sha512 = "X8zmtUzmEIa/QMg0t0eeq6hSd7kmL5Zvneqpj3Tcbyn2g/FEFTPb9kaghR+DW1WdViOE51eo4ECLK7uY9oogkA==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Fast, disk space efficient package manager";
+ homepage = https://pnpm.js.org/;
+ license = "MIT";
};
production = true;
bypassCache = false;
diff --git a/pkgs/development/node-packages/node-packages-v8.json b/pkgs/development/node-packages/node-packages-v8.json
index 4236064c7545ef865b5f569f2a88552ec2f24923..6ac941eb7c48a636df0ef96d54095b12072e5bc9 100644
--- a/pkgs/development/node-packages/node-packages-v8.json
+++ b/pkgs/development/node-packages/node-packages-v8.json
@@ -1,20 +1,130 @@
[
- "bower"
+ "alloy"
+, "asar"
+, "azure-cli"
+, "bower"
+, "bower2nix"
+, "browserify"
+, "castnow"
+, "clean-css"
, "coffee-script"
+, "coinmon"
+, "configurable-http-proxy"
+, "cordova"
, "create-cycle-app"
+, "create-react-app"
+, "create-react-native-app"
+, "csslint"
, "dat"
+, "dhcp"
+, "dnschain"
+, "docker-registry-server"
+, "elasticdump"
+, "elm-oracle"
+, "elm-test"
+, "emoj"
+, "eslint"
+, "eslint_d"
+, "emojione"
+, { "fast-cli": "1.x" }
+, "fetch-bower"
+, "forever"
+, "git-run"
+, "git-standup"
+, "graphql-cli"
, "grunt-cli"
+, { "guifi-earth": "https://github.com/jmendeth/guifi-earth/tarball/f3ee96835fd4fb0e3e12fadbd2cb782770d64854 " }
+, "gulp"
+, "hipache"
+, "htmlhint"
+, "html-minifier"
+, "ionic"
+, "ios-deploy"
+, "istanbul"
+, "imapnotify"
+, "jake"
+, "javascript-typescript-langserver"
+, "jayschema"
+, "jsdoc"
+, "jshint"
+, "json"
+, "js-beautify"
+, "jsonlint"
+, "jsontool"
+, "json-diff"
+, "json-refs"
+, "json-server"
+, "js-yaml"
+, "karma"
+, { "kibana-authentication-proxy": "git://github.com/fangli/kibana-authentication-proxy.git" }
+, "lcov-result-merger"
+, "leetcode-cli"
+, "lerna"
+, "less"
+, "less-plugin-clean-css"
+, "live-server"
+, "livedown"
+, "madoko"
+, "mathjax"
+, "meat"
+, "meguca"
, "mocha"
+, "multi-file-swagger"
, "nijs"
+, "node2nix"
, "node-gyp"
, "node-gyp-build"
+, "node-inspector"
, "node-pre-gyp"
+, "nodemon"
+, "node-red"
+, { "node-uptime": "https://github.com/fzaninotto/uptime/tarball/1c65756575f90f563a752e2a22892ba2981c79b7" }
+, "npm"
+, { "npm2nix": "git://github.com/NixOS/npm2nix.git#5.12.0" }
+, "npm-check-updates"
+, "nsp"
+, "ocaml-language-server"
+, { "parsoid": "git://github.com/abbradar/parsoid#stable" }
+, "peerflix"
+, "peerflix-server"
+, "phantomjs"
, "pnpm"
+, "prettier"
+, "pulp"
+, "quassel-webserver"
+, "react-tools"
+, "react-native-cli"
+, "s3http"
, "semver"
+, "serve"
+, "shout"
+, "sinopia"
, "sloc"
-, "vue-cli"
+, "smartdc"
+, "socket.io"
+, "stackdriver-statsd-backend"
+, "statsd"
+, "statsd-influxdb-backend"
+, "statsd-librato-backend"
+, "stylus"
+, "svgo"
, "swagger"
-, "npm"
+, "tern"
, "three"
-, "mathjax"
+, "tiddlywiki"
+, "titanium"
+, "triton"
+, "typescript"
+, "typings"
+, "uglify-js"
+, "ungit"
+, "vue-cli"
+, "@vue/cli"
+, "webdrvr"
+, "webpack"
+, "webtorrent-cli"
+, "web-ext"
+, "wring"
+, "yarn"
+, "yo"
]
diff --git a/pkgs/development/node-packages/node-packages-v8.nix b/pkgs/development/node-packages/node-packages-v8.nix
index 9da19d2b718cab8609d845408cbe9a2e1c703077..0e6970dbea18eb67f7b551bd9c1f03d0810cc854 100644
--- a/pkgs/development/node-packages/node-packages-v8.nix
+++ b/pkgs/development/node-packages/node-packages-v8.nix
@@ -4,6 +4,87 @@
let
sources = {
+ "@akryum/winattr-3.0.0" = {
+ name = "_at_akryum_slash_winattr";
+ packageName = "@akryum/winattr";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@akryum/winattr/-/winattr-3.0.0.tgz";
+ sha512 = "t4WmWoGV9gyzypwG3y3JlcK2t8fKLtvzBA7xEoFTj9SMPvOuLsf13uh4ikK0RRaaa9RPPWLgFUdOyIRaQvCpwQ==";
+ };
+ };
+ "@apollographql/apollo-upload-server-5.0.3" = {
+ name = "_at_apollographql_slash_apollo-upload-server";
+ packageName = "@apollographql/apollo-upload-server";
+ version = "5.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@apollographql/apollo-upload-server/-/apollo-upload-server-5.0.3.tgz";
+ sha512 = "tGAp3ULNyoA8b5o9LsU2Lq6SwgVPUOKAqKywu2liEtTvrFSGPrObwanhYwArq3GPeOqp2bi+JknSJCIU3oQN1Q==";
+ };
+ };
+ "@apollographql/graphql-playground-html-1.6.0" = {
+ name = "_at_apollographql_slash_graphql-playground-html";
+ packageName = "@apollographql/graphql-playground-html";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.0.tgz";
+ sha512 = "QAZIFrfVRkjvMkUHIQKZXZ3La0V5t12w5PWrhihYEabHwzIZV/txQd/kSYHgYPXC4s5OURxsXZop9f0BzI2QIQ==";
+ };
+ };
+ "@babel/generator-7.0.0-beta.38" = {
+ name = "_at_babel_slash_generator";
+ packageName = "@babel/generator";
+ version = "7.0.0-beta.38";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.38.tgz";
+ sha512 = "aOHQPhsEyaB6p2n+AK981+onHoc+Ork9rcAQVSUJR33wUkGiWRpu6/C685knRyIZVsKeSdG5Q4xMiYeFUhuLzA==";
+ };
+ };
+ "@babel/runtime-7.0.0" = {
+ name = "_at_babel_slash_runtime";
+ packageName = "@babel/runtime";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0.tgz";
+ sha512 = "7hGhzlcmg01CvH1EHdSPVXYX1aJ8KCEyz6I9xYIi/asDtzBPMyMhVibhM/K6g/5qnKBwjZtp10bNZIEFTRW1MA==";
+ };
+ };
+ "@babel/runtime-corejs2-7.0.0" = {
+ name = "_at_babel_slash_runtime-corejs2";
+ packageName = "@babel/runtime-corejs2";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.0.0.tgz";
+ sha512 = "Yww0jXgolNtkhcK+Txo5JN+DjBpNmmAtD7G99HOebhEjBzjnACG09Tip9C8lSOF6PrhA56OeJWeOZduNJaKxBA==";
+ };
+ };
+ "@babel/types-7.0.0-beta.38" = {
+ name = "_at_babel_slash_types";
+ packageName = "@babel/types";
+ version = "7.0.0-beta.38";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.38.tgz";
+ sha512 = "SAtyEjmA7KiEoL2eAOAUM6M9arQJGWxJKK0S9x0WyPOosHS420RXoxPhn57u/8orRnK8Kxm0nHQQNTX203cP1Q==";
+ };
+ };
+ "@cliqz-oss/firefox-client-0.3.1" = {
+ name = "_at_cliqz-oss_slash_firefox-client";
+ packageName = "@cliqz-oss/firefox-client";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cliqz-oss/firefox-client/-/firefox-client-0.3.1.tgz";
+ sha512 = "RO+Tops/wGnBzWoZYkCraqyh2JqOejqJq5/a4b54HhmjTNSKdUPwAOK17EGg/zPb0nWqkuB7QyZsI9bo+ev8Kw==";
+ };
+ };
+ "@cliqz-oss/node-firefox-connect-1.2.1" = {
+ name = "_at_cliqz-oss_slash_node-firefox-connect";
+ packageName = "@cliqz-oss/node-firefox-connect";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cliqz-oss/node-firefox-connect/-/node-firefox-connect-1.2.1.tgz";
+ sha512 = "O/IyiB5pfztCdmxQZg0/xeq5w+YiP3gtJz8d4We2EpLPKzbDVjOrtfLKYgVfm6Ya6mbvDge1uLkSRwaoVCWKnA==";
+ };
+ };
"@cycle/dom-18.3.0" = {
name = "_at_cycle_slash_dom";
packageName = "@cycle/dom";
@@ -13,13 +94,13 @@ let
sha1 = "37b9f55c6b0f629d1b689ece57637768fbeed2b0";
};
};
- "@cycle/http-14.9.0" = {
+ "@cycle/http-14.10.0" = {
name = "_at_cycle_slash_http";
packageName = "@cycle/http";
- version = "14.9.0";
+ version = "14.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cycle/http/-/http-14.9.0.tgz";
- sha512 = "wOLMflfsszUXej5wSNxo06VgFqeWZ/GQFz/OzcrHv4r3oXvBsFh9KyyvIV6kOLpaZ+8bkOwBWbpGbJZWK00NFQ==";
+ url = "https://registry.npmjs.org/@cycle/http/-/http-14.10.0.tgz";
+ sha512 = "FhGyDGraqIUpsBSiqgv6FJNaEJ2MVg/8oJ5obgwQgdrheSIiviXYSq+NQ6PtHfuThes/Z16aY/LrvsqLF5hJMw==";
};
};
"@cycle/isolate-3.4.0" = {
@@ -58,8892 +139,53990 @@ let
sha1 = "cbc4b9a68981bf0b501ccd06a9058acd65309bf7";
};
};
- "@types/node-10.5.7" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "10.5.7";
+ "@gulp-sourcemaps/identity-map-1.0.2" = {
+ name = "_at_gulp-sourcemaps_slash_identity-map";
+ packageName = "@gulp-sourcemaps/identity-map";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-10.5.7.tgz";
- sha512 = "VkKcfuitP+Nc/TaTFH0B8qNmn+6NbI6crLkQonbedViVz7O2w8QV/GERPlkJ4bg42VGHiEWa31CoTOPs1q6z1w==";
+ url = "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-1.0.2.tgz";
+ sha512 = "ciiioYMLdo16ShmfHBXJBOFm3xPC4AuwO4xeRpFeHz7WK9PYsWCmigagG2XyzZpubK4a3qNKoUBDhbzHfa50LQ==";
};
};
- "@types/superagent-3.5.6" = {
- name = "_at_types_slash_superagent";
- packageName = "@types/superagent";
- version = "3.5.6";
+ "@gulp-sourcemaps/map-sources-1.0.0" = {
+ name = "_at_gulp-sourcemaps_slash_map-sources";
+ packageName = "@gulp-sourcemaps/map-sources";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/superagent/-/superagent-3.5.6.tgz";
- sha512 = "yGiVkRbB1qtIkRCpEJIxlHazBoILmu33xbbu4IiwxTJjwDi/EudiPYAD7QwWe035jkE40yQgTVXZsAePFtleww==";
+ url = "https://registry.npmjs.org/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz";
+ sha1 = "890ae7c5d8c877f6d384860215ace9d7ec945bda";
};
};
- "URIjs-1.16.1" = {
- name = "URIjs";
- packageName = "URIjs";
- version = "1.16.1";
+ "@ionic/cli-framework-1.0.6" = {
+ name = "_at_ionic_slash_cli-framework";
+ packageName = "@ionic/cli-framework";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/URIjs/-/URIjs-1.16.1.tgz";
- sha1 = "edebc678b8b74b26b05d2b481e12383f5ae04b8b";
+ url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-1.0.6.tgz";
+ sha512 = "vUKqtMCYTGr7mhNSjVKsl5VYLP+XyNltiVp+afSzOOlNx+GdEDzzxAhpJSryhu77EVtlJEUvkTq0pQIqptC1QA==";
};
};
- "abbrev-1.1.1" = {
- name = "abbrev";
- packageName = "abbrev";
- version = "1.1.1";
+ "@ionic/cli-utils-2.2.0" = {
+ name = "_at_ionic_slash_cli-utils";
+ packageName = "@ionic/cli-utils";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
- sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
+ url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-2.2.0.tgz";
+ sha512 = "9FJHRZU4oNh2pwkm3mPgGCQolBvLj5o6llshcH4L9OEHtJUrYSolttuglOh3p6kgmqpJfUbRF/mmoAX7jo2XXA==";
};
};
- "absolute-0.0.1" = {
- name = "absolute";
- packageName = "absolute";
- version = "0.0.1";
+ "@ionic/discover-1.0.4" = {
+ name = "_at_ionic_slash_discover";
+ packageName = "@ionic/discover";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/absolute/-/absolute-0.0.1.tgz";
- sha1 = "c22822f87e1c939f579887504d9c109c4173829d";
+ url = "https://registry.npmjs.org/@ionic/discover/-/discover-1.0.4.tgz";
+ sha512 = "/9WbB31cv0nr2M8Vi4O2coDiX27IJ5EXwGKrgnV0X0/dfavObNVqV9ksNcHnZTuNArqBXywOsWPIES0+tHXIhA==";
};
};
- "abstract-random-access-1.1.2" = {
- name = "abstract-random-access";
- packageName = "abstract-random-access";
- version = "1.1.2";
+ "@kbrandwijk/swagger-to-graphql-2.4.3" = {
+ name = "_at_kbrandwijk_slash_swagger-to-graphql";
+ packageName = "@kbrandwijk/swagger-to-graphql";
+ version = "2.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/abstract-random-access/-/abstract-random-access-1.1.2.tgz";
- sha1 = "9a8eac8ff79866f3f9b4bb1443ca778f1598aeda";
+ url = "https://registry.npmjs.org/@kbrandwijk/swagger-to-graphql/-/swagger-to-graphql-2.4.3.tgz";
+ sha512 = "CNVsCrMge/jq6DCT5buNZ8PACY9RTvPJbCNoIcndfkJOCsNxOx9dnc5qw4pHZdHi8GS6l3qlgkuFKp33iD8J2Q==";
};
};
- "ajv-5.5.2" = {
- name = "ajv";
- packageName = "ajv";
- version = "5.5.2";
+ "@lerna/add-3.1.4" = {
+ name = "_at_lerna_slash_add";
+ packageName = "@lerna/add";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
- sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
+ url = "https://registry.npmjs.org/@lerna/add/-/add-3.1.4.tgz";
+ sha512 = "jC4k1EkniPA003Fj8NQkRjdue29BJRRPfbnTqPCmhjmwQKy2dj71256o28eBYoWcouUivA0voz+r+H9sLMqbfA==";
};
};
- "align-text-0.1.4" = {
- name = "align-text";
- packageName = "align-text";
- version = "0.1.4";
+ "@lerna/batch-packages-3.1.2" = {
+ name = "_at_lerna_slash_batch-packages";
+ packageName = "@lerna/batch-packages";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
- sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
+ url = "https://registry.npmjs.org/@lerna/batch-packages/-/batch-packages-3.1.2.tgz";
+ sha512 = "HAkpptrYeUVlBYbLScXgeCgk6BsNVXxDd53HVWgzzTWpXV4MHpbpeKrByyt7viXlNhW0w73jJbipb/QlFsHIhQ==";
};
};
- "amdefine-1.0.1" = {
- name = "amdefine";
- packageName = "amdefine";
- version = "1.0.1";
+ "@lerna/bootstrap-3.1.4" = {
+ name = "_at_lerna_slash_bootstrap";
+ packageName = "@lerna/bootstrap";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
- sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
+ url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.1.4.tgz";
+ sha512 = "GN3/ll73hXQzsFEKW1d6xgMKf6t4kxTXDGhiMF1uc8DdbrK1arA1MMWhXrjMYJAaMldMzNnGeE3Kb1MxKxXWPw==";
};
};
- "ansi-align-2.0.0" = {
- name = "ansi-align";
- packageName = "ansi-align";
- version = "2.0.0";
+ "@lerna/changed-3.1.3" = {
+ name = "_at_lerna_slash_changed";
+ packageName = "@lerna/changed";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz";
- sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f";
+ url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.1.3.tgz";
+ sha512 = "6KyyAl/qcxFeKOfuTDJlgh3aNOf6KQDxckEitmOFRi9scIZd7Igj/V9DQSvKoMORGk8wBwbpeLNJ9TN9xbm4qw==";
};
};
- "ansi-diff-1.1.1" = {
- name = "ansi-diff";
- packageName = "ansi-diff";
- version = "1.1.1";
+ "@lerna/check-working-tree-3.1.0" = {
+ name = "_at_lerna_slash_check-working-tree";
+ packageName = "@lerna/check-working-tree";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-diff/-/ansi-diff-1.1.1.tgz";
- sha512 = "XnTdFDQzbEewrDx8epWXdw7oqHMvv315vEtfqDiEhhWghIf4++h26c3/FMz7iTLhNrnj56DNIXpbxHZq+3s6qw==";
+ url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-3.1.0.tgz";
+ sha512 = "ruy6s44IUcaPEa4JlDDDk6nbacMESUPRSb+dohzLJxfhXx1wFnEVF6L91TGxFP+C0lt5V6zd8rnJxkW/uZzNAA==";
};
};
- "ansi-escapes-1.4.0" = {
- name = "ansi-escapes";
- packageName = "ansi-escapes";
- version = "1.4.0";
+ "@lerna/child-process-3.0.0" = {
+ name = "_at_lerna_slash_child-process";
+ packageName = "@lerna/child-process";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz";
- sha1 = "d3a8a83b319aa67793662b13e761c7911422306e";
+ url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-3.0.0.tgz";
+ sha512 = "8vHRDkpGhzSaMsXgyXVgY80mUSC5WSkDmhWWA3bnB/n5FBK1gK8EKQUpHTk14SckwvUgEJzBd35gR5/XKGOgmQ==";
};
};
- "ansi-escapes-3.1.0" = {
- name = "ansi-escapes";
- packageName = "ansi-escapes";
- version = "3.1.0";
+ "@lerna/clean-3.1.3" = {
+ name = "_at_lerna_slash_clean";
+ packageName = "@lerna/clean";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz";
- sha512 = "UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==";
+ url = "https://registry.npmjs.org/@lerna/clean/-/clean-3.1.3.tgz";
+ sha512 = "XVdcIOjhudXlk5pTXjrpsnNLqeVi2rBu2oWzPH2GHrxWGBZBW8thGIFhQf09da/RbRT3uzBWXpUv+sbL2vbX3g==";
};
};
- "ansi-red-0.1.1" = {
- name = "ansi-red";
- packageName = "ansi-red";
- version = "0.1.1";
+ "@lerna/cli-3.1.4" = {
+ name = "_at_lerna_slash_cli";
+ packageName = "@lerna/cli";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz";
- sha1 = "8c638f9d1080800a353c9c28c8a81ca4705d946c";
+ url = "https://registry.npmjs.org/@lerna/cli/-/cli-3.1.4.tgz";
+ sha512 = "e63YpwIgXU87gGDpqxr2mQnkxwIIt03FtgWlAId7uySVwTLT7j5u0yMbFR1CVkWvUSBY76JSCsX5u/Z1CfJUpQ==";
};
};
- "ansi-regex-2.1.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "2.1.1";
+ "@lerna/collect-updates-3.1.0" = {
+ name = "_at_lerna_slash_collect-updates";
+ packageName = "@lerna/collect-updates";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
+ url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-3.1.0.tgz";
+ sha512 = "zHxHRZOteTqcW9mAyLrmoWEKpfxgA3c6LJj4nauB2pM3MKyKNhg0gqiy2RHFu7EGivPki4Q1624I301iAXtUVA==";
};
};
- "ansi-regex-3.0.0" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "3.0.0";
+ "@lerna/command-3.1.3" = {
+ name = "_at_lerna_slash_command";
+ packageName = "@lerna/command";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
- sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
+ url = "https://registry.npmjs.org/@lerna/command/-/command-3.1.3.tgz";
+ sha512 = "ptaFNsfcTpxnSkaNrGgW3fRbWWVSVDUx4BpkjUUnRTgy9mwoykQWgQB3inhgTYHwW6e4PzO79F2hovfUMzHuzg==";
};
};
- "ansi-split-1.0.1" = {
- name = "ansi-split";
- packageName = "ansi-split";
- version = "1.0.1";
+ "@lerna/conventional-commits-3.0.2" = {
+ name = "_at_lerna_slash_conventional-commits";
+ packageName = "@lerna/conventional-commits";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-split/-/ansi-split-1.0.1.tgz";
- sha512 = "RRxQym4DFtDNmHIkW6aeFVvrXURb11lGAEPXNiryjCe8bK8RsANjzJ0M2aGOkvBYwP4Bl/xZ8ijtr6D3j1x/eg==";
+ url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-3.0.2.tgz";
+ sha512 = "Cxd1eWXn3usADKXIUvYmTERx2+1N7oJD4Whz+FVu8kTfufsfTO7fYOan1RVkg86ukZbNDyS+iOxZ8DJ2JspS9g==";
};
};
- "ansi-styles-2.2.1" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "2.2.1";
+ "@lerna/create-3.1.3" = {
+ name = "_at_lerna_slash_create";
+ packageName = "@lerna/create";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
- sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
+ url = "https://registry.npmjs.org/@lerna/create/-/create-3.1.3.tgz";
+ sha512 = "CmXKCBc6AE3F9O6mMg4Y76cQ8eTCy3ksqDFKxVQMdYDtHKnTrH1s0l8sn3J1AiylqVDnvxhb3Rjyj+OWyzmFPQ==";
};
};
- "ansi-styles-3.2.1" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "3.2.1";
+ "@lerna/create-symlink-3.0.0" = {
+ name = "_at_lerna_slash_create-symlink";
+ packageName = "@lerna/create-symlink";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz";
- sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==";
+ url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-3.0.0.tgz";
+ sha512 = "Q9qAzGGqQtVzHWrCz+Md4SH0tW99DrgFJ68cnFqilOO6H3Y/y/H0gwHICqM9YxRwLs6GJdkzoqJATFShM7PKJA==";
};
};
- "ansi-wrap-0.1.0" = {
- name = "ansi-wrap";
- packageName = "ansi-wrap";
- version = "0.1.0";
+ "@lerna/describe-ref-3.1.0" = {
+ name = "_at_lerna_slash_describe-ref";
+ packageName = "@lerna/describe-ref";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz";
- sha1 = "a82250ddb0015e9a27ca82e82ea603bbfa45efaf";
+ url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-3.1.0.tgz";
+ sha512 = "0a7WFKDSmdEwwmEj+ZfhI7SkkG1CDcVhfW8VhPqr6gnCMY+ryt6iV/rR7ygb0eCDg8wEe9eQsiwbnrbXDLjIDw==";
};
};
- "anymatch-1.3.2" = {
- name = "anymatch";
- packageName = "anymatch";
- version = "1.3.2";
+ "@lerna/diff-3.1.3" = {
+ name = "_at_lerna_slash_diff";
+ packageName = "@lerna/diff";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz";
- sha512 = "0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==";
+ url = "https://registry.npmjs.org/@lerna/diff/-/diff-3.1.3.tgz";
+ sha512 = "30G74DxdQC4dR3U0yqh5mjcioLDUmSy1ntntdF3khvKV9oiMVzCSOO0oOlSwIdmohke+bQ//oF+oyl0Dy1TUTQ==";
};
};
- "anymatch-2.0.0" = {
- name = "anymatch";
- packageName = "anymatch";
- version = "2.0.0";
+ "@lerna/exec-3.1.3" = {
+ name = "_at_lerna_slash_exec";
+ packageName = "@lerna/exec";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz";
- sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
+ url = "https://registry.npmjs.org/@lerna/exec/-/exec-3.1.3.tgz";
+ sha512 = "r0yQj9Rza5a42Shts8rXYGU1/Va8hO2atk/TEZgrA1EcTwgZyAuXsuML5UWbC/eLgwEjVDmc3MUSj8O1JijBMQ==";
};
};
- "ap-0.1.0" = {
- name = "ap";
- packageName = "ap";
- version = "0.1.0";
+ "@lerna/filter-options-3.1.2" = {
+ name = "_at_lerna_slash_filter-options";
+ packageName = "@lerna/filter-options";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ap/-/ap-0.1.0.tgz";
- sha1 = "d8a3f26615379398a1b53ca6cc1a666a0fbfe150";
+ url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-3.1.2.tgz";
+ sha512 = "smbvSGK/eU+7PDKO4jbJ7XYO2XTfhnwPeOTuwSm1mlWS5dUGasYkhAuFzouFh60aZBvmW0e6APe0XYeofQNcCg==";
};
};
- "append-field-0.1.0" = {
- name = "append-field";
- packageName = "append-field";
- version = "0.1.0";
+ "@lerna/filter-packages-3.0.0" = {
+ name = "_at_lerna_slash_filter-packages";
+ packageName = "@lerna/filter-packages";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/append-field/-/append-field-0.1.0.tgz";
- sha1 = "6ddc58fa083c7bc545d3c5995b2830cc2366d44a";
+ url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-3.0.0.tgz";
+ sha512 = "zwbY1J4uRjWRZ/FgYbtVkq7I3Nduwsg2V2HwLKSzwV2vPglfGqgovYOVkND6/xqe2BHwDX4IyA2+e7OJmLaLSA==";
};
};
- "append-tree-2.4.4" = {
- name = "append-tree";
- packageName = "append-tree";
- version = "2.4.4";
+ "@lerna/get-npm-exec-opts-3.0.0" = {
+ name = "_at_lerna_slash_get-npm-exec-opts";
+ packageName = "@lerna/get-npm-exec-opts";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.4.tgz";
- sha512 = "rPMUMkR8JjjPDDHHDZ/YeLO0KIbUGCrXgy921F6sBkEXBR9jYYxK8LUlwpZkUVi70cMR6r8uSmHZ/5HvtrntHg==";
+ url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-3.0.0.tgz";
+ sha512 = "arcYUm+4xS8J3Palhl+5rRJXnZnFHsLFKHBxznkPIxjwGQeAEw7df38uHdVjEQ+HNeFmHnBgSqfbxl1VIw5DHg==";
};
};
- "aproba-1.2.0" = {
- name = "aproba";
- packageName = "aproba";
- version = "1.2.0";
+ "@lerna/global-options-3.1.3" = {
+ name = "_at_lerna_slash_global-options";
+ packageName = "@lerna/global-options";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
- sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
+ url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-3.1.3.tgz";
+ sha512 = "LVeZU/Zgc0XkHdGMRYn+EmHfDmmYNwYRv3ta59iCVFXLVp7FRFWF7oB1ss/WRa9x/pYU0o6L8as/5DomLUGASA==";
};
};
- "are-we-there-yet-1.1.5" = {
- name = "are-we-there-yet";
- packageName = "are-we-there-yet";
- version = "1.1.5";
+ "@lerna/has-npm-version-3.0.4" = {
+ name = "_at_lerna_slash_has-npm-version";
+ packageName = "@lerna/has-npm-version";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz";
- sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==";
+ url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-3.0.4.tgz";
+ sha512 = "RisEWZBROi8corPb/PUIQqT+xGPLeriJ/n6VCeO6GROCO1fyYBX7kgFmVpFOytufWFkI04qBgLaUs+CEc8Yspg==";
};
};
- "argparse-1.0.10" = {
- name = "argparse";
- packageName = "argparse";
- version = "1.0.10";
+ "@lerna/import-3.1.3" = {
+ name = "_at_lerna_slash_import";
+ packageName = "@lerna/import";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz";
- sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==";
+ url = "https://registry.npmjs.org/@lerna/import/-/import-3.1.3.tgz";
+ sha512 = "+XV/EHXEHbyMmprz8zQa0VF0TZ+txRIrcF3Q/PsuZ4isVxawIbP1CmgE0yn0/1XSNJwGKsuPfGauRtnjUi2LJw==";
};
};
- "arr-diff-2.0.0" = {
- name = "arr-diff";
- packageName = "arr-diff";
- version = "2.0.0";
+ "@lerna/init-3.1.3" = {
+ name = "_at_lerna_slash_init";
+ packageName = "@lerna/init";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz";
- sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf";
+ url = "https://registry.npmjs.org/@lerna/init/-/init-3.1.3.tgz";
+ sha512 = "c418p6fAfJ+b/tidB8/O/ABGLX7a5y5uJSWxH2/Mp7i5da/RD27XJ6E6818hGAbUbVQw04+XuXHtrWYlWLEJCw==";
};
};
- "arr-diff-4.0.0" = {
- name = "arr-diff";
- packageName = "arr-diff";
- version = "4.0.0";
+ "@lerna/link-3.1.4" = {
+ name = "_at_lerna_slash_link";
+ packageName = "@lerna/link";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
- sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
+ url = "https://registry.npmjs.org/@lerna/link/-/link-3.1.4.tgz";
+ sha512 = "AAl4ctKtE6975zxdrsr16CAh/K4y0ZjjY9XDdD+zMxsSPELvRVG6M36O1A72AmKz5Nhh1l82bPrw7w54TbQ8hA==";
};
};
- "arr-flatten-1.1.0" = {
- name = "arr-flatten";
- packageName = "arr-flatten";
- version = "1.1.0";
+ "@lerna/list-3.1.3" = {
+ name = "_at_lerna_slash_list";
+ packageName = "@lerna/list";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==";
+ url = "https://registry.npmjs.org/@lerna/list/-/list-3.1.3.tgz";
+ sha512 = "/ncX5Kj1ddLgZuBkjaoluJgcmAAm/L4/AymVNBgVrw6dOad0C0RB6oIcRAbxDennEQ25wSOFmuXRZHYHY9VYyg==";
};
};
- "arr-union-3.1.0" = {
- name = "arr-union";
- packageName = "arr-union";
- version = "3.1.0";
+ "@lerna/listable-3.0.0" = {
+ name = "_at_lerna_slash_listable";
+ packageName = "@lerna/listable";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
- sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
+ url = "https://registry.npmjs.org/@lerna/listable/-/listable-3.0.0.tgz";
+ sha512 = "HX/9hyx1HLg2kpiKXIUc1EimlkK1T58aKQ7ovO7rQdTx9ForpefoMzyLnHE1n4XrUtEszcSWJIICJ/F898M6Ag==";
};
};
- "array-differ-1.0.0" = {
- name = "array-differ";
- packageName = "array-differ";
- version = "1.0.0";
+ "@lerna/log-packed-3.0.4" = {
+ name = "_at_lerna_slash_log-packed";
+ packageName = "@lerna/log-packed";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz";
- sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031";
+ url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-3.0.4.tgz";
+ sha512 = "vVQHgMagE2wnbxhNY9nFkdu+Cx2TsyWalkJfkxbNzmo6gOCrDsxCBDj9vTEV8Q+4aWx0C0Bsc0sB2Eb8y/+ofA==";
};
};
- "array-lru-1.1.1" = {
- name = "array-lru";
- packageName = "array-lru";
- version = "1.1.1";
+ "@lerna/npm-conf-3.0.0" = {
+ name = "_at_lerna_slash_npm-conf";
+ packageName = "@lerna/npm-conf";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/array-lru/-/array-lru-1.1.1.tgz";
- sha1 = "0c7e1b4e022ae166ff1e8448c595f3181fcd3337";
+ url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-3.0.0.tgz";
+ sha512 = "xXG7qt349t+xzaHTQELmIDjbq8Q49HOMR8Nx/gTDBkMl02Fno91LXFnA4A7ErPiyUSGqNSfLw+zgij0hgpeN7w==";
};
};
- "array-union-1.0.2" = {
- name = "array-union";
- packageName = "array-union";
- version = "1.0.2";
+ "@lerna/npm-dist-tag-3.0.0" = {
+ name = "_at_lerna_slash_npm-dist-tag";
+ packageName = "@lerna/npm-dist-tag";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
- sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
+ url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-3.0.0.tgz";
+ sha512 = "ZOcfcsNJlCoVHvLOROdCTvqD3keG3TJ78Cu8sALsz8n0kEz2ga7tNy5wbQ67SGyY7+jq4YiBv5BwXjV+56Sv+A==";
};
};
- "array-uniq-1.0.3" = {
- name = "array-uniq";
- packageName = "array-uniq";
- version = "1.0.3";
+ "@lerna/npm-install-3.0.0" = {
+ name = "_at_lerna_slash_npm-install";
+ packageName = "@lerna/npm-install";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
- sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
+ url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-3.0.0.tgz";
+ sha512 = "e0sspVUfzEKhqsRIxzWqZ/uMBHzZSzOa4HCeORErEZu+dmDoI145XYhqvCVn7EvbAb407FV2H9GVeoP0JeG8GQ==";
};
};
- "array-unique-0.2.1" = {
- name = "array-unique";
- packageName = "array-unique";
- version = "0.2.1";
+ "@lerna/npm-publish-3.0.6" = {
+ name = "_at_lerna_slash_npm-publish";
+ packageName = "@lerna/npm-publish";
+ version = "3.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz";
- sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53";
+ url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.0.6.tgz";
+ sha512 = "PlvKr958TowEOOe2yNtmUi/Ot42TS/edlmA7rj+XtDUR51AN3RB9G6b25TElyrnDksj1ayb3mOF7I2uf1gbyOw==";
};
};
- "array-unique-0.3.2" = {
- name = "array-unique";
- packageName = "array-unique";
- version = "0.3.2";
+ "@lerna/npm-run-script-3.0.0" = {
+ name = "_at_lerna_slash_npm-run-script";
+ packageName = "@lerna/npm-run-script";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
- sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
+ url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-3.0.0.tgz";
+ sha512 = "Y1H4Myer1S7an33FDK0eqyR+95PujUePC/xJZKq/H50SaQNwBw7KMlxXxy6kXVEcQhmvQsER4Bw3msgqwwGYIw==";
};
};
- "arrify-1.0.1" = {
- name = "arrify";
- packageName = "arrify";
- version = "1.0.1";
+ "@lerna/output-3.0.0" = {
+ name = "_at_lerna_slash_output";
+ packageName = "@lerna/output";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz";
- sha1 = "898508da2226f380df904728456849c1501a4b0d";
+ url = "https://registry.npmjs.org/@lerna/output/-/output-3.0.0.tgz";
+ sha512 = "EFxnSbO0zDEVKkTKpoCUAFcZjc3gn3DwPlyTDxbeqPU7neCfxP4rA4+0a6pcOfTlRS5kLBRMx79F2TRCaMM3DA==";
};
};
- "asn1-0.2.4" = {
- name = "asn1";
- packageName = "asn1";
- version = "0.2.4";
+ "@lerna/package-3.0.0" = {
+ name = "_at_lerna_slash_package";
+ packageName = "@lerna/package";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
- sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
+ url = "https://registry.npmjs.org/@lerna/package/-/package-3.0.0.tgz";
+ sha512 = "djzEJxzn212wS8d9znBnlXkeRlPL7GqeAYBykAmsuq51YGvaQK67Umh5ejdO0uxexF/4r7yRwgrlRHpQs8Rfqg==";
};
};
- "assert-plus-1.0.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "1.0.0";
+ "@lerna/package-graph-3.1.2" = {
+ name = "_at_lerna_slash_package-graph";
+ packageName = "@lerna/package-graph";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
+ url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-3.1.2.tgz";
+ sha512 = "9wIWb49I1IJmyjPdEVZQ13IAi9biGfH/OZHOC04U2zXGA0GLiY+B3CAx6FQvqkZ8xEGfqzmXnv3LvZ0bQfc1aQ==";
};
};
- "assign-symbols-1.0.0" = {
- name = "assign-symbols";
- packageName = "assign-symbols";
- version = "1.0.0";
+ "@lerna/project-3.0.0" = {
+ name = "_at_lerna_slash_project";
+ packageName = "@lerna/project";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
- sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
+ url = "https://registry.npmjs.org/@lerna/project/-/project-3.0.0.tgz";
+ sha512 = "XhDFVfqj79jG2Speggd15RpYaE8uiR25UKcQBDmumbmqvTS7xf2cvl2pq2UTvDafaJ0YwFF3xkxQZeZnFMwdkw==";
};
};
- "async-0.9.2" = {
- name = "async";
- packageName = "async";
- version = "0.9.2";
+ "@lerna/prompt-3.0.0" = {
+ name = "_at_lerna_slash_prompt";
+ packageName = "@lerna/prompt";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz";
- sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
+ url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-3.0.0.tgz";
+ sha512 = "EzvNexDTh//GlpOz68zRo16NdOIqWqiiXMs9tIxpELQubH+kUGKvBSiBrZ2Zyrfd8pQhIf+8qARtkCG+G7wzQQ==";
};
};
- "async-1.0.0" = {
- name = "async";
- packageName = "async";
- version = "1.0.0";
+ "@lerna/publish-3.1.3" = {
+ name = "_at_lerna_slash_publish";
+ packageName = "@lerna/publish";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz";
- sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
+ url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.1.3.tgz";
+ sha512 = "vlHs1ll3HEbTVgO0hVFo9dMKixV9XO3T7OBCK835j8fw4TL/0y+YjmNjH5Y5Uyh02hZxcy/iosZNyGccu/fG3w==";
};
};
- "async-1.5.2" = {
- name = "async";
- packageName = "async";
- version = "1.5.2";
+ "@lerna/resolve-symlink-3.0.0" = {
+ name = "_at_lerna_slash_resolve-symlink";
+ packageName = "@lerna/resolve-symlink";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz";
- sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a";
+ url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-3.0.0.tgz";
+ sha512 = "MqjW9e+QVXts5IK5dk1XnYx7JKb+g+tQkOnnpAxYWHjahf3rGJ7Ru8maWh8KoPE+nIHAekk4WcjpiA9nLKvkFQ==";
};
};
- "async-2.1.5" = {
- name = "async";
- packageName = "async";
- version = "2.1.5";
+ "@lerna/rimraf-dir-3.0.0" = {
+ name = "_at_lerna_slash_rimraf-dir";
+ packageName = "@lerna/rimraf-dir";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz";
- sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
+ url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-3.0.0.tgz";
+ sha512 = "epvh/RGWSOYdrNgrizMcRq9VyCHkeY0LpIE4074r4ouKdYNhBT0LlpT0yMLvQgQKJkKRlqcfhJHvZeGHhXQyGg==";
};
};
- "async-2.6.1" = {
- name = "async";
- packageName = "async";
- version = "2.6.1";
+ "@lerna/run-3.1.3" = {
+ name = "_at_lerna_slash_run";
+ packageName = "@lerna/run";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz";
- sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==";
+ url = "https://registry.npmjs.org/@lerna/run/-/run-3.1.3.tgz";
+ sha512 = "O26WdR+sQFSG2Fpc67nw+m8oVq3R+H6jsscKuB6VJafU+V4/hPURSbuFZIcmnD9MLmzAIhlQiCf0Fy6s/1MPPA==";
};
};
- "async-each-1.0.1" = {
- name = "async-each";
- packageName = "async-each";
- version = "1.0.1";
+ "@lerna/run-lifecycle-3.0.0" = {
+ name = "_at_lerna_slash_run-lifecycle";
+ packageName = "@lerna/run-lifecycle";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz";
- sha1 = "19d386a1d9edc6e7c1c85d388aedbcc56d33602d";
+ url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.0.0.tgz";
+ sha512 = "kfq6eC5mCreTk7GusZyvF0/BfU9FDEt8JaUgzNKLrK1Sj6z2RO8uSpFsUlj+7OuV4wo0I+rdTdJOAFoW8C0GZw==";
};
};
- "asynckit-0.4.0" = {
- name = "asynckit";
- packageName = "asynckit";
- version = "0.4.0";
+ "@lerna/run-parallel-batches-3.0.0" = {
+ name = "_at_lerna_slash_run-parallel-batches";
+ packageName = "@lerna/run-parallel-batches";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
+ url = "https://registry.npmjs.org/@lerna/run-parallel-batches/-/run-parallel-batches-3.0.0.tgz";
+ sha512 = "Mj1ravlXF7AkkewKd9YFq9BtVrsStNrvVLedD/b2wIVbNqcxp8lS68vehXVOzoL/VWNEDotvqCQtyDBilCodGw==";
};
};
- "atob-2.1.1" = {
- name = "atob";
- packageName = "atob";
- version = "2.1.1";
+ "@lerna/symlink-binary-3.1.4" = {
+ name = "_at_lerna_slash_symlink-binary";
+ packageName = "@lerna/symlink-binary";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz";
- sha1 = "ae2d5a729477f289d60dd7f96a6314a22dd6c22a";
+ url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.1.4.tgz";
+ sha512 = "uQ8pYxzygahshXJAeC/vY4eSi+kFM0S2Pi15hJsJI3W7Ec6ysSYU1lXemb6kqoIqkTDJZWnfKXEq/3FLE+JYhg==";
};
};
- "atomic-batcher-1.0.2" = {
- name = "atomic-batcher";
- packageName = "atomic-batcher";
- version = "1.0.2";
+ "@lerna/symlink-dependencies-3.1.4" = {
+ name = "_at_lerna_slash_symlink-dependencies";
+ packageName = "@lerna/symlink-dependencies";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/atomic-batcher/-/atomic-batcher-1.0.2.tgz";
- sha1 = "d16901d10ccec59516c197b9ccd8930689b813b4";
+ url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.1.4.tgz";
+ sha512 = "iModwb0Xh0N0t55C6S4K2mzLdu1zXVsBc0qubUY1x0RSul92z8NeAe1aM5JzwMzuSoMA/LRiD1lNMWMRBf4JVg==";
};
};
- "aws-sign2-0.7.0" = {
- name = "aws-sign2";
- packageName = "aws-sign2";
- version = "0.7.0";
+ "@lerna/validation-error-3.0.0" = {
+ name = "_at_lerna_slash_validation-error";
+ packageName = "@lerna/validation-error";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz";
- sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
+ url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-3.0.0.tgz";
+ sha512 = "5wjkd2PszV0kWvH+EOKZJWlHEqCTTKrWsvfHnHhcUaKBe/NagPZFWs+0xlsDPZ3DJt5FNfbAPAnEBQ05zLirFA==";
};
};
- "aws4-1.8.0" = {
- name = "aws4";
- packageName = "aws4";
- version = "1.8.0";
+ "@lerna/version-3.1.3" = {
+ name = "_at_lerna_slash_version";
+ packageName = "@lerna/version";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz";
- sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==";
+ url = "https://registry.npmjs.org/@lerna/version/-/version-3.1.3.tgz";
+ sha512 = "cKJc0FbSEJWdVLBpWgK1tM4nzwpVJ4IC3ESzEvTWYB0fIU/SAcf+m8x7d/kl8XtlybsKGegdMEgBWvzooaDQ9A==";
};
};
- "balanced-match-1.0.0" = {
- name = "balanced-match";
- packageName = "balanced-match";
- version = "1.0.0";
+ "@lerna/write-log-file-3.0.0" = {
+ name = "_at_lerna_slash_write-log-file";
+ packageName = "@lerna/write-log-file";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
- sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
+ url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-3.0.0.tgz";
+ sha512 = "SfbPp29lMeEVOb/M16lJwn4nnx5y+TwCdd7Uom9umd7KcZP0NOvpnX0PHehdonl7TyHZ1Xx2maklYuCLbQrd/A==";
};
};
- "base-0.11.2" = {
- name = "base";
- packageName = "base";
- version = "0.11.2";
+ "@mrmlnc/readdir-enhanced-2.2.1" = {
+ name = "_at_mrmlnc_slash_readdir-enhanced";
+ packageName = "@mrmlnc/readdir-enhanced";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
- sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
+ url = "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz";
+ sha512 = "bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==";
};
};
- "base64-js-0.0.8" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "0.0.8";
+ "@nodelib/fs.stat-1.1.1" = {
+ name = "_at_nodelib_slash_fs.stat";
+ packageName = "@nodelib/fs.stat";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz";
- sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978";
+ url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.1.tgz";
+ sha512 = "KU/VDjC5RwtDUZiz3d+DHXJF2lp5hB9dn552TXIyptj8SH1vXmR40mG0JgGq03IlYsOgGfcv8xrLpSQ0YUMQdA==";
};
};
- "bcrypt-pbkdf-1.0.2" = {
- name = "bcrypt-pbkdf";
- packageName = "bcrypt-pbkdf";
- version = "1.0.2";
+ "@protobufjs/aspromise-1.1.2" = {
+ name = "_at_protobufjs_slash_aspromise";
+ packageName = "@protobufjs/aspromise";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
- sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
+ url = "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz";
+ sha1 = "9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf";
};
};
- "bencode-1.0.0" = {
- name = "bencode";
- packageName = "bencode";
- version = "1.0.0";
+ "@protobufjs/base64-1.1.2" = {
+ name = "_at_protobufjs_slash_base64";
+ packageName = "@protobufjs/base64";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/bencode/-/bencode-1.0.0.tgz";
- sha512 = "N+VOSP5MkoX+xgnp6Y056iCY5TmCZg9rgPNPQe0bIiXchxYFP4vs/Tf0dTdQ+qQhP7HM2gvfFq+sUVjQsGy5Zw==";
+ url = "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz";
+ sha512 = "AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==";
};
};
- "bencode-2.0.0" = {
- name = "bencode";
- packageName = "bencode";
- version = "2.0.0";
+ "@protobufjs/codegen-2.0.4" = {
+ name = "_at_protobufjs_slash_codegen";
+ packageName = "@protobufjs/codegen";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/bencode/-/bencode-2.0.0.tgz";
- sha512 = "wr2HwwrUpfB5c68zmAudOltC7rZ1G0+lQOcnuEcfIM3AWAVnB3rHI3nlgd/2CWTfQ3w3zagKt89zni/M+VLZ8g==";
+ url = "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz";
+ sha512 = "YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==";
};
};
- "binary-extensions-1.11.0" = {
- name = "binary-extensions";
- packageName = "binary-extensions";
- version = "1.11.0";
+ "@protobufjs/eventemitter-1.1.0" = {
+ name = "_at_protobufjs_slash_eventemitter";
+ packageName = "@protobufjs/eventemitter";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz";
- sha1 = "46aa1751fb6a2f93ee5e689bb1087d4b14c6c205";
+ url = "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz";
+ sha1 = "355cbc98bafad5978f9ed095f397621f1d066b70";
};
};
- "bitfield-rle-2.1.0" = {
- name = "bitfield-rle";
- packageName = "bitfield-rle";
- version = "2.1.0";
+ "@protobufjs/fetch-1.1.0" = {
+ name = "_at_protobufjs_slash_fetch";
+ packageName = "@protobufjs/fetch";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bitfield-rle/-/bitfield-rle-2.1.0.tgz";
- sha1 = "ae29e9382a7ba4898de9f48bb23fd338c4fbdcf8";
+ url = "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz";
+ sha1 = "ba99fb598614af65700c1619ff06d454b0d84c45";
};
};
- "bittorrent-dht-7.10.0" = {
- name = "bittorrent-dht";
- packageName = "bittorrent-dht";
- version = "7.10.0";
+ "@protobufjs/float-1.0.2" = {
+ name = "_at_protobufjs_slash_float";
+ packageName = "@protobufjs/float";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-7.10.0.tgz";
- sha512 = "fvb6M58Ceiv/S94nu6zeaiMoJvUYOeIqRbgaClm+kJTzCAqJPtAR/31pXNYB5iEReOoKqQB5zY33gY0W6ZRWQQ==";
+ url = "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz";
+ sha1 = "5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1";
};
};
- "bl-1.2.2" = {
- name = "bl";
- packageName = "bl";
- version = "1.2.2";
+ "@protobufjs/inquire-1.1.0" = {
+ name = "_at_protobufjs_slash_inquire";
+ packageName = "@protobufjs/inquire";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz";
- sha512 = "e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==";
+ url = "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz";
+ sha1 = "ff200e3e7cf2429e2dcafc1140828e8cc638f089";
};
};
- "blake2b-2.1.2" = {
- name = "blake2b";
- packageName = "blake2b";
- version = "2.1.2";
+ "@protobufjs/path-1.1.2" = {
+ name = "_at_protobufjs_slash_path";
+ packageName = "@protobufjs/path";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/blake2b/-/blake2b-2.1.2.tgz";
- sha1 = "6880eddca35cfede92c4fb2724221334f989145a";
+ url = "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz";
+ sha1 = "6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d";
};
};
- "blake2b-wasm-1.1.7" = {
- name = "blake2b-wasm";
- packageName = "blake2b-wasm";
- version = "1.1.7";
+ "@protobufjs/pool-1.1.0" = {
+ name = "_at_protobufjs_slash_pool";
+ packageName = "@protobufjs/pool";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.7.tgz";
- sha512 = "oFIHvXhlz/DUgF0kq5B1CqxIDjIJwh9iDeUUGQUcvgiGz7Wdw03McEO7CfLBy7QKGdsydcMCgO9jFNBAFCtFcA==";
+ url = "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz";
+ sha1 = "09fd15f2d6d3abfa9b65bc366506d6ad7846ff54";
};
};
- "block-stream-0.0.9" = {
- name = "block-stream";
- packageName = "block-stream";
- version = "0.0.9";
+ "@protobufjs/utf8-1.1.0" = {
+ name = "_at_protobufjs_slash_utf8";
+ packageName = "@protobufjs/utf8";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz";
- sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
+ url = "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz";
+ sha1 = "a777360b5b39a1a2e5106f8e858f2fd2d060c570";
};
};
- "bluebird-3.5.1" = {
- name = "bluebird";
- packageName = "bluebird";
- version = "3.5.1";
+ "@sindresorhus/is-0.7.0" = {
+ name = "_at_sindresorhus_slash_is";
+ packageName = "@sindresorhus/is";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz";
- sha512 = "MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==";
+ url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz";
+ sha512 = "ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==";
};
};
- "body-0.1.0" = {
- name = "body";
- packageName = "body";
- version = "0.1.0";
+ "@types/accepts-1.3.5" = {
+ name = "_at_types_slash_accepts";
+ packageName = "@types/accepts";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/body/-/body-0.1.0.tgz";
- sha1 = "e714fe28cd8848aa34cdf2c9f242bbe2e15d1cd8";
+ url = "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz";
+ sha512 = "jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==";
};
};
- "body-parser-1.12.4" = {
- name = "body-parser";
- packageName = "body-parser";
- version = "1.12.4";
+ "@types/async-2.0.49" = {
+ name = "_at_types_slash_async";
+ packageName = "@types/async";
+ version = "2.0.49";
src = fetchurl {
- url = "https://registry.npmjs.org/body-parser/-/body-parser-1.12.4.tgz";
- sha1 = "090700c4ba28862a8520ef378395fdee5f61c229";
+ url = "https://registry.npmjs.org/@types/async/-/async-2.0.49.tgz";
+ sha512 = "Benr3i5odUkvpFkOpzGqrltGdbSs+EVCkEBGXbuR7uT0VzhXKIkhem6PDzHdx5EonA+rfbB3QvP6aDOw5+zp5Q==";
};
};
- "boxen-1.3.0" = {
- name = "boxen";
- packageName = "boxen";
- version = "1.3.0";
+ "@types/babel-types-7.0.4" = {
+ name = "_at_types_slash_babel-types";
+ packageName = "@types/babel-types";
+ version = "7.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz";
- sha512 = "TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==";
+ url = "https://registry.npmjs.org/@types/babel-types/-/babel-types-7.0.4.tgz";
+ sha512 = "WiZhq3SVJHFRgRYLXvpf65XnV6ipVHhnNaNvE8yCimejrGglkg38kEj0JcizqwSHxmPSjcTlig/6JouxLGEhGw==";
};
};
- "brace-expansion-1.1.11" = {
- name = "brace-expansion";
- packageName = "brace-expansion";
- version = "1.1.11";
+ "@types/babylon-6.16.3" = {
+ name = "_at_types_slash_babylon";
+ packageName = "@types/babylon";
+ version = "6.16.3";
src = fetchurl {
- url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
- sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
+ url = "https://registry.npmjs.org/@types/babylon/-/babylon-6.16.3.tgz";
+ sha512 = "lyJ8sW1PbY3uwuvpOBZ9zMYKshMnQpXmeDHh8dj9j2nJm/xrW0FgB5gLSYOArj5X0IfaXnmhFoJnhS4KbqIMug==";
};
};
- "braces-1.8.5" = {
- name = "braces";
- packageName = "braces";
- version = "1.8.5";
+ "@types/body-parser-1.17.0" = {
+ name = "_at_types_slash_body-parser";
+ packageName = "@types/body-parser";
+ version = "1.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz";
- sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7";
+ url = "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.17.0.tgz";
+ sha512 = "a2+YeUjPkztKJu5aIF2yArYFQQp8d51wZ7DavSHjFuY1mqVgidGyzEQ41JIVNy82fXj8yPgy2vJmfIywgESW6w==";
};
};
- "braces-2.3.2" = {
- name = "braces";
- packageName = "braces";
- version = "2.3.2";
+ "@types/commander-2.12.2" = {
+ name = "_at_types_slash_commander";
+ packageName = "@types/commander";
+ version = "2.12.2";
src = fetchurl {
- url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz";
- sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==";
+ url = "https://registry.npmjs.org/@types/commander/-/commander-2.12.2.tgz";
+ sha512 = "0QEFiR8ljcHp9bAbWxecjVRuAMr16ivPiGOw6KFQBVrVd0RQIcM3xKdRisH2EDWgVWujiYtHwhSkSUoAAGzH7Q==";
};
};
- "browser-stdout-1.3.1" = {
- name = "browser-stdout";
- packageName = "browser-stdout";
- version = "1.3.1";
+ "@types/connect-3.4.32" = {
+ name = "_at_types_slash_connect";
+ packageName = "@types/connect";
+ version = "3.4.32";
src = fetchurl {
- url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz";
- sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==";
+ url = "https://registry.npmjs.org/@types/connect/-/connect-3.4.32.tgz";
+ sha512 = "4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg==";
};
};
- "buffer-3.6.0" = {
- name = "buffer";
- packageName = "buffer";
- version = "3.6.0";
+ "@types/cookiejar-2.1.0" = {
+ name = "_at_types_slash_cookiejar";
+ packageName = "@types/cookiejar";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz";
- sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb";
+ url = "https://registry.npmjs.org/@types/cookiejar/-/cookiejar-2.1.0.tgz";
+ sha512 = "EIjmpvnHj+T4nMcKwHwxZKUfDmphIKJc2qnEMhSoOvr1lYEQpuRKRz8orWr//krYIIArS/KGGLfL2YGVUYXmIA==";
};
};
- "buffer-alloc-1.2.0" = {
- name = "buffer-alloc";
- packageName = "buffer-alloc";
- version = "1.2.0";
+ "@types/cors-2.8.4" = {
+ name = "_at_types_slash_cors";
+ packageName = "@types/cors";
+ version = "2.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz";
- sha512 = "CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==";
+ url = "https://registry.npmjs.org/@types/cors/-/cors-2.8.4.tgz";
+ sha512 = "ipZjBVsm2tF/n8qFGOuGBkUij9X9ZswVi9G3bx/6dz7POpVa6gVHcj1wsX/LVEn9MMF41fxK/PnZPPoTD1UFPw==";
};
};
- "buffer-alloc-unsafe-1.1.0" = {
- name = "buffer-alloc-unsafe";
- packageName = "buffer-alloc-unsafe";
- version = "1.1.0";
+ "@types/cross-spawn-6.0.0" = {
+ name = "_at_types_slash_cross-spawn";
+ packageName = "@types/cross-spawn";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz";
- sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==";
+ url = "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.0.tgz";
+ sha512 = "evp2ZGsFw9YKprDbg8ySgC9NA15g3YgiI8ANkGmKKvvi0P2aDGYLPxQIC5qfeKNUOe3TjABVGuah6omPRpIYhg==";
};
};
- "buffer-crc32-0.2.13" = {
- name = "buffer-crc32";
- packageName = "buffer-crc32";
- version = "0.2.13";
+ "@types/debug-0.0.30" = {
+ name = "_at_types_slash_debug";
+ packageName = "@types/debug";
+ version = "0.0.30";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz";
- sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242";
+ url = "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz";
+ sha512 = "orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==";
};
};
- "buffer-equals-1.0.4" = {
- name = "buffer-equals";
- packageName = "buffer-equals";
- version = "1.0.4";
+ "@types/events-1.2.0" = {
+ name = "_at_types_slash_events";
+ packageName = "@types/events";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz";
- sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
+ url = "https://registry.npmjs.org/@types/events/-/events-1.2.0.tgz";
+ sha512 = "KEIlhXnIutzKwRbQkGWb/I4HFqBuUykAdHgDED6xqwXJfONCjF5VoE0cXEiurh3XauygxzeDzgtXUqvLkxFzzA==";
};
};
- "buffer-fill-1.0.0" = {
- name = "buffer-fill";
- packageName = "buffer-fill";
- version = "1.0.0";
+ "@types/express-4.16.0" = {
+ name = "_at_types_slash_express";
+ packageName = "@types/express";
+ version = "4.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz";
- sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c";
+ url = "https://registry.npmjs.org/@types/express/-/express-4.16.0.tgz";
+ sha512 = "TtPEYumsmSTtTetAPXlJVf3kEqb6wZK0bZojpJQrnD/djV4q1oB6QQ8aKvKqwNPACoe02GNiy5zDzcYivR5Z2w==";
};
};
- "buffer-from-1.1.1" = {
- name = "buffer-from";
- packageName = "buffer-from";
- version = "1.1.1";
+ "@types/express-serve-static-core-4.16.0" = {
+ name = "_at_types_slash_express-serve-static-core";
+ packageName = "@types/express-serve-static-core";
+ version = "4.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
- sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.16.0.tgz";
+ sha512 = "lTeoCu5NxJU4OD9moCgm0ESZzweAx0YqsAcab6OB0EB3+As1OaHtKnaGJvcngQxYsi9UNv0abn4/DRavrRxt4w==";
};
};
- "builtins-1.0.3" = {
- name = "builtins";
- packageName = "builtins";
- version = "1.0.3";
+ "@types/glob-5.0.35" = {
+ name = "_at_types_slash_glob";
+ packageName = "@types/glob";
+ version = "5.0.35";
src = fetchurl {
- url = "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz";
- sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
+ url = "https://registry.npmjs.org/@types/glob/-/glob-5.0.35.tgz";
+ sha512 = "wc+VveszMLyMWFvXLkloixT4n0harUIVZjnpzztaZ0nKLuul7Z32iMt2fUFGAaZ4y1XWjFRMtCI5ewvyh4aIeg==";
};
};
- "bulk-write-stream-1.1.4" = {
- name = "bulk-write-stream";
- packageName = "bulk-write-stream";
- version = "1.1.4";
+ "@types/graphql-0.12.6" = {
+ name = "_at_types_slash_graphql";
+ packageName = "@types/graphql";
+ version = "0.12.6";
src = fetchurl {
- url = "https://registry.npmjs.org/bulk-write-stream/-/bulk-write-stream-1.1.4.tgz";
- sha512 = "GtKwd/4etuk1hNeprXoESBO1RSeRYJMXKf+O0qHmWdUomLT8ysNEfX/4bZFXr3BK6eukpHiEnhY2uMtEHDM2ng==";
+ url = "https://registry.npmjs.org/@types/graphql/-/graphql-0.12.6.tgz";
+ sha512 = "wXAVyLfkG1UMkKOdMijVWFky39+OD/41KftzqfX1Oejd0Gm6dOIKjCihSVECg6X7PHjftxXmfOKA/d1H79ZfvQ==";
};
};
- "busboy-0.2.14" = {
- name = "busboy";
- packageName = "busboy";
- version = "0.2.14";
+ "@types/inquirer-0.0.43" = {
+ name = "_at_types_slash_inquirer";
+ packageName = "@types/inquirer";
+ version = "0.0.43";
src = fetchurl {
- url = "https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz";
- sha1 = "6c2a622efcf47c57bbbe1e2a9c37ad36c7925453";
+ url = "https://registry.npmjs.org/@types/inquirer/-/inquirer-0.0.43.tgz";
+ sha512 = "xgyfKZVMFqE8aIKy1xfFVsX2MxyXUNgjgmbF6dRbR3sL+ZM5K4ka/9L4mmTwX8eTeVYtduyXu0gUVwVJa1HbNw==";
};
};
- "bytes-1.0.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "1.0.0";
+ "@types/klaw-2.1.1" = {
+ name = "_at_types_slash_klaw";
+ packageName = "@types/klaw";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz";
- sha1 = "3569ede8ba34315fab99c3e92cb04c7220de1fa8";
+ url = "https://registry.npmjs.org/@types/klaw/-/klaw-2.1.1.tgz";
+ sha512 = "awiTDstwQfX6026T7oC01AoP7knJoM5IT1tgx9STIM4hQzNQlkW8keTxNC+/xxpMgP657ebHMTqrsQ4qtfSJKg==";
};
};
- "bytes-2.1.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "2.1.0";
+ "@types/lodash-4.14.116" = {
+ name = "_at_types_slash_lodash";
+ packageName = "@types/lodash";
+ version = "4.14.116";
src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-2.1.0.tgz";
- sha1 = "ac93c410e2ffc9cc7cf4b464b38289067f5e47b4";
+ url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.116.tgz";
+ sha512 = "lRnAtKnxMXcYYXqOiotTmJd74uawNWuPnsnPrrO7HiFuE3npE2iQhfABatbYDyxTNqZNuXzcKGhw37R7RjBFLg==";
};
};
- "bytes-3.0.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "3.0.0";
+ "@types/long-4.0.0" = {
+ name = "_at_types_slash_long";
+ packageName = "@types/long";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz";
- sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
+ url = "https://registry.npmjs.org/@types/long/-/long-4.0.0.tgz";
+ sha512 = "1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q==";
};
};
- "cache-base-1.0.1" = {
- name = "cache-base";
- packageName = "cache-base";
- version = "1.0.1";
+ "@types/make-dir-1.0.3" = {
+ name = "_at_types_slash_make-dir";
+ packageName = "@types/make-dir";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
- sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==";
+ url = "https://registry.npmjs.org/@types/make-dir/-/make-dir-1.0.3.tgz";
+ sha512 = "bFRvlvUdPwxj47K2yVh7OBL8Mu8h//5k/hQJkz0iAZAlxhnIDydFezGA96zehtnRfrZDuIyPd+RC2kmBGtcs0w==";
};
};
- "call-me-maybe-1.0.1" = {
- name = "call-me-maybe";
- packageName = "call-me-maybe";
- version = "1.0.1";
+ "@types/mime-2.0.0" = {
+ name = "_at_types_slash_mime";
+ packageName = "@types/mime";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz";
- sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b";
+ url = "https://registry.npmjs.org/@types/mime/-/mime-2.0.0.tgz";
+ sha512 = "A2TAGbTFdBw9azHbpVd+/FkdW2T6msN1uct1O9bH3vTerEHKZhTXJUQXy+hNq1B0RagfU8U+KBdqiZpxjhOUQA==";
};
};
- "camelcase-1.2.1" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "1.2.1";
+ "@types/minimatch-3.0.3" = {
+ name = "_at_types_slash_minimatch";
+ packageName = "@types/minimatch";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz";
- sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39";
+ url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz";
+ sha512 = "tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==";
};
};
- "camelcase-4.1.0" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "4.1.0";
+ "@types/minimist-1.2.0" = {
+ name = "_at_types_slash_minimist";
+ packageName = "@types/minimist";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz";
- sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
+ url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz";
+ sha1 = "69a23a3ad29caf0097f06eda59b361ee2f0639f6";
};
};
- "capture-stack-trace-1.0.0" = {
- name = "capture-stack-trace";
- packageName = "capture-stack-trace";
- version = "1.0.0";
+ "@types/ncp-2.0.1" = {
+ name = "_at_types_slash_ncp";
+ packageName = "@types/ncp";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz";
- sha1 = "4a6fa07399c26bba47f0b2496b4d0fb408c5550d";
+ url = "https://registry.npmjs.org/@types/ncp/-/ncp-2.0.1.tgz";
+ sha512 = "TeiJ7uvv/92ugSqZ0v9l0eNXzutlki0aK+R1K5bfA5SYUil46ITlxLW4iNTCf55P4L5weCmaOdtxGeGWvudwPg==";
};
};
- "caseless-0.12.0" = {
- name = "caseless";
- packageName = "caseless";
- version = "0.12.0";
+ "@types/node-10.9.2" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "10.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
- sha1 = "1b681c21ff84033c826543090689420d187151dc";
+ url = "https://registry.npmjs.org/@types/node/-/node-10.9.2.tgz";
+ sha512 = "pwZnkVyCGJ3LsQ0/3flQK5lCFao4esIzwUVzzk5NvL9vnkEyDhNf4fhHzUMHvyr56gNZywWTS2MR0euabMSz4A==";
};
};
- "caw-2.0.1" = {
- name = "caw";
- packageName = "caw";
- version = "2.0.1";
+ "@types/node-6.0.116" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "6.0.116";
src = fetchurl {
- url = "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz";
- sha512 = "Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==";
+ url = "https://registry.npmjs.org/@types/node/-/node-6.0.116.tgz";
+ sha512 = "vToa8YEeulfyYg1gSOeHjvvIRqrokng62VMSj2hoZrwZNcYrp2h3AWo6KeBVuymIklQUaY5zgVJvVsC4KiiLkQ==";
};
};
- "center-align-0.1.3" = {
- name = "center-align";
- packageName = "center-align";
- version = "0.1.3";
+ "@types/node-8.10.28" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "8.10.28";
src = fetchurl {
- url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz";
- sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad";
+ url = "https://registry.npmjs.org/@types/node/-/node-8.10.28.tgz";
+ sha512 = "iHsAzDg3OLH7JP+wipniUULHoDSWLgEDYOvsar6/mpAkTJd9/n23Ap8ikruMlvRTqMv/LXrflH9v/AfiEqaBGg==";
};
};
- "chalk-1.1.3" = {
- name = "chalk";
- packageName = "chalk";
- version = "1.1.3";
+ "@types/range-parser-1.2.2" = {
+ name = "_at_types_slash_range-parser";
+ packageName = "@types/range-parser";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
- sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
+ url = "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.2.tgz";
+ sha512 = "HtKGu+qG1NPvYe1z7ezLsyIaXYyi8SoAVqWDZgDQ8dLrsZvSzUNCwZyfX33uhWxL/SU0ZDQZ3nwZ0nimt507Kw==";
};
};
- "chalk-2.4.1" = {
- name = "chalk";
- packageName = "chalk";
- version = "2.4.1";
+ "@types/rimraf-2.0.2" = {
+ name = "_at_types_slash_rimraf";
+ packageName = "@types/rimraf";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz";
- sha512 = "ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==";
+ url = "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.2.tgz";
+ sha512 = "Hm/bnWq0TCy7jmjeN5bKYij9vw5GrDFWME4IuxV08278NtU/VdGbzsBohcCUJ7+QMqmUq5hpRKB39HeQWJjztQ==";
};
};
- "chardet-0.4.2" = {
- name = "chardet";
- packageName = "chardet";
- version = "0.4.2";
+ "@types/rx-4.1.1" = {
+ name = "_at_types_slash_rx";
+ packageName = "@types/rx";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz";
- sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2";
+ url = "https://registry.npmjs.org/@types/rx/-/rx-4.1.1.tgz";
+ sha1 = "598fc94a56baed975f194574e0f572fd8e627a48";
};
};
- "chardet-0.5.0" = {
- name = "chardet";
- packageName = "chardet";
- version = "0.5.0";
+ "@types/rx-core-4.0.3" = {
+ name = "_at_types_slash_rx-core";
+ packageName = "@types/rx-core";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/chardet/-/chardet-0.5.0.tgz";
- sha512 = "9ZTaoBaePSCFvNlNGrsyI8ZVACP2svUtq0DkM7t4K2ClAa96sqOIRjAzDTc8zXzFt1cZR46rRzLTiHFSJ+Qw0g==";
+ url = "https://registry.npmjs.org/@types/rx-core/-/rx-core-4.0.3.tgz";
+ sha1 = "0b3354b1238cedbe2b74f6326f139dbc7a591d60";
};
};
- "charenc-0.0.2" = {
- name = "charenc";
- packageName = "charenc";
- version = "0.0.2";
+ "@types/rx-core-binding-4.0.4" = {
+ name = "_at_types_slash_rx-core-binding";
+ packageName = "@types/rx-core-binding";
+ version = "4.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz";
- sha1 = "c0a1d2f3a7092e03774bfa83f14c0fc5790a8667";
+ url = "https://registry.npmjs.org/@types/rx-core-binding/-/rx-core-binding-4.0.4.tgz";
+ sha512 = "5pkfxnC4w810LqBPUwP5bg7SFR/USwhMSaAeZQQbEHeBp57pjKXRlXmqpMrLJB4y1oglR/c2502853uN0I+DAQ==";
};
};
- "chokidar-2.0.4" = {
- name = "chokidar";
- packageName = "chokidar";
- version = "2.0.4";
+ "@types/rx-lite-4.0.5" = {
+ name = "_at_types_slash_rx-lite";
+ packageName = "@types/rx-lite";
+ version = "4.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz";
- sha512 = "z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==";
+ url = "https://registry.npmjs.org/@types/rx-lite/-/rx-lite-4.0.5.tgz";
+ sha512 = "KZk5XTR1dm/kNgBx8iVpjno6fRYtAUQWBOmj+O8j724+nk097sz4fOoHJNpCkOJUtHUurZlJC7QvSFCZHbkC+w==";
};
};
- "chownr-1.0.1" = {
- name = "chownr";
- packageName = "chownr";
- version = "1.0.1";
+ "@types/rx-lite-aggregates-4.0.3" = {
+ name = "_at_types_slash_rx-lite-aggregates";
+ packageName = "@types/rx-lite-aggregates";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz";
- sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181";
+ url = "https://registry.npmjs.org/@types/rx-lite-aggregates/-/rx-lite-aggregates-4.0.3.tgz";
+ sha512 = "MAGDAHy8cRatm94FDduhJF+iNS5//jrZ/PIfm+QYw9OCeDgbymFHChM8YVIvN2zArwsRftKgE33QfRWvQk4DPg==";
};
};
- "ci-info-1.1.3" = {
- name = "ci-info";
- packageName = "ci-info";
- version = "1.1.3";
+ "@types/rx-lite-async-4.0.2" = {
+ name = "_at_types_slash_rx-lite-async";
+ packageName = "@types/rx-lite-async";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ci-info/-/ci-info-1.1.3.tgz";
- sha512 = "SK/846h/Rcy8q9Z9CAwGBLfCJ6EkjJWdpelWDufQpqVDYq2Wnnv8zlSO6AMQap02jvhVruKKpEtQOufo3pFhLg==";
+ url = "https://registry.npmjs.org/@types/rx-lite-async/-/rx-lite-async-4.0.2.tgz";
+ sha512 = "vTEv5o8l6702ZwfAM5aOeVDfUwBSDOs+ARoGmWAKQ6LOInQ8J4/zjM7ov12fuTpktUKdMQjkeCp07Vd73mPkxw==";
};
};
- "circular-append-file-1.0.1" = {
- name = "circular-append-file";
- packageName = "circular-append-file";
- version = "1.0.1";
+ "@types/rx-lite-backpressure-4.0.3" = {
+ name = "_at_types_slash_rx-lite-backpressure";
+ packageName = "@types/rx-lite-backpressure";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/circular-append-file/-/circular-append-file-1.0.1.tgz";
- sha512 = "BUDFvrBTCdeVhg9E05PX4XgMegk6xWB69uGwyuATEg7PMfa9lGU1mzFSK0xWNW2O0i9CAQHN0oIdXI/kI2hPkg==";
+ url = "https://registry.npmjs.org/@types/rx-lite-backpressure/-/rx-lite-backpressure-4.0.3.tgz";
+ sha512 = "Y6aIeQCtNban5XSAF4B8dffhIKu6aAy/TXFlScHzSxh6ivfQBQw6UjxyEJxIOt3IT49YkS+siuayM2H/Q0cmgA==";
};
};
- "class-utils-0.3.6" = {
- name = "class-utils";
- packageName = "class-utils";
- version = "0.3.6";
+ "@types/rx-lite-coincidence-4.0.3" = {
+ name = "_at_types_slash_rx-lite-coincidence";
+ packageName = "@types/rx-lite-coincidence";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
- sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
+ url = "https://registry.npmjs.org/@types/rx-lite-coincidence/-/rx-lite-coincidence-4.0.3.tgz";
+ sha512 = "1VNJqzE9gALUyMGypDXZZXzR0Tt7LC9DdAZQ3Ou/Q0MubNU35agVUNXKGHKpNTba+fr8GdIdkC26bRDqtCQBeQ==";
};
};
- "cli-boxes-1.0.0" = {
- name = "cli-boxes";
- packageName = "cli-boxes";
- version = "1.0.0";
+ "@types/rx-lite-experimental-4.0.1" = {
+ name = "_at_types_slash_rx-lite-experimental";
+ packageName = "@types/rx-lite-experimental";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz";
- sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143";
+ url = "https://registry.npmjs.org/@types/rx-lite-experimental/-/rx-lite-experimental-4.0.1.tgz";
+ sha1 = "c532f5cbdf3f2c15da16ded8930d1b2984023cbd";
};
};
- "cli-cursor-1.0.2" = {
- name = "cli-cursor";
- packageName = "cli-cursor";
- version = "1.0.2";
+ "@types/rx-lite-joinpatterns-4.0.1" = {
+ name = "_at_types_slash_rx-lite-joinpatterns";
+ packageName = "@types/rx-lite-joinpatterns";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz";
- sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987";
+ url = "https://registry.npmjs.org/@types/rx-lite-joinpatterns/-/rx-lite-joinpatterns-4.0.1.tgz";
+ sha1 = "f70fe370518a8432f29158cc92ffb56b4e4afc3e";
};
};
- "cli-cursor-2.1.0" = {
- name = "cli-cursor";
- packageName = "cli-cursor";
- version = "2.1.0";
+ "@types/rx-lite-testing-4.0.1" = {
+ name = "_at_types_slash_rx-lite-testing";
+ packageName = "@types/rx-lite-testing";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz";
- sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5";
+ url = "https://registry.npmjs.org/@types/rx-lite-testing/-/rx-lite-testing-4.0.1.tgz";
+ sha1 = "21b19d11f4dfd6ffef5a9d1648e9c8879bfe21e9";
};
};
- "cli-spinners-1.3.1" = {
- name = "cli-spinners";
- packageName = "cli-spinners";
- version = "1.3.1";
+ "@types/rx-lite-time-4.0.3" = {
+ name = "_at_types_slash_rx-lite-time";
+ packageName = "@types/rx-lite-time";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz";
- sha512 = "1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==";
+ url = "https://registry.npmjs.org/@types/rx-lite-time/-/rx-lite-time-4.0.3.tgz";
+ sha512 = "ukO5sPKDRwCGWRZRqPlaAU0SKVxmWwSjiOrLhoQDoWxZWg6vyB9XLEZViKOzIO6LnTIQBlk4UylYV0rnhJLxQw==";
};
};
- "cli-table-0.3.1" = {
- name = "cli-table";
- packageName = "cli-table";
- version = "0.3.1";
+ "@types/rx-lite-virtualtime-4.0.3" = {
+ name = "_at_types_slash_rx-lite-virtualtime";
+ packageName = "@types/rx-lite-virtualtime";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz";
- sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23";
+ url = "https://registry.npmjs.org/@types/rx-lite-virtualtime/-/rx-lite-virtualtime-4.0.3.tgz";
+ sha512 = "3uC6sGmjpOKatZSVHI2xB1+dedgml669ZRvqxy+WqmGJDVusOdyxcKfyzjW0P3/GrCiN4nmRkLVMhPwHCc5QLg==";
};
};
- "cli-truncate-1.1.0" = {
- name = "cli-truncate";
- packageName = "cli-truncate";
- version = "1.1.0";
+ "@types/semver-5.5.0" = {
+ name = "_at_types_slash_semver";
+ packageName = "@types/semver";
+ version = "5.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-1.1.0.tgz";
- sha512 = "bAtZo0u82gCfaAGfSNxUdTI9mNyza7D8w4CVCcaOsy7sgwDzvx6ekr6cuWJqY3UGzgnQ1+4wgENup5eIhgxEYA==";
+ url = "https://registry.npmjs.org/@types/semver/-/semver-5.5.0.tgz";
+ sha512 = "41qEJgBH/TWgo5NFSvBCJ1qkoi3Q6ONSF2avrHq1LVEZfYpdHmj0y9SuTK+u9ZhG1sYQKBL1AWXKyLWP4RaUoQ==";
};
};
- "cli-width-1.1.1" = {
- name = "cli-width";
- packageName = "cli-width";
- version = "1.1.1";
+ "@types/serve-static-1.13.2" = {
+ name = "_at_types_slash_serve-static";
+ packageName = "@types/serve-static";
+ version = "1.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz";
- sha1 = "a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d";
+ url = "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.2.tgz";
+ sha512 = "/BZ4QRLpH/bNYgZgwhKEh+5AsboDBcUdlBYgzoLX0fpj3Y2gp6EApyOlM3bK53wQS/OE1SrdSYBAbux2D1528Q==";
};
};
- "cli-width-2.2.0" = {
- name = "cli-width";
- packageName = "cli-width";
- version = "2.2.0";
+ "@types/string-width-2.0.0" = {
+ name = "_at_types_slash_string-width";
+ packageName = "@types/string-width";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz";
- sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639";
+ url = "https://registry.npmjs.org/@types/string-width/-/string-width-2.0.0.tgz";
+ sha512 = "dA5z2WlP7uurAiveIWTDRgfr1U58Qdmo6doDeAyJlYFQ3vnUOW7BqJ+tl+M8FaLcflhrVvwIfzxJJvlz6anx4A==";
};
};
- "cliclopts-1.1.1" = {
- name = "cliclopts";
- packageName = "cliclopts";
- version = "1.1.1";
+ "@types/strip-ansi-3.0.0" = {
+ name = "_at_types_slash_strip-ansi";
+ packageName = "@types/strip-ansi";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cliclopts/-/cliclopts-1.1.1.tgz";
- sha1 = "69431c7cb5af723774b0d3911b4c37512431910f";
+ url = "https://registry.npmjs.org/@types/strip-ansi/-/strip-ansi-3.0.0.tgz";
+ sha1 = "9b63d453a6b54aa849182207711a08be8eea48ae";
};
};
- "cliui-2.1.0" = {
- name = "cliui";
- packageName = "cliui";
- version = "2.1.0";
+ "@types/superagent-3.8.2" = {
+ name = "_at_types_slash_superagent";
+ packageName = "@types/superagent";
+ version = "3.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz";
- sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
+ url = "https://registry.npmjs.org/@types/superagent/-/superagent-3.8.2.tgz";
+ sha512 = "kdU8ydio1weSvhIIh9rptZ6MdMiR2NQGFnlnZ5qQ7OiQS1ej79zK4GaJ9qX3naSTpOA7iWqwUnZCQpd7SpD1NA==";
};
};
- "clone-1.0.4" = {
- name = "clone";
- packageName = "clone";
- version = "1.0.4";
+ "@types/through-0.0.29" = {
+ name = "_at_types_slash_through";
+ packageName = "@types/through";
+ version = "0.0.29";
src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
- sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
+ url = "https://registry.npmjs.org/@types/through/-/through-0.0.29.tgz";
+ sha512 = "9a7C5VHh+1BKblaYiq+7Tfc+EOmjMdZaD1MYtkQjSoxgB69tBjW98ry6SKsi4zEIWztLOMRuL87A3bdT/Fc/4w==";
};
};
- "clone-2.0.0" = {
- name = "clone";
- packageName = "clone";
- version = "2.0.0";
+ "@types/untildify-3.0.0" = {
+ name = "_at_types_slash_untildify";
+ packageName = "@types/untildify";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-2.0.0.tgz";
- sha1 = "df65d3ca142e4a4a47db33da3468d088a16fc76e";
+ url = "https://registry.npmjs.org/@types/untildify/-/untildify-3.0.0.tgz";
+ sha512 = "FTktI3Y1h+gP9GTjTvXBP5v8xpH4RU6uS9POoBcGy4XkS2Np6LNtnP1eiNNth4S7P+qw2c/rugkwBasSHFzJEg==";
};
};
- "co-3.1.0" = {
- name = "co";
- packageName = "co";
- version = "3.1.0";
+ "@types/wrap-ansi-3.0.0" = {
+ name = "_at_types_slash_wrap-ansi";
+ packageName = "@types/wrap-ansi";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/co/-/co-3.1.0.tgz";
- sha1 = "4ea54ea5a08938153185e15210c68d9092bc1b78";
+ url = "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz";
+ sha512 = "ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==";
};
};
- "co-4.6.0" = {
- name = "co";
- packageName = "co";
- version = "4.6.0";
+ "@types/write-file-atomic-2.1.1" = {
+ name = "_at_types_slash_write-file-atomic";
+ packageName = "@types/write-file-atomic";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
- sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
+ url = "https://registry.npmjs.org/@types/write-file-atomic/-/write-file-atomic-2.1.1.tgz";
+ sha512 = "mROQhTxpJsOm/S0eOxDHUy5WJ0yS8fmqsq/s+u5OuAh1TxBFSqVBTkLjbyxDPcKh7DeJXk0OYrCkxXlkf8zu1g==";
};
};
- "co-from-stream-0.0.0" = {
- name = "co-from-stream";
- packageName = "co-from-stream";
- version = "0.0.0";
+ "@types/ws-5.1.2" = {
+ name = "_at_types_slash_ws";
+ packageName = "@types/ws";
+ version = "5.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/co-from-stream/-/co-from-stream-0.0.0.tgz";
- sha1 = "1a5cd8ced77263946094fa39f2499a63297bcaf9";
+ url = "https://registry.npmjs.org/@types/ws/-/ws-5.1.2.tgz";
+ sha512 = "NkTXUKTYdXdnPE2aUUbGOXE1XfMK527SCvU/9bj86kyFF6kZ9ZnOQ3mK5jADn98Y2vEUD/7wKDgZa7Qst2wYOg==";
};
};
- "co-fs-extra-1.2.1" = {
- name = "co-fs-extra";
- packageName = "co-fs-extra";
- version = "1.2.1";
+ "@types/zen-observable-0.8.0" = {
+ name = "_at_types_slash_zen-observable";
+ packageName = "@types/zen-observable";
+ version = "0.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/co-fs-extra/-/co-fs-extra-1.2.1.tgz";
- sha1 = "3b6ad77cf2614530f677b1cf62664f5ba756b722";
+ url = "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.0.tgz";
+ sha512 = "te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg==";
};
};
- "co-read-0.0.1" = {
- name = "co-read";
- packageName = "co-read";
- version = "0.0.1";
+ "@vue/cli-shared-utils-3.0.1" = {
+ name = "_at_vue_slash_cli-shared-utils";
+ packageName = "@vue/cli-shared-utils";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/co-read/-/co-read-0.0.1.tgz";
- sha1 = "f81b3eb8a86675fec51e3d883a7f564e873c9389";
+ url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-3.0.1.tgz";
+ sha512 = "bdFxerHn/Tz/yIsZH9d1QkegdJR2KzkVHcn1ejDM/QV1RM3OteFbDcTBEIaAOd3OcAtyikzkRrsr1o9iBsBqVg==";
};
};
- "code-point-at-1.1.0" = {
- name = "code-point-at";
- packageName = "code-point-at";
- version = "1.1.0";
+ "@vue/cli-ui-3.0.1" = {
+ name = "_at_vue_slash_cli-ui";
+ packageName = "@vue/cli-ui";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
- sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
+ url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-3.0.1.tgz";
+ sha512 = "Mpj6la1XxjbLE0DdfNbqd3Bi71hhheMhXZfBsgD+xujzW/VCRevrZ/utbR1/NDhl0OXC1eBrvyyDoFWSPCagog==";
};
};
- "codecs-1.2.1" = {
- name = "codecs";
- packageName = "codecs";
- version = "1.2.1";
+ "@vue/cli-ui-addon-webpack-3.0.1" = {
+ name = "_at_vue_slash_cli-ui-addon-webpack";
+ packageName = "@vue/cli-ui-addon-webpack";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/codecs/-/codecs-1.2.1.tgz";
- sha512 = "SPnx+ZHXVJ0qTInRXmnxuyu8PDvSzvop5MXp1BOr/urFQI3yL2n5ewE755skTklF/hKVlWj8cinGxdR2gvLvTA==";
+ url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-3.0.1.tgz";
+ sha512 = "QVAeazXILNcdSfBhxkoeXme/BgwXj0qUJVPrtXydsmk68GDUj7gz4xXoucaTbor8zDS3hIUfs6XRdl+KPN+Tfg==";
};
};
- "coffee-script-1.12.7" = {
- name = "coffee-script";
- packageName = "coffee-script";
- version = "1.12.7";
+ "@webassemblyjs/ast-1.5.13" = {
+ name = "_at_webassemblyjs_slash_ast";
+ packageName = "@webassemblyjs/ast";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
- sha512 = "fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==";
+ url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.5.13.tgz";
+ sha512 = "49nwvW/Hx9i+OYHg+mRhKZfAlqThr11Dqz8TsrvqGKMhdI2ijy3KBJOun2Z4770TPjrIJhR6KxChQIDaz8clDA==";
};
};
- "collection-visit-1.0.0" = {
- name = "collection-visit";
- packageName = "collection-visit";
- version = "1.0.0";
+ "@webassemblyjs/floating-point-hex-parser-1.5.13" = {
+ name = "_at_webassemblyjs_slash_floating-point-hex-parser";
+ packageName = "@webassemblyjs/floating-point-hex-parser";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
- sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
+ url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.5.13.tgz";
+ sha512 = "vrvvB18Kh4uyghSKb0NTv+2WZx871WL2NzwMj61jcq2bXkyhRC+8Q0oD7JGVf0+5i/fKQYQSBCNMMsDMRVAMqA==";
};
};
- "color-convert-1.9.2" = {
- name = "color-convert";
- packageName = "color-convert";
- version = "1.9.2";
+ "@webassemblyjs/helper-api-error-1.5.13" = {
+ name = "_at_webassemblyjs_slash_helper-api-error";
+ packageName = "@webassemblyjs/helper-api-error";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz";
- sha512 = "3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.5.13.tgz";
+ sha512 = "dBh2CWYqjaDlvMmRP/kudxpdh30uXjIbpkLj9HQe+qtYlwvYjPRjdQXrq1cTAAOUSMTtzqbXIxEdEZmyKfcwsg==";
};
};
- "color-name-1.1.1" = {
- name = "color-name";
- packageName = "color-name";
- version = "1.1.1";
+ "@webassemblyjs/helper-buffer-1.5.13" = {
+ name = "_at_webassemblyjs_slash_helper-buffer";
+ packageName = "@webassemblyjs/helper-buffer";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz";
- sha1 = "4b1415304cf50028ea81643643bd82ea05803689";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.5.13.tgz";
+ sha512 = "v7igWf1mHcpJNbn4m7e77XOAWXCDT76Xe7Is1VQFXc4K5jRcFrl9D0NrqM4XifQ0bXiuTSkTKMYqDxu5MhNljA==";
};
};
- "colors-1.0.3" = {
- name = "colors";
- packageName = "colors";
- version = "1.0.3";
+ "@webassemblyjs/helper-code-frame-1.5.13" = {
+ name = "_at_webassemblyjs_slash_helper-code-frame";
+ packageName = "@webassemblyjs/helper-code-frame";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz";
- sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.5.13.tgz";
+ sha512 = "yN6ScQQDFCiAXnVctdVO/J5NQRbwyTbQzsGzEgXsAnrxhjp0xihh+nNHQTMrq5UhOqTb5LykpJAvEv9AT0jnAQ==";
};
};
- "colors-1.3.1" = {
- name = "colors";
- packageName = "colors";
- version = "1.3.1";
+ "@webassemblyjs/helper-fsm-1.5.13" = {
+ name = "_at_webassemblyjs_slash_helper-fsm";
+ packageName = "@webassemblyjs/helper-fsm";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.3.1.tgz";
- sha512 = "jg/vxRmv430jixZrC+La5kMbUWqIg32/JsYNZb94+JEmzceYbWKTsv1OuTp+7EaqiaWRR2tPcykibwCRgclIsw==";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.5.13.tgz";
+ sha512 = "hSIKzbXjVMRvy3Jzhgu+vDd/aswJ+UMEnLRCkZDdknZO3Z9e6rp1DAs0tdLItjCFqkz9+0BeOPK/mk3eYvVzZg==";
};
};
- "combine-errors-3.0.3" = {
- name = "combine-errors";
- packageName = "combine-errors";
- version = "3.0.3";
+ "@webassemblyjs/helper-module-context-1.5.13" = {
+ name = "_at_webassemblyjs_slash_helper-module-context";
+ packageName = "@webassemblyjs/helper-module-context";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/combine-errors/-/combine-errors-3.0.3.tgz";
- sha1 = "f4df6740083e5703a3181110c2b10551f003da86";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.5.13.tgz";
+ sha512 = "zxJXULGPLB7r+k+wIlvGlXpT4CYppRz8fLUM/xobGHc9Z3T6qlmJD9ySJ2jknuktuuiR9AjnNpKYDECyaiX+QQ==";
};
};
- "combined-stream-1.0.6" = {
- name = "combined-stream";
- packageName = "combined-stream";
- version = "1.0.6";
+ "@webassemblyjs/helper-wasm-bytecode-1.5.13" = {
+ name = "_at_webassemblyjs_slash_helper-wasm-bytecode";
+ packageName = "@webassemblyjs/helper-wasm-bytecode";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz";
- sha1 = "723e7df6e801ac5613113a7e445a9b69cb632818";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.5.13.tgz";
+ sha512 = "0n3SoNGLvbJIZPhtMFq0XmmnA/YmQBXaZKQZcW8maGKwLpVcgjNrxpFZHEOLKjXJYVN5Il8vSfG7nRX50Zn+aw==";
};
};
- "commander-0.6.1" = {
- name = "commander";
- packageName = "commander";
- version = "0.6.1";
+ "@webassemblyjs/helper-wasm-section-1.5.13" = {
+ name = "_at_webassemblyjs_slash_helper-wasm-section";
+ packageName = "@webassemblyjs/helper-wasm-section";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz";
- sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.5.13.tgz";
+ sha512 = "IJ/goicOZ5TT1axZFSnlAtz4m8KEjYr12BNOANAwGFPKXM4byEDaMNXYowHMG0yKV9a397eU/NlibFaLwr1fbw==";
};
};
- "commander-2.15.1" = {
- name = "commander";
- packageName = "commander";
- version = "2.15.1";
+ "@webassemblyjs/ieee754-1.5.13" = {
+ name = "_at_webassemblyjs_slash_ieee754";
+ packageName = "@webassemblyjs/ieee754";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz";
- sha512 = "VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==";
+ url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.5.13.tgz";
+ sha512 = "TseswvXEPpG5TCBKoLx9tT7+/GMACjC1ruo09j46ULRZWYm8XHpDWaosOjTnI7kr4SRJFzA6MWoUkAB+YCGKKg==";
};
};
- "commander-2.17.1" = {
- name = "commander";
- packageName = "commander";
- version = "2.17.1";
+ "@webassemblyjs/leb128-1.5.13" = {
+ name = "_at_webassemblyjs_slash_leb128";
+ packageName = "@webassemblyjs/leb128";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz";
- sha512 = "wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==";
+ url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.5.13.tgz";
+ sha512 = "0NRMxrL+GG3eISGZBmLBLAVjphbN8Si15s7jzThaw1UE9e5BY1oH49/+MA1xBzxpf1OW5sf9OrPDOclk9wj2yg==";
};
};
- "commander-2.3.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.3.0";
+ "@webassemblyjs/utf8-1.5.13" = {
+ name = "_at_webassemblyjs_slash_utf8";
+ packageName = "@webassemblyjs/utf8";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz";
- sha1 = "fd430e889832ec353b9acd1de217c11cb3eef873";
+ url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.5.13.tgz";
+ sha512 = "Ve1ilU2N48Ew0lVGB8FqY7V7hXjaC4+PeZM+vDYxEd+R2iQ0q+Wb3Rw8v0Ri0+rxhoz6gVGsnQNb4FjRiEH/Ng==";
};
};
- "commander-2.8.1" = {
- name = "commander";
- packageName = "commander";
- version = "2.8.1";
+ "@webassemblyjs/wasm-edit-1.5.13" = {
+ name = "_at_webassemblyjs_slash_wasm-edit";
+ packageName = "@webassemblyjs/wasm-edit";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz";
- sha1 = "06be367febfda0c330aa1e2a072d3dc9762425d4";
+ url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.5.13.tgz";
+ sha512 = "X7ZNW4+Hga4f2NmqENnHke2V/mGYK/xnybJSIXImt1ulxbCOEs/A+ZK/Km2jgihjyVxp/0z0hwIcxC6PrkWtgw==";
};
};
- "commander-2.9.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.9.0";
+ "@webassemblyjs/wasm-gen-1.5.13" = {
+ name = "_at_webassemblyjs_slash_wasm-gen";
+ packageName = "@webassemblyjs/wasm-gen";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz";
- sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
+ url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.5.13.tgz";
+ sha512 = "yfv94Se8R73zmr8GAYzezFHc3lDwE/lBXQddSiIZEKZFuqy7yWtm3KMwA1uGbv5G1WphimJxboXHR80IgX1hQA==";
};
};
- "component-emitter-1.2.1" = {
- name = "component-emitter";
- packageName = "component-emitter";
- version = "1.2.1";
+ "@webassemblyjs/wasm-opt-1.5.13" = {
+ name = "_at_webassemblyjs_slash_wasm-opt";
+ packageName = "@webassemblyjs/wasm-opt";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
- sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
+ url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.5.13.tgz";
+ sha512 = "IkXSkgzVhQ0QYAdIayuCWMmXSYx0dHGU8Ah/AxJf1gBvstMWVnzJnBwLsXLyD87VSBIcsqkmZ28dVb0mOC3oBg==";
};
};
- "concat-map-0.0.1" = {
- name = "concat-map";
- packageName = "concat-map";
- version = "0.0.1";
+ "@webassemblyjs/wasm-parser-1.5.13" = {
+ name = "_at_webassemblyjs_slash_wasm-parser";
+ packageName = "@webassemblyjs/wasm-parser";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
+ url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.5.13.tgz";
+ sha512 = "XnYoIcu2iqq8/LrtmdnN3T+bRjqYFjRHqWbqK3osD/0r/Fcv4d9ecRzjVtC29ENEuNTK4mQ9yyxCBCbK8S/cpg==";
};
};
- "concat-stream-1.6.2" = {
- name = "concat-stream";
- packageName = "concat-stream";
- version = "1.6.2";
+ "@webassemblyjs/wast-parser-1.5.13" = {
+ name = "_at_webassemblyjs_slash_wast-parser";
+ packageName = "@webassemblyjs/wast-parser";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
- sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==";
+ url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.5.13.tgz";
+ sha512 = "Lbz65T0LQ1LgzKiUytl34CwuhMNhaCLgrh0JW4rJBN6INnBB8NMwUfQM+FxTnLY9qJ+lHJL/gCM5xYhB9oWi4A==";
};
};
- "config-chain-1.1.11" = {
- name = "config-chain";
- packageName = "config-chain";
- version = "1.1.11";
+ "@webassemblyjs/wast-printer-1.5.13" = {
+ name = "_at_webassemblyjs_slash_wast-printer";
+ packageName = "@webassemblyjs/wast-printer";
+ version = "1.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz";
- sha1 = "aba09747dfbe4c3e70e766a6e41586e1859fc6f2";
+ url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.5.13.tgz";
+ sha512 = "QcwogrdqcBh8Z+eUF8SG+ag5iwQSXxQJELBEHmLkk790wgQgnIMmntT2sMAMw53GiFNckArf5X0bsCA44j3lWQ==";
};
};
- "configstore-3.1.2" = {
- name = "configstore";
- packageName = "configstore";
- version = "3.1.2";
+ "@zeit/schemas-2.1.1" = {
+ name = "_at_zeit_slash_schemas";
+ packageName = "@zeit/schemas";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz";
- sha512 = "vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==";
+ url = "https://registry.npmjs.org/@zeit/schemas/-/schemas-2.1.1.tgz";
+ sha512 = "7uBms9Uwzq1GnLK7ar4FvhUONW5PuuASBomeMJ5rREMYxWdm2R0/5iXH2gUm8uqVT1x8U51CGuoaF40Tc0xoJA==";
};
};
- "connect-3.6.6" = {
- name = "connect";
- packageName = "connect";
- version = "3.6.6";
+ "CSSselect-0.4.1" = {
+ name = "CSSselect";
+ packageName = "CSSselect";
+ version = "0.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz";
- sha1 = "09eff6c55af7236e137135a72574858b6786f524";
+ url = "https://registry.npmjs.org/CSSselect/-/CSSselect-0.4.1.tgz";
+ sha1 = "f8ab7e1f8418ce63cda6eb7bd778a85d7ec492b2";
};
};
- "connections-1.4.2" = {
- name = "connections";
- packageName = "connections";
- version = "1.4.2";
+ "CSSwhat-0.4.7" = {
+ name = "CSSwhat";
+ packageName = "CSSwhat";
+ version = "0.4.7";
src = fetchurl {
- url = "https://registry.npmjs.org/connections/-/connections-1.4.2.tgz";
- sha1 = "7890482bf5c71af6c5ca192be3136aed74428aad";
+ url = "https://registry.npmjs.org/CSSwhat/-/CSSwhat-0.4.7.tgz";
+ sha1 = "867da0ff39f778613242c44cfea83f0aa4ebdf9b";
};
};
- "console-control-strings-1.1.0" = {
- name = "console-control-strings";
- packageName = "console-control-strings";
- version = "1.1.0";
+ "JSONSelect-0.2.1" = {
+ name = "JSONSelect";
+ packageName = "JSONSelect";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
- sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
+ url = "https://registry.npmjs.org/JSONSelect/-/JSONSelect-0.2.1.tgz";
+ sha1 = "415418a526d33fe31d74b4defa3c836d485ec203";
};
};
- "consolidate-0.14.5" = {
- name = "consolidate";
- packageName = "consolidate";
- version = "0.14.5";
+ "JSONStream-0.10.0" = {
+ name = "JSONStream";
+ packageName = "JSONStream";
+ version = "0.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/consolidate/-/consolidate-0.14.5.tgz";
- sha1 = "5a25047bc76f73072667c8cb52c989888f494c63";
+ url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.10.0.tgz";
+ sha1 = "74349d0d89522b71f30f0a03ff9bd20ca6f12ac0";
};
};
- "content-type-1.0.4" = {
- name = "content-type";
- packageName = "content-type";
- version = "1.0.4";
+ "JSONStream-0.8.4" = {
+ name = "JSONStream";
+ packageName = "JSONStream";
+ version = "0.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz";
- sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==";
+ url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz";
+ sha1 = "91657dfe6ff857483066132b4618b62e8f4887bd";
};
};
- "content-types-0.1.0" = {
- name = "content-types";
- packageName = "content-types";
- version = "0.1.0";
+ "JSONStream-1.3.4" = {
+ name = "JSONStream";
+ packageName = "JSONStream";
+ version = "1.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/content-types/-/content-types-0.1.0.tgz";
- sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
+ url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.4.tgz";
+ sha512 = "Y7vfi3I5oMOYIr+WxV8NZxDSwcbNgzdKYsTNInmycOq9bUYwGg9ryu57Wg5NLmCjqdFPNUmpMBo3kSJN9tCbXg==";
};
};
- "cookiejar-2.0.6" = {
- name = "cookiejar";
- packageName = "cookiejar";
- version = "2.0.6";
+ "JSV-4.0.2" = {
+ name = "JSV";
+ packageName = "JSV";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.0.6.tgz";
- sha1 = "0abf356ad00d1c5a219d88d44518046dd026acfe";
+ url = "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz";
+ sha1 = "d077f6825571f82132f9dffaed587b4029feff57";
};
};
- "cookiejar-2.1.2" = {
- name = "cookiejar";
- packageName = "cookiejar";
- version = "2.1.2";
+ "URIjs-1.16.1" = {
+ name = "URIjs";
+ packageName = "URIjs";
+ version = "1.16.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz";
- sha512 = "Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==";
+ url = "https://registry.npmjs.org/URIjs/-/URIjs-1.16.1.tgz";
+ sha1 = "edebc678b8b74b26b05d2b481e12383f5ae04b8b";
};
};
- "copy-descriptor-0.1.1" = {
- name = "copy-descriptor";
- packageName = "copy-descriptor";
- version = "0.1.1";
+ "abab-1.0.4" = {
+ name = "abab";
+ packageName = "abab";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
- sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
+ url = "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz";
+ sha1 = "5faad9c2c07f60dd76770f71cf025b62a63cfd4e";
};
};
- "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";
+ "abbrev-1.0.9" = {
+ name = "abbrev";
+ packageName = "abbrev";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/corsify/-/corsify-2.1.0.tgz";
- sha1 = "11a45bc47ab30c54d00bb869ea1802fbcd9a09d0";
+ url = "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz";
+ sha1 = "91b4792588a7738c25f35dd6f63752a2f8776135";
};
};
- "create-error-class-3.0.2" = {
- name = "create-error-class";
- packageName = "create-error-class";
- version = "3.0.2";
+ "abbrev-1.1.1" = {
+ name = "abbrev";
+ packageName = "abbrev";
+ 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/abbrev/-/abbrev-1.1.1.tgz";
+ sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
};
};
- "cross-spawn-5.1.0" = {
- name = "cross-spawn";
- packageName = "cross-spawn";
- version = "5.1.0";
+ "absolute-0.0.1" = {
+ name = "absolute";
+ packageName = "absolute";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz";
- sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449";
+ url = "https://registry.npmjs.org/absolute/-/absolute-0.0.1.tgz";
+ sha1 = "c22822f87e1c939f579887504d9c109c4173829d";
};
};
- "crypt-0.0.2" = {
- name = "crypt";
- packageName = "crypt";
- version = "0.0.2";
+ "abstract-leveldown-0.12.4" = {
+ name = "abstract-leveldown";
+ packageName = "abstract-leveldown";
+ version = "0.12.4";
src = fetchurl {
- url = "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz";
- sha1 = "88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b";
+ url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz";
+ sha1 = "29e18e632e60e4e221d5810247852a63d7b2e410";
};
};
- "crypto-random-string-1.0.0" = {
- name = "crypto-random-string";
- packageName = "crypto-random-string";
- version = "1.0.0";
+ "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/crypto-random-string/-/crypto-random-string-1.0.0.tgz";
- sha1 = "a230f64f568310e1498009940790ec99545bca7e";
+ url = "https://registry.npmjs.org/abstract-random-access/-/abstract-random-access-1.1.2.tgz";
+ sha1 = "9a8eac8ff79866f3f9b4bb1443ca778f1598aeda";
};
};
- "cssauron-1.4.0" = {
- name = "cssauron";
- packageName = "cssauron";
- version = "1.4.0";
+ "accepts-1.2.13" = {
+ name = "accepts";
+ packageName = "accepts";
+ version = "1.2.13";
src = fetchurl {
- url = "https://registry.npmjs.org/cssauron/-/cssauron-1.4.0.tgz";
- sha1 = "a6602dff7e04a8306dc0db9a551e92e8b5662ad8";
+ url = "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz";
+ sha1 = "e5f1f3928c6d95fd96558c36ec3d9d0de4a6ecea";
};
};
- "custom-error-instance-2.1.1" = {
- name = "custom-error-instance";
- packageName = "custom-error-instance";
- version = "2.1.1";
+ "accepts-1.3.3" = {
+ name = "accepts";
+ packageName = "accepts";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/custom-error-instance/-/custom-error-instance-2.1.1.tgz";
- sha1 = "3cf6391487a6629a6247eb0ca0ce00081b7e361a";
+ url = "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz";
+ sha1 = "c3ca7434938648c3e0d9c1e328dd68b622c284ca";
};
};
- "cycle-1.0.3" = {
- name = "cycle";
- packageName = "cycle";
- version = "1.0.3";
+ "accepts-1.3.5" = {
+ name = "accepts";
+ packageName = "accepts";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz";
- sha1 = "21e80b2be8580f98b468f379430662b046c34ad2";
+ url = "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz";
+ sha1 = "eb777df6011723a3b14e8a72c0805c8e86746bd2";
};
};
- "cycle-onionify-4.0.0" = {
- name = "cycle-onionify";
- packageName = "cycle-onionify";
- version = "4.0.0";
+ "accord-0.28.0" = {
+ name = "accord";
+ packageName = "accord";
+ version = "0.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cycle-onionify/-/cycle-onionify-4.0.0.tgz";
- sha1 = "9aeddd88dedf6fda9fbb98b1e79ab38810b7ddda";
+ url = "https://registry.npmjs.org/accord/-/accord-0.28.0.tgz";
+ sha512 = "sPF34gqHegaCSryKf5wHJ8wREK1dTZnHmC9hsB7D8xjntRdd30DXDPKf0YVIcSvnXJmcYu5SCvZRz28H++kFhQ==";
};
};
- "d-1.0.0" = {
- name = "d";
- packageName = "d";
- version = "1.0.0";
+ "acorn-1.2.2" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/d/-/d-1.0.0.tgz";
- sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f";
+ url = "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz";
+ sha1 = "c8ce27de0acc76d896d2b1fad3df588d9e82f014";
};
};
- "dag-map-1.0.2" = {
- name = "dag-map";
- packageName = "dag-map";
- version = "1.0.2";
+ "acorn-2.7.0" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "2.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dag-map/-/dag-map-1.0.2.tgz";
- sha1 = "e8379f041000ed561fc515475c1ed2c85eece8d7";
+ url = "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz";
+ sha1 = "ab6e7d9d886aaca8b085bc3312b79a198433f0e7";
};
};
- "dashdash-1.14.1" = {
- name = "dashdash";
- packageName = "dashdash";
- version = "1.14.1";
+ "acorn-3.3.0" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
- sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
+ url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
+ sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
};
};
- "dat-dns-3.0.2" = {
- name = "dat-dns";
- packageName = "dat-dns";
- version = "3.0.2";
+ "acorn-4.0.13" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "4.0.13";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-dns/-/dat-dns-3.0.2.tgz";
- sha512 = "TqkWQ03NvdLK9Rm9n11UCy59KnIsu82A0lPQYcMG02pYTU4xTxShzDryGO2orvmcT5063olmI1R9vKil0jw0Lw==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz";
+ sha1 = "105495ae5361d697bd195c825192e1ad7f253787";
};
};
- "dat-doctor-2.0.0" = {
- name = "dat-doctor";
- packageName = "dat-doctor";
- version = "2.0.0";
+ "acorn-5.7.2" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "5.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-doctor/-/dat-doctor-2.0.0.tgz";
- sha512 = "plNNUnBklePVTE5xsQA8gdYZKveT+2VnZ7Us/zY2kw+JF0mLAK+zVl0jEtl7px3jvEEQD+seVMs42uOg59dmAg==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-5.7.2.tgz";
+ sha512 = "cJrKCNcr2kv8dlDnbw+JPUGjHZzo4myaxOLmpOX8a+rgX94YeTcTMv/LFJUSByRpc+i4GgVnnhLxvMu/2Y+rqw==";
};
};
- "dat-encoding-4.0.2" = {
- name = "dat-encoding";
- packageName = "dat-encoding";
- version = "4.0.2";
+ "acorn-dynamic-import-3.0.0" = {
+ name = "acorn-dynamic-import";
+ packageName = "acorn-dynamic-import";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-encoding/-/dat-encoding-4.0.2.tgz";
- sha1 = "b01068fe0d080f3d3e4985a0c4ad21b7c14675f6";
+ url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz";
+ sha512 = "zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==";
};
};
- "dat-encoding-5.0.1" = {
- name = "dat-encoding";
- packageName = "dat-encoding";
- version = "5.0.1";
+ "acorn-globals-1.0.9" = {
+ name = "acorn-globals";
+ packageName = "acorn-globals";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-encoding/-/dat-encoding-5.0.1.tgz";
- sha512 = "PET9PlGt6ejgqU07hbPLx3tP2siDMMFumUe+xwmm4+5W+0cOlpzreCPoMVUBzxWeR4sPdxL+AS53odQTBtzEqA==";
+ url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz";
+ sha1 = "55bb5e98691507b74579d0513413217c380c54cf";
};
};
- "dat-ignore-2.1.1" = {
- name = "dat-ignore";
- packageName = "dat-ignore";
- version = "2.1.1";
+ "acorn-globals-3.1.0" = {
+ name = "acorn-globals";
+ packageName = "acorn-globals";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.1.1.tgz";
- sha512 = "jRCfWtLh+wtbqJMuge+wZV/2kSL1TKMRWXFgUaT7r0O1OnChKUDG4wqLJo4SjzJjXo7f3V8CVN/u5wYltgSd1Q==";
+ url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz";
+ sha1 = "fd8270f71fbb4996b004fa880ee5d46573a731bf";
};
};
- "dat-json-1.0.2" = {
- name = "dat-json";
- packageName = "dat-json";
- version = "1.0.2";
+ "acorn-jsx-3.0.1" = {
+ name = "acorn-jsx";
+ packageName = "acorn-jsx";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-json/-/dat-json-1.0.2.tgz";
- sha512 = "EZq+VeE/tM7FGygMVZx3hsMVm7zW3qxhuUYCNtLONaZptqXz4laB5cIWHydmeEn6sl3RZatZqpIuWRu4xDYxIg==";
+ url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
+ sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
};
};
- "dat-link-resolve-2.2.0" = {
- name = "dat-link-resolve";
- packageName = "dat-link-resolve";
- version = "2.2.0";
+ "acorn-jsx-4.1.1" = {
+ name = "acorn-jsx";
+ packageName = "acorn-jsx";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-2.2.0.tgz";
- sha512 = "cu6Fwapm34myc5um6jdQBrtDkjx28oVkOVHbaV4YNLdxrRqUm+FlWuIqFk7zaCZDoZg5TMlCG1SF0j3AFbiOYA==";
+ url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz";
+ sha512 = "JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw==";
};
};
- "dat-log-1.2.0" = {
- name = "dat-log";
- packageName = "dat-log";
- version = "1.2.0";
+ "acorn-node-1.5.2" = {
+ name = "acorn-node";
+ packageName = "acorn-node";
+ version = "1.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-log/-/dat-log-1.2.0.tgz";
- sha512 = "oK6R74WV8TdhGR9VCLym7D/vlN8lXND5AyhJhrjtm1WNDrg/6Clx1Tk7k3Dt8quy2AmmGO7vbIk7iwFtzTAJfA==";
+ url = "https://registry.npmjs.org/acorn-node/-/acorn-node-1.5.2.tgz";
+ sha512 = "krFKvw/d1F17AN3XZbybIUzEY4YEPNiGo05AfP3dBlfVKrMHETKpgjpuZkSF8qDNt9UkQcqj7am8yJLseklCMg==";
};
};
- "dat-node-3.5.12" = {
- name = "dat-node";
- packageName = "dat-node";
- version = "3.5.12";
+ "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/dat-node/-/dat-node-3.5.12.tgz";
- sha512 = "XYxdkeNYk8gM6nb125XrOQKAXLZlICLYZUk7bZAktpQUrSjAQnc9qPY2a/KCvHSbdoJf//PwyB00K0UiBTqawQ==";
+ url = "https://registry.npmjs.org/active-x-obfuscator/-/active-x-obfuscator-0.0.1.tgz";
+ sha1 = "089b89b37145ff1d9ec74af6530be5526cae1f1a";
};
};
- "dat-registry-4.0.0" = {
- name = "dat-registry";
- packageName = "dat-registry";
- version = "4.0.0";
+ "adal-node-0.1.28" = {
+ name = "adal-node";
+ packageName = "adal-node";
+ version = "0.1.28";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-registry/-/dat-registry-4.0.0.tgz";
- sha512 = "CKV7j8kwWNBW2Oacdbf5x0ihxMfPNN8wcKHHmx5UjE4iyaOnfnTwCqTGM5rFoMleXKOGWpB7uCKQa0qpvzmCIA==";
+ url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.28.tgz";
+ sha1 = "468c4bb3ebbd96b1270669f4b9cba4e0065ea485";
};
};
- "dat-secret-storage-4.0.1" = {
- name = "dat-secret-storage";
- packageName = "dat-secret-storage";
- version = "4.0.1";
+ "adbkit-2.11.0" = {
+ name = "adbkit";
+ packageName = "adbkit";
+ version = "2.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-secret-storage/-/dat-secret-storage-4.0.1.tgz";
- sha512 = "BUhemnKpXUhKNl/1DuUwfFUyjzomlNF940uHPsOa3okmYu9z6mrp/EGQsLO3lO0YQomDUqS0G0DmHTse9vTU1A==";
+ url = "https://registry.npmjs.org/adbkit/-/adbkit-2.11.0.tgz";
+ sha512 = "j2vUhEeZmCiqBP+p77CpPWQTcT20rOmSmRHFUTZUwUpxzeCd3fXop4NAGYztSY9/FNU4bT/qqvYQ4EZKuCXhfA==";
};
};
- "dat-storage-1.0.4" = {
- name = "dat-storage";
- packageName = "dat-storage";
- version = "1.0.4";
+ "adbkit-logcat-1.1.0" = {
+ name = "adbkit-logcat";
+ packageName = "adbkit-logcat";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-storage/-/dat-storage-1.0.4.tgz";
- sha512 = "THxtCBzrt+AJzhGxXedlxLYeW+AVi5eFLi9Ke9JQ7fTA/j84m1Ci7KPuZ1q44Um/BeIYZ3LO01FWS2MlAOTFRg==";
+ url = "https://registry.npmjs.org/adbkit-logcat/-/adbkit-logcat-1.1.0.tgz";
+ sha1 = "01d7f9b0cef9093a30bcb3b007efff301508962f";
};
};
- "dat-swarm-defaults-1.0.1" = {
- name = "dat-swarm-defaults";
- packageName = "dat-swarm-defaults";
+ "adbkit-monkey-1.0.1" = {
+ name = "adbkit-monkey";
+ packageName = "adbkit-monkey";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-swarm-defaults/-/dat-swarm-defaults-1.0.1.tgz";
- sha512 = "T2WlO7BVmN9USchefsP8entQiByIlJLGuzHLL9qEqOBkyKB8p0Y7XPWxP8dcL43+SkeoxU5NVe7O0bsi3xL8Jg==";
+ url = "https://registry.npmjs.org/adbkit-monkey/-/adbkit-monkey-1.0.1.tgz";
+ sha1 = "f291be701a2efc567a63fc7aa6afcded31430be1";
};
};
- "debug-2.2.0" = {
- name = "debug";
- packageName = "debug";
- version = "2.2.0";
+ "addons-linter-1.2.6" = {
+ name = "addons-linter";
+ packageName = "addons-linter";
+ version = "1.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz";
- sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da";
+ url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.2.6.tgz";
+ sha512 = "8WjSUoleic9x3gS8SZF0kIvffrX7WkiRPF8Xs8CZi7Yu/Xq0qX9LOYG2Q66t9ThmTeMItt/24FxirqqdyFLGgw==";
};
};
- "debug-2.6.9" = {
- name = "debug";
- packageName = "debug";
- version = "2.6.9";
+ "addr-to-ip-port-1.5.1" = {
+ name = "addr-to-ip-port";
+ packageName = "addr-to-ip-port";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
- sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
+ url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.5.1.tgz";
+ sha512 = "bA+dyydTNuQtrEDJ0g9eR7XabNhvrM5yZY0hvTbNK3yvoeC73ZqMES6E1cEqH9WPxs4uMtMsOjfwS4FmluhsAA==";
};
};
- "debug-3.1.0" = {
- name = "debug";
- packageName = "debug";
- version = "3.1.0";
+ "addressparser-0.3.2" = {
+ name = "addressparser";
+ packageName = "addressparser";
+ version = "0.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz";
- sha512 = "OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==";
+ url = "https://registry.npmjs.org/addressparser/-/addressparser-0.3.2.tgz";
+ sha1 = "59873f35e8fcf6c7361c10239261d76e15348bb2";
};
};
- "decamelize-1.2.0" = {
- name = "decamelize";
- packageName = "decamelize";
- version = "1.2.0";
+ "addressparser-1.0.1" = {
+ name = "addressparser";
+ packageName = "addressparser";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
- sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
+ url = "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz";
+ sha1 = "47afbe1a2a9262191db6838e4fd1d39b40821746";
};
};
- "decode-uri-component-0.2.0" = {
- name = "decode-uri-component";
- packageName = "decode-uri-component";
- version = "0.2.0";
+ "adm-zip-0.4.11" = {
+ name = "adm-zip";
+ packageName = "adm-zip";
+ version = "0.4.11";
src = fetchurl {
- url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
- sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
+ url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.11.tgz";
+ sha512 = "L8vcjDTCOIJk7wFvmlEUN7AsSb8T+2JrdP7KINBjzr24TJ5Mwj590sLu3BC7zNZowvJWa/JtPmD8eJCzdtDWjA==";
};
};
- "decompress-4.2.0" = {
- name = "decompress";
- packageName = "decompress";
- version = "4.2.0";
+ "adm-zip-0.4.7" = {
+ name = "adm-zip";
+ packageName = "adm-zip";
+ version = "0.4.7";
src = fetchurl {
- url = "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz";
- sha1 = "7aedd85427e5a92dacfe55674a7c505e96d01f9d";
+ url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz";
+ sha1 = "8606c2cbf1c426ce8c8ec00174447fd49b6eafc1";
};
};
- "decompress-tar-4.1.1" = {
- name = "decompress-tar";
- packageName = "decompress-tar";
- version = "4.1.1";
+ "after-0.8.1" = {
+ name = "after";
+ packageName = "after";
+ version = "0.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz";
- sha512 = "JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==";
+ url = "https://registry.npmjs.org/after/-/after-0.8.1.tgz";
+ sha1 = "ab5d4fb883f596816d3515f8f791c0af486dd627";
};
};
- "decompress-tarbz2-4.1.1" = {
- name = "decompress-tarbz2";
- packageName = "decompress-tarbz2";
- version = "4.1.1";
+ "after-0.8.2" = {
+ name = "after";
+ packageName = "after";
+ version = "0.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz";
- sha512 = "s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==";
+ url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz";
+ sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f";
};
};
- "decompress-targz-4.1.1" = {
- name = "decompress-targz";
- packageName = "decompress-targz";
- version = "4.1.1";
+ "agent-base-2.1.1" = {
+ name = "agent-base";
+ packageName = "agent-base";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz";
- sha512 = "4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==";
+ url = "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz";
+ sha1 = "d6de10d5af6132d5bd692427d46fc538539094c7";
};
};
- "decompress-unzip-4.0.1" = {
- name = "decompress-unzip";
- packageName = "decompress-unzip";
- version = "4.0.1";
+ "agent-base-4.2.1" = {
+ name = "agent-base";
+ packageName = "agent-base";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz";
- sha1 = "deaaccdfd14aeaf85578f733ae8210f9b4848f69";
+ url = "https://registry.npmjs.org/agent-base/-/agent-base-4.2.1.tgz";
+ sha512 = "JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==";
};
};
- "deep-equal-0.2.2" = {
- name = "deep-equal";
- packageName = "deep-equal";
- version = "0.2.2";
+ "agentkeepalive-3.5.1" = {
+ name = "agentkeepalive";
+ packageName = "agentkeepalive";
+ version = "3.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-equal/-/deep-equal-0.2.2.tgz";
- sha1 = "84b745896f34c684e98f2ce0e42abaf43bba017d";
+ url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.5.1.tgz";
+ sha512 = "Cte/sTY9/XcygXjJ0q58v//SnEQ7ViWExKyJpLJlLqomDbQyMLh6Is4KuWJ/wmxzhiwkGRple7Gqv1zf6Syz5w==";
};
};
- "deep-extend-0.6.0" = {
- name = "deep-extend";
- packageName = "deep-extend";
- version = "0.6.0";
+ "aggregate-error-1.0.0" = {
+ name = "aggregate-error";
+ packageName = "aggregate-error";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz";
- sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==";
+ url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-1.0.0.tgz";
+ sha1 = "888344dad0220a72e3af50906117f48771925fac";
};
};
- "define-property-0.2.5" = {
- name = "define-property";
- packageName = "define-property";
- version = "0.2.5";
+ "airplay-js-0.2.16" = {
+ name = "airplay-js";
+ packageName = "airplay-js";
+ version = "0.2.16";
src = fetchurl {
- url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
- sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
+ url = "https://registry.npmjs.org/airplay-js/-/airplay-js-0.2.16.tgz";
+ sha1 = "48566d5fa55a921d80187ad946f7e8f7555902a1";
};
};
- "define-property-1.0.0" = {
- name = "define-property";
- packageName = "define-property";
- version = "1.0.0";
+ "airplay-js-0.3.0" = {
+ name = "airplay-js";
+ packageName = "airplay-js";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
- sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
+ url = "https://registry.npmjs.org/airplay-js/-/airplay-js-0.3.0.tgz";
+ sha1 = "16bac2ef91b31249382924bfdeeabaddc9db7398";
};
};
- "define-property-2.0.2" = {
- name = "define-property";
- packageName = "define-property";
+ "airplay-protocol-2.0.2" = {
+ name = "airplay-protocol";
+ packageName = "airplay-protocol";
version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz";
- sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==";
+ url = "https://registry.npmjs.org/airplay-protocol/-/airplay-protocol-2.0.2.tgz";
+ sha1 = "b5b2a7137331f5545acbe196ba5693c13238fc5e";
};
};
- "delayed-stream-1.0.0" = {
- name = "delayed-stream";
- packageName = "delayed-stream";
- version = "1.0.0";
+ "airplayer-2.0.0" = {
+ name = "airplayer";
+ packageName = "airplayer";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
+ url = "https://registry.npmjs.org/airplayer/-/airplayer-2.0.0.tgz";
+ sha1 = "7ab62d23b96d44234138aec1281d2e67ef190259";
};
};
- "delegates-1.0.0" = {
- name = "delegates";
- packageName = "delegates";
- version = "1.0.0";
+ "ajv-4.11.8" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "4.11.8";
src = fetchurl {
- url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
- sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
+ url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
+ sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
};
};
- "depd-1.0.1" = {
- name = "depd";
- packageName = "depd";
- version = "1.0.1";
+ "ajv-5.5.2" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "5.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/depd/-/depd-1.0.1.tgz";
- sha1 = "80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa";
+ url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
+ sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
};
};
- "depd-1.1.2" = {
- name = "depd";
- packageName = "depd";
- version = "1.1.2";
+ "ajv-6.5.2" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "6.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz";
- sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9";
+ url = "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz";
+ sha512 = "hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==";
};
};
- "destroy-1.0.4" = {
- name = "destroy";
- packageName = "destroy";
- version = "1.0.4";
+ "ajv-6.5.3" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "6.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz";
- sha1 = "978857442c44749e4206613e37946205826abd80";
+ url = "https://registry.npmjs.org/ajv/-/ajv-6.5.3.tgz";
+ sha512 = "LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==";
};
};
- "detect-libc-1.0.3" = {
- name = "detect-libc";
- packageName = "detect-libc";
- version = "1.0.3";
+ "ajv-keywords-1.5.1" = {
+ name = "ajv-keywords";
+ packageName = "ajv-keywords";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz";
- sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
+ url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz";
+ sha1 = "314dd0a4b3368fad3dfcdc54ede6171b886daf3c";
};
};
- "dicer-0.2.5" = {
- name = "dicer";
- packageName = "dicer";
- version = "0.2.5";
+ "ajv-keywords-3.2.0" = {
+ name = "ajv-keywords";
+ packageName = "ajv-keywords";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz";
- sha1 = "5996c086bb33218c812c090bddc09cd12facb70f";
+ url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz";
+ sha1 = "e86b819c602cf8821ad637413698f1dec021847a";
};
};
- "diff-1.4.0" = {
- name = "diff";
- packageName = "diff";
- version = "1.4.0";
+ "ajv-merge-patch-4.1.0" = {
+ name = "ajv-merge-patch";
+ packageName = "ajv-merge-patch";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-1.4.0.tgz";
- sha1 = "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf";
+ url = "https://registry.npmjs.org/ajv-merge-patch/-/ajv-merge-patch-4.1.0.tgz";
+ sha512 = "0mAYXMSauA8RZ7r+B4+EAOYcZEcO9OK5EiQCR7W7Cv4E44pJj56ZnkKLJ9/PAcOc0dT+LlV9fdDcq2TxVJfOYw==";
};
};
- "diff-3.5.0" = {
- name = "diff";
- packageName = "diff";
- version = "3.5.0";
+ "aliasify-2.1.0" = {
+ name = "aliasify";
+ packageName = "aliasify";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz";
- sha512 = "A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==";
+ url = "https://registry.npmjs.org/aliasify/-/aliasify-2.1.0.tgz";
+ sha1 = "7c30825b9450b9e6185ba27533eaf6e2067d4b42";
};
};
- "diffy-2.0.0" = {
- name = "diffy";
- packageName = "diffy";
- version = "2.0.0";
+ "align-text-0.1.4" = {
+ name = "align-text";
+ packageName = "align-text";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/diffy/-/diffy-2.0.0.tgz";
- sha512 = "T1+MF7chaOtNaBeV59td6lYlci6dCTUraySH8LDltafhd+FLTsYpJJbLVpl6S4ih6kPFMaHSIqQ92bRVvoE+3Q==";
+ url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
+ sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
};
};
- "directory-index-html-2.1.0" = {
- name = "directory-index-html";
- packageName = "directory-index-html";
- version = "2.1.0";
+ "almond-0.3.3" = {
+ name = "almond";
+ packageName = "almond";
+ version = "0.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/directory-index-html/-/directory-index-html-2.1.0.tgz";
- sha1 = "4d5afc5187edba67ec6ab0e55f6422a0e2cb7338";
+ url = "https://registry.npmjs.org/almond/-/almond-0.3.3.tgz";
+ sha1 = "a0e7c95ac7624d6417b4494b1e68bff693168a20";
};
};
- "discovery-channel-5.5.1" = {
- name = "discovery-channel";
- packageName = "discovery-channel";
- version = "5.5.1";
+ "amdefine-1.0.1" = {
+ name = "amdefine";
+ packageName = "amdefine";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/discovery-channel/-/discovery-channel-5.5.1.tgz";
- sha512 = "EEmZQFE0PiOsJj7G3KVCwFGbYs4QchUvzA91iHtZ6HfkIqfBEDSTGLygJrUlY1Tr77WDV+qZVrZuNghHxSL/vw==";
+ url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
+ sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
};
};
- "discovery-swarm-5.1.2" = {
- name = "discovery-swarm";
- packageName = "discovery-swarm";
- version = "5.1.2";
+ "ansi-0.3.1" = {
+ name = "ansi";
+ packageName = "ansi";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-5.1.2.tgz";
- sha512 = "aqNdl4l76PFb301I1hXkHZSakQTOXR0yRbfDtF7XrZKk+9V5gMQBbQ2xPgnQPfDVG0IeErxkQkoWqp4f9EJe5w==";
+ url = "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz";
+ sha1 = "0c42d4fb17160d5a9af1e484bace1c66922c1b21";
};
};
- "dns-discovery-6.1.0" = {
- name = "dns-discovery";
- packageName = "dns-discovery";
- version = "6.1.0";
+ "ansi-align-2.0.0" = {
+ name = "ansi-align";
+ packageName = "ansi-align";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dns-discovery/-/dns-discovery-6.1.0.tgz";
- sha512 = "Kl2tL2zuNR1w6SnsoRaqrOFm7gGP3/i/HzRXtyVBqaOq/5L1D2TUdViUAZ8e/NDbt+jQCJFWoaKCnmDC343usQ==";
+ url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz";
+ sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f";
};
};
- "dns-packet-4.2.0" = {
- name = "dns-packet";
- packageName = "dns-packet";
- version = "4.2.0";
+ "ansi-color-0.2.1" = {
+ name = "ansi-color";
+ packageName = "ansi-color";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dns-packet/-/dns-packet-4.2.0.tgz";
- sha512 = "bn1AKpfkFbm0MIioOMHZ5qJzl2uypdBwI4nYNsqvhjsegBhcKJUlCrMPWLx6JEezRjxZmxhtIz/FkBEur2l8Cw==";
+ url = "https://registry.npmjs.org/ansi-color/-/ansi-color-0.2.1.tgz";
+ sha1 = "3e75c037475217544ed763a8db5709fa9ae5bf9a";
};
};
- "dns-socket-3.0.0" = {
- name = "dns-socket";
- packageName = "dns-socket";
- version = "3.0.0";
+ "ansi-colors-1.1.0" = {
+ name = "ansi-colors";
+ packageName = "ansi-colors";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dns-socket/-/dns-socket-3.0.0.tgz";
- sha512 = "M0WkByoJ/mTm+HtwBQLsRJPe5uGIC/lYVOp+s6ZzhbZ5iq4GxjFyxYPQhB85dgCLvVb43aJQXHDC9aUgyKGc/Q==";
+ url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz";
+ sha512 = "SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==";
};
};
- "dom-walk-0.1.1" = {
- name = "dom-walk";
- packageName = "dom-walk";
+ "ansi-cyan-0.1.1" = {
+ name = "ansi-cyan";
+ packageName = "ansi-cyan";
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/ansi-cyan/-/ansi-cyan-0.1.1.tgz";
+ sha1 = "538ae528af8982f28ae30d86f2f17456d2609873";
};
};
- "dot-prop-4.2.0" = {
- name = "dot-prop";
- packageName = "dot-prop";
- version = "4.2.0";
+ "ansi-diff-1.1.1" = {
+ name = "ansi-diff";
+ packageName = "ansi-diff";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz";
- sha512 = "tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==";
+ url = "https://registry.npmjs.org/ansi-diff/-/ansi-diff-1.1.1.tgz";
+ sha512 = "XnTdFDQzbEewrDx8epWXdw7oqHMvv315vEtfqDiEhhWghIf4++h26c3/FMz7iTLhNrnj56DNIXpbxHZq+3s6qw==";
};
};
- "download-5.0.3" = {
- name = "download";
- packageName = "download";
- version = "5.0.3";
+ "ansi-escapes-1.4.0" = {
+ name = "ansi-escapes";
+ packageName = "ansi-escapes";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/download/-/download-5.0.3.tgz";
- sha1 = "63537f977f99266a30eb8a2a2fbd1f20b8000f7a";
+ url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz";
+ sha1 = "d3a8a83b319aa67793662b13e761c7911422306e";
};
};
- "download-git-repo-1.0.2" = {
- name = "download-git-repo";
- packageName = "download-git-repo";
- version = "1.0.2";
+ "ansi-escapes-3.1.0" = {
+ name = "ansi-escapes";
+ packageName = "ansi-escapes";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/download-git-repo/-/download-git-repo-1.0.2.tgz";
- sha512 = "PwAUr0/w74AGB7bukOycXyLnDlt9Lfb3JzsliAWyZCHa/TvbuMYQvH1er2DWXHE4EuI/NjAzRXw+89Waynapgw==";
+ url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz";
+ sha512 = "UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==";
};
};
- "duplexer-0.1.1" = {
- name = "duplexer";
- packageName = "duplexer";
+ "ansi-gray-0.1.1" = {
+ name = "ansi-gray";
+ packageName = "ansi-gray";
version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz";
- sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1";
+ url = "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz";
+ sha1 = "2962cf54ec9792c48510a3deb524436861ef7251";
};
};
- "duplexer3-0.1.4" = {
- name = "duplexer3";
- packageName = "duplexer3";
- version = "0.1.4";
+ "ansi-red-0.1.1" = {
+ name = "ansi-red";
+ packageName = "ansi-red";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz";
- sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2";
+ url = "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz";
+ sha1 = "8c638f9d1080800a353c9c28c8a81ca4705d946c";
};
};
- "duplexify-3.6.0" = {
- name = "duplexify";
- packageName = "duplexify";
- version = "3.6.0";
+ "ansi-regex-0.2.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz";
- sha512 = "fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==";
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz";
+ sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9";
};
};
- "ecc-jsbn-0.1.2" = {
- name = "ecc-jsbn";
- packageName = "ecc-jsbn";
- version = "0.1.2";
+ "ansi-regex-1.1.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
- sha1 = "3a83a904e54353287874c564b7549386849a98c9";
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz";
+ sha1 = "41c847194646375e6a1a5d10c3ca054ef9fc980d";
};
};
- "ee-first-1.1.0" = {
- name = "ee-first";
- packageName = "ee-first";
- version = "1.1.0";
+ "ansi-regex-2.1.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.0.tgz";
- sha1 = "6a0d7c6221e490feefd92ec3f441c9ce8cd097f4";
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
+ sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
};
};
- "ee-first-1.1.1" = {
- name = "ee-first";
- packageName = "ee-first";
- version = "1.1.1";
+ "ansi-regex-3.0.0" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz";
- sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
+ sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
};
};
- "enable-1.3.2" = {
- name = "enable";
- packageName = "enable";
- version = "1.3.2";
+ "ansi-split-1.0.1" = {
+ name = "ansi-split";
+ packageName = "ansi-split";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/enable/-/enable-1.3.2.tgz";
- sha1 = "9eba6837d16d0982b59f87d889bf754443d52931";
+ url = "https://registry.npmjs.org/ansi-split/-/ansi-split-1.0.1.tgz";
+ sha512 = "RRxQym4DFtDNmHIkW6aeFVvrXURb11lGAEPXNiryjCe8bK8RsANjzJ0M2aGOkvBYwP4Bl/xZ8ijtr6D3j1x/eg==";
};
};
- "encodeurl-1.0.2" = {
- name = "encodeurl";
- packageName = "encodeurl";
- version = "1.0.2";
+ "ansi-styles-1.0.0" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz";
- sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59";
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz";
+ sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178";
};
};
- "end-of-stream-1.4.1" = {
- name = "end-of-stream";
- packageName = "end-of-stream";
- version = "1.4.1";
+ "ansi-styles-1.1.0" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz";
- sha512 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==";
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz";
+ sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de";
};
};
- "es5-ext-0.10.45" = {
- name = "es5-ext";
- packageName = "es5-ext";
- version = "0.10.45";
+ "ansi-styles-2.2.1" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.45.tgz";
- sha512 = "FkfM6Vxxfmztilbxxz5UKSD4ICMf5tSpRFtDNtkAhOxZ0EKtX6qwmXNyH/sFyIbX2P/nU5AMiA9jilWsUGJzCQ==";
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
+ sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
};
};
- "es6-iterator-2.0.3" = {
- name = "es6-iterator";
- packageName = "es6-iterator";
- version = "2.0.3";
+ "ansi-styles-3.2.0" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz";
- sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7";
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz";
+ sha512 = "NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==";
};
};
- "es6-map-0.1.5" = {
- name = "es6-map";
- packageName = "es6-map";
- version = "0.1.5";
+ "ansi-styles-3.2.1" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz";
- sha1 = "9136e0503dcc06a301690f0bb14ff4e364e949f0";
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz";
+ sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==";
};
};
- "es6-set-0.1.5" = {
- name = "es6-set";
- packageName = "es6-set";
- version = "0.1.5";
+ "ansi-wrap-0.1.0" = {
+ name = "ansi-wrap";
+ packageName = "ansi-wrap";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz";
- sha1 = "d2b3ec5d4d800ced818db538d28974db0a73ccb1";
+ url = "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz";
+ sha1 = "a82250ddb0015e9a27ca82e82ea603bbfa45efaf";
};
};
- "es6-symbol-3.1.1" = {
- name = "es6-symbol";
- packageName = "es6-symbol";
- version = "3.1.1";
+ "ansicolors-0.3.2" = {
+ name = "ansicolors";
+ packageName = "ansicolors";
+ version = "0.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz";
- sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77";
+ url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz";
+ sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979";
};
};
- "escape-html-1.0.3" = {
- name = "escape-html";
- packageName = "escape-html";
- version = "1.0.3";
+ "any-promise-1.3.0" = {
+ name = "any-promise";
+ packageName = "any-promise";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz";
- sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988";
+ url = "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz";
+ sha1 = "abc6afeedcea52e809cdc0376aed3ce39635d17f";
};
};
- "escape-string-regexp-1.0.2" = {
- name = "escape-string-regexp";
- packageName = "escape-string-regexp";
- version = "1.0.2";
+ "anymatch-1.3.2" = {
+ name = "anymatch";
+ packageName = "anymatch";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz";
- sha1 = "4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1";
+ url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz";
+ sha512 = "0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==";
};
};
- "escape-string-regexp-1.0.5" = {
- name = "escape-string-regexp";
- packageName = "escape-string-regexp";
- version = "1.0.5";
+ "anymatch-2.0.0" = {
+ name = "anymatch";
+ packageName = "anymatch";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
+ url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz";
+ sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
};
};
- "esprima-4.0.1" = {
- name = "esprima";
- packageName = "esprima";
- version = "4.0.1";
+ "ap-0.1.0" = {
+ name = "ap";
+ packageName = "ap";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz";
- sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==";
+ url = "https://registry.npmjs.org/ap/-/ap-0.1.0.tgz";
+ sha1 = "d8a3f26615379398a1b53ca6cc1a666a0fbfe150";
};
};
- "etag-1.8.1" = {
- name = "etag";
- packageName = "etag";
- version = "1.8.1";
+ "apache-crypt-1.2.1" = {
+ name = "apache-crypt";
+ packageName = "apache-crypt";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz";
- sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887";
+ url = "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.1.tgz";
+ sha1 = "d6fc72aa6d27d99c95a94fd188d731eefffa663c";
};
};
- "event-emitter-0.3.5" = {
- name = "event-emitter";
- packageName = "event-emitter";
- version = "0.3.5";
+ "apache-md5-1.1.2" = {
+ name = "apache-md5";
+ packageName = "apache-md5";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz";
- sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39";
+ url = "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.2.tgz";
+ sha1 = "ee49736b639b4f108b6e9e626c6da99306b41692";
};
};
- "event-stream-3.3.4" = {
- name = "event-stream";
- packageName = "event-stream";
- version = "3.3.4";
+ "apollo-cache-1.1.16" = {
+ name = "apollo-cache";
+ packageName = "apollo-cache";
+ version = "1.1.16";
src = fetchurl {
- url = "http://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz";
- sha1 = "4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571";
+ url = "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.1.16.tgz";
+ sha512 = "gVWKYyXF0SlpMyZ/i//AthzyPjjmAVYciEjwepLqMzIf0+7bzIwekpHDuzME8jf4XQepXcNNY571+BRyYHysmg==";
};
};
- "execa-0.7.0" = {
- name = "execa";
- packageName = "execa";
- version = "0.7.0";
+ "apollo-cache-control-0.2.2" = {
+ name = "apollo-cache-control";
+ packageName = "apollo-cache-control";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz";
- sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777";
+ url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.2.2.tgz";
+ sha512 = "N5A1hO6nHZBCR+OCV58IlE7k6hZrFJZTf/Ab2WD8wduLSa0qLLRlCp3rXvD05+jpWa6sdKw03whW2omJ+SyT+w==";
};
};
- "exit-hook-1.1.1" = {
- name = "exit-hook";
- packageName = "exit-hook";
- version = "1.1.1";
+ "apollo-cache-inmemory-1.2.9" = {
+ name = "apollo-cache-inmemory";
+ packageName = "apollo-cache-inmemory";
+ version = "1.2.9";
src = fetchurl {
- url = "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz";
- sha1 = "f05ca233b48c05d54fff07765df8507e95c02ff8";
+ url = "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.2.9.tgz";
+ sha512 = "Z4m4NpT2eboM4qUww/46CsjOyITavxrKPBrsCugDlmwSzonqMLZmAyZEQgnYXCj8L5q5epnOuf0sqyYK/6sGIQ==";
};
};
- "expand-brackets-0.1.5" = {
- name = "expand-brackets";
- packageName = "expand-brackets";
- version = "0.1.5";
+ "apollo-client-2.4.1" = {
+ name = "apollo-client";
+ packageName = "apollo-client";
+ version = "2.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz";
- sha1 = "df07284e342a807cd733ac5af72411e581d1177b";
+ url = "https://registry.npmjs.org/apollo-client/-/apollo-client-2.4.1.tgz";
+ sha512 = "E6pQD+BwI1zboM9oX83yzH9BmBjJWU5pL36CpGC2+XaaBDc6UvrPtacxQsg/h7Fq5T5IKJoIhuBEWtefJIb9xg==";
};
};
- "expand-brackets-2.1.4" = {
- name = "expand-brackets";
- packageName = "expand-brackets";
- version = "2.1.4";
+ "apollo-codegen-0.19.1" = {
+ name = "apollo-codegen";
+ packageName = "apollo-codegen";
+ version = "0.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
- sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
+ url = "https://registry.npmjs.org/apollo-codegen/-/apollo-codegen-0.19.1.tgz";
+ sha512 = "jlxz/b5iinRWfh48hXdmMtrjTPn/rDok0Z3b7icvkiaD6I30w4sq9B+JDkFbLnkldzsFLV2BZtBDa/dkZhx8Ng==";
};
};
- "expand-range-1.8.2" = {
- name = "expand-range";
- packageName = "expand-range";
- version = "1.8.2";
+ "apollo-datasource-0.1.2" = {
+ name = "apollo-datasource";
+ packageName = "apollo-datasource";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz";
- sha1 = "a299effd335fe2721ebae8e257ec79644fc85337";
+ url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.1.2.tgz";
+ sha512 = "AbUxS7Qkz9+T+g19zKRJiA+tBVGVVunzXwd4ftDSYGx1VrF5LJJO7Gc57bk719gWIZneZ02HsVCEZd6NxFF8RQ==";
};
};
- "extend-3.0.0" = {
- name = "extend";
- packageName = "extend";
- version = "3.0.0";
+ "apollo-engine-reporting-0.0.2" = {
+ name = "apollo-engine-reporting";
+ packageName = "apollo-engine-reporting";
+ version = "0.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz";
- sha1 = "5a474353b9f3353ddd8176dfd37b91c83a46f1d4";
+ url = "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-0.0.2.tgz";
+ sha512 = "Fe/1oxC8rUXRrBTMUiqs5PSb6hnMOJHuttJMhs83u5POfplc4QrKJZtEEU4Ui8mxeJGaGNWbWf+D4q645xdQLA==";
};
};
- "extend-3.0.2" = {
- name = "extend";
- packageName = "extend";
- version = "3.0.2";
+ "apollo-engine-reporting-protobuf-0.0.1" = {
+ name = "apollo-engine-reporting-protobuf";
+ packageName = "apollo-engine-reporting-protobuf";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
- sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
+ url = "https://registry.npmjs.org/apollo-engine-reporting-protobuf/-/apollo-engine-reporting-protobuf-0.0.1.tgz";
+ sha512 = "AySoDgog2p1Nph44FyyqaU4AfRZOXx8XZxRsVHvYY4dHlrMmDDhhjfF3Jswa7Wr8X/ivvx3xA0jimRn6rsG8Ew==";
};
};
- "extend-shallow-2.0.1" = {
- name = "extend-shallow";
- packageName = "extend-shallow";
- version = "2.0.1";
+ "apollo-link-1.2.2" = {
+ name = "apollo-link";
+ packageName = "apollo-link";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
- sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
+ url = "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.2.tgz";
+ sha512 = "Uk/BC09dm61DZRDSu52nGq0nFhq7mcBPTjy5EEH1eunJndtCaNXQhQz/BjkI2NdrfGI+B+i5he6YSoRBhYizdw==";
};
};
- "extend-shallow-3.0.2" = {
- name = "extend-shallow";
- packageName = "extend-shallow";
- version = "3.0.2";
+ "apollo-link-context-1.0.8" = {
+ name = "apollo-link-context";
+ packageName = "apollo-link-context";
+ version = "1.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
- sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
+ url = "https://registry.npmjs.org/apollo-link-context/-/apollo-link-context-1.0.8.tgz";
+ sha512 = "wgDwBbWqHblf7W0DD2b80kXLtSAfvbXnsxSrli0GuF77VwxjLChijiHinW5bjurzZvP8YRMNhitmrrF5ia7NsA==";
};
};
- "external-editor-2.2.0" = {
- name = "external-editor";
- packageName = "external-editor";
- version = "2.2.0";
+ "apollo-link-dedup-1.0.9" = {
+ name = "apollo-link-dedup";
+ packageName = "apollo-link-dedup";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz";
- sha512 = "bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==";
+ url = "https://registry.npmjs.org/apollo-link-dedup/-/apollo-link-dedup-1.0.9.tgz";
+ sha512 = "RbuEKpmSHVMtoREMPh2wUFTeh65q+0XPVeqgaOP/rGEAfvLyOMvX0vT2nVaejMohoMxuUnfZwpldXaDFWnlVbg==";
};
};
- "external-editor-3.0.1" = {
- name = "external-editor";
- packageName = "external-editor";
- version = "3.0.1";
+ "apollo-link-http-1.5.4" = {
+ name = "apollo-link-http";
+ packageName = "apollo-link-http";
+ version = "1.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/external-editor/-/external-editor-3.0.1.tgz";
- sha512 = "e1neqvSt5pSwQcFnYc6yfGuJD2Q4336cdbHs5VeUO0zTkqPbrHMyw2q1r47fpfLWbvIG8H8A6YO3sck7upTV6Q==";
+ url = "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.4.tgz";
+ sha512 = "e9Ng3HfnW00Mh3TI6DhNRfozmzQOtKgdi+qUAsHBOEcTP0PTAmb+9XpeyEEOueLyO0GXhB92HUCIhzrWMXgwyg==";
};
};
- "extglob-0.3.2" = {
- name = "extglob";
- packageName = "extglob";
- version = "0.3.2";
+ "apollo-link-http-common-0.2.4" = {
+ name = "apollo-link-http-common";
+ packageName = "apollo-link-http-common";
+ version = "0.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz";
- sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1";
+ url = "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.4.tgz";
+ sha512 = "4j6o6WoXuSPen9xh4NBaX8/vL98X1xY2cYzUEK1F8SzvHe2oFONfxJBTekwU8hnvapcuq8Qh9Uct+gelu8T10g==";
};
};
- "extglob-2.0.4" = {
- name = "extglob";
- packageName = "extglob";
- version = "2.0.4";
+ "apollo-link-persisted-queries-0.2.1" = {
+ name = "apollo-link-persisted-queries";
+ packageName = "apollo-link-persisted-queries";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz";
- sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
+ url = "https://registry.npmjs.org/apollo-link-persisted-queries/-/apollo-link-persisted-queries-0.2.1.tgz";
+ sha512 = "OxBum5e5vn8XBBEURXpoYstwcKNtK/p3K3bAQ5yGjj7IyzpLmBcKLzfjk3wAnEyJJYbOUXIvPg7XnxQbcIlNGA==";
};
};
- "extsprintf-1.3.0" = {
- name = "extsprintf";
- packageName = "extsprintf";
- version = "1.3.0";
+ "apollo-link-state-0.4.1" = {
+ name = "apollo-link-state";
+ packageName = "apollo-link-state";
+ version = "0.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
- sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
+ url = "https://registry.npmjs.org/apollo-link-state/-/apollo-link-state-0.4.1.tgz";
+ sha512 = "69/til4ENfl/Fvf7br2xSsLSBcxcXPbOHVNkzLLejvUZickl93HLO4/fO+uvoBi4dCYRgN17Zr8FwI41ueRx0g==";
};
};
- "eyes-0.1.8" = {
- name = "eyes";
- packageName = "eyes";
- version = "0.1.8";
+ "apollo-link-ws-1.0.8" = {
+ name = "apollo-link-ws";
+ packageName = "apollo-link-ws";
+ version = "1.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz";
- sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0";
+ url = "https://registry.npmjs.org/apollo-link-ws/-/apollo-link-ws-1.0.8.tgz";
+ sha512 = "ucuGvr8CBBwCHl/Rbtyuv9Fn0FN5Qoyvy84KHtuMl2Uux2Sq+jt3bUum+pZ+hZntEd9k8M1OjrrXqRJ4PtEpyA==";
};
};
- "fast-deep-equal-1.1.0" = {
- name = "fast-deep-equal";
- packageName = "fast-deep-equal";
- version = "1.1.0";
+ "apollo-server-caching-0.1.2" = {
+ name = "apollo-server-caching";
+ packageName = "apollo-server-caching";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz";
- sha1 = "c053477817c86b51daa853c81e059b733d023614";
+ url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.1.2.tgz";
+ sha512 = "jBRnsTgXN0m8yVpumoelaUq9mXR7YpJ3EE+y/alI7zgXY+0qFDqksRApU8dEfg3q6qUnO7rFxRhdG5eyc0+1ig==";
};
};
- "fast-json-stable-stringify-2.0.0" = {
- name = "fast-json-stable-stringify";
- packageName = "fast-json-stable-stringify";
- version = "2.0.0";
+ "apollo-server-core-2.0.4" = {
+ name = "apollo-server-core";
+ packageName = "apollo-server-core";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
- sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
+ url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.0.4.tgz";
+ sha512 = "6kNaQYZfX2GvAT1g9ih0rodfRl4hPL1jXb7b+FvQ1foFR5Yyb3oqL2DOcP65gQi/7pGhyNRUAncPU18Vo3u9rQ==";
};
};
- "fd-read-stream-1.1.0" = {
- name = "fd-read-stream";
- packageName = "fd-read-stream";
- version = "1.1.0";
+ "apollo-server-env-2.0.2" = {
+ name = "apollo-server-env";
+ packageName = "apollo-server-env";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/fd-read-stream/-/fd-read-stream-1.1.0.tgz";
- sha1 = "d303ccbfee02a9a56a3493fb08bcb59691aa53b1";
+ url = "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-2.0.2.tgz";
+ sha512 = "LsSh2TSF1Sh+TnKxCv2To+UNTnoPpBGCXn6fPsmiNqVaBaSagfZEU/aaSu3ftMlmfXr4vXAfYNUDMKEi+7E6Bg==";
};
};
- "fd-slicer-1.1.0" = {
- name = "fd-slicer";
- packageName = "fd-slicer";
- version = "1.1.0";
+ "apollo-server-errors-2.0.2" = {
+ name = "apollo-server-errors";
+ packageName = "apollo-server-errors";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz";
- sha1 = "25c7c89cb1f9077f8891bbe61d8f390eae256f1e";
+ url = "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.0.2.tgz";
+ sha512 = "zyWDqAVDCkj9espVsoUpZr9PwDznM8UW6fBfhV+i1br//s2AQb07N6ektZ9pRIEvkhykDZW+8tQbDwAO0vUROg==";
};
};
- "figures-1.7.0" = {
- name = "figures";
- packageName = "figures";
- version = "1.7.0";
+ "apollo-server-express-2.0.4" = {
+ name = "apollo-server-express";
+ packageName = "apollo-server-express";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz";
- sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e";
+ url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.0.4.tgz";
+ sha512 = "9mxcFpnTgQTmrsvVRRofEY7N1bJYholjv99IfN8puu5lhNqj8ZbOPZYrw+zd+Yh4rZSonwx76ZzTRzM00Yllfw==";
};
};
- "figures-2.0.0" = {
- name = "figures";
- packageName = "figures";
- version = "2.0.0";
+ "apollo-tracing-0.2.2" = {
+ name = "apollo-tracing";
+ packageName = "apollo-tracing";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz";
- sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962";
+ url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.2.2.tgz";
+ sha512 = "zrpLRvaAqtzGufc1GfV+691xQtzq5elfBydg/7wzuaFszlMH66hkLas5Dw36drUX21CbCljOuGYvYzqSiKykuQ==";
};
};
- "file-type-3.9.0" = {
- name = "file-type";
- packageName = "file-type";
- version = "3.9.0";
+ "apollo-upload-client-8.1.0" = {
+ name = "apollo-upload-client";
+ packageName = "apollo-upload-client";
+ version = "8.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz";
- sha1 = "257a078384d1db8087bc449d107d52a52672b9e9";
+ url = "https://registry.npmjs.org/apollo-upload-client/-/apollo-upload-client-8.1.0.tgz";
+ sha512 = "JEgStzhnwybj1ifE2nViLEl7NTM5+zS++fKbDL95PIpodg2AdYeeN7eEa7RXpYD14iC3FVcsfqgGMREv2+cSxw==";
};
};
- "file-type-5.2.0" = {
- name = "file-type";
- packageName = "file-type";
- version = "5.2.0";
+ "apollo-utilities-1.0.20" = {
+ name = "apollo-utilities";
+ packageName = "apollo-utilities";
+ version = "1.0.20";
src = fetchurl {
- url = "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz";
- sha1 = "2ddbea7c73ffe36368dfae49dc338c058c2b8ad6";
+ url = "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.20.tgz";
+ sha512 = "2M4BJCyX/9UXGJFoV4sTnVTZ4Q29aM18Z1avDrwvlCGGwoRTz50sGBAfTiWnUnnNQyPIIJEYElScw46DgIu0Rg==";
};
};
- "file-type-6.2.0" = {
- name = "file-type";
- packageName = "file-type";
- version = "6.2.0";
+ "append-0.1.1" = {
+ name = "append";
+ packageName = "append";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz";
- sha512 = "YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==";
+ url = "https://registry.npmjs.org/append/-/append-0.1.1.tgz";
+ sha1 = "7e5dd327747078d877286fbb624b1e8f4d2b396b";
};
};
- "filename-regex-2.0.1" = {
- name = "filename-regex";
- packageName = "filename-regex";
- version = "2.0.1";
+ "append-buffer-1.0.2" = {
+ name = "append-buffer";
+ packageName = "append-buffer";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz";
- sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26";
+ url = "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz";
+ sha1 = "d8220cf466081525efea50614f3de6514dfa58f1";
};
};
- "filename-reserved-regex-2.0.0" = {
- name = "filename-reserved-regex";
- packageName = "filename-reserved-regex";
- version = "2.0.0";
+ "append-field-0.1.0" = {
+ name = "append-field";
+ packageName = "append-field";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz";
- sha1 = "abf73dfab735d045440abfea2d91f389ebbfa229";
+ url = "https://registry.npmjs.org/append-field/-/append-field-0.1.0.tgz";
+ sha1 = "6ddc58fa083c7bc545d3c5995b2830cc2366d44a";
};
};
- "filenamify-2.1.0" = {
- name = "filenamify";
- packageName = "filenamify";
- version = "2.1.0";
+ "append-tree-2.4.4" = {
+ name = "append-tree";
+ packageName = "append-tree";
+ version = "2.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz";
- sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==";
+ url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.4.tgz";
+ sha512 = "rPMUMkR8JjjPDDHHDZ/YeLO0KIbUGCrXgy921F6sBkEXBR9jYYxK8LUlwpZkUVi70cMR6r8uSmHZ/5HvtrntHg==";
};
};
- "fill-range-2.2.4" = {
- name = "fill-range";
- packageName = "fill-range";
- version = "2.2.4";
+ "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/fill-range/-/fill-range-2.2.4.tgz";
- sha512 = "cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==";
+ url = "https://registry.npmjs.org/appendable-cli-menu/-/appendable-cli-menu-2.0.0.tgz";
+ sha1 = "dcfca9e509300e4c3b2d467965fe50c56fc75e66";
};
};
- "fill-range-4.0.0" = {
- name = "fill-range";
- packageName = "fill-range";
- version = "4.0.0";
+ "applicationinsights-0.16.0" = {
+ name = "applicationinsights";
+ packageName = "applicationinsights";
+ version = "0.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
- sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
+ url = "https://registry.npmjs.org/applicationinsights/-/applicationinsights-0.16.0.tgz";
+ sha1 = "e02dafb10cf573c19b429793c87797d6404f0ee3";
};
};
- "finalhandler-1.1.0" = {
- name = "finalhandler";
- packageName = "finalhandler";
- version = "1.1.0";
+ "aproba-1.2.0" = {
+ name = "aproba";
+ packageName = "aproba";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz";
- sha1 = "ce0b6855b45853e791b2fcc680046d88253dd7f5";
+ url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
+ sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
};
};
- "findup-sync-0.3.0" = {
- name = "findup-sync";
- packageName = "findup-sync";
- version = "0.3.0";
+ "arch-2.1.1" = {
+ name = "arch";
+ packageName = "arch";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz";
- sha1 = "37930aa5d816b777c03445e1966cc6790a4c0b16";
+ url = "https://registry.npmjs.org/arch/-/arch-2.1.1.tgz";
+ sha512 = "BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==";
};
};
- "flat-tree-1.6.0" = {
- name = "flat-tree";
- packageName = "flat-tree";
- version = "1.6.0";
+ "archiver-2.1.1" = {
+ name = "archiver";
+ packageName = "archiver";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/flat-tree/-/flat-tree-1.6.0.tgz";
- sha1 = "fca30cddb9006fb656eb5ebc79aeb274e7fde9ed";
+ url = "https://registry.npmjs.org/archiver/-/archiver-2.1.1.tgz";
+ sha1 = "ff662b4a78201494a3ee544d3a33fe7496509ebc";
};
};
- "for-each-0.3.3" = {
- name = "for-each";
- packageName = "for-each";
- version = "0.3.3";
+ "archiver-3.0.0" = {
+ name = "archiver";
+ packageName = "archiver";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz";
- sha512 = "jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==";
+ url = "https://registry.npmjs.org/archiver/-/archiver-3.0.0.tgz";
+ sha512 = "5QeR6Xc5hSA9X1rbQfcuQ6VZuUXOaEdB65Dhmk9duuRJHYif/ZyJfuyJqsQrj34PFjU5emv5/MmfgA8un06onw==";
};
};
- "for-in-1.0.2" = {
- name = "for-in";
- packageName = "for-in";
- version = "1.0.2";
+ "archiver-utils-1.3.0" = {
+ name = "archiver-utils";
+ packageName = "archiver-utils";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
- sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
+ url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz";
+ sha1 = "e50b4c09c70bf3d680e32ff1b7994e9f9d895174";
};
};
- "for-own-0.1.5" = {
- name = "for-own";
- packageName = "for-own";
- version = "0.1.5";
+ "archiver-utils-2.0.0" = {
+ name = "archiver-utils";
+ packageName = "archiver-utils";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz";
- sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce";
+ url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.0.0.tgz";
+ sha512 = "JRBgcVvDX4Mwu2RBF8bBaHcQCSxab7afsxAPYDQ5W+19quIPP5CfKE7Ql+UHs9wYvwsaNR8oDuhtf5iqrKmzww==";
};
};
- "forever-agent-0.6.1" = {
- name = "forever-agent";
- packageName = "forever-agent";
- version = "0.6.1";
+ "archy-1.0.0" = {
+ name = "archy";
+ packageName = "archy";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
- sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
+ url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz";
+ sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
};
};
- "form-data-1.0.0-rc3" = {
- name = "form-data";
- packageName = "form-data";
- version = "1.0.0-rc3";
+ "are-we-there-yet-1.1.5" = {
+ name = "are-we-there-yet";
+ packageName = "are-we-there-yet";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz";
- sha1 = "d35bc62e7fbc2937ae78f948aaa0d38d90607577";
+ url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz";
+ sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==";
};
};
- "form-data-2.3.2" = {
- name = "form-data";
- packageName = "form-data";
- version = "2.3.2";
+ "arg-2.0.0" = {
+ name = "arg";
+ packageName = "arg";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz";
- sha1 = "4970498be604c20c005d4f5c23aecd21d6b49099";
+ url = "https://registry.npmjs.org/arg/-/arg-2.0.0.tgz";
+ sha512 = "XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w==";
};
};
- "formidable-1.0.17" = {
- name = "formidable";
- packageName = "formidable";
- version = "1.0.17";
+ "argparse-0.1.15" = {
+ name = "argparse";
+ packageName = "argparse";
+ version = "0.1.15";
src = fetchurl {
- url = "https://registry.npmjs.org/formidable/-/formidable-1.0.17.tgz";
- sha1 = "ef5491490f9433b705faa77249c99029ae348559";
+ url = "https://registry.npmjs.org/argparse/-/argparse-0.1.15.tgz";
+ sha1 = "28a1f72c43113e763220e5708414301c8840f0a1";
};
};
- "formidable-1.2.1" = {
- name = "formidable";
- packageName = "formidable";
- version = "1.2.1";
+ "argparse-0.1.16" = {
+ name = "argparse";
+ packageName = "argparse";
+ version = "0.1.16";
src = fetchurl {
- url = "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz";
- sha512 = "Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg==";
+ url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz";
+ sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c";
};
};
- "fragment-cache-0.2.1" = {
- name = "fragment-cache";
- packageName = "fragment-cache";
- version = "0.2.1";
+ "argparse-1.0.10" = {
+ name = "argparse";
+ packageName = "argparse";
+ version = "1.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
- sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
+ url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz";
+ sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==";
};
};
- "fresh-0.5.2" = {
- name = "fresh";
- packageName = "fresh";
- version = "0.5.2";
+ "argparse-1.0.4" = {
+ name = "argparse";
+ packageName = "argparse";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz";
- sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7";
+ url = "https://registry.npmjs.org/argparse/-/argparse-1.0.4.tgz";
+ sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4";
};
};
- "from-0.1.7" = {
- name = "from";
- packageName = "from";
- version = "0.1.7";
+ "arr-diff-1.1.0" = {
+ name = "arr-diff";
+ packageName = "arr-diff";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/from/-/from-0.1.7.tgz";
- sha1 = "83c60afc58b9c56997007ed1a768b3ab303a44fe";
+ url = "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz";
+ sha1 = "687c32758163588fef7de7b36fabe495eb1a399a";
};
};
- "from2-2.3.0" = {
- name = "from2";
- packageName = "from2";
- version = "2.3.0";
+ "arr-diff-2.0.0" = {
+ name = "arr-diff";
+ packageName = "arr-diff";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
- sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
+ url = "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz";
+ sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf";
};
};
- "fs-constants-1.0.0" = {
- name = "fs-constants";
- packageName = "fs-constants";
- version = "1.0.0";
+ "arr-diff-4.0.0" = {
+ name = "arr-diff";
+ packageName = "arr-diff";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz";
- sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==";
+ url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
+ sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
};
};
- "fs-extra-0.24.0" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "0.24.0";
+ "arr-flatten-1.1.0" = {
+ name = "arr-flatten";
+ packageName = "arr-flatten";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.24.0.tgz";
- sha1 = "d4e4342a96675cb7846633a6099249332b539952";
+ url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
+ sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==";
};
};
- "fs-extra-0.26.7" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "0.26.7";
+ "arr-union-2.1.0" = {
+ name = "arr-union";
+ packageName = "arr-union";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz";
- sha1 = "9ae1fdd94897798edab76d0918cf42d0c3184fa9";
+ url = "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz";
+ sha1 = "20f9eab5ec70f5c7d215b1077b1c39161d292c7d";
};
};
- "fs-minipass-1.2.5" = {
- name = "fs-minipass";
- packageName = "fs-minipass";
- version = "1.2.5";
+ "arr-union-3.1.0" = {
+ name = "arr-union";
+ packageName = "arr-union";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz";
- sha512 = "JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==";
+ url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
+ sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
};
};
- "fs.realpath-1.0.0" = {
- name = "fs.realpath";
- packageName = "fs.realpath";
+ "array-differ-1.0.0" = {
+ name = "array-differ";
+ packageName = "array-differ";
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/array-differ/-/array-differ-1.0.0.tgz";
+ sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031";
};
};
- "fsevents-1.2.4" = {
- name = "fsevents";
- packageName = "fsevents";
- version = "1.2.4";
+ "array-each-1.0.1" = {
+ name = "array-each";
+ packageName = "array-each";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz";
- sha512 = "z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==";
+ url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
+ sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
};
};
- "fstream-1.0.11" = {
- name = "fstream";
- packageName = "fstream";
- version = "1.0.11";
+ "array-filter-0.0.1" = {
+ name = "array-filter";
+ packageName = "array-filter";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz";
- sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171";
+ url = "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz";
+ sha1 = "7da8cf2e26628ed732803581fd21f67cacd2eeec";
};
};
- "gauge-2.7.4" = {
- name = "gauge";
- packageName = "gauge";
- version = "2.7.4";
+ "array-find-0.1.1" = {
+ name = "array-find";
+ packageName = "array-find";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
- sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
+ url = "https://registry.npmjs.org/array-find/-/array-find-0.1.1.tgz";
+ sha1 = "dc813845ad5a9afc35cb92b786c878d81b5b82ce";
};
};
- "get-proxy-2.1.0" = {
- name = "get-proxy";
- packageName = "get-proxy";
- version = "2.1.0";
+ "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/get-proxy/-/get-proxy-2.1.0.tgz";
- sha512 = "zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==";
+ url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz";
+ sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1";
};
};
- "get-stream-2.3.1" = {
- name = "get-stream";
- packageName = "get-stream";
- version = "2.3.1";
+ "array-flatten-1.1.1" = {
+ name = "array-flatten";
+ packageName = "array-flatten";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz";
- sha1 = "5f38f93f346009666ee0150a054167f91bdd95de";
+ url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz";
+ sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
};
};
- "get-stream-3.0.0" = {
- name = "get-stream";
- packageName = "get-stream";
- version = "3.0.0";
+ "array-flatten-2.1.1" = {
+ name = "array-flatten";
+ packageName = "array-flatten";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz";
- sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14";
+ url = "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz";
+ sha1 = "426bb9da84090c1838d812c8150af20a8331e296";
};
};
- "get-value-2.0.6" = {
- name = "get-value";
- packageName = "get-value";
- version = "2.0.6";
+ "array-from-2.1.1" = {
+ name = "array-from";
+ packageName = "array-from";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
- sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
+ url = "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz";
+ sha1 = "cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195";
};
};
- "getpass-0.1.7" = {
- name = "getpass";
- packageName = "getpass";
- version = "0.1.7";
+ "array-ify-1.0.0" = {
+ name = "array-ify";
+ packageName = "array-ify";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
- sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
+ url = "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz";
+ sha1 = "9e528762b4a9066ad163a6962a364418e9626ece";
};
};
- "git-clone-0.1.0" = {
- name = "git-clone";
- packageName = "git-clone";
- version = "0.1.0";
+ "array-indexofobject-0.0.1" = {
+ name = "array-indexofobject";
+ packageName = "array-indexofobject";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/git-clone/-/git-clone-0.1.0.tgz";
- sha1 = "0d76163778093aef7f1c30238f2a9ef3f07a2eb9";
+ url = "https://registry.npmjs.org/array-indexofobject/-/array-indexofobject-0.0.1.tgz";
+ sha1 = "aaa128e62c9b3c358094568c219ff64fe489d42a";
};
};
- "glob-3.2.11" = {
- name = "glob";
- packageName = "glob";
- version = "3.2.11";
+ "array-loop-1.0.0" = {
+ name = "array-loop";
+ packageName = "array-loop";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz";
- sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d";
+ url = "https://registry.npmjs.org/array-loop/-/array-loop-1.0.0.tgz";
+ sha1 = "c033d086cf0d12af73aed5a99c0cedb37367b395";
};
};
- "glob-5.0.15" = {
- name = "glob";
- packageName = "glob";
- version = "5.0.15";
+ "array-lru-1.1.1" = {
+ name = "array-lru";
+ packageName = "array-lru";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz";
- sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1";
+ url = "https://registry.npmjs.org/array-lru/-/array-lru-1.1.1.tgz";
+ sha1 = "0c7e1b4e022ae166ff1e8448c595f3181fcd3337";
};
};
- "glob-7.1.2" = {
- name = "glob";
- packageName = "glob";
- version = "7.1.2";
+ "array-map-0.0.0" = {
+ name = "array-map";
+ packageName = "array-map";
+ version = "0.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
- sha512 = "MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==";
+ url = "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz";
+ sha1 = "88a2bab73d1cf7bcd5c1b118a003f66f665fa662";
};
};
- "glob-base-0.3.0" = {
- name = "glob-base";
- packageName = "glob-base";
- version = "0.3.0";
+ "array-reduce-0.0.0" = {
+ name = "array-reduce";
+ packageName = "array-reduce";
+ version = "0.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz";
- sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4";
+ url = "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz";
+ sha1 = "173899d3ffd1c7d9383e4479525dbe278cab5f2b";
};
};
- "glob-parent-2.0.0" = {
- name = "glob-parent";
- packageName = "glob-parent";
- version = "2.0.0";
+ "array-shuffle-1.0.1" = {
+ name = "array-shuffle";
+ packageName = "array-shuffle";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz";
- sha1 = "81383d72db054fcccf5336daa902f182f6edbb28";
+ url = "https://registry.npmjs.org/array-shuffle/-/array-shuffle-1.0.1.tgz";
+ sha1 = "7ea4882a356b4bca5f545e0b6e52eaf6d971557a";
};
};
- "glob-parent-3.1.0" = {
- name = "glob-parent";
- packageName = "glob-parent";
- version = "3.1.0";
+ "array-slice-0.2.3" = {
+ name = "array-slice";
+ packageName = "array-slice";
+ version = "0.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
- sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
+ url = "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz";
+ sha1 = "dd3cfb80ed7973a75117cdac69b0b99ec86186f5";
};
};
- "global-4.3.2" = {
- name = "global";
- packageName = "global";
- version = "4.3.2";
+ "array-slice-1.1.0" = {
+ name = "array-slice";
+ packageName = "array-slice";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/global/-/global-4.3.2.tgz";
- sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f";
+ url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
+ sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==";
};
};
- "global-dirs-0.1.1" = {
- name = "global-dirs";
- packageName = "global-dirs";
- version = "0.1.1";
+ "array-union-1.0.2" = {
+ name = "array-union";
+ packageName = "array-union";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz";
- sha1 = "b319c0dd4607f353f3be9cca4c72fc148c49f445";
+ url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
+ sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
};
};
- "got-6.7.1" = {
- name = "got";
- packageName = "got";
- version = "6.7.1";
+ "array-uniq-1.0.3" = {
+ name = "array-uniq";
+ packageName = "array-uniq";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-6.7.1.tgz";
- sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0";
+ url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
+ sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
};
};
- "graceful-fs-4.1.11" = {
- name = "graceful-fs";
- packageName = "graceful-fs";
- version = "4.1.11";
+ "array-unique-0.2.1" = {
+ name = "array-unique";
+ packageName = "array-unique";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
- sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
+ url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz";
+ sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53";
};
};
- "graceful-readlink-1.0.1" = {
- name = "graceful-readlink";
- packageName = "graceful-readlink";
- version = "1.0.1";
+ "array-unique-0.3.2" = {
+ name = "array-unique";
+ packageName = "array-unique";
+ version = "0.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
- sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
+ url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
+ sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
};
};
- "graphlib-2.1.5" = {
- name = "graphlib";
- packageName = "graphlib";
- version = "2.1.5";
+ "arraybuffer.slice-0.0.6" = {
+ name = "arraybuffer.slice";
+ packageName = "arraybuffer.slice";
+ version = "0.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/graphlib/-/graphlib-2.1.5.tgz";
- sha512 = "XvtbqCcw+EM5SqQrIetIKKD+uZVNQtDPD1goIg7K73RuRZtVI5rYMdcCVSHm/AS1sCBZ7vt0p5WgXouucHQaOA==";
+ url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz";
+ sha1 = "f33b2159f0532a3f3107a272c0ccfbd1ad2979ca";
};
};
- "gray-matter-2.1.1" = {
- name = "gray-matter";
- packageName = "gray-matter";
- version = "2.1.1";
+ "arraybuffer.slice-0.0.7" = {
+ name = "arraybuffer.slice";
+ packageName = "arraybuffer.slice";
+ version = "0.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz";
- sha1 = "3042d9adec2a1ded6a7707a9ed2380f8a17a430e";
+ url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz";
+ sha512 = "wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==";
};
};
- "growl-1.10.5" = {
- name = "growl";
- packageName = "growl";
- version = "1.10.5";
+ "arrify-1.0.1" = {
+ name = "arrify";
+ packageName = "arrify";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz";
- sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==";
+ url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz";
+ sha1 = "898508da2226f380df904728456849c1501a4b0d";
};
};
- "growl-1.9.2" = {
- name = "growl";
- packageName = "growl";
- version = "1.9.2";
+ "asap-1.0.0" = {
+ name = "asap";
+ packageName = "asap";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz";
- sha1 = "0ea7743715db8d8de2c5ede1775e1b45ac85c02f";
+ url = "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz";
+ sha1 = "b2a45da5fdfa20b0496fc3768cc27c12fa916a7d";
};
};
- "grunt-known-options-1.1.0" = {
- name = "grunt-known-options";
- packageName = "grunt-known-options";
- version = "1.1.0";
+ "asap-2.0.6" = {
+ name = "asap";
+ packageName = "asap";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz";
- sha1 = "a4274eeb32fa765da5a7a3b1712617ce3b144149";
+ url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz";
+ sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46";
};
};
- "handlebars-4.0.11" = {
- name = "handlebars";
- packageName = "handlebars";
- version = "4.0.11";
+ "ascli-0.3.0" = {
+ name = "ascli";
+ packageName = "ascli";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz";
- sha1 = "630a35dfe0294bc281edae6ffc5d329fc7982dcc";
+ url = "https://registry.npmjs.org/ascli/-/ascli-0.3.0.tgz";
+ sha1 = "5e66230e5219fe3e8952a4efb4f20fae596a813a";
};
};
- "har-schema-2.0.0" = {
- name = "har-schema";
- packageName = "har-schema";
- version = "2.0.0";
+ "asn1-0.1.11" = {
+ name = "asn1";
+ packageName = "asn1";
+ version = "0.1.11";
src = fetchurl {
- url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz";
- sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
+ url = "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz";
+ sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7";
};
};
- "har-validator-5.0.3" = {
- name = "har-validator";
- packageName = "har-validator";
- version = "5.0.3";
+ "asn1-0.2.4" = {
+ name = "asn1";
+ packageName = "asn1";
+ version = "0.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz";
- sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd";
+ url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
+ sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
};
};
- "has-ansi-2.0.0" = {
- name = "has-ansi";
- packageName = "has-ansi";
- version = "2.0.0";
+ "asn1.js-4.10.1" = {
+ name = "asn1.js";
+ packageName = "asn1.js";
+ version = "4.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
- sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
+ url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz";
+ sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==";
};
};
- "has-flag-3.0.0" = {
- name = "has-flag";
- packageName = "has-flag";
- version = "3.0.0";
+ "assert-1.4.1" = {
+ name = "assert";
+ packageName = "assert";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz";
- sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
+ url = "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz";
+ sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91";
};
};
- "has-generators-1.0.1" = {
- name = "has-generators";
- packageName = "has-generators";
- version = "1.0.1";
+ "assert-plus-0.1.2" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/has-generators/-/has-generators-1.0.1.tgz";
- sha1 = "a6a2e55486011940482e13e2c93791c449acf449";
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.2.tgz";
+ sha1 = "d93ffdbb67ac5507779be316a7d65146417beef8";
};
};
- "has-symbol-support-x-1.4.2" = {
- name = "has-symbol-support-x";
- packageName = "has-symbol-support-x";
- version = "1.4.2";
+ "assert-plus-0.1.5" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz";
- sha512 = "3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==";
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz";
+ sha1 = "ee74009413002d84cec7219c6ac811812e723160";
};
};
- "has-to-string-tag-x-1.4.1" = {
- name = "has-to-string-tag-x";
- packageName = "has-to-string-tag-x";
- version = "1.4.1";
+ "assert-plus-0.2.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz";
- sha512 = "vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==";
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
+ sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
};
};
- "has-unicode-2.0.1" = {
- name = "has-unicode";
- packageName = "has-unicode";
- version = "2.0.1";
+ "assert-plus-1.0.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz";
- sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
+ sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
};
};
- "has-value-0.3.1" = {
- name = "has-value";
- packageName = "has-value";
- version = "0.3.1";
+ "assertion-error-1.1.0" = {
+ name = "assertion-error";
+ packageName = "assertion-error";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
- sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
+ url = "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz";
+ sha512 = "jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==";
};
};
- "has-value-1.0.0" = {
- name = "has-value";
- packageName = "has-value";
+ "assign-symbols-1.0.0" = {
+ name = "assign-symbols";
+ packageName = "assign-symbols";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
- sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
+ url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
+ sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
};
};
- "has-values-0.1.4" = {
- name = "has-values";
- packageName = "has-values";
- version = "0.1.4";
+ "ast-types-0.11.5" = {
+ name = "ast-types";
+ packageName = "ast-types";
+ version = "0.11.5";
src = fetchurl {
- url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
- sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
+ url = "https://registry.npmjs.org/ast-types/-/ast-types-0.11.5.tgz";
+ sha512 = "oJjo+5e7/vEc2FBK8gUalV0pba4L3VdBIs2EKhOLHLcOd2FgQIVQN9xb0eZ9IjEWyAL7vq6fGJxOvVvdCHNyMw==";
};
};
- "has-values-1.0.0" = {
- name = "has-values";
- packageName = "has-values";
+ "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";
+ };
+ };
+ "astral-regex-1.0.0" = {
+ name = "astral-regex";
+ packageName = "astral-regex";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
- sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
+ url = "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz";
+ sha512 = "+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==";
};
};
- "he-1.1.1" = {
- name = "he";
- packageName = "he";
- version = "1.1.1";
+ "async-0.1.22" = {
+ name = "async";
+ packageName = "async";
+ version = "0.1.22";
src = fetchurl {
- url = "https://registry.npmjs.org/he/-/he-1.1.1.tgz";
- sha1 = "93410fd21b009735151f8868c2f271f3427e23fd";
+ url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz";
+ sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061";
};
};
- "http-errors-1.6.3" = {
- name = "http-errors";
- packageName = "http-errors";
- version = "1.6.3";
+ "async-0.2.10" = {
+ name = "async";
+ packageName = "async";
+ version = "0.2.10";
src = fetchurl {
- url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz";
- sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d";
+ url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
+ sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
};
};
- "http-methods-0.1.0" = {
- name = "http-methods";
- packageName = "http-methods";
- version = "0.1.0";
+ "async-0.2.7" = {
+ name = "async";
+ packageName = "async";
+ version = "0.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/http-methods/-/http-methods-0.1.0.tgz";
- sha1 = "29691b6fc58f4f7e81a3605dca82682b068e4430";
+ url = "https://registry.npmjs.org/async/-/async-0.2.7.tgz";
+ sha1 = "44c5ee151aece6c4bf5364cfc7c28fe4e58f18df";
};
};
- "http-signature-1.2.0" = {
- name = "http-signature";
- packageName = "http-signature";
- version = "1.2.0";
+ "async-0.2.9" = {
+ name = "async";
+ packageName = "async";
+ version = "0.2.9";
src = fetchurl {
- url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz";
- sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
+ url = "https://registry.npmjs.org/async/-/async-0.2.9.tgz";
+ sha1 = "df63060fbf3d33286a76aaf6d55a2986d9ff8619";
};
};
- "hypercore-6.18.1" = {
- name = "hypercore";
- packageName = "hypercore";
- version = "6.18.1";
+ "async-0.9.2" = {
+ name = "async";
+ packageName = "async";
+ version = "0.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore/-/hypercore-6.18.1.tgz";
- sha512 = "pH2t3ehdTfe/FFrwVq+6w7L9NoWEnFO9Yxix2kj43vSLMHTWCUFdOCJ9/MaOUAG4OeYy4tiT4+IE5NP0bff6Mg==";
+ url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz";
+ sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
};
};
- "hypercore-crypto-1.0.0" = {
- name = "hypercore-crypto";
- packageName = "hypercore-crypto";
+ "async-1.0.0" = {
+ name = "async";
+ packageName = "async";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore-crypto/-/hypercore-crypto-1.0.0.tgz";
- sha512 = "xFwOnNlOt8L+SovC7dTNchKaNYJb5l8rKZZwpWQnCme1r7CU4Hlhp1RDqPES6b0OpS7DkTo9iU0GltQGkpsjMw==";
+ url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz";
+ sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
};
};
- "hypercore-protocol-6.6.4" = {
- name = "hypercore-protocol";
- packageName = "hypercore-protocol";
- version = "6.6.4";
+ "async-1.4.2" = {
+ name = "async";
+ packageName = "async";
+ version = "1.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.6.4.tgz";
- sha512 = "9TU7P+uve0e5v1ZiBx70DFhkpepW4iNSGYlZthK+Unm0EbZ+Yppc6clH7JTffPBNUMSnDrE552MfXMilpCHZMw==";
+ url = "https://registry.npmjs.org/async/-/async-1.4.2.tgz";
+ sha1 = "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab";
};
};
- "hyperdrive-9.14.0" = {
- name = "hyperdrive";
- packageName = "hyperdrive";
- version = "9.14.0";
+ "async-1.5.2" = {
+ name = "async";
+ packageName = "async";
+ version = "1.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.14.0.tgz";
- sha512 = "LTgbsJ+9ZrdQfLaXXc01kQMttaicHhSOtUM3v/k7ORwXJziqQ2eMQ80+8Tfg67ja+w6zrdl5HYOK+mnlwQpCww==";
+ url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz";
+ sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a";
};
};
- "hyperdrive-http-4.3.3" = {
- name = "hyperdrive-http";
- packageName = "hyperdrive-http";
- version = "4.3.3";
+ "async-2.1.5" = {
+ name = "async";
+ packageName = "async";
+ version = "2.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive-http/-/hyperdrive-http-4.3.3.tgz";
- sha512 = "YRAjbCCRefLK9EMcgDXRgDx/sZksWf85iLtGl9JMVrzFSIfUx0//DpUJ6k0m0eG4KHJJM+dBwORxFPNi29EQHg==";
+ url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz";
+ sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
};
};
- "hyperdrive-network-speed-2.1.0" = {
- name = "hyperdrive-network-speed";
- packageName = "hyperdrive-network-speed";
- version = "2.1.0";
+ "async-2.5.0" = {
+ name = "async";
+ packageName = "async";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive-network-speed/-/hyperdrive-network-speed-2.1.0.tgz";
- sha512 = "JolPS374h6oS1rmz1iebFfeDDvA2nAtiHbx9VJJGMgSDSx4Q77eeY09hDgZwY7KatSKUGWnnSyydSgVUb3+8Lw==";
+ url = "https://registry.npmjs.org/async/-/async-2.5.0.tgz";
+ sha512 = "e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==";
};
};
- "i-0.3.6" = {
- name = "i";
- packageName = "i";
- version = "0.3.6";
+ "async-2.6.0" = {
+ name = "async";
+ packageName = "async";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/i/-/i-0.3.6.tgz";
- sha1 = "d96c92732076f072711b6b10fd7d4f65ad8ee23d";
+ url = "https://registry.npmjs.org/async/-/async-2.6.0.tgz";
+ sha512 = "xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==";
};
};
- "iconv-lite-0.4.23" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.23";
+ "async-2.6.1" = {
+ name = "async";
+ packageName = "async";
+ version = "2.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz";
- sha512 = "neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==";
+ url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz";
+ sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==";
};
};
- "iconv-lite-0.4.8" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.8";
+ "async-each-1.0.1" = {
+ name = "async-each";
+ packageName = "async-each";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.8.tgz";
- sha1 = "c6019a7595f2cefca702eab694a010bcd9298d20";
+ url = "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz";
+ sha1 = "19d386a1d9edc6e7c1c85d388aedbcc56d33602d";
};
};
- "ieee754-1.1.12" = {
- name = "ieee754";
- packageName = "ieee754";
- version = "1.1.12";
+ "async-limiter-1.0.0" = {
+ name = "async-limiter";
+ packageName = "async-limiter";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz";
- sha512 = "GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==";
+ url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz";
+ sha512 = "jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==";
};
};
- "ignore-by-default-1.0.1" = {
- name = "ignore-by-default";
- packageName = "ignore-by-default";
- version = "1.0.1";
+ "async-retry-1.2.1" = {
+ name = "async-retry";
+ packageName = "async-retry";
+ version = "1.2.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/async-retry/-/async-retry-1.2.1.tgz";
+ sha512 = "FadV8UDcyZDjzb6eV7MCJj0bfrNjwKw7/X0QHPFCbYP6T20FXgZCYXpJKlQC8RxEQP1E6Xs8pNHdh3bcrZAuAw==";
};
};
- "ignore-walk-3.0.1" = {
- name = "ignore-walk";
- packageName = "ignore-walk";
- version = "3.0.1";
+ "asynckit-0.4.0" = {
+ name = "asynckit";
+ packageName = "asynckit";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz";
- sha512 = "DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==";
+ url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
+ sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
};
};
- "import-lazy-2.1.0" = {
- name = "import-lazy";
- packageName = "import-lazy";
- version = "2.1.0";
+ "atob-2.1.2" = {
+ name = "atob";
+ packageName = "atob";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz";
- sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43";
+ url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz";
+ sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==";
};
};
- "imurmurhash-0.1.4" = {
- name = "imurmurhash";
- packageName = "imurmurhash";
- version = "0.1.4";
+ "atomic-batcher-1.0.2" = {
+ name = "atomic-batcher";
+ packageName = "atomic-batcher";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz";
- sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
+ url = "https://registry.npmjs.org/atomic-batcher/-/atomic-batcher-1.0.2.tgz";
+ sha1 = "d16901d10ccec59516c197b9ccd8930689b813b4";
};
};
- "inflight-1.0.6" = {
- name = "inflight";
- packageName = "inflight";
- version = "1.0.6";
+ "auto-bind-1.2.1" = {
+ name = "auto-bind";
+ packageName = "auto-bind";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
- sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
+ url = "https://registry.npmjs.org/auto-bind/-/auto-bind-1.2.1.tgz";
+ sha512 = "/W9yj1yKmBLwpexwAujeD9YHwYmRuWFGV8HWE7smQab797VeHa4/cnE2NFeDhA+E+5e/OGBI8763EhLjfZ/MXA==";
};
};
- "inherits-2.0.3" = {
- name = "inherits";
- packageName = "inherits";
- version = "2.0.3";
+ "aws-sdk-1.18.0" = {
+ name = "aws-sdk";
+ packageName = "aws-sdk";
+ version = "1.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
- sha1 = "633c2c83e3da42a502f52466022480f4208261de";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-1.18.0.tgz";
+ sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
};
};
- "ini-1.3.5" = {
- name = "ini";
- packageName = "ini";
- version = "1.3.5";
+ "aws-sdk-2.303.0" = {
+ name = "aws-sdk";
+ packageName = "aws-sdk";
+ version = "2.303.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
- sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.303.0.tgz";
+ sha512 = "3AMEO/+aKNKvnIg1StF30Itbhs1SdUrUirCqlggS4bhLLOvyJVTrY+tJwASnPGsye4ffD6Qw8LRnaCytvDKkoQ==";
};
};
- "inquirer-0.10.1" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "0.10.1";
+ "aws-sign-0.2.1" = {
+ name = "aws-sign";
+ packageName = "aws-sign";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-0.10.1.tgz";
- sha1 = "ea25e4ce69ca145e05c99e46dcfec05e4012594a";
+ url = "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.1.tgz";
+ sha512 = "cQFl6jK/Lq416OqpT+lb1RIay1wShuQjHF3/kAJbyMvruV8vSpDahaGNkbeupdGRgXR8Ii0O/ZIbTQPdp+l3pA==";
};
};
- "inquirer-3.3.0" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "3.3.0";
+ "aws-sign2-0.6.0" = {
+ name = "aws-sign2";
+ packageName = "aws-sign2";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz";
- sha512 = "h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==";
+ url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
+ sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
};
};
- "inquirer-6.1.0" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "6.1.0";
+ "aws-sign2-0.7.0" = {
+ name = "aws-sign2";
+ packageName = "aws-sign2";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-6.1.0.tgz";
- sha512 = "f9K2MMx/G/AVmJSaZg2a+GVLRRmTdlGLbwxsibNd6yNTxXujqxPypjCnxnC0y4+Wb/rNY5KyKuq06AO5jrE+7w==";
+ url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz";
+ sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
};
};
- "inspect-custom-symbol-1.1.0" = {
- name = "inspect-custom-symbol";
- packageName = "inspect-custom-symbol";
- version = "1.1.0";
+ "aws4-1.8.0" = {
+ name = "aws4";
+ packageName = "aws4";
+ version = "1.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/inspect-custom-symbol/-/inspect-custom-symbol-1.1.0.tgz";
- sha512 = "vtI2YXBRZBkU6DlfHfd0GtZENfiEiTacAXUd0ZY6HA+X7aPznpFfPmzSC+tHKXAkz9KDSdI4AYfwAMXR5t+isg==";
+ url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz";
+ sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==";
};
};
- "ip-1.1.5" = {
- name = "ip";
- packageName = "ip";
- version = "1.1.5";
+ "axios-0.17.1" = {
+ name = "axios";
+ packageName = "axios";
+ version = "0.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz";
- sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
+ url = "https://registry.npmjs.org/axios/-/axios-0.17.1.tgz";
+ sha1 = "2d8e3e5d0bdbd7327f91bc814f5c57660f81824d";
};
};
- "is-3.2.1" = {
- name = "is";
- packageName = "is";
- version = "3.2.1";
+ "azure-arm-authorization-2.0.0" = {
+ name = "azure-arm-authorization";
+ packageName = "azure-arm-authorization";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is/-/is-3.2.1.tgz";
- sha1 = "d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5";
+ url = "https://registry.npmjs.org/azure-arm-authorization/-/azure-arm-authorization-2.0.0.tgz";
+ sha1 = "56b558ba43b9cb5657662251dabe3cb34c16c56f";
};
};
- "is-accessor-descriptor-0.1.6" = {
- name = "is-accessor-descriptor";
- packageName = "is-accessor-descriptor";
- version = "0.1.6";
+ "azure-arm-batch-3.1.2" = {
+ name = "azure-arm-batch";
+ packageName = "azure-arm-batch";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
- sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
+ url = "https://registry.npmjs.org/azure-arm-batch/-/azure-arm-batch-3.1.2.tgz";
+ sha512 = "4jAqSLNrQvdjq6/BmKSkvIUZj7gUpJnf/cOgxs/gbHNluOhIm19RRrD7yzeriGcx1fzIDZGQ7iPmF6kI9CW7xQ==";
};
};
- "is-accessor-descriptor-1.0.0" = {
- name = "is-accessor-descriptor";
- packageName = "is-accessor-descriptor";
- version = "1.0.0";
+ "azure-arm-cdn-4.0.2" = {
+ name = "azure-arm-cdn";
+ packageName = "azure-arm-cdn";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
- sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
+ url = "https://registry.npmjs.org/azure-arm-cdn/-/azure-arm-cdn-4.0.2.tgz";
+ sha512 = "qDxDfmBGpV4oDodfWo1BQmPs8ibOL55To+cu9OlhBGHbbzLIZclsHZucOElCtQHSKWuQMjhWRc+RF8eUSRqrxA==";
};
};
- "is-binary-path-1.0.1" = {
- name = "is-binary-path";
- packageName = "is-binary-path";
- version = "1.0.1";
+ "azure-arm-commerce-2.0.0" = {
+ name = "azure-arm-commerce";
+ packageName = "azure-arm-commerce";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz";
- sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
+ url = "https://registry.npmjs.org/azure-arm-commerce/-/azure-arm-commerce-2.0.0.tgz";
+ sha512 = "scKBmo3nZXbzXtox+SoEYf8Ij+c2y1r47Ga0MVxm1kUTs1UT8KaAiAlC269KKDNYpuXXuV7+CKUs52VCiM06JQ==";
};
};
- "is-buffer-1.1.6" = {
- name = "is-buffer";
- packageName = "is-buffer";
- version = "1.1.6";
+ "azure-arm-compute-3.0.0-preview" = {
+ name = "azure-arm-compute";
+ packageName = "azure-arm-compute";
+ version = "3.0.0-preview";
src = fetchurl {
- url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
- sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
+ url = "https://registry.npmjs.org/azure-arm-compute/-/azure-arm-compute-3.0.0-preview.tgz";
+ sha1 = "f5f07792afcdff29ce0b7e16705342b6986f571b";
};
};
- "is-callable-1.1.4" = {
- name = "is-callable";
- packageName = "is-callable";
- version = "1.1.4";
+ "azure-arm-datalake-analytics-1.0.2-preview" = {
+ name = "azure-arm-datalake-analytics";
+ packageName = "azure-arm-datalake-analytics";
+ version = "1.0.2-preview";
src = fetchurl {
- url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz";
- sha512 = "r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==";
+ url = "https://registry.npmjs.org/azure-arm-datalake-analytics/-/azure-arm-datalake-analytics-1.0.2-preview.tgz";
+ sha1 = "b34f868e98a972ec80e4408d209dc06c000dfb63";
};
};
- "is-ci-1.1.0" = {
- name = "is-ci";
- packageName = "is-ci";
- version = "1.1.0";
+ "azure-arm-datalake-store-1.0.2-preview" = {
+ name = "azure-arm-datalake-store";
+ packageName = "azure-arm-datalake-store";
+ version = "1.0.2-preview";
src = fetchurl {
- url = "https://registry.npmjs.org/is-ci/-/is-ci-1.1.0.tgz";
- sha512 = "c7TnwxLePuqIlxHgr7xtxzycJPegNHFuIrBkwbf8hc58//+Op1CqFkyS+xnIMkwn9UsJIwc174BIjkyBmSpjKg==";
+ url = "https://registry.npmjs.org/azure-arm-datalake-store/-/azure-arm-datalake-store-1.0.2-preview.tgz";
+ sha1 = "c8b7c113016c92703a84dc28d29ba518e8c64763";
};
};
- "is-data-descriptor-0.1.4" = {
- name = "is-data-descriptor";
- packageName = "is-data-descriptor";
- version = "0.1.4";
+ "azure-arm-devtestlabs-2.1.1" = {
+ name = "azure-arm-devtestlabs";
+ packageName = "azure-arm-devtestlabs";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
- sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
+ url = "https://registry.npmjs.org/azure-arm-devtestlabs/-/azure-arm-devtestlabs-2.1.1.tgz";
+ sha512 = "S5dCYTMrqL+BJc699fIQtXwLFuv5m8jTDqPdXTFpn/CSkyBcOyJwuZH2zPExQjGNZTyjIR6GWi8oeg/IpYLBWw==";
};
};
- "is-data-descriptor-1.0.0" = {
- name = "is-data-descriptor";
- packageName = "is-data-descriptor";
- version = "1.0.0";
+ "azure-arm-dns-2.1.0" = {
+ name = "azure-arm-dns";
+ packageName = "azure-arm-dns";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
- sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
+ url = "https://registry.npmjs.org/azure-arm-dns/-/azure-arm-dns-2.1.0.tgz";
+ sha512 = "/y0tOM9qNijPYqB381JFYiEyfF+L5B8z+F8JS1OMV1JXIb45vZKXeoe82ZNMZ5g38Vme3uAblxpvp5OtIcvW6Q==";
};
};
- "is-descriptor-0.1.6" = {
- name = "is-descriptor";
- packageName = "is-descriptor";
- version = "0.1.6";
+ "azure-arm-hdinsight-0.2.2" = {
+ name = "azure-arm-hdinsight";
+ packageName = "azure-arm-hdinsight";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
- sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==";
+ url = "https://registry.npmjs.org/azure-arm-hdinsight/-/azure-arm-hdinsight-0.2.2.tgz";
+ sha1 = "3daeade6d26f6b115d8598320541ad2dcaa9516d";
};
};
- "is-descriptor-1.0.2" = {
- name = "is-descriptor";
- packageName = "is-descriptor";
- version = "1.0.2";
+ "azure-arm-hdinsight-jobs-0.1.0" = {
+ name = "azure-arm-hdinsight-jobs";
+ packageName = "azure-arm-hdinsight-jobs";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
- sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
+ url = "https://registry.npmjs.org/azure-arm-hdinsight-jobs/-/azure-arm-hdinsight-jobs-0.1.0.tgz";
+ sha1 = "252938f18d4341adf9942261656e791490c3c220";
};
};
- "is-dotfile-1.0.3" = {
- name = "is-dotfile";
- packageName = "is-dotfile";
- version = "1.0.3";
+ "azure-arm-insights-0.11.3" = {
+ name = "azure-arm-insights";
+ packageName = "azure-arm-insights";
+ version = "0.11.3";
src = fetchurl {
- url = "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz";
- sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1";
+ url = "https://registry.npmjs.org/azure-arm-insights/-/azure-arm-insights-0.11.3.tgz";
+ sha1 = "4e38f8d72cd532e8ad3982d26f43f73f8fb2149f";
};
};
- "is-equal-shallow-0.1.3" = {
- name = "is-equal-shallow";
- packageName = "is-equal-shallow";
- version = "0.1.3";
+ "azure-arm-iothub-1.0.1-preview" = {
+ name = "azure-arm-iothub";
+ packageName = "azure-arm-iothub";
+ version = "1.0.1-preview";
src = fetchurl {
- url = "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz";
- sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534";
+ url = "https://registry.npmjs.org/azure-arm-iothub/-/azure-arm-iothub-1.0.1-preview.tgz";
+ sha1 = "f63a6dad0355633d9347fb403f417fb195fe3b91";
};
};
- "is-extendable-0.1.1" = {
- name = "is-extendable";
- packageName = "is-extendable";
+ "azure-arm-network-5.3.0" = {
+ name = "azure-arm-network";
+ packageName = "azure-arm-network";
+ version = "5.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-arm-network/-/azure-arm-network-5.3.0.tgz";
+ sha512 = "juitxBWofPBZ+kcmLB8OjW5qPD6+/Ncdq86WjDTIUcH+cyb/GWktdDymv6adbOyz4xZ9/wbThFL7AHgq8cHBig==";
+ };
+ };
+ "azure-arm-powerbiembedded-0.1.1" = {
+ name = "azure-arm-powerbiembedded";
+ packageName = "azure-arm-powerbiembedded";
version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
- sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
+ url = "https://registry.npmjs.org/azure-arm-powerbiembedded/-/azure-arm-powerbiembedded-0.1.1.tgz";
+ sha1 = "7103c94e06b3ddf628293f60e02fd0ba8f9c3ca9";
};
};
- "is-extendable-1.0.1" = {
- name = "is-extendable";
- packageName = "is-extendable";
- version = "1.0.1";
+ "azure-arm-rediscache-0.2.3" = {
+ name = "azure-arm-rediscache";
+ packageName = "azure-arm-rediscache";
+ version = "0.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
- sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==";
+ url = "https://registry.npmjs.org/azure-arm-rediscache/-/azure-arm-rediscache-0.2.3.tgz";
+ sha1 = "b6898abe8b4c3e1b2ec5be82689ef212bc2b1a06";
};
};
- "is-extglob-1.0.0" = {
- name = "is-extglob";
- packageName = "is-extglob";
- version = "1.0.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/is-extglob/-/is-extglob-1.0.0.tgz";
- sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0";
+ url = "https://registry.npmjs.org/azure-arm-resource/-/azure-arm-resource-1.6.1-preview.tgz";
+ sha1 = "aa9a49fb9081a210f2f4cc6596ca4653b68306e6";
};
};
- "is-extglob-2.1.1" = {
- name = "is-extglob";
- packageName = "is-extglob";
- version = "2.1.1";
+ "azure-arm-servermanagement-1.1.0" = {
+ name = "azure-arm-servermanagement";
+ packageName = "azure-arm-servermanagement";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
- sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
+ url = "https://registry.npmjs.org/azure-arm-servermanagement/-/azure-arm-servermanagement-1.1.0.tgz";
+ sha512 = "GlPXPD5Up2U6Qxv40ScC/+7WRcVVYQf7EHUSomD385o/MuyJAjM6CxBS8fPKwkZR5MRSd60p6kBo5AQ+bwfpeA==";
};
};
- "is-fullwidth-code-point-1.0.0" = {
- name = "is-fullwidth-code-point";
- packageName = "is-fullwidth-code-point";
- version = "1.0.0";
+ "azure-arm-storage-5.2.0" = {
+ name = "azure-arm-storage";
+ packageName = "azure-arm-storage";
+ version = "5.2.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/azure-arm-storage/-/azure-arm-storage-5.2.0.tgz";
+ sha512 = "BVFUPi48eJNJFP4ryQ3BwNRlKRNuAA7cZeSxCvr6dGEP+wrd1Ixmb2MlvoMRjgjcEOVnhP4t2YQyHcHNqQsH9A==";
};
};
- "is-fullwidth-code-point-2.0.0" = {
- name = "is-fullwidth-code-point";
- packageName = "is-fullwidth-code-point";
- version = "2.0.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/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
- sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
+ url = "https://registry.npmjs.org/azure-arm-trafficmanager/-/azure-arm-trafficmanager-1.1.0-preview.tgz";
+ sha1 = "b46cfcf7f1690e4739864dcdb5c8de322e82ec50";
};
};
- "is-function-1.0.1" = {
- name = "is-function";
- packageName = "is-function";
- version = "1.0.1";
+ "azure-arm-website-0.11.5" = {
+ name = "azure-arm-website";
+ packageName = "azure-arm-website";
+ version = "0.11.5";
src = fetchurl {
- url = "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz";
- sha1 = "12cfb98b65b57dd3d193a3121f5f6e2f437602b5";
+ url = "https://registry.npmjs.org/azure-arm-website/-/azure-arm-website-0.11.5.tgz";
+ sha1 = "51942423e1238ec19e551926353a8e9f73bc534a";
};
};
- "is-glob-2.0.1" = {
- name = "is-glob";
- packageName = "is-glob";
- version = "2.0.1";
+ "azure-asm-compute-0.18.0" = {
+ name = "azure-asm-compute";
+ packageName = "azure-asm-compute";
+ version = "0.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz";
- sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863";
+ url = "https://registry.npmjs.org/azure-asm-compute/-/azure-asm-compute-0.18.0.tgz";
+ sha1 = "109c31e17c697f4a00a01533fb230bf3ae448685";
};
};
- "is-glob-3.1.0" = {
- name = "is-glob";
- packageName = "is-glob";
- version = "3.1.0";
+ "azure-asm-hdinsight-0.10.2" = {
+ name = "azure-asm-hdinsight";
+ packageName = "azure-asm-hdinsight";
+ version = "0.10.2";
src = fetchurl {
- url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
- sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
+ url = "https://registry.npmjs.org/azure-asm-hdinsight/-/azure-asm-hdinsight-0.10.2.tgz";
+ sha1 = "2d11cdaaa073fc38f31c718991d5923fb7259fa0";
};
};
- "is-glob-4.0.0" = {
- name = "is-glob";
- packageName = "is-glob";
- version = "4.0.0";
+ "azure-asm-mgmt-0.10.1" = {
+ name = "azure-asm-mgmt";
+ packageName = "azure-asm-mgmt";
+ version = "0.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz";
- sha1 = "9521c76845cc2610a85203ddf080a958c2ffabc0";
+ url = "https://registry.npmjs.org/azure-asm-mgmt/-/azure-asm-mgmt-0.10.1.tgz";
+ sha1 = "d0a44b47ccabf338b19d53271675733cfa2d1751";
};
};
- "is-installed-globally-0.1.0" = {
- name = "is-installed-globally";
- packageName = "is-installed-globally";
- version = "0.1.0";
+ "azure-asm-network-0.13.0" = {
+ name = "azure-asm-network";
+ packageName = "azure-asm-network";
+ version = "0.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz";
- sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80";
+ url = "https://registry.npmjs.org/azure-asm-network/-/azure-asm-network-0.13.0.tgz";
+ sha1 = "8d5d46b66b16c36dfc067f7c7c87bd2f42049c54";
};
};
- "is-invalid-path-0.1.0" = {
- name = "is-invalid-path";
- packageName = "is-invalid-path";
- version = "0.1.0";
+ "azure-asm-sb-0.10.1" = {
+ name = "azure-asm-sb";
+ packageName = "azure-asm-sb";
+ version = "0.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz";
- sha1 = "307a855b3cf1a938b44ea70d2c61106053714f34";
+ url = "https://registry.npmjs.org/azure-asm-sb/-/azure-asm-sb-0.10.1.tgz";
+ sha1 = "92487b24166041119714f66760ec1f36e8dc7222";
};
};
- "is-natural-number-4.0.1" = {
- name = "is-natural-number";
- packageName = "is-natural-number";
- version = "4.0.1";
+ "azure-asm-sql-0.10.1" = {
+ name = "azure-asm-sql";
+ packageName = "azure-asm-sql";
+ version = "0.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz";
- sha1 = "ab9d76e1db4ced51e35de0c72ebecf09f734cde8";
+ url = "https://registry.npmjs.org/azure-asm-sql/-/azure-asm-sql-0.10.1.tgz";
+ sha1 = "47728df19a6d4f1cc935235c69fa9cf048cc8f42";
};
};
- "is-npm-1.0.0" = {
- name = "is-npm";
- packageName = "is-npm";
- version = "1.0.0";
+ "azure-asm-storage-0.12.0" = {
+ name = "azure-asm-storage";
+ packageName = "azure-asm-storage";
+ version = "0.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz";
- sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4";
+ url = "https://registry.npmjs.org/azure-asm-storage/-/azure-asm-storage-0.12.0.tgz";
+ sha1 = "f5edf48d41d18a80eb14af6a72c1d6924214fdd3";
};
};
- "is-number-2.1.0" = {
- name = "is-number";
- packageName = "is-number";
- version = "2.1.0";
+ "azure-asm-subscription-0.10.1" = {
+ name = "azure-asm-subscription";
+ packageName = "azure-asm-subscription";
+ version = "0.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz";
- sha1 = "01fcbbb393463a548f2f466cce16dece49db908f";
+ url = "https://registry.npmjs.org/azure-asm-subscription/-/azure-asm-subscription-0.10.1.tgz";
+ sha1 = "917a5e87a04b69c0f5c29339fe910bb5e5e7a04c";
};
};
- "is-number-3.0.0" = {
- name = "is-number";
- packageName = "is-number";
- version = "3.0.0";
+ "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/is-number/-/is-number-3.0.0.tgz";
- sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
+ url = "https://registry.npmjs.org/azure-asm-trafficmanager/-/azure-asm-trafficmanager-0.10.3.tgz";
+ sha1 = "91e2e63d73869090613cd42ee38a3823e55f4447";
};
};
- "is-number-4.0.0" = {
- name = "is-number";
- packageName = "is-number";
- version = "4.0.0";
+ "azure-asm-website-0.10.7" = {
+ name = "azure-asm-website";
+ packageName = "azure-asm-website";
+ version = "0.10.7";
src = fetchurl {
- url = "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz";
- sha512 = "rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==";
+ url = "https://registry.npmjs.org/azure-asm-website/-/azure-asm-website-0.10.7.tgz";
+ sha512 = "h3OmXKKOLd4sbf4khrxqGTjspjqpKduKN9EWgEoIeNhMY+PVKrVEIMr3ZyKzmmy/8123MD+ip67wMqUKSTLtUA==";
};
};
- "is-obj-1.0.1" = {
- name = "is-obj";
- packageName = "is-obj";
- version = "1.0.1";
+ "azure-batch-3.2.2" = {
+ name = "azure-batch";
+ packageName = "azure-batch";
+ version = "3.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz";
- sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f";
+ url = "https://registry.npmjs.org/azure-batch/-/azure-batch-3.2.2.tgz";
+ sha512 = "IM5nUITXMgTFTF4avRxsz/oLcMXLSZEzpukulRRpO1emXBI4EgSIr0++hUo+AZ94MINE2C4DXgCDiQ9P0suYXw==";
};
};
- "is-object-1.0.1" = {
- name = "is-object";
- packageName = "is-object";
- version = "1.0.1";
+ "azure-common-0.9.20" = {
+ name = "azure-common";
+ packageName = "azure-common";
+ version = "0.9.20";
src = fetchurl {
- url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz";
- sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470";
+ url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.20.tgz";
+ sha512 = "0gxFOLV12poak+raLYAU4z9JAZEafYSo9LrS+7WlToOawb2Ye2BfHYAGfLBkQrAZbo/NHpJ28/IaiUZVqiZ4fQ==";
};
};
- "is-options-1.0.1" = {
- name = "is-options";
- packageName = "is-options";
- version = "1.0.1";
+ "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/is-options/-/is-options-1.0.1.tgz";
- sha512 = "2Xj8sA0zDrAcaoWfBiNmc6VPWAgKDpim0T3J9Djq7vbm1UjwbUWzeuLu/FwC46g3cBbAn0E5R0xwVtOobM6Xxg==";
+ url = "https://registry.npmjs.org/azure-gallery/-/azure-gallery-2.0.0-pre.18.tgz";
+ sha1 = "3cd4c5e4e0091551d6a5ee757af2354c8a36b3e6";
};
};
- "is-path-inside-1.0.1" = {
- name = "is-path-inside";
- packageName = "is-path-inside";
- version = "1.0.1";
+ "azure-graph-2.2.0" = {
+ name = "azure-graph";
+ packageName = "azure-graph";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz";
- sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036";
+ url = "https://registry.npmjs.org/azure-graph/-/azure-graph-2.2.0.tgz";
+ sha512 = "ab0LlM5Q3pcKm+V6F6yx2ShzGOTYMcmJvLdL3PQsC9hF+hrYsBdkTCdNZdlPBgrSB8jp5vzhmK83qHGRs14hHw==";
};
};
- "is-plain-object-2.0.4" = {
- name = "is-plain-object";
- packageName = "is-plain-object";
- version = "2.0.4";
+ "azure-keyvault-1.0.0" = {
+ name = "azure-keyvault";
+ packageName = "azure-keyvault";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
- sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
+ url = "https://registry.npmjs.org/azure-keyvault/-/azure-keyvault-1.0.0.tgz";
+ sha1 = "d630f98032aadbb5e72fb04d2da49b368e441c9e";
};
};
- "is-posix-bracket-0.1.1" = {
- name = "is-posix-bracket";
- packageName = "is-posix-bracket";
- version = "0.1.1";
+ "azure-monitoring-0.10.6" = {
+ name = "azure-monitoring";
+ packageName = "azure-monitoring";
+ version = "0.10.6";
src = fetchurl {
- url = "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz";
- sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4";
+ url = "https://registry.npmjs.org/azure-monitoring/-/azure-monitoring-0.10.6.tgz";
+ sha512 = "6HNA8VuC5qYvQMjcQt2/zlB7oyAJ7n6KGIYGstS6KS9Orux0peqxlrGPDeQRa4jDNq6ili83KiGc7RhWcgsE4Q==";
};
};
- "is-primitive-2.0.0" = {
- name = "is-primitive";
- packageName = "is-primitive";
- version = "2.0.0";
+ "azure-servicefabric-0.1.5" = {
+ name = "azure-servicefabric";
+ packageName = "azure-servicefabric";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz";
- sha1 = "207bab91638499c07b2adf240a41a87210034575";
+ url = "https://registry.npmjs.org/azure-servicefabric/-/azure-servicefabric-0.1.5.tgz";
+ sha1 = "bdc4b378292490ce77e788ee189f291ce5ae25a6";
};
};
- "is-promise-2.1.0" = {
- name = "is-promise";
- packageName = "is-promise";
- version = "2.1.0";
+ "azure-storage-2.10.1" = {
+ name = "azure-storage";
+ packageName = "azure-storage";
+ version = "2.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz";
- sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa";
+ url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.10.1.tgz";
+ sha512 = "rnFo1uMIPtilusRCpK91tfY3P4Q7qRsDNwriXdp+OeTIGkGt0cTxL4mhqYfNPYPK+WBQmBdGWhOk+iROM05dcw==";
};
};
- "is-redirect-1.0.0" = {
- name = "is-redirect";
- packageName = "is-redirect";
- version = "1.0.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/is-redirect/-/is-redirect-1.0.0.tgz";
- sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24";
+ url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
+ sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
};
};
- "is-retry-allowed-1.1.0" = {
- name = "is-retry-allowed";
- packageName = "is-retry-allowed";
- version = "1.1.0";
+ "babel-core-6.26.3" = {
+ name = "babel-core";
+ packageName = "babel-core";
+ version = "6.26.3";
src = fetchurl {
- url = "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz";
- sha1 = "11a060568b67339444033d0125a61a20d564fb34";
+ url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz";
+ sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==";
};
};
- "is-stream-1.1.0" = {
- name = "is-stream";
- packageName = "is-stream";
- version = "1.1.0";
+ "babel-generator-6.26.1" = {
+ name = "babel-generator";
+ packageName = "babel-generator";
+ version = "6.26.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
- sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
+ url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz";
+ sha512 = "HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==";
};
};
- "is-string-1.0.4" = {
- name = "is-string";
- packageName = "is-string";
- version = "1.0.4";
+ "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/is-string/-/is-string-1.0.4.tgz";
- sha1 = "cc3a9b69857d621e963725a24caeec873b826e64";
+ url = "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz";
+ sha1 = "39ff8313b75c8b65dceff1f31d383e0ff2a408a0";
};
};
- "is-typedarray-1.0.0" = {
- name = "is-typedarray";
- packageName = "is-typedarray";
- version = "1.0.0";
+ "babel-helpers-6.24.1" = {
+ name = "babel-helpers";
+ packageName = "babel-helpers";
+ version = "6.24.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
+ url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz";
+ sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2";
};
};
- "is-utf8-0.2.1" = {
- name = "is-utf8";
- packageName = "is-utf8";
- version = "0.2.1";
+ "babel-messages-6.23.0" = {
+ name = "babel-messages";
+ packageName = "babel-messages";
+ version = "6.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz";
- sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
+ url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz";
+ sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
};
};
- "is-valid-path-0.1.1" = {
- name = "is-valid-path";
- packageName = "is-valid-path";
- version = "0.1.1";
+ "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/is-valid-path/-/is-valid-path-0.1.1.tgz";
- sha1 = "110f9ff74c37f663e1ec7915eb451f2db93ac9df";
+ url = "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz";
+ sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946";
};
};
- "is-windows-1.0.2" = {
- name = "is-windows";
- packageName = "is-windows";
- version = "1.0.2";
+ "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/is-windows/-/is-windows-1.0.2.tgz";
- sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
+ url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz";
+ sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5";
};
};
- "isarray-0.0.1" = {
- name = "isarray";
- packageName = "isarray";
- version = "0.0.1";
+ "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/isarray/-/isarray-0.0.1.tgz";
- sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
+ url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz";
+ sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d";
};
};
- "isarray-1.0.0" = {
- name = "isarray";
- packageName = "isarray";
- version = "1.0.0";
+ "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/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
+ url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz";
+ sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06";
};
};
- "isexe-2.0.0" = {
- name = "isexe";
- packageName = "isexe";
- version = "2.0.0";
+ "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/isexe/-/isexe-2.0.0.tgz";
- sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
+ url = "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz";
+ sha1 = "840a028e7df460dfc3a2d29f0c0d91f6376e66a3";
};
};
- "isobject-2.1.0" = {
- name = "isobject";
- packageName = "isobject";
- version = "2.1.0";
+ "babel-polyfill-6.16.0" = {
+ name = "babel-polyfill";
+ packageName = "babel-polyfill";
+ version = "6.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
- sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
+ url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.16.0.tgz";
+ sha1 = "2d45021df87e26a374b6d4d1a9c65964d17f2422";
};
};
- "isobject-3.0.1" = {
- name = "isobject";
- packageName = "isobject";
- version = "3.0.1";
+ "babel-polyfill-6.26.0" = {
+ name = "babel-polyfill";
+ packageName = "babel-polyfill";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
- sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
+ url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz";
+ sha1 = "379937abc67d7895970adc621f284cd966cf2153";
};
};
- "isstream-0.1.2" = {
- name = "isstream";
- packageName = "isstream";
- version = "0.1.2";
+ "babel-register-6.26.0" = {
+ name = "babel-register";
+ packageName = "babel-register";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
- sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
+ url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz";
+ sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
};
};
- "isurl-1.0.0" = {
- name = "isurl";
- packageName = "isurl";
- version = "1.0.0";
+ "babel-runtime-6.26.0" = {
+ name = "babel-runtime";
+ packageName = "babel-runtime";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz";
- sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==";
+ url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
+ sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
};
};
- "iterators-0.1.0" = {
- name = "iterators";
- packageName = "iterators";
- version = "0.1.0";
+ "babel-template-6.26.0" = {
+ name = "babel-template";
+ packageName = "babel-template";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/iterators/-/iterators-0.1.0.tgz";
- sha1 = "d03f666ca4e6130138565997cacea54164203156";
+ url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz";
+ sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
};
};
- "jade-0.26.3" = {
- name = "jade";
- packageName = "jade";
- version = "0.26.3";
+ "babel-traverse-6.26.0" = {
+ name = "babel-traverse";
+ packageName = "babel-traverse";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz";
- sha1 = "8f10d7977d8d79f2f6ff862a81b0513ccb25686c";
+ url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz";
+ sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
};
};
- "js-yaml-3.12.0" = {
- name = "js-yaml";
- packageName = "js-yaml";
- version = "3.12.0";
+ "babel-types-6.26.0" = {
+ name = "babel-types";
+ packageName = "babel-types";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz";
- sha512 = "PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==";
+ url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz";
+ sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
};
};
- "jsbn-0.1.1" = {
- name = "jsbn";
- packageName = "jsbn";
- version = "0.1.1";
+ "babybird-0.0.1" = {
+ name = "babybird";
+ packageName = "babybird";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
- sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
+ url = "https://registry.npmjs.org/babybird/-/babybird-0.0.1.tgz";
+ sha1 = "da80c79c6d7441cdfec7c2ff2dcbd7c13ebdbea2";
};
};
- "json-refs-2.1.7" = {
- name = "json-refs";
- packageName = "json-refs";
- version = "2.1.7";
+ "babylon-6.18.0" = {
+ name = "babylon";
+ packageName = "babylon";
+ version = "6.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/json-refs/-/json-refs-2.1.7.tgz";
- sha1 = "b9eb01fe29f5ea3e92878f15aea10ad38b5acf89";
+ url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz";
+ sha512 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==";
};
};
- "json-schema-0.2.3" = {
- name = "json-schema";
- packageName = "json-schema";
- version = "0.2.3";
+ "babylon-7.0.0-beta.19" = {
+ name = "babylon";
+ packageName = "babylon";
+ version = "7.0.0-beta.19";
src = fetchurl {
- url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
- sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
+ url = "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.19.tgz";
+ sha512 = "Vg0C9s/REX6/WIXN37UKpv5ZhRi6A4pjHlpkE34+8/a6c2W1Q692n3hmc+SZG5lKRnaExLUbxtJ1SVT+KaCQ/A==";
};
};
- "json-schema-deref-sync-0.3.4" = {
- name = "json-schema-deref-sync";
- packageName = "json-schema-deref-sync";
- version = "0.3.4";
+ "backo2-1.0.2" = {
+ name = "backo2";
+ packageName = "backo2";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.3.4.tgz";
- sha512 = "4Ssj+1UGDJAzPIdTL1QW/rvHwWeuwC28gjbA0EjStLxVsalc+UPciKXxs3rhtr4gaGdIBojW/VmvC8B8bCQwcA==";
+ url = "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz";
+ sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947";
};
};
- "json-schema-traverse-0.3.1" = {
- name = "json-schema-traverse";
- packageName = "json-schema-traverse";
- version = "0.3.1";
+ "backoff-2.4.1" = {
+ name = "backoff";
+ packageName = "backoff";
+ version = "2.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz";
- sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340";
+ url = "https://registry.npmjs.org/backoff/-/backoff-2.4.1.tgz";
+ sha1 = "2f68c50e0dd789dbefe24200a62efb04d2456d68";
};
};
- "json-stringify-safe-5.0.1" = {
- name = "json-stringify-safe";
- packageName = "json-stringify-safe";
- version = "5.0.1";
+ "backoff-2.5.0" = {
+ name = "backoff";
+ packageName = "backoff";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
- sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
+ url = "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz";
+ sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f";
};
};
- "jsonfile-2.4.0" = {
- name = "jsonfile";
- packageName = "jsonfile";
- version = "2.4.0";
+ "balanced-match-1.0.0" = {
+ name = "balanced-match";
+ packageName = "balanced-match";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz";
- sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8";
+ url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
+ sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
};
};
- "jsprim-1.4.1" = {
- name = "jsprim";
- packageName = "jsprim";
- version = "1.4.1";
+ "base-0.11.2" = {
+ name = "base";
+ packageName = "base";
+ version = "0.11.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
- sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
+ url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
+ sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
};
};
- "k-bucket-3.3.1" = {
- name = "k-bucket";
- packageName = "k-bucket";
- version = "3.3.1";
+ "base62-0.1.1" = {
+ name = "base62";
+ packageName = "base62";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/k-bucket/-/k-bucket-3.3.1.tgz";
- sha512 = "kgwWqYT79rAahn4maIVTP8dIe+m1KulufWW+f1bB9DlZrRFiGpZ4iJOg2HUp4xJYBWONP3+rOPIWF/RXABU6mw==";
+ url = "https://registry.npmjs.org/base62/-/base62-0.1.1.tgz";
+ sha1 = "7b4174c2f94449753b11c2651c083da841a7b084";
};
};
- "k-bucket-4.0.1" = {
- name = "k-bucket";
- packageName = "k-bucket";
- version = "4.0.1";
+ "base64-arraybuffer-0.1.2" = {
+ name = "base64-arraybuffer";
+ packageName = "base64-arraybuffer";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/k-bucket/-/k-bucket-4.0.1.tgz";
- sha512 = "YvDpmY3waI999h1zZoW1rJ04fZrgZ+5PAlVmvwDHT6YO/Q1AOhdel07xsKy9eAvJjQ9xZV1wz3rXKqEfaWvlcQ==";
+ url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz";
+ sha1 = "474df4a9f2da24e05df3158c3b1db3c3cd46a154";
};
};
- "k-rpc-4.3.1" = {
- name = "k-rpc";
- packageName = "k-rpc";
- version = "4.3.1";
+ "base64-arraybuffer-0.1.5" = {
+ name = "base64-arraybuffer";
+ packageName = "base64-arraybuffer";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc/-/k-rpc-4.3.1.tgz";
- sha512 = "mgAJZeFYbpP0xzJzmS0TQTYoFI0sjy3GnKFhg8wyboL+KvWg2WLaA2Oy9PthLPx2Rxz4WeBMk4y3MSOrDJ95FA==";
+ url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz";
+ sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8";
};
};
- "k-rpc-socket-1.8.0" = {
- name = "k-rpc-socket";
- packageName = "k-rpc-socket";
- version = "1.8.0";
+ "base64-js-0.0.8" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "0.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc-socket/-/k-rpc-socket-1.8.0.tgz";
- sha512 = "f/9TynsO8YYjZ6JjNNtSSH7CJcIHcio1buy3zqByGxb/GX8AWLdL6FZEWTrN8V3/J7W4/E0ZTQQ+Jt2rVq7ELg==";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz";
+ sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978";
};
};
- "keypress-0.2.1" = {
- name = "keypress";
- packageName = "keypress";
- version = "0.2.1";
+ "base64-js-1.1.2" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz";
- sha1 = "1e80454250018dbad4c3fe94497d6e67b6269c77";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-1.1.2.tgz";
+ sha1 = "d6400cac1c4c660976d90d07a04351d89395f5e8";
};
};
- "kind-of-3.2.2" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "3.2.2";
+ "base64-js-1.2.0" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
- sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.0.tgz";
+ sha1 = "a39992d723584811982be5e290bb6a53d86700f1";
};
};
- "kind-of-4.0.0" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "4.0.0";
+ "base64-js-1.2.3" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "1.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
- sha1 = "20813df3d712928b207378691a45066fae72dd57";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.3.tgz";
+ sha512 = "MsAhsUW1GxCdgYSO6tAfZrNapmUKk7mWx/k5mFY/A1gBtkaCaNapTg+FExCw1r9yeaZhqx/xPg43xgTFH6KL5w==";
};
};
- "kind-of-5.1.0" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "5.1.0";
+ "base64-js-1.3.0" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
- sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz";
+ sha512 = "ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==";
};
};
- "kind-of-6.0.2" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "6.0.2";
+ "base64-url-1.2.1" = {
+ name = "base64-url";
+ packageName = "base64-url";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz";
- sha512 = "s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==";
+ url = "https://registry.npmjs.org/base64-url/-/base64-url-1.2.1.tgz";
+ sha1 = "199fd661702a0e7b7dcae6e0698bb089c52f6d78";
};
};
- "klaw-1.3.1" = {
- name = "klaw";
- packageName = "klaw";
- version = "1.3.1";
+ "base64id-0.1.0" = {
+ name = "base64id";
+ packageName = "base64id";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz";
- sha1 = "4088433b46b3b1ba259d78785d8e96f73ba02439";
+ url = "https://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz";
+ sha1 = "02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f";
};
};
- "last-one-wins-1.0.4" = {
- name = "last-one-wins";
- packageName = "last-one-wins";
- version = "1.0.4";
+ "base64id-1.0.0" = {
+ name = "base64id";
+ packageName = "base64id";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/last-one-wins/-/last-one-wins-1.0.4.tgz";
- sha1 = "c1bfd0cbcb46790ec9156b8d1aee8fcb86cda22a";
+ url = "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz";
+ sha1 = "47688cb99bb6804f0e06d3e763b1c32e57d8e6b6";
};
};
- "latest-version-3.1.0" = {
- name = "latest-version";
- packageName = "latest-version";
- version = "3.1.0";
+ "basic-auth-1.0.4" = {
+ name = "basic-auth";
+ packageName = "basic-auth";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz";
- sha1 = "a205383fea322b33b5ae3b18abee0dc2f356ee15";
+ url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.0.4.tgz";
+ sha1 = "030935b01de7c9b94a824b29f3fccb750d3a5290";
};
};
- "lazy-cache-1.0.4" = {
- name = "lazy-cache";
- packageName = "lazy-cache";
- version = "1.0.4";
+ "basic-auth-1.1.0" = {
+ name = "basic-auth";
+ packageName = "basic-auth";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz";
- sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e";
+ url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.1.0.tgz";
+ sha1 = "45221ee429f7ee1e5035be3f51533f1cdfd29884";
};
};
- "length-prefixed-message-3.0.3" = {
- name = "length-prefixed-message";
- packageName = "length-prefixed-message";
- version = "3.0.3";
+ "basic-auth-2.0.0" = {
+ name = "basic-auth";
+ packageName = "basic-auth";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/length-prefixed-message/-/length-prefixed-message-3.0.3.tgz";
- sha1 = "245474d69abc0614dca368dc35aa8074982a23ac";
+ url = "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.0.tgz";
+ sha1 = "015db3f353e02e56377755f962742e8981e7bbba";
};
};
- "lodash-3.10.1" = {
- name = "lodash";
- packageName = "lodash";
- version = "3.10.1";
+ "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/lodash/-/lodash-3.10.1.tgz";
- sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6";
+ url = "https://registry.npmjs.org/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz";
+ sha1 = "fdb0b43962ca7b40456a7c2bb48fe173da2d2122";
};
};
- "lodash-4.17.10" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.17.10";
+ "batch-0.5.3" = {
+ name = "batch";
+ packageName = "batch";
+ version = "0.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz";
- sha512 = "UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==";
+ url = "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz";
+ sha1 = "3f3414f380321743bfc1042f9a83ff1d5824d464";
};
};
- "lodash-compat-3.10.2" = {
- name = "lodash-compat";
- packageName = "lodash-compat";
- version = "3.10.2";
+ "batch-0.6.1" = {
+ name = "batch";
+ packageName = "batch";
+ version = "0.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash-compat/-/lodash-compat-3.10.2.tgz";
- sha1 = "c6940128a9d30f8e902cd2cf99fd0cba4ecfc183";
+ url = "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz";
+ sha1 = "dc34314f4e679318093fc760272525f94bf25c16";
};
};
- "lodash._arraypool-2.4.1" = {
- name = "lodash._arraypool";
- packageName = "lodash._arraypool";
- version = "2.4.1";
+ "bcrypt-2.0.1" = {
+ name = "bcrypt";
+ packageName = "bcrypt";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._arraypool/-/lodash._arraypool-2.4.1.tgz";
- sha1 = "e88eecb92e2bb84c9065612fd958a0719cd47f94";
+ url = "https://registry.npmjs.org/bcrypt/-/bcrypt-2.0.1.tgz";
+ sha512 = "DwB7WgJPdskbR+9Y3OTJtwRq09Lmm7Na6b+4ewvXjkD0nfNRi1OozxljHm5ETlDCBq9DTy04lQz+rj+T2ztIJg==";
};
};
- "lodash._basebind-2.4.1" = {
- name = "lodash._basebind";
- packageName = "lodash._basebind";
- version = "2.4.1";
+ "bcrypt-nodejs-0.0.3" = {
+ name = "bcrypt-nodejs";
+ packageName = "bcrypt-nodejs";
+ version = "0.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basebind/-/lodash._basebind-2.4.1.tgz";
- sha1 = "e940b9ebdd27c327e0a8dab1b55916c5341e9575";
+ url = "https://registry.npmjs.org/bcrypt-nodejs/-/bcrypt-nodejs-0.0.3.tgz";
+ sha1 = "c60917f26dc235661566c681061c303c2b28842b";
};
};
- "lodash._baseclone-2.4.1" = {
- name = "lodash._baseclone";
- packageName = "lodash._baseclone";
- version = "2.4.1";
+ "bcrypt-pbkdf-1.0.2" = {
+ name = "bcrypt-pbkdf";
+ packageName = "bcrypt-pbkdf";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-2.4.1.tgz";
- sha1 = "30f823e57e17e3735d383bd62b60b387543b4186";
+ url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
+ sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
};
};
- "lodash._basecreate-2.4.1" = {
- name = "lodash._basecreate";
- packageName = "lodash._basecreate";
- version = "2.4.1";
+ "bcryptjs-2.4.3" = {
+ name = "bcryptjs";
+ packageName = "bcryptjs";
+ version = "2.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-2.4.1.tgz";
- sha1 = "f8e6f5b578a9e34e541179b56b8eeebf4a287e08";
+ url = "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz";
+ sha1 = "9ab5627b93e60621ff7cdac5da9733027df1d0cb";
};
};
- "lodash._basecreatecallback-2.4.1" = {
- name = "lodash._basecreatecallback";
- packageName = "lodash._basecreatecallback";
- version = "2.4.1";
+ "beeper-1.1.1" = {
+ name = "beeper";
+ packageName = "beeper";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basecreatecallback/-/lodash._basecreatecallback-2.4.1.tgz";
- sha1 = "7d0b267649cb29e7a139d0103b7c11fae84e4851";
+ url = "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz";
+ sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809";
};
};
- "lodash._basecreatewrapper-2.4.1" = {
- name = "lodash._basecreatewrapper";
- packageName = "lodash._basecreatewrapper";
- version = "2.4.1";
+ "bencode-0.7.0" = {
+ name = "bencode";
+ packageName = "bencode";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basecreatewrapper/-/lodash._basecreatewrapper-2.4.1.tgz";
- sha1 = "4d31f2e7de7e134fbf2803762b8150b32519666f";
+ url = "https://registry.npmjs.org/bencode/-/bencode-0.7.0.tgz";
+ sha1 = "811ed647c0118945e41bb4bbbdea9a2c78a17083";
};
};
- "lodash._baseiteratee-4.7.0" = {
- name = "lodash._baseiteratee";
- packageName = "lodash._baseiteratee";
- version = "4.7.0";
+ "bencode-0.8.0" = {
+ name = "bencode";
+ packageName = "bencode";
+ version = "0.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._baseiteratee/-/lodash._baseiteratee-4.7.0.tgz";
- sha1 = "34a9b5543572727c3db2e78edae3c0e9e66bd102";
+ url = "https://registry.npmjs.org/bencode/-/bencode-0.8.0.tgz";
+ sha1 = "3143448e82b0fadc745633ecc2a5f8fa87932f19";
};
};
- "lodash._basetostring-4.12.0" = {
- name = "lodash._basetostring";
- packageName = "lodash._basetostring";
- version = "4.12.0";
+ "bencode-1.0.0" = {
+ name = "bencode";
+ packageName = "bencode";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-4.12.0.tgz";
- sha1 = "9327c9dc5158866b7fa4b9d42f4638e5766dd9df";
+ url = "https://registry.npmjs.org/bencode/-/bencode-1.0.0.tgz";
+ sha512 = "N+VOSP5MkoX+xgnp6Y056iCY5TmCZg9rgPNPQe0bIiXchxYFP4vs/Tf0dTdQ+qQhP7HM2gvfFq+sUVjQsGy5Zw==";
};
};
- "lodash._baseuniq-4.6.0" = {
- name = "lodash._baseuniq";
- packageName = "lodash._baseuniq";
- version = "4.6.0";
+ "bencode-2.0.0" = {
+ name = "bencode";
+ packageName = "bencode";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz";
- sha1 = "0ebb44e456814af7905c6212fa2c9b2d51b841e8";
+ url = "https://registry.npmjs.org/bencode/-/bencode-2.0.0.tgz";
+ sha512 = "wr2HwwrUpfB5c68zmAudOltC7rZ1G0+lQOcnuEcfIM3AWAVnB3rHI3nlgd/2CWTfQ3w3zagKt89zni/M+VLZ8g==";
};
};
- "lodash._createset-4.0.3" = {
- name = "lodash._createset";
- packageName = "lodash._createset";
- version = "4.0.3";
+ "better-assert-1.0.2" = {
+ name = "better-assert";
+ packageName = "better-assert";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.3.tgz";
- sha1 = "0f4659fbb09d75194fa9e2b88a6644d363c9fe26";
+ url = "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz";
+ sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522";
};
};
- "lodash._createwrapper-2.4.1" = {
- name = "lodash._createwrapper";
- packageName = "lodash._createwrapper";
- version = "2.4.1";
+ "better-curry-1.6.0" = {
+ name = "better-curry";
+ packageName = "better-curry";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._createwrapper/-/lodash._createwrapper-2.4.1.tgz";
- sha1 = "51d6957973da4ed556e37290d8c1a18c53de1607";
+ url = "https://registry.npmjs.org/better-curry/-/better-curry-1.6.0.tgz";
+ sha1 = "38f716b24c8cee07a262abc41c22c314e20e3869";
};
};
- "lodash._getarray-2.4.1" = {
- name = "lodash._getarray";
- packageName = "lodash._getarray";
- version = "2.4.1";
+ "biased-opener-0.2.8" = {
+ name = "biased-opener";
+ packageName = "biased-opener";
+ version = "0.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._getarray/-/lodash._getarray-2.4.1.tgz";
- sha1 = "faf1f7f810fa985a251c2187404481094839e5ee";
+ url = "https://registry.npmjs.org/biased-opener/-/biased-opener-0.2.8.tgz";
+ sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
};
};
- "lodash._isnative-2.4.1" = {
- name = "lodash._isnative";
- packageName = "lodash._isnative";
- version = "2.4.1";
+ "big-integer-1.6.34" = {
+ name = "big-integer";
+ packageName = "big-integer";
+ version = "1.6.34";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz";
- sha1 = "3ea6404b784a7be836c7b57580e1cdf79b14832c";
+ url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.34.tgz";
+ sha512 = "+w6B0Uo0ZvTSzDkXjoBCTNK0oe+aVL+yPi7kwGZm8hd8+Nj1AFPoxoq1Bl/mEu/G/ivOkUc1LRqVR0XeWFUzuA==";
};
};
- "lodash._maxpoolsize-2.4.1" = {
- name = "lodash._maxpoolsize";
- packageName = "lodash._maxpoolsize";
- version = "2.4.1";
+ "big.js-3.2.0" = {
+ name = "big.js";
+ packageName = "big.js";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._maxpoolsize/-/lodash._maxpoolsize-2.4.1.tgz";
- sha1 = "9d482f463b8e66afbe59c2c14edb117060172334";
+ url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz";
+ sha512 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==";
};
};
- "lodash._objecttypes-2.4.1" = {
- name = "lodash._objecttypes";
- packageName = "lodash._objecttypes";
- version = "2.4.1";
+ "bigspinner-3.1.0" = {
+ name = "bigspinner";
+ packageName = "bigspinner";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz";
- sha1 = "7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11";
+ url = "https://registry.npmjs.org/bigspinner/-/bigspinner-3.1.0.tgz";
+ sha1 = "dd3a862b2fedf66fee8471320069428d0d84427a";
};
};
- "lodash._releasearray-2.4.1" = {
- name = "lodash._releasearray";
- packageName = "lodash._releasearray";
- version = "2.4.1";
+ "bin-version-2.0.0" = {
+ name = "bin-version";
+ packageName = "bin-version";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._releasearray/-/lodash._releasearray-2.4.1.tgz";
- sha1 = "a6139630d76d1536b07ddc80962889b082f6a641";
+ url = "https://registry.npmjs.org/bin-version/-/bin-version-2.0.0.tgz";
+ sha1 = "2cc95d83b522bdef2e99978e76aeb5491c8114ff";
};
};
- "lodash._root-3.0.1" = {
- name = "lodash._root";
- packageName = "lodash._root";
- version = "3.0.1";
+ "bin-version-check-3.0.0" = {
+ name = "bin-version-check";
+ packageName = "bin-version-check";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz";
- sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692";
+ url = "https://registry.npmjs.org/bin-version-check/-/bin-version-check-3.0.0.tgz";
+ sha1 = "e24ebfa6b63cb0387c5fc174f86e5cc812ca7cc9";
};
};
- "lodash._setbinddata-2.4.1" = {
- name = "lodash._setbinddata";
- packageName = "lodash._setbinddata";
- version = "2.4.1";
+ "binary-0.3.0" = {
+ name = "binary";
+ packageName = "binary";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._setbinddata/-/lodash._setbinddata-2.4.1.tgz";
- sha1 = "f7c200cd1b92ef236b399eecf73c648d17aa94d2";
+ url = "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz";
+ sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79";
};
};
- "lodash._shimkeys-2.4.1" = {
- name = "lodash._shimkeys";
- packageName = "lodash._shimkeys";
- version = "2.4.1";
+ "binary-extensions-1.11.0" = {
+ name = "binary-extensions";
+ packageName = "binary-extensions";
+ version = "1.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz";
- sha1 = "6e9cc9666ff081f0b5a6c978b83e242e6949d203";
+ url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz";
+ sha1 = "46aa1751fb6a2f93ee5e689bb1087d4b14c6c205";
};
};
- "lodash._slice-2.4.1" = {
- name = "lodash._slice";
- packageName = "lodash._slice";
- version = "2.4.1";
+ "binary-search-1.3.4" = {
+ name = "binary-search";
+ packageName = "binary-search";
+ version = "1.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._slice/-/lodash._slice-2.4.1.tgz";
- sha1 = "745cf41a53597b18f688898544405efa2b06d90f";
+ url = "https://registry.npmjs.org/binary-search/-/binary-search-1.3.4.tgz";
+ sha512 = "dPxU/vZLnH0tEVjVPgi015oSwqu6oLfCeHywuFRhBE0yM0mYocvleTl8qsdM1YFhRzTRhM1+VzS8XLDVrHPopg==";
};
};
- "lodash._stringtopath-4.8.0" = {
- name = "lodash._stringtopath";
- packageName = "lodash._stringtopath";
- version = "4.8.0";
+ "binaryheap-0.0.3" = {
+ name = "binaryheap";
+ packageName = "binaryheap";
+ version = "0.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._stringtopath/-/lodash._stringtopath-4.8.0.tgz";
- sha1 = "941bcf0e64266e5fc1d66fed0a6959544c576824";
+ url = "https://registry.npmjs.org/binaryheap/-/binaryheap-0.0.3.tgz";
+ sha1 = "0d6136c84e9f1a5a90c0b97178c3e00df59820d6";
};
};
- "lodash.assign-2.4.1" = {
- name = "lodash.assign";
- packageName = "lodash.assign";
- version = "2.4.1";
+ "bindings-1.2.1" = {
+ name = "bindings";
+ packageName = "bindings";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-2.4.1.tgz";
- sha1 = "84c39596dd71181a97b0652913a7c9675e49b1aa";
+ url = "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz";
+ sha1 = "14ad6113812d2d37d72e67b4cacb4bb726505f11";
};
};
- "lodash.bind-2.4.1" = {
- name = "lodash.bind";
- packageName = "lodash.bind";
- version = "2.4.1";
+ "bindings-1.3.0" = {
+ name = "bindings";
+ packageName = "bindings";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.bind/-/lodash.bind-2.4.1.tgz";
- sha1 = "5d19fa005c8c4d236faf4742c7b7a1fcabe29267";
+ url = "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz";
+ sha512 = "DpLh5EzMR2kzvX1KIlVC0VkC3iZtHKTgdtZ0a3pglBZdaQFjt5S9g9xd1lE+YvXyfd6mtCeRnrUfOLYiTMlNSw==";
};
};
- "lodash.clonedeep-2.4.1" = {
- name = "lodash.clonedeep";
- packageName = "lodash.clonedeep";
- version = "2.4.1";
+ "binstall-1.2.0" = {
+ name = "binstall";
+ packageName = "binstall";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-2.4.1.tgz";
- sha1 = "f29203b40b12fee0a45d3631648259bebabc7868";
+ url = "https://registry.npmjs.org/binstall/-/binstall-1.2.0.tgz";
+ sha1 = "6b2c0f580b9e3c607f50ef7a22a54ce9fdc8d933";
};
};
- "lodash.debounce-4.0.8" = {
- name = "lodash.debounce";
- packageName = "lodash.debounce";
- version = "4.0.8";
+ "bitfield-0.1.0" = {
+ name = "bitfield";
+ packageName = "bitfield";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz";
- sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af";
+ url = "https://registry.npmjs.org/bitfield/-/bitfield-0.1.0.tgz";
+ sha1 = "b05d8b5f0d09f2df35a9db3b3a62d3808c46c457";
};
};
- "lodash.foreach-2.4.1" = {
- name = "lodash.foreach";
- packageName = "lodash.foreach";
- version = "2.4.1";
+ "bitfield-2.0.0" = {
+ name = "bitfield";
+ packageName = "bitfield";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-2.4.1.tgz";
- sha1 = "fe3fc3a34c86c94cab6f9522560282741e016309";
+ url = "https://registry.npmjs.org/bitfield/-/bitfield-2.0.0.tgz";
+ sha512 = "4xM4DYejOHQ/qWBfeqBXNA4mJ12PwcOibFYnH1kYh5U9BHciCqEJBqGNVnMJXUhm8mflujNRLSv7IiVQxovgjw==";
};
};
- "lodash.forown-2.4.1" = {
- name = "lodash.forown";
- packageName = "lodash.forown";
- version = "2.4.1";
+ "bitfield-rle-2.2.1" = {
+ name = "bitfield-rle";
+ packageName = "bitfield-rle";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.forown/-/lodash.forown-2.4.1.tgz";
- sha1 = "78b41eafe1405fa966459ea4193fd502d084524b";
+ url = "https://registry.npmjs.org/bitfield-rle/-/bitfield-rle-2.2.1.tgz";
+ sha512 = "wrDhHe7LUkqaytxgbsFXoemzHRv6e8FrVNWWsQCgUfmuVYW6ke44hoGc9VdpjgfIsJ/ejmCFA8wDtDqACNAvyw==";
};
};
- "lodash.get-4.4.2" = {
- name = "lodash.get";
- packageName = "lodash.get";
- version = "4.4.2";
+ "bittorrent-dht-6.4.2" = {
+ name = "bittorrent-dht";
+ packageName = "bittorrent-dht";
+ version = "6.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz";
- sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99";
+ url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-6.4.2.tgz";
+ sha1 = "8b40f8cee6bea87f2b34fd2ae0bd367a8b1247a6";
};
};
- "lodash.identity-2.4.1" = {
- name = "lodash.identity";
- packageName = "lodash.identity";
- version = "2.4.1";
+ "bittorrent-dht-7.10.0" = {
+ name = "bittorrent-dht";
+ packageName = "bittorrent-dht";
+ version = "7.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.identity/-/lodash.identity-2.4.1.tgz";
- sha1 = "6694cffa65fef931f7c31ce86c74597cf560f4f1";
+ url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-7.10.0.tgz";
+ sha512 = "fvb6M58Ceiv/S94nu6zeaiMoJvUYOeIqRbgaClm+kJTzCAqJPtAR/31pXNYB5iEReOoKqQB5zY33gY0W6ZRWQQ==";
};
};
- "lodash.isarray-2.4.1" = {
- name = "lodash.isarray";
- packageName = "lodash.isarray";
- version = "2.4.1";
+ "bittorrent-dht-8.4.0" = {
+ name = "bittorrent-dht";
+ packageName = "bittorrent-dht";
+ version = "8.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-2.4.1.tgz";
- sha1 = "b52a326c1f62f6d7da73a31d5401df6ef44f0fa1";
+ url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-8.4.0.tgz";
+ sha512 = "FRe/+MYBePev7Yb+BXSclkVuDxb/w+gUbao6nVHYQRaKO7aXE+ARRlL3phqm6Rdhw5CRVoLMbLd49nxmCuUhUQ==";
};
};
- "lodash.isequal-4.5.0" = {
- name = "lodash.isequal";
- packageName = "lodash.isequal";
- version = "4.5.0";
+ "bittorrent-peerid-1.3.0" = {
+ name = "bittorrent-peerid";
+ packageName = "bittorrent-peerid";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz";
- sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0";
+ url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.0.tgz";
+ sha512 = "SYd5H3RbN1ex+TrWAKXkEkASFWxAR7Tk6iLt9tfAT9ehBvZb/Y3AQDVRVJynlrixcWpnmsLYKI7tkRWgp7ORoQ==";
};
};
- "lodash.isfunction-2.4.1" = {
- name = "lodash.isfunction";
- packageName = "lodash.isfunction";
- version = "2.4.1";
+ "bittorrent-protocol-3.0.1" = {
+ name = "bittorrent-protocol";
+ packageName = "bittorrent-protocol";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-2.4.1.tgz";
- sha1 = "2cfd575c73e498ab57e319b77fa02adef13a94d1";
+ url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-3.0.1.tgz";
+ sha512 = "hnvOzAu9u+2H0OLLL5byoFdz6oz5f3bx5f7R+ItUohTHMq9TgUhEJfcjo7xWtQHSKOVciYWwYTJ4EjczF5RX2A==";
};
};
- "lodash.isobject-2.4.1" = {
- name = "lodash.isobject";
- packageName = "lodash.isobject";
- version = "2.4.1";
+ "bittorrent-tracker-7.7.0" = {
+ name = "bittorrent-tracker";
+ packageName = "bittorrent-tracker";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz";
- sha1 = "5a2e47fe69953f1ee631a7eba1fe64d2d06558f5";
+ url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-7.7.0.tgz";
+ sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c";
};
};
- "lodash.keys-2.4.1" = {
- name = "lodash.keys";
- packageName = "lodash.keys";
- version = "2.4.1";
+ "bittorrent-tracker-9.10.1" = {
+ name = "bittorrent-tracker";
+ packageName = "bittorrent-tracker";
+ version = "9.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz";
- sha1 = "48dea46df8ff7632b10d706b8acb26591e2b3727";
+ url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.10.1.tgz";
+ sha512 = "n5zTL/g6Wt0rb2EnkiyiaGYhth7I/N0/xMqGUpvGX/7g1scDGBVPhJnXR8lfp3/OMj681fv40o4q/otECMtZSA==";
};
};
- "lodash.noop-2.4.1" = {
- name = "lodash.noop";
- packageName = "lodash.noop";
- version = "2.4.1";
+ "bl-0.8.2" = {
+ name = "bl";
+ packageName = "bl";
+ version = "0.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.noop/-/lodash.noop-2.4.1.tgz";
- sha1 = "4fb54f816652e5ae10e8f72f717a388c7326538a";
+ url = "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz";
+ sha1 = "c9b6bca08d1bc2ea00fc8afb4f1a5fd1e1c66e4e";
};
};
- "lodash.support-2.4.1" = {
- name = "lodash.support";
- packageName = "lodash.support";
- version = "2.4.1";
+ "bl-1.0.3" = {
+ name = "bl";
+ packageName = "bl";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.support/-/lodash.support-2.4.1.tgz";
- sha1 = "320e0b67031673c28d7a2bb5d9e0331a45240515";
+ url = "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz";
+ sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e";
};
};
- "lodash.throttle-4.1.1" = {
- name = "lodash.throttle";
- packageName = "lodash.throttle";
- version = "4.1.1";
+ "bl-1.1.2" = {
+ name = "bl";
+ packageName = "bl";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz";
- sha1 = "c23e91b710242ac70c37f1e1cda9274cc39bf2f4";
+ url = "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz";
+ sha1 = "fdca871a99713aa00d19e3bbba41c44787a65398";
};
};
- "lodash.uniqby-4.5.0" = {
- name = "lodash.uniqby";
- packageName = "lodash.uniqby";
- version = "4.5.0";
+ "bl-1.2.2" = {
+ name = "bl";
+ packageName = "bl";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.5.0.tgz";
- sha1 = "a3a17bbf62eeb6240f491846e97c1c4e2a5e1e21";
+ url = "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz";
+ sha512 = "e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==";
};
};
- "log-symbols-2.2.0" = {
- name = "log-symbols";
- packageName = "log-symbols";
- version = "2.2.0";
+ "blake2b-2.1.3" = {
+ name = "blake2b";
+ packageName = "blake2b";
+ version = "2.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz";
- sha512 = "VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==";
+ url = "https://registry.npmjs.org/blake2b/-/blake2b-2.1.3.tgz";
+ sha512 = "pkDss4xFVbMb4270aCyGD3qLv92314Et+FsKzilCLxDz5DuZ2/1g3w4nmBbu6nKApPspnjG7JcwTjGZnduB1yg==";
};
};
- "longest-1.0.1" = {
- name = "longest";
- packageName = "longest";
- version = "1.0.1";
+ "blake2b-wasm-1.1.7" = {
+ name = "blake2b-wasm";
+ packageName = "blake2b-wasm";
+ version = "1.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz";
- sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097";
+ url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.7.tgz";
+ sha512 = "oFIHvXhlz/DUgF0kq5B1CqxIDjIJwh9iDeUUGQUcvgiGz7Wdw03McEO7CfLBy7QKGdsydcMCgO9jFNBAFCtFcA==";
};
};
- "lowercase-keys-1.0.1" = {
- name = "lowercase-keys";
- packageName = "lowercase-keys";
- version = "1.0.1";
+ "blob-0.0.2" = {
+ name = "blob";
+ packageName = "blob";
+ version = "0.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz";
- sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==";
+ url = "https://registry.npmjs.org/blob/-/blob-0.0.2.tgz";
+ sha1 = "b89562bd6994af95ba1e812155536333aa23cf24";
};
};
- "lru-2.0.1" = {
- name = "lru";
- packageName = "lru";
- version = "2.0.1";
+ "blob-0.0.4" = {
+ name = "blob";
+ packageName = "blob";
+ version = "0.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/lru/-/lru-2.0.1.tgz";
- sha1 = "f979871e162e3f5ca254be46844c53d4c5364544";
+ url = "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz";
+ sha1 = "bcf13052ca54463f30f9fc7e95b9a47630a94921";
};
};
- "lru-3.1.0" = {
- name = "lru";
- packageName = "lru";
- version = "3.1.0";
+ "blob-to-buffer-1.2.8" = {
+ name = "blob-to-buffer";
+ packageName = "blob-to-buffer";
+ version = "1.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/lru/-/lru-3.1.0.tgz";
- sha1 = "ea7fb8546d83733396a13091d76cfeb4c06837d5";
+ url = "https://registry.npmjs.org/blob-to-buffer/-/blob-to-buffer-1.2.8.tgz";
+ sha512 = "re0AIxakF504MgeMtIyJkVcZ8T5aUxtp/QmTMlmjyb3P44E1BEv5x3LATBGApWAJATyXHtkXRD+gWTmeyYLiQA==";
};
};
- "lru-cache-2.7.3" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "2.7.3";
+ "block-stream-0.0.9" = {
+ name = "block-stream";
+ packageName = "block-stream";
+ version = "0.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
- sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
+ url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz";
+ sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
};
};
- "lru-cache-4.1.3" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "4.1.3";
+ "block-stream2-1.1.0" = {
+ name = "block-stream2";
+ packageName = "block-stream2";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz";
- sha512 = "fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==";
+ url = "https://registry.npmjs.org/block-stream2/-/block-stream2-1.1.0.tgz";
+ sha1 = "c738e3a91ba977ebb5e1fef431e13ca11d8639e2";
};
};
- "make-dir-1.3.0" = {
- name = "make-dir";
- packageName = "make-dir";
- version = "1.3.0";
+ "bluebird-2.9.34" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "2.9.34";
src = fetchurl {
- url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz";
- sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==";
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.34.tgz";
+ sha1 = "2f7b4ec80216328a9fddebdf69c8d4942feff7d8";
};
};
- "map-cache-0.2.2" = {
- name = "map-cache";
- packageName = "map-cache";
- version = "0.2.2";
+ "bluebird-2.9.9" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "2.9.9";
src = fetchurl {
- url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
- sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.9.tgz";
+ sha1 = "61a26904d43d7f6b19dff7ed917dbc92452ad6d3";
};
};
- "map-stream-0.1.0" = {
- name = "map-stream";
- packageName = "map-stream";
- version = "0.1.0";
+ "bluebird-3.5.1" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "3.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz";
- sha1 = "e56aa94c4c8055a16404a0674b78f215f7c8e194";
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz";
+ sha512 = "MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==";
};
};
- "map-visit-1.0.0" = {
- name = "map-visit";
- packageName = "map-visit";
- version = "1.0.0";
+ "blueimp-md5-2.10.0" = {
+ name = "blueimp-md5";
+ packageName = "blueimp-md5";
+ version = "2.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
- sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
+ url = "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.10.0.tgz";
+ sha512 = "EkNUOi7tpV68TqjpiUz9D9NcT8um2+qtgntmMbi5UKssVX2m/2PLqotcric0RE63pB3HPN/fjf3cKHN2ufGSUQ==";
};
};
- "math-random-1.0.1" = {
- name = "math-random";
- packageName = "math-random";
- version = "1.0.1";
+ "bn.js-4.11.8" = {
+ name = "bn.js";
+ packageName = "bn.js";
+ version = "4.11.8";
src = fetchurl {
- url = "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz";
- sha1 = "8b3aac588b8a66e4975e3cdea67f7bb329601fac";
+ url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz";
+ sha512 = "ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==";
};
};
- "md5-2.2.1" = {
- name = "md5";
- packageName = "md5";
- version = "2.2.1";
+ "bncode-0.2.3" = {
+ name = "bncode";
+ packageName = "bncode";
+ version = "0.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz";
- sha1 = "53ab38d5fe3c8891ba465329ea23fac0540126f9";
+ url = "https://registry.npmjs.org/bncode/-/bncode-0.2.3.tgz";
+ sha1 = "37f851dc8e47188a83fbc0f6fa4775cacc9a3296";
};
};
- "media-typer-0.3.0" = {
- name = "media-typer";
- packageName = "media-typer";
- version = "0.3.0";
+ "bncode-0.5.3" = {
+ name = "bncode";
+ packageName = "bncode";
+ version = "0.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz";
- sha1 = "8710d7af0aa626f8fffa1ce00168545263255748";
+ url = "https://registry.npmjs.org/bncode/-/bncode-0.5.3.tgz";
+ sha1 = "e16661697452d436bf9886238cc791b08d66a61a";
};
};
- "memory-cache-0.1.6" = {
- name = "memory-cache";
- packageName = "memory-cache";
- version = "0.1.6";
+ "body-0.1.0" = {
+ name = "body";
+ packageName = "body";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/memory-cache/-/memory-cache-0.1.6.tgz";
- sha1 = "2ed9933ed7a8c718249be7366f7ca8749acf8a24";
+ url = "https://registry.npmjs.org/body/-/body-0.1.0.tgz";
+ sha1 = "e714fe28cd8848aa34cdf2c9f242bbe2e15d1cd8";
};
};
- "memory-pager-1.1.0" = {
- name = "memory-pager";
- packageName = "memory-pager";
- version = "1.1.0";
+ "body-parser-1.12.4" = {
+ name = "body-parser";
+ packageName = "body-parser";
+ version = "1.12.4";
src = fetchurl {
- url = "https://registry.npmjs.org/memory-pager/-/memory-pager-1.1.0.tgz";
- sha512 = "Mf9OHV/Y7h6YWDxTzX/b4ZZ4oh9NSXblQL8dtPCOomOtZciEHxePR78+uHFLLlsk01A6jVHhHsQZZ/WcIPpnzg==";
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.12.4.tgz";
+ sha1 = "090700c4ba28862a8520ef378395fdee5f61c229";
};
};
- "menu-string-1.2.0" = {
- name = "menu-string";
- packageName = "menu-string";
- version = "1.2.0";
+ "body-parser-1.13.3" = {
+ name = "body-parser";
+ packageName = "body-parser";
+ version = "1.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/menu-string/-/menu-string-1.2.0.tgz";
- sha512 = "b6RTFmSlLjs20Qninl0Wq6dOstjpaPM2pQ63li06pLVTGIIoxjuMRbOmYbGW8l73/AiGNoCK9yXfdfIpLIURPQ==";
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.13.3.tgz";
+ sha1 = "c08cf330c3358e151016a05746f13f029c97fa97";
};
};
- "merkle-tree-stream-3.0.3" = {
- name = "merkle-tree-stream";
- packageName = "merkle-tree-stream";
- version = "3.0.3";
+ "body-parser-1.18.2" = {
+ name = "body-parser";
+ packageName = "body-parser";
+ version = "1.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/merkle-tree-stream/-/merkle-tree-stream-3.0.3.tgz";
- sha1 = "f8a064760d37e7978ad5f9f6d3c119a494f57081";
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz";
+ sha1 = "87678a19d84b47d859b83199bd59bce222b10454";
};
};
- "metalsmith-2.3.0" = {
- name = "metalsmith";
- packageName = "metalsmith";
- version = "2.3.0";
+ "body-parser-1.18.3" = {
+ name = "body-parser";
+ packageName = "body-parser";
+ version = "1.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/metalsmith/-/metalsmith-2.3.0.tgz";
- sha1 = "833afbb5a2a6385e2d9ae3d935e39e33eaea5231";
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz";
+ sha1 = "5b292198ffdd553b3a0f20ded0592b956955c8b4";
};
};
- "methods-1.1.2" = {
- name = "methods";
- packageName = "methods";
- version = "1.1.2";
+ "bonjour-3.5.0" = {
+ name = "bonjour";
+ packageName = "bonjour";
+ version = "3.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz";
- sha1 = "5529a4d67654134edcc5266656835b0f851afcee";
+ url = "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz";
+ sha1 = "8e890a183d8ee9a2393b3844c691a42bcf7bc9f5";
};
};
- "micromatch-2.3.11" = {
- name = "micromatch";
- packageName = "micromatch";
- version = "2.3.11";
+ "boolbase-1.0.0" = {
+ name = "boolbase";
+ packageName = "boolbase";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz";
- sha1 = "86677c97d1720b363431d04d0d15293bd38c1565";
+ url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz";
+ sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
};
};
- "micromatch-3.1.10" = {
- name = "micromatch";
- packageName = "micromatch";
- version = "3.1.10";
+ "boom-0.3.8" = {
+ name = "boom";
+ packageName = "boom";
+ version = "0.3.8";
src = fetchurl {
- url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
- sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
+ url = "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz";
+ sha1 = "c8cdb041435912741628c044ecc732d1d17c09ea";
};
};
- "mime-1.3.4" = {
- name = "mime";
- packageName = "mime";
- version = "1.3.4";
+ "boom-2.10.1" = {
+ name = "boom";
+ packageName = "boom";
+ version = "2.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz";
- sha1 = "115f9e3b6b3daf2959983cb38f149a2d40eb5d53";
+ url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
+ sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
};
};
- "mime-1.4.1" = {
- name = "mime";
- packageName = "mime";
- version = "1.4.1";
+ "boom-4.3.1" = {
+ name = "boom";
+ packageName = "boom";
+ version = "4.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz";
- sha512 = "KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==";
+ url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz";
+ sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31";
};
};
- "mime-1.6.0" = {
- name = "mime";
- packageName = "mime";
- version = "1.6.0";
+ "boom-5.2.0" = {
+ name = "boom";
+ packageName = "boom";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz";
- sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
+ url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz";
+ sha512 = "Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==";
};
};
- "mime-2.3.1" = {
- name = "mime";
- packageName = "mime";
- version = "2.3.1";
+ "bottleneck-1.5.3" = {
+ name = "bottleneck";
+ packageName = "bottleneck";
+ version = "1.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-2.3.1.tgz";
- sha512 = "OEUllcVoydBHGN1z84yfQDimn58pZNNNXgZlHXSboxMlFvgI6MXSWpWKpFRra7H1HxpVhHTkrghfRW49k6yjeg==";
+ url = "https://registry.npmjs.org/bottleneck/-/bottleneck-1.5.3.tgz";
+ sha1 = "55fa64920d9670087d44150404525d59f9511c20";
};
};
- "mime-db-1.35.0" = {
- name = "mime-db";
- packageName = "mime-db";
- version = "1.35.0";
+ "bower-1.8.4" = {
+ name = "bower";
+ packageName = "bower";
+ version = "1.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz";
- sha512 = "JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==";
+ url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
+ sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
};
};
- "mime-types-2.1.19" = {
- name = "mime-types";
- packageName = "mime-types";
- version = "2.1.19";
+ "bower-endpoint-parser-0.2.1" = {
+ name = "bower-endpoint-parser";
+ packageName = "bower-endpoint-parser";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz";
- sha512 = "P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw==";
+ url = "https://registry.npmjs.org/bower-endpoint-parser/-/bower-endpoint-parser-0.2.1.tgz";
+ sha1 = "8c4010a2900cdab07ea5d38f0bd03e9bbccef90f";
};
};
- "mimic-fn-1.2.0" = {
- name = "mimic-fn";
- packageName = "mimic-fn";
- version = "1.2.0";
+ "bower-json-0.6.0" = {
+ name = "bower-json";
+ packageName = "bower-json";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz";
- sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==";
+ url = "https://registry.npmjs.org/bower-json/-/bower-json-0.6.0.tgz";
+ sha1 = "326579b23c33e4ea828e4763c55cd81fd7650329";
};
};
- "min-document-2.19.0" = {
- name = "min-document";
- packageName = "min-document";
- version = "2.19.0";
+ "bower-logger-0.2.1" = {
+ name = "bower-logger";
+ packageName = "bower-logger";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz";
- sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685";
+ url = "https://registry.npmjs.org/bower-logger/-/bower-logger-0.2.1.tgz";
+ sha1 = "0c1817c48063a88d96cc3d516c55e57fff5d9ecb";
};
};
- "minimatch-0.3.0" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "0.3.0";
+ "boxen-1.3.0" = {
+ name = "boxen";
+ packageName = "boxen";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz";
- sha1 = "275d8edaac4f1bb3326472089e7949c8394699dd";
+ url = "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz";
+ sha512 = "TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==";
};
};
- "minimatch-3.0.4" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "3.0.4";
+ "bplist-creator-0.0.6" = {
+ name = "bplist-creator";
+ packageName = "bplist-creator";
+ version = "0.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
- sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
+ url = "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.6.tgz";
+ sha1 = "fef069bee85975b2ddcc2264aaa7c50dc17a3c7e";
};
};
- "minimist-0.0.8" = {
- name = "minimist";
- packageName = "minimist";
- version = "0.0.8";
+ "bplist-creator-0.0.7" = {
+ name = "bplist-creator";
+ packageName = "bplist-creator";
+ version = "0.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
- sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
+ url = "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz";
+ sha1 = "37df1536092824b87c42f957b01344117372ae45";
};
};
- "minimist-1.2.0" = {
- name = "minimist";
- packageName = "minimist";
- version = "1.2.0";
+ "bplist-parser-0.1.1" = {
+ name = "bplist-parser";
+ packageName = "bplist-parser";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz";
- sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
+ url = "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz";
+ sha1 = "d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6";
};
};
- "minipass-2.3.3" = {
- name = "minipass";
- packageName = "minipass";
- version = "2.3.3";
+ "brace-expansion-1.1.11" = {
+ name = "brace-expansion";
+ packageName = "brace-expansion";
+ version = "1.1.11";
src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz";
- sha512 = "/jAn9/tEX4gnpyRATxgHEOV6xbcyxgT7iUnxo9Y3+OB0zX00TgKIv/2FZCf5brBbICcwbLqVv2ImjvWWrQMSYw==";
+ url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
+ sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
};
};
- "minizlib-1.1.0" = {
- name = "minizlib";
- packageName = "minizlib";
- version = "1.1.0";
+ "braces-0.1.5" = {
+ name = "braces";
+ packageName = "braces";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz";
- sha512 = "4T6Ur/GctZ27nHfpt9THOdRZNgyJ9FZchYO1ceg5S8Q3DNLCKYy44nCZzgCJgcvx2UM8czmqak5BCxJMrq37lA==";
+ url = "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz";
+ sha1 = "c085711085291d8b75fdd74eab0f8597280711e6";
};
};
- "mirror-folder-3.0.0" = {
- name = "mirror-folder";
- packageName = "mirror-folder";
- version = "3.0.0";
+ "braces-1.8.5" = {
+ name = "braces";
+ packageName = "braces";
+ version = "1.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-3.0.0.tgz";
- sha512 = "fh6wDXcSpFoKY7ZPHnEv1+xjLOS7tlkEpTvl4Y6ZsT0HNjIaYg6ktq9ng8MPthFruunS8D/3GnPeaWhoQD3X9g==";
+ url = "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz";
+ sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7";
};
};
- "mixin-deep-1.3.1" = {
- name = "mixin-deep";
- packageName = "mixin-deep";
- version = "1.3.1";
+ "braces-2.3.2" = {
+ name = "braces";
+ packageName = "braces";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz";
- sha512 = "8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==";
+ url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz";
+ sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==";
};
};
- "mkdirp-0.3.0" = {
- name = "mkdirp";
- packageName = "mkdirp";
- version = "0.3.0";
+ "broadway-0.3.6" = {
+ name = "broadway";
+ packageName = "broadway";
+ version = "0.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz";
- sha1 = "1bbf5ab1ba827af23575143490426455f481fe1e";
+ url = "https://registry.npmjs.org/broadway/-/broadway-0.3.6.tgz";
+ sha1 = "7dbef068b954b7907925fd544963b578a902ba7a";
};
};
- "mkdirp-0.5.1" = {
- name = "mkdirp";
- packageName = "mkdirp";
- version = "0.5.1";
+ "brorand-1.1.0" = {
+ name = "brorand";
+ packageName = "brorand";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
- sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
+ url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz";
+ sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
};
};
- "mocha-2.5.3" = {
- name = "mocha";
- packageName = "mocha";
- version = "2.5.3";
+ "browser-launcher2-0.4.6" = {
+ name = "browser-launcher2";
+ packageName = "browser-launcher2";
+ version = "0.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-2.5.3.tgz";
- sha1 = "161be5bdeb496771eb9b35745050b622b5aefc58";
+ url = "https://registry.npmjs.org/browser-launcher2/-/browser-launcher2-0.4.6.tgz";
+ sha1 = "51598408a13f4c9c5b20eba44554b2c0b0ae4074";
};
};
- "mpath-0.2.1" = {
- name = "mpath";
- packageName = "mpath";
- version = "0.2.1";
+ "browser-pack-6.1.0" = {
+ name = "browser-pack";
+ packageName = "browser-pack";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mpath/-/mpath-0.2.1.tgz";
- sha1 = "3a4e829359801de96309c27a6b2e102e89f9e96e";
+ url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz";
+ sha512 = "erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==";
};
};
- "ms-0.7.1" = {
- name = "ms";
- packageName = "ms";
- version = "0.7.1";
+ "browser-resolve-1.11.3" = {
+ name = "browser-resolve";
+ packageName = "browser-resolve";
+ version = "1.11.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz";
- sha1 = "9cd13c03adbff25b65effde7ce864ee952017098";
+ url = "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz";
+ sha512 = "exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==";
};
};
- "ms-2.0.0" = {
- name = "ms";
- packageName = "ms";
- version = "2.0.0";
+ "browser-stdout-1.3.1" = {
+ name = "browser-stdout";
+ packageName = "browser-stdout";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
+ url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz";
+ sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==";
};
};
- "multer-1.3.1" = {
- name = "multer";
- packageName = "multer";
- version = "1.3.1";
+ "browserify-13.3.0" = {
+ name = "browserify";
+ packageName = "browserify";
+ version = "13.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/multer/-/multer-1.3.1.tgz";
- sha512 = "JHdEoxkA/5NgZRo91RNn4UT+HdcJV9XUo01DTkKC7vo1erNIngtuaw9Y0WI8RdTlyi+wMIbunflhghzVLuGJyw==";
+ url = "https://registry.npmjs.org/browserify/-/browserify-13.3.0.tgz";
+ sha1 = "b5a9c9020243f0c70e4675bec8223bc627e415ce";
};
};
- "multi-random-access-2.1.1" = {
- name = "multi-random-access";
- packageName = "multi-random-access";
- version = "2.1.1";
+ "browserify-14.4.0" = {
+ name = "browserify";
+ packageName = "browserify";
+ version = "14.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/multi-random-access/-/multi-random-access-2.1.1.tgz";
- sha1 = "6462f1b204109ccc644601650110a828443d66e2";
+ url = "https://registry.npmjs.org/browserify/-/browserify-14.4.0.tgz";
+ sha1 = "089a3463af58d0e48d8cd4070b3f74654d5abca9";
};
};
- "multicast-dns-7.0.0" = {
- name = "multicast-dns";
- packageName = "multicast-dns";
- version = "7.0.0";
+ "browserify-aes-1.2.0" = {
+ name = "browserify-aes";
+ packageName = "browserify-aes";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.0.0.tgz";
- sha512 = "BqB5TtIXHo+8gN33N1CA1clsvPsAJlnc6D49SzfQA0xq75cxj15g2y9NaRdf4x2u4v1P66PBC+Wg6YgPO5Bc/g==";
+ url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz";
+ sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==";
};
};
- "multicb-1.2.2" = {
- name = "multicb";
- packageName = "multicb";
- version = "1.2.2";
+ "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/multicb/-/multicb-1.2.2.tgz";
- sha512 = "PZM4dhYFmCF6uZGWpEmoPMUqJBywS9IcAgybT2GmSpYI1BvGvoWSdbio+ik+q/YD2vodhvslESWIS3NnkKYdqQ==";
+ url = "https://registry.npmjs.org/browserify-cache-api/-/browserify-cache-api-3.0.1.tgz";
+ sha1 = "96247e853f068fd6e0d45cc73f0bb2cd9778ef02";
};
};
- "multimatch-2.1.0" = {
- name = "multimatch";
- packageName = "multimatch";
- version = "2.1.0";
+ "browserify-cipher-1.0.1" = {
+ name = "browserify-cipher";
+ packageName = "browserify-cipher";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz";
- sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b";
+ url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz";
+ sha512 = "sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==";
};
};
- "multistream-2.1.1" = {
- name = "multistream";
- packageName = "multistream";
- version = "2.1.1";
+ "browserify-des-1.0.2" = {
+ name = "browserify-des";
+ packageName = "browserify-des";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/multistream/-/multistream-2.1.1.tgz";
- sha512 = "xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==";
+ url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz";
+ sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==";
};
};
- "mute-stream-0.0.5" = {
- name = "mute-stream";
- packageName = "mute-stream";
- version = "0.0.5";
+ "browserify-incremental-3.1.1" = {
+ name = "browserify-incremental";
+ packageName = "browserify-incremental";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz";
- sha1 = "8fbfabb0a98a253d3184331f9e8deb7372fac6c0";
+ url = "https://registry.npmjs.org/browserify-incremental/-/browserify-incremental-3.1.1.tgz";
+ sha1 = "0713cb7587247a632a9f08cf1bd169b878b62a8a";
};
};
- "mute-stream-0.0.7" = {
- name = "mute-stream";
- packageName = "mute-stream";
- version = "0.0.7";
+ "browserify-mime-1.2.9" = {
+ name = "browserify-mime";
+ packageName = "browserify-mime";
+ version = "1.2.9";
src = fetchurl {
- url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz";
- sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab";
+ url = "https://registry.npmjs.org/browserify-mime/-/browserify-mime-1.2.9.tgz";
+ sha1 = "aeb1af28de6c0d7a6a2ce40adb68ff18422af31f";
};
};
- "mutexify-1.2.0" = {
- name = "mutexify";
- packageName = "mutexify";
- version = "1.2.0";
+ "browserify-package-json-1.0.1" = {
+ name = "browserify-package-json";
+ packageName = "browserify-package-json";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mutexify/-/mutexify-1.2.0.tgz";
- sha512 = "oprzxd2zhfrJqEuB98qc1dRMMonClBQ57UPDjnbcrah4orEMTq1jq3+AcdFe5ePzdbJXI7zmdhfftIdMnhYFoQ==";
+ url = "https://registry.npmjs.org/browserify-package-json/-/browserify-package-json-1.0.1.tgz";
+ sha1 = "98dde8aa5c561fd6d3fe49bbaa102b74b396fdea";
};
};
- "nan-2.10.0" = {
- name = "nan";
- packageName = "nan";
- version = "2.10.0";
+ "browserify-rsa-4.0.1" = {
+ name = "browserify-rsa";
+ packageName = "browserify-rsa";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz";
- sha512 = "bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==";
+ url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz";
+ sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
};
};
- "nanoassert-1.1.0" = {
- name = "nanoassert";
- packageName = "nanoassert";
- version = "1.1.0";
+ "browserify-sign-4.0.4" = {
+ name = "browserify-sign";
+ packageName = "browserify-sign";
+ version = "4.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz";
- sha1 = "4f3152e09540fde28c76f44b19bbcd1d5a42478d";
+ url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz";
+ sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
};
};
- "nanobus-4.3.3" = {
- name = "nanobus";
- packageName = "nanobus";
- version = "4.3.3";
+ "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/nanobus/-/nanobus-4.3.3.tgz";
- sha512 = "4/uzl+LkMGoVv/9eMzH2QFvefmlJErT0KR7EmuYbmht2QvxSEqTjhFFOZ/KHE6chH58fKL3njrOcEwbYV0h9Yw==";
+ url = "https://registry.npmjs.org/browserify-transform-tools/-/browserify-transform-tools-1.7.0.tgz";
+ sha1 = "83e277221f63259bed2e7eb2a283a970a501f4c4";
};
};
- "nanomatch-1.2.13" = {
- name = "nanomatch";
- packageName = "nanomatch";
- version = "1.2.13";
+ "browserify-zlib-0.1.4" = {
+ name = "browserify-zlib";
+ packageName = "browserify-zlib";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz";
- sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==";
+ url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz";
+ sha1 = "bb35f8a519f600e0fa6b8485241c979d0141fb2d";
};
};
- "nanoscheduler-1.0.3" = {
- name = "nanoscheduler";
- packageName = "nanoscheduler";
- version = "1.0.3";
+ "browserify-zlib-0.2.0" = {
+ name = "browserify-zlib";
+ packageName = "browserify-zlib";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/nanoscheduler/-/nanoscheduler-1.0.3.tgz";
- sha512 = "jBbrF3qdU9321r8n9X7yu18DjP31Do2ItJm3mWrt90wJTrnDO+HXpoV7ftaUglAtjgj9s+OaCxGufbvx6pvbEQ==";
+ url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
+ sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==";
};
};
- "nanotiming-7.3.1" = {
- name = "nanotiming";
- packageName = "nanotiming";
- version = "7.3.1";
+ "bson-0.1.8" = {
+ name = "bson";
+ packageName = "bson";
+ version = "0.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/nanotiming/-/nanotiming-7.3.1.tgz";
- sha512 = "l3lC7v/PfOuRWQa8vV29Jo6TG10wHtnthLElFXs4Te4Aas57Fo4n1Q8LH9n+NDh9riOzTVvb2QNBhTS4JUKNjw==";
+ url = "https://registry.npmjs.org/bson/-/bson-0.1.8.tgz";
+ sha1 = "cf34fdcff081a189b589b4b3e5e9309cd6506c81";
};
};
- "native-promise-only-0.8.1" = {
- name = "native-promise-only";
- packageName = "native-promise-only";
- version = "0.8.1";
+ "buffer-3.6.0" = {
+ name = "buffer";
+ packageName = "buffer";
+ version = "3.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/native-promise-only/-/native-promise-only-0.8.1.tgz";
- sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11";
+ url = "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz";
+ sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb";
};
};
- "ncp-1.0.1" = {
- name = "ncp";
- packageName = "ncp";
- version = "1.0.1";
+ "buffer-4.9.1" = {
+ name = "buffer";
+ packageName = "buffer";
+ version = "4.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz";
- sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246";
+ url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz";
+ sha1 = "6d1bb601b07a4efced97094132093027c95bc298";
};
};
- "neat-input-1.8.0" = {
- name = "neat-input";
- packageName = "neat-input";
- version = "1.8.0";
+ "buffer-5.2.0" = {
+ name = "buffer";
+ packageName = "buffer";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/neat-input/-/neat-input-1.8.0.tgz";
- sha512 = "9LsyX7NcQBOT0/VEthxOCpYlKXgo0UZeGlMSx/a2SKFkE4ZiU/wTUBoF9brQKtKspmBZyLnXqDiktsbopEb0Tg==";
+ url = "https://registry.npmjs.org/buffer/-/buffer-5.2.0.tgz";
+ sha512 = "nUJyfChH7PMJy75eRDCCKtszSEFokUNXC1hNVSe+o+VdcgvDPLs20k3v8UXI8ruRYAJiYtyRea8mYyqPxoHWDw==";
};
};
- "neat-log-2.4.0" = {
- name = "neat-log";
- packageName = "neat-log";
- version = "2.4.0";
+ "buffer-alloc-1.2.0" = {
+ name = "buffer-alloc";
+ packageName = "buffer-alloc";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/neat-log/-/neat-log-2.4.0.tgz";
- sha512 = "5Gb0J17bqRxKBfgetrYCZav7kpFgunDhFq0i+kEq5Kn36Cuw4IskIl3yd+/P8jCcAzaKrQ7mrb+p6r/NP5esWA==";
+ url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz";
+ sha512 = "CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==";
};
};
- "neat-spinner-1.0.0" = {
- name = "neat-spinner";
- packageName = "neat-spinner";
- version = "1.0.0";
+ "buffer-alloc-unsafe-1.1.0" = {
+ name = "buffer-alloc-unsafe";
+ packageName = "buffer-alloc-unsafe";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/neat-spinner/-/neat-spinner-1.0.0.tgz";
- sha512 = "+T6UtYItDTE1L30g/nLRjP55dFlvldrzCRsn4CrcNHIbhg5JUe0hnOx1DHFViysUC7I1cevBQVjdGJ9ZftY9DA==";
+ url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz";
+ sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==";
};
};
- "neat-tasks-1.1.1" = {
- name = "neat-tasks";
- packageName = "neat-tasks";
- version = "1.1.1";
+ "buffer-crc32-0.1.1" = {
+ name = "buffer-crc32";
+ packageName = "buffer-crc32";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/neat-tasks/-/neat-tasks-1.1.1.tgz";
- sha512 = "U8HkIv90/lrdNlHVp63PoF3FeuQUvJ6toMX6InqRqpBmQq9iukZRAnq/yCE4Ii6WHZRYa6DEiTH/EGFTZ0rIGg==";
+ url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.1.1.tgz";
+ sha1 = "7e110dc9953908ab7c32acdc70c9f945b1cbc526";
};
};
- "needle-2.2.2" = {
- name = "needle";
- packageName = "needle";
- version = "2.2.2";
+ "buffer-crc32-0.2.1" = {
+ name = "buffer-crc32";
+ packageName = "buffer-crc32";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/needle/-/needle-2.2.2.tgz";
- sha512 = "mW7W8dKuVYefCpNzE3Z7xUmPI9wSrSL/1qH31YGMxmSOAnjatS3S9Zv3cmiHrhx3Jkp1SrWWBdOFXjfF48Uq3A==";
+ url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.1.tgz";
+ sha1 = "be3e5382fc02b6d6324956ac1af98aa98b08534c";
};
};
- "nets-3.2.0" = {
- name = "nets";
- packageName = "nets";
- version = "3.2.0";
+ "buffer-crc32-0.2.13" = {
+ name = "buffer-crc32";
+ packageName = "buffer-crc32";
+ version = "0.2.13";
src = fetchurl {
- url = "https://registry.npmjs.org/nets/-/nets-3.2.0.tgz";
- sha1 = "d511fbab7af11da013f21b97ee91747d33852d38";
+ url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz";
+ sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242";
};
};
- "network-address-1.1.2" = {
- name = "network-address";
- packageName = "network-address";
- version = "1.1.2";
+ "buffer-equal-0.0.1" = {
+ name = "buffer-equal";
+ packageName = "buffer-equal";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/network-address/-/network-address-1.1.2.tgz";
- sha1 = "4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e";
+ url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz";
+ sha1 = "91bc74b11ea405bc916bc6aa908faafa5b4aac4b";
};
};
- "next-tick-1.0.0" = {
- name = "next-tick";
- packageName = "next-tick";
+ "buffer-equal-1.0.0" = {
+ name = "buffer-equal";
+ packageName = "buffer-equal";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz";
- sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c";
+ url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz";
+ sha1 = "59616b498304d556abd466966b22eeda3eca5fbe";
};
};
- "node-gyp-build-3.4.0" = {
- name = "node-gyp-build";
- packageName = "node-gyp-build";
- version = "3.4.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/node-gyp-build/-/node-gyp-build-3.4.0.tgz";
- sha512 = "YoviGBJYGrPdLOKDIQB0sKxuKy/EEsxzooNkOZak4vSTKT/qH0Pa6dj3t1MJjEQGsefih61IyHDmO1WW7xOFfw==";
+ url = "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz";
+ sha1 = "f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819";
};
};
- "nodemon-1.18.3" = {
- name = "nodemon";
- packageName = "nodemon";
- version = "1.18.3";
+ "buffer-equals-1.0.4" = {
+ name = "buffer-equals";
+ packageName = "buffer-equals";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.3.tgz";
- sha512 = "XdVfAjGlDKU2nqoGgycxTndkJ5fdwvWJ/tlMGk2vHxMZBrSPVh86OM6z7viAv8BBJWjMgeuYQBofzr6LUoi+7g==";
+ url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz";
+ sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
};
};
- "nopt-1.0.10" = {
- name = "nopt";
- packageName = "nopt";
- version = "1.0.10";
+ "buffer-fill-1.0.0" = {
+ name = "buffer-fill";
+ packageName = "buffer-fill";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
- sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
+ url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz";
+ sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c";
};
};
- "nopt-3.0.6" = {
- name = "nopt";
- packageName = "nopt";
- version = "3.0.6";
+ "buffer-from-0.1.2" = {
+ name = "buffer-from";
+ packageName = "buffer-from";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
- sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
+ url = "https://registry.npmjs.org/buffer-from/-/buffer-from-0.1.2.tgz";
+ sha512 = "RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==";
};
};
- "nopt-4.0.1" = {
- name = "nopt";
- packageName = "nopt";
- version = "4.0.1";
+ "buffer-from-1.1.1" = {
+ name = "buffer-from";
+ packageName = "buffer-from";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
- sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
+ url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
+ sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
};
};
- "normalize-path-2.1.1" = {
- name = "normalize-path";
- packageName = "normalize-path";
- version = "2.1.1";
+ "buffer-indexof-1.1.1" = {
+ name = "buffer-indexof";
+ packageName = "buffer-indexof";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
- sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
+ url = "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz";
+ sha512 = "4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==";
};
};
- "npm-bundled-1.0.4" = {
- name = "npm-bundled";
- packageName = "npm-bundled";
- version = "1.0.4";
+ "buffer-xor-1.0.3" = {
+ name = "buffer-xor";
+ packageName = "buffer-xor";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.4.tgz";
- sha512 = "FLIrRxfuX2EOA9krlthXp8lyFR5vW21zNu6ORrfWGD5ZYWTqx3tOCUwsPUSuzPdUBLxLD7bwPkG3YfgWSfqOtg==";
+ url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz";
+ sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
};
};
- "npm-conf-1.1.3" = {
- name = "npm-conf";
- packageName = "npm-conf";
- version = "1.1.3";
+ "buffercursor-0.0.12" = {
+ name = "buffercursor";
+ packageName = "buffercursor";
+ version = "0.0.12";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz";
- sha512 = "Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==";
+ url = "https://registry.npmjs.org/buffercursor/-/buffercursor-0.0.12.tgz";
+ sha1 = "78a9a7f4343ae7d820a8999acc80de591e25a779";
};
};
- "npm-packlist-1.1.11" = {
- name = "npm-packlist";
- packageName = "npm-packlist";
- version = "1.1.11";
+ "buffers-0.1.1" = {
+ name = "buffers";
+ packageName = "buffers";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.11.tgz";
- sha512 = "CxKlZ24urLkJk+9kCm48RTQ7L4hsmgSVzEk0TLGPzzyuFxD7VNgy5Sl24tOLMzQv773a/NeJ1ce1DKeacqffEA==";
+ url = "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz";
+ sha1 = "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb";
};
};
- "npm-run-path-2.0.2" = {
- name = "npm-run-path";
- packageName = "npm-run-path";
- version = "2.0.2";
+ "bufferutil-2.0.1" = {
+ name = "bufferutil";
+ packageName = "bufferutil";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
- sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
+ url = "https://registry.npmjs.org/bufferutil/-/bufferutil-2.0.1.tgz";
+ sha1 = "8de37f5a300730c305fc3edd9f93348ee8a46288";
};
};
- "npmlog-4.1.2" = {
- name = "npmlog";
- packageName = "npmlog";
- version = "4.1.2";
+ "bufferutil-4.0.0" = {
+ name = "bufferutil";
+ packageName = "bufferutil";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz";
- sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==";
+ url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.0.tgz";
+ sha512 = "jpnqMVLo7sqfUY2W92RC4jjj9TuiOSkjB0k43TxPcrBSntZwXUOl8Krfd3eVEdApuScpSTwYKntm/dXU2T8gnw==";
};
};
- "number-is-nan-1.0.1" = {
- name = "number-is-nan";
- packageName = "number-is-nan";
+ "bufferview-1.0.1" = {
+ name = "bufferview";
+ packageName = "bufferview";
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/bufferview/-/bufferview-1.0.1.tgz";
+ sha1 = "7afd74a45f937fa422a1d338c08bbfdc76cd725d";
};
};
- "oauth-sign-0.8.2" = {
- name = "oauth-sign";
- packageName = "oauth-sign";
- version = "0.8.2";
+ "bufrw-1.2.1" = {
+ name = "bufrw";
+ packageName = "bufrw";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
- sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
+ url = "https://registry.npmjs.org/bufrw/-/bufrw-1.2.1.tgz";
+ sha1 = "93f222229b4f5f5e2cd559236891407f9853663b";
};
};
- "object-assign-3.0.0" = {
- name = "object-assign";
- packageName = "object-assign";
- version = "3.0.0";
+ "buildmail-2.0.0" = {
+ name = "buildmail";
+ packageName = "buildmail";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz";
- sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2";
+ url = "https://registry.npmjs.org/buildmail/-/buildmail-2.0.0.tgz";
+ sha1 = "f0b7b0a59e9a4a1b5066bbfa051d248f3832eece";
};
};
- "object-assign-4.1.1" = {
- name = "object-assign";
- packageName = "object-assign";
- version = "4.1.1";
+ "buildmail-4.0.1" = {
+ name = "buildmail";
+ packageName = "buildmail";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
- sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
+ url = "https://registry.npmjs.org/buildmail/-/buildmail-4.0.1.tgz";
+ sha1 = "877f7738b78729871c9a105e3b837d2be11a7a72";
};
};
- "object-copy-0.1.0" = {
- name = "object-copy";
- packageName = "object-copy";
- version = "0.1.0";
+ "builtin-modules-1.1.1" = {
+ name = "builtin-modules";
+ packageName = "builtin-modules";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
- sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
+ url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz";
+ sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f";
};
};
- "object-visit-1.0.1" = {
- name = "object-visit";
- packageName = "object-visit";
- version = "1.0.1";
+ "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/object-visit/-/object-visit-1.0.1.tgz";
- sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
+ url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
+ sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
};
};
- "object.omit-2.0.1" = {
- name = "object.omit";
- packageName = "object.omit";
- version = "2.0.1";
+ "builtins-1.0.3" = {
+ name = "builtins";
+ packageName = "builtins";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz";
- sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa";
+ url = "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz";
+ sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
};
};
- "object.pick-1.3.0" = {
- name = "object.pick";
- packageName = "object.pick";
- version = "1.3.0";
+ "bulk-write-stream-1.1.4" = {
+ name = "bulk-write-stream";
+ packageName = "bulk-write-stream";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
- sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
+ url = "https://registry.npmjs.org/bulk-write-stream/-/bulk-write-stream-1.1.4.tgz";
+ sha512 = "GtKwd/4etuk1hNeprXoESBO1RSeRYJMXKf+O0qHmWdUomLT8ysNEfX/4bZFXr3BK6eukpHiEnhY2uMtEHDM2ng==";
};
};
- "on-finished-2.2.1" = {
- name = "on-finished";
- packageName = "on-finished";
- version = "2.2.1";
+ "bunyan-1.5.1" = {
+ name = "bunyan";
+ packageName = "bunyan";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/on-finished/-/on-finished-2.2.1.tgz";
- sha1 = "5c85c1cc36299f78029653f667f27b6b99ebc029";
+ url = "https://registry.npmjs.org/bunyan/-/bunyan-1.5.1.tgz";
+ sha1 = "5f6e7d44c43b952f56b0f41309e3ab12391b4e2d";
};
};
- "on-finished-2.3.0" = {
- name = "on-finished";
- packageName = "on-finished";
- version = "2.3.0";
+ "bunyan-1.8.12" = {
+ name = "bunyan";
+ packageName = "bunyan";
+ version = "1.8.12";
src = fetchurl {
- url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz";
- sha1 = "20f1336481b083cd75337992a16971aa2d906947";
+ url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz";
+ sha1 = "f150f0f6748abdd72aeae84f04403be2ef113797";
};
};
- "once-1.4.0" = {
- name = "once";
- packageName = "once";
- version = "1.4.0";
+ "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/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
+ url = "https://registry.npmjs.org/bunyan-syslog-udp/-/bunyan-syslog-udp-0.1.0.tgz";
+ sha1 = "fbfaee03a81cd2a95abc18f92c99f2bb87e2429c";
};
};
- "onetime-1.1.0" = {
- name = "onetime";
- packageName = "onetime";
- version = "1.1.0";
+ "busboy-0.2.14" = {
+ name = "busboy";
+ packageName = "busboy";
+ version = "0.2.14";
src = fetchurl {
- url = "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz";
- sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789";
+ url = "https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz";
+ sha1 = "6c2a622efcf47c57bbbe1e2a9c37ad36c7925453";
};
};
- "onetime-2.0.1" = {
- name = "onetime";
- packageName = "onetime";
- version = "2.0.1";
+ "byline-5.0.0" = {
+ name = "byline";
+ packageName = "byline";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz";
- sha1 = "067428230fd67443b2794b22bba528b6867962d4";
+ url = "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz";
+ sha1 = "741c5216468eadc457b03410118ad77de8c1ddb1";
};
};
- "optimist-0.6.1" = {
- name = "optimist";
- packageName = "optimist";
- version = "0.6.1";
+ "byte-size-4.0.3" = {
+ name = "byte-size";
+ packageName = "byte-size";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz";
- sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686";
+ url = "https://registry.npmjs.org/byte-size/-/byte-size-4.0.3.tgz";
+ sha512 = "JGC3EV2bCzJH/ENSh3afyJrH4vwxbHTuO5ljLoI5+2iJOcEpMgP8T782jH9b5qGxf2mSUIp1lfGnfKNrRHpvVg==";
};
};
- "optparse-1.0.5" = {
- name = "optparse";
- packageName = "optparse";
- version = "1.0.5";
+ "bytebuffer-3.5.5" = {
+ name = "bytebuffer";
+ packageName = "bytebuffer";
+ version = "3.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/optparse/-/optparse-1.0.5.tgz";
- sha1 = "75e75a96506611eb1c65ba89018ff08a981e2c16";
+ url = "https://registry.npmjs.org/bytebuffer/-/bytebuffer-3.5.5.tgz";
+ sha1 = "7a6faf1a13514b083f1fcf9541c4c9bfbe7e7fd3";
};
};
- "ora-1.4.0" = {
- name = "ora";
- packageName = "ora";
- version = "1.4.0";
+ "bytes-0.1.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ora/-/ora-1.4.0.tgz";
- sha512 = "iMK1DOQxzzh2MBlVsU42G80mnrvUhqsMh74phHtDlrcTZPK0pH6o7l7DRshK+0YsxDyEuaOkziVdvM3T0QTzpw==";
+ url = "https://registry.npmjs.org/bytes/-/bytes-0.1.0.tgz";
+ sha1 = "c574812228126d6369d1576925a8579db3f8e5a2";
};
};
- "os-homedir-1.0.2" = {
- name = "os-homedir";
- packageName = "os-homedir";
- version = "1.0.2";
+ "bytes-0.2.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
+ url = "https://registry.npmjs.org/bytes/-/bytes-0.2.0.tgz";
+ sha1 = "aad33ec14e3dc2ca74e8e7d451f9ba053ad4f7a0";
};
};
- "os-tmpdir-1.0.2" = {
- name = "os-tmpdir";
- packageName = "os-tmpdir";
- version = "1.0.2";
+ "bytes-0.2.1" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
- sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
+ url = "https://registry.npmjs.org/bytes/-/bytes-0.2.1.tgz";
+ sha1 = "555b08abcb063f8975905302523e4cd4ffdfdf31";
};
};
- "osenv-0.1.5" = {
- name = "osenv";
- packageName = "osenv";
- version = "0.1.5";
+ "bytes-1.0.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
- sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
+ url = "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz";
+ sha1 = "3569ede8ba34315fab99c3e92cb04c7220de1fa8";
};
};
- "p-finally-1.0.0" = {
- name = "p-finally";
- packageName = "p-finally";
- version = "1.0.0";
+ "bytes-2.1.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
- sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
+ url = "https://registry.npmjs.org/bytes/-/bytes-2.1.0.tgz";
+ sha1 = "ac93c410e2ffc9cc7cf4b464b38289067f5e47b4";
};
};
- "package-json-4.0.1" = {
- name = "package-json";
- packageName = "package-json";
- version = "4.0.1";
+ "bytes-2.4.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz";
- sha1 = "8869a0401253661c4c4ca3da6c2121ed555f5eed";
+ url = "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz";
+ sha1 = "7d97196f9d5baf7f6935e25985549edd2a6c2339";
};
};
- "parse-glob-3.0.4" = {
- name = "parse-glob";
- packageName = "parse-glob";
- version = "3.0.4";
+ "bytes-3.0.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz";
- sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c";
+ url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz";
+ sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
};
};
- "parse-headers-2.0.1" = {
- name = "parse-headers";
- packageName = "parse-headers";
- version = "2.0.1";
+ "bytewise-1.1.0" = {
+ name = "bytewise";
+ packageName = "bytewise";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.1.tgz";
- sha1 = "6ae83a7aa25a9d9b700acc28698cd1f1ed7e9536";
+ url = "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz";
+ sha1 = "1d13cbff717ae7158094aa881b35d081b387253e";
};
};
- "parseurl-1.3.2" = {
- name = "parseurl";
- packageName = "parseurl";
- version = "1.3.2";
+ "bytewise-core-1.2.3" = {
+ name = "bytewise-core";
+ packageName = "bytewise-core";
+ version = "1.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz";
- sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3";
+ url = "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz";
+ sha1 = "3fb410c7e91558eb1ab22a82834577aa6bd61d42";
};
};
- "pascalcase-0.1.1" = {
- name = "pascalcase";
- packageName = "pascalcase";
- version = "0.1.1";
+ "cacache-10.0.4" = {
+ name = "cacache";
+ packageName = "cacache";
+ version = "10.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
- sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
+ url = "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz";
+ sha512 = "Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==";
};
};
- "path-dirname-1.0.2" = {
- name = "path-dirname";
- packageName = "path-dirname";
- version = "1.0.2";
+ "cacache-11.2.0" = {
+ name = "cacache";
+ packageName = "cacache";
+ version = "11.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
- sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
+ url = "https://registry.npmjs.org/cacache/-/cacache-11.2.0.tgz";
+ sha512 = "IFWl6lfK6wSeYCHUXh+N1lY72UDrpyrYQJNIVQf48paDuWbv5RbAtJYf/4gUQFObTCHZwdZ5sI8Iw7nqwP6nlQ==";
};
};
- "path-is-absolute-1.0.1" = {
- name = "path-is-absolute";
- packageName = "path-is-absolute";
+ "cache-base-1.0.1" = {
+ name = "cache-base";
+ packageName = "cache-base";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
+ url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
+ sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==";
};
};
- "path-is-inside-1.0.2" = {
- name = "path-is-inside";
- packageName = "path-is-inside";
- version = "1.0.2";
+ "cacheable-request-2.1.4" = {
+ name = "cacheable-request";
+ packageName = "cacheable-request";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz";
- sha1 = "365417dede44430d1c11af61027facf074bdfc53";
+ url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz";
+ sha1 = "0d808801b6342ad33c91df9d0b44dc09b91e5c3d";
};
};
- "path-key-2.0.1" = {
- name = "path-key";
- packageName = "path-key";
- version = "2.0.1";
+ "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/path-key/-/path-key-2.0.1.tgz";
- sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
+ url = "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.1.tgz";
+ sha1 = "d09c4b52800aa4c078e2dd81a869aac90d2e54e7";
};
};
- "path-loader-1.0.6" = {
- name = "path-loader";
- packageName = "path-loader";
- version = "1.0.6";
+ "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/path-loader/-/path-loader-1.0.6.tgz";
- sha512 = "vAtndQsgWS0s2JOjT+NWtJyP5Gc940SlQQ55j0+qSj/SJQ4dmt/L8gLeW9wJF0rM32qEts+3NDvKjs6TUxwFtg==";
+ url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz";
+ sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b";
};
};
- "path-to-regexp-1.7.0" = {
- name = "path-to-regexp";
- packageName = "path-to-regexp";
- version = "1.7.0";
+ "callback-stream-1.1.0" = {
+ name = "callback-stream";
+ packageName = "callback-stream";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.7.0.tgz";
- sha1 = "59fde0f435badacba103a84e9d3bc64e96b9937d";
+ url = "https://registry.npmjs.org/callback-stream/-/callback-stream-1.1.0.tgz";
+ sha1 = "4701a51266f06e06eaa71fc17233822d875f4908";
};
};
- "pause-stream-0.0.11" = {
- name = "pause-stream";
- packageName = "pause-stream";
- version = "0.0.11";
+ "caller-0.0.1" = {
+ name = "caller";
+ packageName = "caller";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz";
- sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445";
+ url = "https://registry.npmjs.org/caller/-/caller-0.0.1.tgz";
+ sha1 = "f37a1d6ea10e829d94721ae29a90bb4fb52ab767";
};
};
- "pend-1.2.0" = {
- name = "pend";
- packageName = "pend";
- version = "1.2.0";
+ "caller-callsite-2.0.0" = {
+ name = "caller-callsite";
+ packageName = "caller-callsite";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz";
- sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50";
+ url = "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz";
+ sha1 = "847e0fce0a223750a9a027c54b33731ad3154134";
};
};
- "performance-now-2.1.0" = {
- name = "performance-now";
- packageName = "performance-now";
- version = "2.1.0";
+ "caller-id-0.1.0" = {
+ name = "caller-id";
+ packageName = "caller-id";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz";
- sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
+ url = "https://registry.npmjs.org/caller-id/-/caller-id-0.1.0.tgz";
+ sha1 = "59bdac0893d12c3871408279231f97458364f07b";
};
};
- "pify-2.3.0" = {
- name = "pify";
- packageName = "pify";
- version = "2.3.0";
+ "caller-path-0.1.0" = {
+ name = "caller-path";
+ packageName = "caller-path";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz";
- sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c";
+ url = "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz";
+ sha1 = "94085ef63581ecd3daa92444a8fe94e82577751f";
};
};
- "pify-3.0.0" = {
- name = "pify";
- packageName = "pify";
- version = "3.0.0";
+ "caller-path-2.0.0" = {
+ name = "caller-path";
+ packageName = "caller-path";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz";
- sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
+ url = "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz";
+ sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4";
};
};
- "pinkie-2.0.4" = {
- name = "pinkie";
- packageName = "pinkie";
- version = "2.0.4";
+ "callsite-1.0.0" = {
+ name = "callsite";
+ packageName = "callsite";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
- sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
+ url = "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz";
+ sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20";
};
};
- "pinkie-promise-2.0.1" = {
- name = "pinkie-promise";
- packageName = "pinkie-promise";
- version = "2.0.1";
+ "callsites-0.2.0" = {
+ name = "callsites";
+ packageName = "callsites";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
- sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
+ url = "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz";
+ sha1 = "afab96262910a7f33c19a5775825c69f34e350ca";
};
};
- "pkginfo-0.3.1" = {
- name = "pkginfo";
- packageName = "pkginfo";
- version = "0.3.1";
+ "callsites-2.0.0" = {
+ name = "callsites";
+ packageName = "callsites";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz";
- sha1 = "5b29f6a81f70717142e09e765bbeab97b4f81e21";
+ url = "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz";
+ sha1 = "06eb84f00eea413da86affefacbffb36093b3c50";
};
};
- "pkginfo-0.4.1" = {
- name = "pkginfo";
- packageName = "pkginfo";
- version = "0.4.1";
+ "camel-case-3.0.0" = {
+ name = "camel-case";
+ packageName = "camel-case";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz";
- sha1 = "b5418ef0439de5425fc4995042dced14fb2a84ff";
+ url = "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz";
+ sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73";
};
};
- "posix-character-classes-0.1.1" = {
- name = "posix-character-classes";
- packageName = "posix-character-classes";
- version = "0.1.1";
+ "camelcase-1.2.1" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
- sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz";
+ sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39";
};
};
- "prepend-http-1.0.4" = {
- name = "prepend-http";
- packageName = "prepend-http";
- version = "1.0.4";
+ "camelcase-2.1.1" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz";
- sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc";
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz";
+ sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f";
};
};
- "preserve-0.2.0" = {
- name = "preserve";
- packageName = "preserve";
- version = "0.2.0";
+ "camelcase-3.0.0" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz";
- sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b";
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz";
+ sha1 = "32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a";
};
};
- "prettier-bytes-1.0.4" = {
- name = "prettier-bytes";
- packageName = "prettier-bytes";
- version = "1.0.4";
+ "camelcase-4.1.0" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier-bytes/-/prettier-bytes-1.0.4.tgz";
- sha1 = "994b02aa46f699c50b6257b5faaa7fe2557e62d6";
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz";
+ sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
};
};
- "pretty-hash-1.0.1" = {
- name = "pretty-hash";
- packageName = "pretty-hash";
- version = "1.0.1";
+ "camelcase-keys-2.1.0" = {
+ name = "camelcase-keys";
+ packageName = "camelcase-keys";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pretty-hash/-/pretty-hash-1.0.1.tgz";
- sha1 = "16e0579188def56bdb565892bcd05a5d65324807";
+ url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz";
+ sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7";
};
};
- "process-0.5.2" = {
- name = "process";
- packageName = "process";
- version = "0.5.2";
+ "camelcase-keys-4.2.0" = {
+ name = "camelcase-keys";
+ packageName = "camelcase-keys";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/process/-/process-0.5.2.tgz";
- sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf";
+ url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz";
+ sha1 = "a2aa5fb1af688758259c32c141426d78923b9b77";
};
};
- "process-nextick-args-1.0.7" = {
- name = "process-nextick-args";
- packageName = "process-nextick-args";
- version = "1.0.7";
+ "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/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
- sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
+ url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz";
+ sha1 = "4a6fa07399c26bba47f0b2496b4d0fb408c5550d";
};
};
- "process-nextick-args-2.0.0" = {
- name = "process-nextick-args";
- packageName = "process-nextick-args";
- version = "2.0.0";
+ "caseless-0.11.0" = {
+ name = "caseless";
+ packageName = "caseless";
+ version = "0.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz";
- sha512 = "MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==";
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz";
+ sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7";
};
};
- "progress-string-1.2.2" = {
- name = "progress-string";
- packageName = "progress-string";
- version = "1.2.2";
+ "caseless-0.12.0" = {
+ name = "caseless";
+ packageName = "caseless";
+ version = "0.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/progress-string/-/progress-string-1.2.2.tgz";
- sha512 = "JymvIR4IJ0qTyma7ExefBeJGp2IGaXYGWv8Z//Jq+AhrCd0uKlMPK9IWJ0LL6zbXbAN8fhLe1TL1hl1ZKOljDw==";
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
+ sha1 = "1b681c21ff84033c826543090689420d187151dc";
};
};
- "prompt-1.0.0" = {
- name = "prompt";
- packageName = "prompt";
- version = "1.0.0";
+ "castv2-0.1.9" = {
+ name = "castv2";
+ packageName = "castv2";
+ version = "0.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/prompt/-/prompt-1.0.0.tgz";
- sha1 = "8e57123c396ab988897fb327fd3aedc3e735e4fe";
+ url = "https://registry.npmjs.org/castv2/-/castv2-0.1.9.tgz";
+ sha1 = "d0b0fab1fd06b0d9cca636886716ec1293a5905a";
};
};
- "proto-list-1.2.4" = {
- name = "proto-list";
- packageName = "proto-list";
- version = "1.2.4";
+ "castv2-client-1.2.0" = {
+ name = "castv2-client";
+ packageName = "castv2-client";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz";
- sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849";
+ url = "https://registry.npmjs.org/castv2-client/-/castv2-client-1.2.0.tgz";
+ sha1 = "a9193b1a5448b8cb9a0415bd021c8811ed7b0544";
};
};
- "protocol-buffers-encodings-1.1.0" = {
- name = "protocol-buffers-encodings";
- packageName = "protocol-buffers-encodings";
- version = "1.1.0";
+ "catharsis-0.8.9" = {
+ name = "catharsis";
+ packageName = "catharsis";
+ version = "0.8.9";
src = fetchurl {
- url = "https://registry.npmjs.org/protocol-buffers-encodings/-/protocol-buffers-encodings-1.1.0.tgz";
- sha512 = "SmjEuAf3hc3h3rWZ6V1YaaQw2MNJWK848gLJgzx/sefOJdNLujKinJVXIS0q2cBQpQn2Q32TinawZyDZPzm4kQ==";
+ url = "https://registry.npmjs.org/catharsis/-/catharsis-0.8.9.tgz";
+ sha1 = "98cc890ca652dd2ef0e70b37925310ff9e90fc8b";
};
};
- "ps-tree-1.1.0" = {
- name = "ps-tree";
- packageName = "ps-tree";
- version = "1.1.0";
+ "caw-2.0.1" = {
+ name = "caw";
+ packageName = "caw";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz";
- sha1 = "b421b24140d6203f1ed3c76996b4427b08e8c014";
+ url = "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz";
+ sha512 = "Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==";
};
};
- "pseudomap-1.0.2" = {
- name = "pseudomap";
- packageName = "pseudomap";
- version = "1.0.2";
+ "center-align-0.1.3" = {
+ name = "center-align";
+ packageName = "center-align";
+ version = "0.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
- sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
+ url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz";
+ sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad";
};
};
- "pstree.remy-1.1.0" = {
- name = "pstree.remy";
- packageName = "pstree.remy";
- version = "1.1.0";
+ "chai-4.1.2" = {
+ name = "chai";
+ packageName = "chai";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.0.tgz";
- sha512 = "q5I5vLRMVtdWa8n/3UEzZX7Lfghzrg9eG2IKk2ENLSofKRCXVqMvMUHxCKgXNaqH/8ebhBxrqftHWnyTFweJ5Q==";
+ url = "https://registry.npmjs.org/chai/-/chai-4.1.2.tgz";
+ sha1 = "0f64584ba642f0f2ace2806279f4f06ca23ad73c";
};
};
- "pump-3.0.0" = {
- name = "pump";
- packageName = "pump";
- version = "3.0.0";
+ "chai-as-promised-7.1.1" = {
+ name = "chai-as-promised";
+ packageName = "chai-as-promised";
+ version = "7.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz";
- sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==";
+ url = "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-7.1.1.tgz";
+ sha512 = "azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA==";
};
};
- "punycode-1.4.1" = {
- name = "punycode";
- packageName = "punycode";
- version = "1.4.1";
+ "chainsaw-0.1.0" = {
+ name = "chainsaw";
+ packageName = "chainsaw";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
- sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
+ url = "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz";
+ sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98";
};
};
- "punycode-2.1.1" = {
- name = "punycode";
- packageName = "punycode";
- version = "2.1.1";
+ "chalk-0.4.0" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
- sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
+ url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz";
+ sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f";
};
};
- "qs-2.3.3" = {
- name = "qs";
- packageName = "qs";
- version = "2.3.3";
+ "chalk-0.5.1" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz";
- sha1 = "e9e85adbe75da0bbe4c8e0476a086290f863b404";
+ url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz";
+ sha1 = "663b3a648b68b55d04690d49167aa837858f2174";
};
};
- "qs-2.4.2" = {
- name = "qs";
- packageName = "qs";
- version = "2.4.2";
+ "chalk-1.0.0" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-2.4.2.tgz";
- sha1 = "f7ce788e5777df0b5010da7f7c4e73ba32470f5a";
+ url = "https://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz";
+ sha1 = "b3cf4ed0ff5397c99c75b8f679db2f52831f96dc";
};
};
- "qs-4.0.0" = {
- name = "qs";
- packageName = "qs";
- version = "4.0.0";
+ "chalk-1.1.3" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz";
- sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607";
+ url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
+ sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
};
};
- "qs-6.5.2" = {
- name = "qs";
- packageName = "qs";
- version = "6.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz";
- sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==";
+ "chalk-2.1.0" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz";
+ sha512 = "LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ==";
};
};
- "quicktask-1.1.0" = {
- name = "quicktask";
- packageName = "quicktask";
- version = "1.1.0";
+ "chalk-2.3.1" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "2.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/quicktask/-/quicktask-1.1.0.tgz";
- sha512 = "b3w19IEXnt5auacLAbePVsqPyVQUwmuhJQrrWnVhm4pP8PAMg2U9vFHbAD9XYXXbMDjdLJs0x5NLqwTV8uFK4g==";
+ url = "https://registry.npmjs.org/chalk/-/chalk-2.3.1.tgz";
+ sha512 = "QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g==";
};
};
- "raf-3.3.2" = {
- name = "raf";
- packageName = "raf";
- version = "3.3.2";
+ "chalk-2.4.0" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/raf/-/raf-3.3.2.tgz";
- sha1 = "0c13be0b5b49b46f76d6669248d527cf2b02fe27";
+ url = "https://registry.npmjs.org/chalk/-/chalk-2.4.0.tgz";
+ sha512 = "Wr/w0f4o9LuE7K53cD0qmbAMM+2XNLzR29vFn5hqko4sxGlUsyy363NvmyGIyk5tpe9cjTr9SJYbysEyPkRnFw==";
};
};
- "random-access-file-2.0.1" = {
- name = "random-access-file";
- packageName = "random-access-file";
- version = "2.0.1";
+ "chalk-2.4.1" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "2.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/random-access-file/-/random-access-file-2.0.1.tgz";
- sha512 = "nb4fClpzoUY+v1SHrro+9yykN90eMA1rc+xM39tnZ5R3BgFY+J/NxPZ0KuUpishEsvnwou9Fvm2wa3cjeuG7vg==";
+ url = "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz";
+ sha512 = "ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==";
};
};
- "random-access-memory-3.0.0" = {
- name = "random-access-memory";
- packageName = "random-access-memory";
- version = "3.0.0";
+ "change-case-3.0.2" = {
+ name = "change-case";
+ packageName = "change-case";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.0.0.tgz";
- sha512 = "O/d5C/kTOs/aDix1CD+N7z4SgNVGPx+xpFKXGfrC0TFpqYVrsJEUmQCl3ITTg7FVMoCmLBo5rdkA5FcFg00NTA==";
+ url = "https://registry.npmjs.org/change-case/-/change-case-3.0.2.tgz";
+ sha512 = "Mww+SLF6MZ0U6kdg11algyKd5BARbyM4TbFBepwowYSR5ClfQGCGtxNXgykpN0uF/bstWeaGDT4JWaDh8zWAHA==";
};
};
- "random-access-storage-1.3.0" = {
- name = "random-access-storage";
- packageName = "random-access-storage";
- version = "1.3.0";
+ "character-parser-1.2.1" = {
+ name = "character-parser";
+ packageName = "character-parser";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/random-access-storage/-/random-access-storage-1.3.0.tgz";
- sha512 = "pdS9Mcb9TB7oICypPRALlheaSuszuAKmLVEPKJMuYor7R/zDuHh5ALuQoS+ox31XRwQUL+tDwWH2GPdyspwelA==";
+ url = "https://registry.npmjs.org/character-parser/-/character-parser-1.2.1.tgz";
+ sha1 = "c0dde4ab182713b919b970959a123ecc1a30fcd6";
};
};
- "randomatic-3.1.0" = {
- name = "randomatic";
- packageName = "randomatic";
- version = "3.1.0";
+ "character-parser-2.2.0" = {
+ name = "character-parser";
+ packageName = "character-parser";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz";
- sha512 = "KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ==";
+ url = "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz";
+ sha1 = "c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0";
};
};
- "randombytes-2.0.6" = {
- name = "randombytes";
- packageName = "randombytes";
- version = "2.0.6";
+ "chardet-0.4.2" = {
+ name = "chardet";
+ packageName = "chardet";
+ version = "0.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz";
- sha512 = "CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==";
+ url = "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz";
+ sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2";
};
};
- "range-parser-1.2.0" = {
- name = "range-parser";
- packageName = "range-parser";
- version = "1.2.0";
+ "chardet-0.5.0" = {
+ name = "chardet";
+ packageName = "chardet";
+ version = "0.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz";
- sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e";
+ url = "https://registry.npmjs.org/chardet/-/chardet-0.5.0.tgz";
+ sha512 = "9ZTaoBaePSCFvNlNGrsyI8ZVACP2svUtq0DkM7t4K2ClAa96sqOIRjAzDTc8zXzFt1cZR46rRzLTiHFSJ+Qw0g==";
};
};
- "raw-body-2.0.2" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "2.0.2";
+ "charenc-0.0.2" = {
+ name = "charenc";
+ packageName = "charenc";
+ version = "0.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-2.0.2.tgz";
- sha1 = "a2c2f98c8531cee99c63d8d238b7de97bb659fca";
+ url = "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz";
+ sha1 = "c0a1d2f3a7092e03774bfa83f14c0fc5790a8667";
};
};
- "rc-1.2.8" = {
- name = "rc";
- packageName = "rc";
- version = "1.2.8";
+ "check-error-1.0.2" = {
+ name = "check-error";
+ packageName = "check-error";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz";
- sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==";
+ url = "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz";
+ sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82";
};
};
- "read-1.0.7" = {
- name = "read";
- packageName = "read";
- version = "1.0.7";
+ "cheerio-0.17.0" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "0.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/read/-/read-1.0.7.tgz";
- sha1 = "b3da19bd052431a97671d44a42634adf710b40c4";
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-0.17.0.tgz";
+ sha1 = "fa5ae42cc60121133d296d0b46d983215f7268ea";
};
};
- "read-metadata-1.0.0" = {
- name = "read-metadata";
- packageName = "read-metadata";
- version = "1.0.0";
+ "cheerio-0.20.0" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "0.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/read-metadata/-/read-metadata-1.0.0.tgz";
- sha1 = "6df9cbe51184e8ceb7d0668b40ee5191e6f3dac6";
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-0.20.0.tgz";
+ sha1 = "5c710f2bab95653272842ba01c6ea61b3545ec35";
};
};
- "readable-stream-1.0.27-1" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "1.0.27-1";
+ "cheerio-0.22.0" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "0.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.27-1.tgz";
- sha1 = "6b67983c20357cefd07f0165001a16d710d91078";
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz";
+ sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e";
};
};
- "readable-stream-1.1.14" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "1.1.14";
+ "cheerio-1.0.0-rc.2" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "1.0.0-rc.2";
src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
- sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.2.tgz";
+ sha1 = "4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db";
};
};
- "readable-stream-2.3.6" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "2.3.6";
+ "chmodr-1.0.2" = {
+ name = "chmodr";
+ packageName = "chmodr";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz";
- sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==";
+ url = "https://registry.npmjs.org/chmodr/-/chmodr-1.0.2.tgz";
+ sha1 = "04662b932d0f02ec66deaa2b0ea42811968e3eb9";
};
};
- "readdirp-2.1.0" = {
- name = "readdirp";
- packageName = "readdirp";
- version = "2.1.0";
+ "chokidar-1.6.0" = {
+ name = "chokidar";
+ packageName = "chokidar";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz";
- sha1 = "4ed0ad060df3073300c48440373f72d1cc642d78";
+ url = "https://registry.npmjs.org/chokidar/-/chokidar-1.6.0.tgz";
+ sha1 = "90c32ad4802901d7713de532dc284e96a63ad058";
};
};
- "readline2-1.0.1" = {
- name = "readline2";
- packageName = "readline2";
- version = "1.0.1";
+ "chokidar-1.7.0" = {
+ name = "chokidar";
+ packageName = "chokidar";
+ version = "1.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz";
- sha1 = "41059608ffc154757b715d9989d199ffbf372e35";
+ url = "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz";
+ sha1 = "798e689778151c8076b4b360e5edd28cda2bb468";
};
};
- "recursive-readdir-2.2.2" = {
- name = "recursive-readdir";
- packageName = "recursive-readdir";
- version = "2.2.2";
+ "chokidar-2.0.4" = {
+ name = "chokidar";
+ packageName = "chokidar";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz";
- sha512 = "nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==";
+ url = "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz";
+ sha512 = "z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==";
};
};
- "recursive-watch-1.1.4" = {
- name = "recursive-watch";
- packageName = "recursive-watch";
- version = "1.1.4";
+ "chownr-0.0.2" = {
+ name = "chownr";
+ packageName = "chownr";
+ version = "0.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.4.tgz";
- sha512 = "fWejAmdLi7B/jipBUjTLnqId+PK+573fbGNbdaNA/AiAnQAx6OYOLCGWRs0W5+PyM1rLzZSWK2f40QpHSR49PQ==";
+ url = "https://registry.npmjs.org/chownr/-/chownr-0.0.2.tgz";
+ sha1 = "2f9aebf746f90808ce00607b72ba73b41604c485";
};
};
- "reduce-component-1.0.1" = {
- name = "reduce-component";
- packageName = "reduce-component";
+ "chownr-1.0.1" = {
+ name = "chownr";
+ packageName = "chownr";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/reduce-component/-/reduce-component-1.0.1.tgz";
- sha1 = "e0c93542c574521bea13df0f9488ed82ab77c5da";
+ url = "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz";
+ sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181";
};
};
- "regex-cache-0.4.4" = {
- name = "regex-cache";
- packageName = "regex-cache";
- version = "0.4.4";
+ "chrome-trace-event-1.0.0" = {
+ name = "chrome-trace-event";
+ packageName = "chrome-trace-event";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz";
- sha512 = "nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==";
+ url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz";
+ sha512 = "xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==";
};
};
- "regex-not-1.0.2" = {
- name = "regex-not";
- packageName = "regex-not";
- version = "1.0.2";
+ "chromecast-player-0.2.3" = {
+ name = "chromecast-player";
+ packageName = "chromecast-player";
+ version = "0.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz";
- sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
+ url = "https://registry.npmjs.org/chromecast-player/-/chromecast-player-0.2.3.tgz";
+ sha1 = "fe9ce69911c88096d681e4242c1902ad30787216";
};
};
- "registry-auth-token-3.3.2" = {
- name = "registry-auth-token";
- packageName = "registry-auth-token";
- version = "3.3.2";
+ "chromecast-scanner-0.5.0" = {
+ name = "chromecast-scanner";
+ packageName = "chromecast-scanner";
+ version = "0.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz";
- sha512 = "JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==";
+ url = "https://registry.npmjs.org/chromecast-scanner/-/chromecast-scanner-0.5.0.tgz";
+ sha1 = "01296a3e5d130cce34974eb509cbbc7d6f78dd3d";
};
};
- "registry-url-3.1.0" = {
- name = "registry-url";
- packageName = "registry-url";
- version = "3.1.0";
+ "chromecasts-1.9.1" = {
+ name = "chromecasts";
+ packageName = "chromecasts";
+ version = "1.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz";
- sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942";
+ url = "https://registry.npmjs.org/chromecasts/-/chromecasts-1.9.1.tgz";
+ sha512 = "nsXv7ufgrpC8s5DUm6FJEa2XJ2VvE9FmbTVi6r4zGreTFTTSRSJjvqVEqLUFX/fGo/zbSre3zdoV+Pu9DGLz0A==";
};
};
- "remove-array-items-1.0.0" = {
- name = "remove-array-items";
- packageName = "remove-array-items";
- version = "1.0.0";
+ "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/remove-array-items/-/remove-array-items-1.0.0.tgz";
- sha1 = "07bf42cb332f4cf6e85ead83b5e4e896d2326b21";
+ url = "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz";
+ sha1 = "04a106672c18b085ab774d983dfa3ea138f22205";
};
};
- "remove-trailing-separator-1.1.0" = {
- name = "remove-trailing-separator";
- packageName = "remove-trailing-separator";
- version = "1.1.0";
+ "chunk-store-stream-3.0.1" = {
+ name = "chunk-store-stream";
+ packageName = "chunk-store-stream";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
- sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
+ url = "https://registry.npmjs.org/chunk-store-stream/-/chunk-store-stream-3.0.1.tgz";
+ sha512 = "GA1NIFDZKElhkjiO6QOyzfK1QbUt6M3gFhUU/aR05JYaDqXbU5d7U92cLvGKdItJEDfojky6NQefy5VL5PpDBA==";
};
};
- "repeat-element-1.1.2" = {
- name = "repeat-element";
- packageName = "repeat-element";
- version = "1.1.2";
+ "ci-info-1.4.0" = {
+ name = "ci-info";
+ packageName = "ci-info";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz";
- sha1 = "ef089a178d1483baae4d93eb98b4f9e4e11d990a";
+ url = "https://registry.npmjs.org/ci-info/-/ci-info-1.4.0.tgz";
+ sha512 = "Oqmw2pVfCl8sCL+1QgMywPfdxPJPkC51y4usw0iiE2S9qnEOAqXy8bwl1CpMpnoU39g4iKJTz6QZj+28FvOnjQ==";
};
};
- "repeat-string-1.6.1" = {
- name = "repeat-string";
- packageName = "repeat-string";
- version = "1.6.1";
+ "cint-8.2.1" = {
+ name = "cint";
+ packageName = "cint";
+ version = "8.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
- sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
+ url = "https://registry.npmjs.org/cint/-/cint-8.2.1.tgz";
+ sha1 = "70386b1b48e2773d0d63166a55aff94ef4456a12";
};
};
- "request-2.87.0" = {
- name = "request";
- packageName = "request";
- version = "2.87.0";
+ "cipher-base-1.0.4" = {
+ name = "cipher-base";
+ packageName = "cipher-base";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.87.0.tgz";
- sha512 = "fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==";
+ url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz";
+ sha512 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==";
};
};
- "resolve-1.1.7" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.1.7";
+ "circular-append-file-1.0.1" = {
+ name = "circular-append-file";
+ packageName = "circular-append-file";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz";
- sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
+ url = "https://registry.npmjs.org/circular-append-file/-/circular-append-file-1.0.1.tgz";
+ sha512 = "BUDFvrBTCdeVhg9E05PX4XgMegk6xWB69uGwyuATEg7PMfa9lGU1mzFSK0xWNW2O0i9CAQHN0oIdXI/kI2hPkg==";
};
};
- "resolve-url-0.2.1" = {
- name = "resolve-url";
- packageName = "resolve-url";
- version = "0.2.1";
+ "circular-json-0.3.3" = {
+ name = "circular-json";
+ packageName = "circular-json";
+ version = "0.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
- sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
+ url = "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz";
+ sha512 = "UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==";
};
};
- "restore-cursor-1.0.1" = {
- name = "restore-cursor";
- packageName = "restore-cursor";
- version = "1.0.1";
+ "circular-json-0.5.5" = {
+ name = "circular-json";
+ packageName = "circular-json";
+ version = "0.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz";
- sha1 = "34661f46886327fed2991479152252df92daa541";
+ url = "https://registry.npmjs.org/circular-json/-/circular-json-0.5.5.tgz";
+ sha512 = "13YaR6kiz0kBNmIVM87Io8Hp7bWOo4r61vkEANy8iH9R9bc6avud/1FT0SBpqR1RpIQADOh/Q+yHZDA1iL6ysA==";
};
};
- "restore-cursor-2.0.0" = {
- name = "restore-cursor";
- packageName = "restore-cursor";
- version = "2.0.0";
+ "clarinet-0.11.0" = {
+ name = "clarinet";
+ packageName = "clarinet";
+ version = "0.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz";
- sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf";
+ url = "https://registry.npmjs.org/clarinet/-/clarinet-0.11.0.tgz";
+ sha1 = "6cc912b93138dc867fc273cd34ea90e83e054719";
};
};
- "ret-0.1.15" = {
- name = "ret";
- packageName = "ret";
- version = "0.1.15";
+ "class-utils-0.3.6" = {
+ name = "class-utils";
+ packageName = "class-utils";
+ version = "0.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz";
- sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
+ url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
+ sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
};
};
- "revalidator-0.1.8" = {
- name = "revalidator";
- packageName = "revalidator";
- version = "0.1.8";
+ "clean-css-3.4.28" = {
+ name = "clean-css";
+ packageName = "clean-css";
+ version = "3.4.28";
src = fetchurl {
- url = "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz";
- sha1 = "fece61bfa0c1b52a206bd6b18198184bdd523a3b";
+ url = "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz";
+ sha1 = "bf1945e82fc808f55695e6ddeaec01400efd03ff";
};
};
- "right-align-0.1.3" = {
- name = "right-align";
- packageName = "right-align";
- version = "0.1.3";
+ "clean-css-4.2.1" = {
+ name = "clean-css";
+ packageName = "clean-css";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz";
- sha1 = "61339b722fe6a3515689210d24e14c96148613ef";
+ url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz";
+ sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==";
};
};
- "rimraf-2.6.2" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.6.2";
+ "clean-stack-1.3.0" = {
+ name = "clean-stack";
+ packageName = "clean-stack";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
- sha512 = "lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==";
+ url = "https://registry.npmjs.org/clean-stack/-/clean-stack-1.3.0.tgz";
+ sha1 = "9e821501ae979986c46b1d66d2d432db2fd4ae31";
};
};
- "run-async-0.1.0" = {
- name = "run-async";
- packageName = "run-async";
- version = "0.1.0";
+ "cli-0.6.6" = {
+ name = "cli";
+ packageName = "cli";
+ version = "0.6.6";
src = fetchurl {
- url = "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz";
- sha1 = "c8ad4a5e110661e402a7d21b530e009f25f8e389";
+ url = "https://registry.npmjs.org/cli/-/cli-0.6.6.tgz";
+ sha1 = "02ad44a380abf27adac5e6f0cdd7b043d74c53e3";
};
};
- "run-async-2.3.0" = {
- name = "run-async";
- packageName = "run-async";
- version = "2.3.0";
+ "cli-1.0.1" = {
+ name = "cli";
+ packageName = "cli";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz";
- sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0";
+ url = "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz";
+ sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
};
};
- "rusha-0.8.13" = {
- name = "rusha";
- packageName = "rusha";
- version = "0.8.13";
+ "cli-boxes-1.0.0" = {
+ name = "cli-boxes";
+ packageName = "cli-boxes";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rusha/-/rusha-0.8.13.tgz";
- sha1 = "9a084e7b860b17bff3015b92c67a6a336191513a";
+ url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz";
+ sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143";
};
};
- "rx-lite-3.1.2" = {
- name = "rx-lite";
- packageName = "rx-lite";
- version = "3.1.2";
+ "cli-color-0.1.7" = {
+ name = "cli-color";
+ packageName = "cli-color";
+ version = "0.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz";
- sha1 = "19ce502ca572665f3b647b10939f97fd1615f102";
+ url = "https://registry.npmjs.org/cli-color/-/cli-color-0.1.7.tgz";
+ sha1 = "adc3200fa471cc211b0da7f566b71e98b9d67347";
};
};
- "rx-lite-4.0.8" = {
- name = "rx-lite";
- packageName = "rx-lite";
- version = "4.0.8";
+ "cli-cursor-1.0.2" = {
+ name = "cli-cursor";
+ packageName = "cli-cursor";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz";
- sha1 = "0b1e11af8bc44836f04a6407e92da42467b79444";
+ url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz";
+ sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987";
};
};
- "rx-lite-aggregates-4.0.8" = {
- name = "rx-lite-aggregates";
- packageName = "rx-lite-aggregates";
- version = "4.0.8";
+ "cli-cursor-2.1.0" = {
+ name = "cli-cursor";
+ packageName = "cli-cursor";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz";
- sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be";
+ url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz";
+ sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5";
};
};
- "rxjs-6.2.2" = {
- name = "rxjs";
- packageName = "rxjs";
- version = "6.2.2";
+ "cli-list-0.2.0" = {
+ name = "cli-list";
+ packageName = "cli-list";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rxjs/-/rxjs-6.2.2.tgz";
- sha512 = "0MI8+mkKAXZUF9vMrEoPnaoHkfzBPP4IGwUYRJhIRJF6/w3uByO1e91bEHn8zd43RdkTMKiooYKmwz7RH6zfOQ==";
+ url = "https://registry.npmjs.org/cli-list/-/cli-list-0.2.0.tgz";
+ sha1 = "7e673ee0dd39a611a486476e53f3c6b3941cb582";
};
};
- "safe-buffer-5.1.2" = {
- name = "safe-buffer";
- packageName = "safe-buffer";
- version = "5.1.2";
+ "cli-spinners-1.3.1" = {
+ name = "cli-spinners";
+ packageName = "cli-spinners";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
- sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
+ url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz";
+ sha512 = "1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==";
};
};
- "safe-regex-1.1.0" = {
- name = "safe-regex";
- packageName = "safe-regex";
- version = "1.1.0";
+ "cli-table-0.3.1" = {
+ name = "cli-table";
+ packageName = "cli-table";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz";
- sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
+ url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz";
+ sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23";
};
};
- "safer-buffer-2.1.2" = {
- name = "safer-buffer";
- packageName = "safer-buffer";
- version = "2.1.2";
+ "cli-table2-0.2.0" = {
+ name = "cli-table2";
+ packageName = "cli-table2";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
- sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
+ url = "https://registry.npmjs.org/cli-table2/-/cli-table2-0.2.0.tgz";
+ sha1 = "2d1ef7f218a0e786e214540562d4bd177fe32d97";
};
};
- "sanitize-filename-1.6.1" = {
- name = "sanitize-filename";
- packageName = "sanitize-filename";
- version = "1.6.1";
+ "cli-truncate-1.1.0" = {
+ name = "cli-truncate";
+ packageName = "cli-truncate";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.1.tgz";
- sha1 = "612da1c96473fa02dccda92dcd5b4ab164a6772a";
+ url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-1.1.0.tgz";
+ sha512 = "bAtZo0u82gCfaAGfSNxUdTI9mNyza7D8w4CVCcaOsy7sgwDzvx6ekr6cuWJqY3UGzgnQ1+4wgENup5eIhgxEYA==";
};
};
- "sax-1.2.4" = {
- name = "sax";
- packageName = "sax";
- version = "1.2.4";
+ "cli-width-1.1.1" = {
+ name = "cli-width";
+ packageName = "cli-width";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz";
- sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==";
+ url = "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz";
+ sha1 = "a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d";
};
};
- "seek-bzip-1.0.5" = {
- name = "seek-bzip";
- packageName = "seek-bzip";
- version = "1.0.5";
+ "cli-width-2.2.0" = {
+ name = "cli-width";
+ packageName = "cli-width";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz";
- sha1 = "cfe917cb3d274bcffac792758af53173eb1fabdc";
+ url = "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz";
+ sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639";
};
};
- "semver-5.3.0" = {
- name = "semver";
- packageName = "semver";
- version = "5.3.0";
+ "cliclopts-1.1.1" = {
+ name = "cliclopts";
+ packageName = "cliclopts";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz";
- sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f";
+ url = "https://registry.npmjs.org/cliclopts/-/cliclopts-1.1.1.tgz";
+ sha1 = "69431c7cb5af723774b0d3911b4c37512431910f";
};
};
- "semver-5.5.0" = {
- name = "semver";
- packageName = "semver";
- version = "5.5.0";
+ "cliff-0.1.10" = {
+ name = "cliff";
+ packageName = "cliff";
+ version = "0.1.10";
src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
- sha512 = "4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==";
+ url = "https://registry.npmjs.org/cliff/-/cliff-0.1.10.tgz";
+ sha1 = "53be33ea9f59bec85609ee300ac4207603e52013";
};
};
- "semver-diff-2.1.0" = {
- name = "semver-diff";
- packageName = "semver-diff";
- version = "2.1.0";
+ "cliff-0.1.9" = {
+ name = "cliff";
+ packageName = "cliff";
+ version = "0.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz";
- sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36";
+ url = "https://registry.npmjs.org/cliff/-/cliff-0.1.9.tgz";
+ sha1 = "a211e09c6a3de3ba1af27d049d301250d18812bc";
};
};
- "send-0.16.2" = {
- name = "send";
- packageName = "send";
- version = "0.16.2";
+ "clipboard-2.0.1" = {
+ name = "clipboard";
+ packageName = "clipboard";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.16.2.tgz";
- sha512 = "E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==";
+ url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.1.tgz";
+ sha512 = "7yhQBmtN+uYZmfRjjVjKa0dZdWuabzpSKGtyQZN+9C8xlC788SSJjOHWh7tzurfwTqTD5UDYAhIv5fRJg3sHjQ==";
};
};
- "serve-static-1.13.2" = {
- name = "serve-static";
- packageName = "serve-static";
- version = "1.13.2";
+ "clipboardy-1.2.3" = {
+ name = "clipboardy";
+ packageName = "clipboardy";
+ version = "1.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz";
- sha512 = "p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==";
+ url = "https://registry.npmjs.org/clipboardy/-/clipboardy-1.2.3.tgz";
+ sha512 = "2WNImOvCRe6r63Gk9pShfkwXsVtKCroMAevIbiae021mS850UkWPbevxsBz3tnvjZIEGvlwaqCPsw+4ulzNgJA==";
};
};
- "set-blocking-2.0.0" = {
- name = "set-blocking";
- packageName = "set-blocking";
- version = "2.0.0";
+ "cliui-2.1.0" = {
+ name = "cliui";
+ packageName = "cliui";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
- sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
+ url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz";
+ sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
};
};
- "set-immediate-shim-1.0.1" = {
- name = "set-immediate-shim";
- packageName = "set-immediate-shim";
- version = "1.0.1";
+ "cliui-3.2.0" = {
+ name = "cliui";
+ packageName = "cliui";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz";
- sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61";
+ url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz";
+ sha1 = "120601537a916d29940f934da3b48d585a39213d";
};
};
- "set-value-0.4.3" = {
- name = "set-value";
- packageName = "set-value";
- version = "0.4.3";
+ "cliui-4.1.0" = {
+ name = "cliui";
+ packageName = "cliui";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz";
- sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1";
+ url = "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz";
+ sha512 = "4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==";
};
};
- "set-value-2.0.0" = {
- name = "set-value";
- packageName = "set-value";
- version = "2.0.0";
+ "clivas-0.1.4" = {
+ name = "clivas";
+ packageName = "clivas";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz";
- sha512 = "hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==";
+ url = "https://registry.npmjs.org/clivas/-/clivas-0.1.4.tgz";
+ sha1 = "e1c1e481d1273d57f1752132b0e4410a0d88235a";
};
};
- "setimmediate-1.0.5" = {
- name = "setimmediate";
- packageName = "setimmediate";
- version = "1.0.5";
+ "clivas-0.2.0" = {
+ name = "clivas";
+ packageName = "clivas";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz";
- sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
+ url = "https://registry.npmjs.org/clivas/-/clivas-0.2.0.tgz";
+ sha1 = "b8d19188b3243e390f302410bd0cb1622db82649";
};
};
- "setprototypeof-1.1.0" = {
- name = "setprototypeof";
- packageName = "setprototypeof";
- version = "1.1.0";
+ "clone-0.1.5" = {
+ name = "clone";
+ packageName = "clone";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz";
- sha512 = "BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==";
+ url = "https://registry.npmjs.org/clone/-/clone-0.1.5.tgz";
+ sha1 = "46f29143d0766d663dbd7f80b7520a15783d2042";
};
};
- "shebang-command-1.2.0" = {
- name = "shebang-command";
- packageName = "shebang-command";
- version = "1.2.0";
+ "clone-0.1.6" = {
+ name = "clone";
+ packageName = "clone";
+ version = "0.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz";
- sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
+ url = "https://registry.npmjs.org/clone/-/clone-0.1.6.tgz";
+ sha1 = "4af2296d4a23a64168c2f5fb0a2aa65e80517000";
};
};
- "shebang-regex-1.0.0" = {
- name = "shebang-regex";
- packageName = "shebang-regex";
- version = "1.0.0";
+ "clone-0.2.0" = {
+ name = "clone";
+ packageName = "clone";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz";
- sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
+ url = "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz";
+ sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f";
};
};
- "sigmund-1.0.1" = {
- name = "sigmund";
- packageName = "sigmund";
- version = "1.0.1";
+ "clone-1.0.4" = {
+ name = "clone";
+ packageName = "clone";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
- sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
+ url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
+ sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
};
};
- "signal-exit-3.0.2" = {
- name = "signal-exit";
- packageName = "signal-exit";
- version = "3.0.2";
+ "clone-2.0.0" = {
+ name = "clone";
+ packageName = "clone";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
- sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
+ url = "https://registry.npmjs.org/clone/-/clone-2.0.0.tgz";
+ sha1 = "df65d3ca142e4a4a47db33da3468d088a16fc76e";
};
};
- "signed-varint-2.0.1" = {
- name = "signed-varint";
- packageName = "signed-varint";
- version = "2.0.1";
+ "clone-2.1.2" = {
+ name = "clone";
+ packageName = "clone";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/signed-varint/-/signed-varint-2.0.1.tgz";
- sha1 = "50a9989da7c98c2c61dad119bc97470ef8528129";
+ url = "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz";
+ sha1 = "1b7f4b9f591f1e8f83670401600345a02887435f";
};
};
- "simple-sha1-2.1.1" = {
- name = "simple-sha1";
- packageName = "simple-sha1";
- version = "2.1.1";
+ "clone-buffer-1.0.0" = {
+ name = "clone-buffer";
+ packageName = "clone-buffer";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-sha1/-/simple-sha1-2.1.1.tgz";
- sha512 = "pFMPd+I/lQkpf4wFUeS/sED5IqdIG1lUlrQviBMV4u4mz8BRAcB5fvUx5Ckfg3kBigEglAjHg7E9k/yy2KlCqA==";
+ url = "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz";
+ sha1 = "e3e25b207ac4e701af721e2cb5a16792cac3dc58";
};
};
- "siphash24-1.1.1" = {
- name = "siphash24";
- packageName = "siphash24";
- version = "1.1.1";
+ "clone-deep-0.3.0" = {
+ name = "clone-deep";
+ packageName = "clone-deep";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.1.tgz";
- sha512 = "dKKwjIoTOa587TARYLlBRXq2lkbu5Iz35XrEVWpelhBP1m8r2BGOy1QlaZe84GTFHG/BTucEUd2btnNc8QzIVA==";
+ url = "https://registry.npmjs.org/clone-deep/-/clone-deep-0.3.0.tgz";
+ sha1 = "348c61ae9cdbe0edfe053d91ff4cc521d790ede8";
};
};
- "slash-1.0.0" = {
- name = "slash";
- packageName = "slash";
- version = "1.0.0";
+ "clone-regexp-1.0.1" = {
+ name = "clone-regexp";
+ packageName = "clone-regexp";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz";
- sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
+ url = "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz";
+ sha512 = "Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==";
};
};
- "slasp-0.0.4" = {
- name = "slasp";
- packageName = "slasp";
- version = "0.0.4";
+ "clone-response-1.0.2" = {
+ name = "clone-response";
+ packageName = "clone-response";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/slasp/-/slasp-0.0.4.tgz";
- sha1 = "9adc26ee729a0f95095851a5489f87a5258d57a9";
+ url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz";
+ sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b";
};
};
- "slice-ansi-1.0.0" = {
- name = "slice-ansi";
- packageName = "slice-ansi";
+ "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";
+ };
+ };
+ "clone-stats-1.0.0" = {
+ name = "clone-stats";
+ packageName = "clone-stats";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz";
- sha512 = "POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==";
+ url = "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz";
+ sha1 = "b3782dff8bb5474e18b9b6bf0fdfe782f8777680";
};
};
- "snabbdom-0.7.0" = {
- name = "snabbdom";
- packageName = "snabbdom";
- version = "0.7.0";
+ "cloneable-readable-1.1.2" = {
+ name = "cloneable-readable";
+ packageName = "cloneable-readable";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/snabbdom/-/snabbdom-0.7.0.tgz";
- sha512 = "LCg6lH9p2OD5n52SI4LlpYmDW2bscxsyN7rhnGJB/R3LQy/FdJfqNBM5aVST+zOfM4OdKFl8pxVUhjGsPtQA1w==";
+ url = "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.2.tgz";
+ sha512 = "Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg==";
};
};
- "snabbdom-selector-1.2.1" = {
- name = "snabbdom-selector";
- packageName = "snabbdom-selector";
- version = "1.2.1";
+ "closest-to-2.0.0" = {
+ name = "closest-to";
+ packageName = "closest-to";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snabbdom-selector/-/snabbdom-selector-1.2.1.tgz";
- sha512 = "g0w2Ft4RJl+F/1/tQvA4BUsH09s+RNd0RRa+So24Inv5yzce5xUnPzxlEWNUBG5TwQjfKDZSFWrf2rXz+e1Q2g==";
+ url = "https://registry.npmjs.org/closest-to/-/closest-to-2.0.0.tgz";
+ sha1 = "bb2a860edb7769b62d04821748ae50da24dbefaa";
};
};
- "snapdragon-0.8.2" = {
- name = "snapdragon";
- packageName = "snapdragon";
- version = "0.8.2";
+ "cmd-shim-2.0.2" = {
+ name = "cmd-shim";
+ packageName = "cmd-shim";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz";
- sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==";
+ url = "https://registry.npmjs.org/cmd-shim/-/cmd-shim-2.0.2.tgz";
+ sha1 = "6fcbda99483a8fd15d7d30a196ca69d688a2efdb";
};
};
- "snapdragon-node-2.1.1" = {
- name = "snapdragon-node";
- packageName = "snapdragon-node";
- version = "2.1.1";
+ "cmdln-3.2.1" = {
+ name = "cmdln";
+ packageName = "cmdln";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
- sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==";
+ url = "https://registry.npmjs.org/cmdln/-/cmdln-3.2.1.tgz";
+ sha1 = "8d21967625b25ee35fca8e8453ccf10fccd04e45";
};
};
- "snapdragon-util-3.0.1" = {
- name = "snapdragon-util";
- packageName = "snapdragon-util";
- version = "3.0.1";
+ "cmdln-4.1.2" = {
+ name = "cmdln";
+ packageName = "cmdln";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
- sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==";
+ url = "https://registry.npmjs.org/cmdln/-/cmdln-4.1.2.tgz";
+ sha1 = "4345bb5498f2b096ba85ec8c5579a8cb252f7c70";
};
};
- "sodium-javascript-0.5.5" = {
- name = "sodium-javascript";
- packageName = "sodium-javascript";
- version = "0.5.5";
+ "co-3.1.0" = {
+ name = "co";
+ packageName = "co";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.5.5.tgz";
- sha512 = "UMmCHovws/sxIBZsIRhIl8uRPou/RFDD0vVop81T1hG106NLLgqajKKuHAOtAP6hflnZ0UrVA2VFwddTd/NQyA==";
+ url = "https://registry.npmjs.org/co/-/co-3.1.0.tgz";
+ sha1 = "4ea54ea5a08938153185e15210c68d9092bc1b78";
};
};
- "sodium-native-2.2.1" = {
- name = "sodium-native";
- packageName = "sodium-native";
- version = "2.2.1";
+ "co-4.6.0" = {
+ name = "co";
+ packageName = "co";
+ version = "4.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.2.1.tgz";
- sha512 = "3CfftYV2ATXQFMIkLOvcNUk/Ma+lran0855j5Z/HEjUkSTzjLZi16CK362udOoNVrwn/TwGV8bKEt5OylsFrQA==";
+ url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
+ sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
};
};
- "sodium-universal-2.0.0" = {
- name = "sodium-universal";
- packageName = "sodium-universal";
- version = "2.0.0";
+ "co-from-stream-0.0.0" = {
+ name = "co-from-stream";
+ packageName = "co-from-stream";
+ version = "0.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sodium-universal/-/sodium-universal-2.0.0.tgz";
- sha512 = "csdVyakzHJRyCevY4aZC2Eacda8paf+4nmRGF2N7KxCLKY2Ajn72JsExaQlJQ2BiXJncp44p3T+b80cU+2TTsg==";
+ url = "https://registry.npmjs.org/co-from-stream/-/co-from-stream-0.0.0.tgz";
+ sha1 = "1a5cd8ced77263946094fa39f2499a63297bcaf9";
};
};
- "sorted-array-functions-1.2.0" = {
- name = "sorted-array-functions";
- packageName = "sorted-array-functions";
- version = "1.2.0";
+ "co-fs-extra-1.2.1" = {
+ name = "co-fs-extra";
+ packageName = "co-fs-extra";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.2.0.tgz";
- sha512 = "sWpjPhIZJtqO77GN+LD8dDsDKcWZ9GCOJNqKzi1tvtjGIzwfoyuRH8S0psunmc6Z5P+qfDqztSbwYR5X/e1UTg==";
+ url = "https://registry.npmjs.org/co-fs-extra/-/co-fs-extra-1.2.1.tgz";
+ sha1 = "3b6ad77cf2614530f677b1cf62664f5ba756b722";
};
};
- "sorted-immutable-list-1.1.0" = {
- name = "sorted-immutable-list";
- packageName = "sorted-immutable-list";
- version = "1.1.0";
+ "co-read-0.0.1" = {
+ name = "co-read";
+ packageName = "co-read";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sorted-immutable-list/-/sorted-immutable-list-1.1.0.tgz";
- sha1 = "41a62c024bd755c4c57306e20eec92620dae5d97";
+ url = "https://registry.npmjs.org/co-read/-/co-read-0.0.1.tgz";
+ sha1 = "f81b3eb8a86675fec51e3d883a7f564e873c9389";
};
};
- "sorted-indexof-1.0.0" = {
- name = "sorted-indexof";
- packageName = "sorted-indexof";
- version = "1.0.0";
+ "coa-2.0.1" = {
+ name = "coa";
+ packageName = "coa";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sorted-indexof/-/sorted-indexof-1.0.0.tgz";
- sha1 = "17c742ff7cf187e2f59a15df9b81f17a62ce0899";
+ url = "https://registry.npmjs.org/coa/-/coa-2.0.1.tgz";
+ sha512 = "5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ==";
};
};
- "source-map-0.4.4" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.4.4";
+ "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/source-map/-/source-map-0.4.4.tgz";
- sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b";
+ url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
+ sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
};
};
- "source-map-0.5.7" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.5.7";
+ "codecs-1.2.1" = {
+ name = "codecs";
+ packageName = "codecs";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
- sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
+ url = "https://registry.npmjs.org/codecs/-/codecs-1.2.1.tgz";
+ sha512 = "SPnx+ZHXVJ0qTInRXmnxuyu8PDvSzvop5MXp1BOr/urFQI3yL2n5ewE755skTklF/hKVlWj8cinGxdR2gvLvTA==";
};
};
- "source-map-resolve-0.5.2" = {
- name = "source-map-resolve";
- packageName = "source-map-resolve";
- version = "0.5.2";
+ "codepage-1.4.0" = {
+ name = "codepage";
+ packageName = "codepage";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz";
- sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==";
+ url = "https://registry.npmjs.org/codepage/-/codepage-1.4.0.tgz";
+ sha1 = "ffd5b603ae6a8ebb63559d5fb89a57d12b943837";
};
};
- "source-map-url-0.4.0" = {
- name = "source-map-url";
- packageName = "source-map-url";
- version = "0.4.0";
+ "coffee-script-1.12.7" = {
+ name = "coffee-script";
+ packageName = "coffee-script";
+ version = "1.12.7";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
- sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
+ url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
+ sha512 = "fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==";
};
};
- "spark-md5-1.0.1" = {
- name = "spark-md5";
- packageName = "spark-md5";
- version = "1.0.1";
+ "coffee-script-1.6.3" = {
+ name = "coffee-script";
+ packageName = "coffee-script";
+ version = "1.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/spark-md5/-/spark-md5-1.0.1.tgz";
- sha1 = "c4b9a8d41cf7b0845423a821824f8dffa0f51b7c";
+ url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.6.3.tgz";
+ sha1 = "6355d32cf1b04cdff6b484e5e711782b2f0c39be";
};
};
- "sparse-bitfield-3.0.3" = {
- name = "sparse-bitfield";
- packageName = "sparse-bitfield";
- version = "3.0.3";
+ "collection-visit-1.0.0" = {
+ name = "collection-visit";
+ packageName = "collection-visit";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz";
- sha1 = "ff4ae6e68656056ba4b3e792ab3334d38273ca11";
+ url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
+ sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
};
};
- "speedometer-1.1.0" = {
- name = "speedometer";
- packageName = "speedometer";
- version = "1.1.0";
+ "color-3.0.0" = {
+ name = "color";
+ packageName = "color";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/speedometer/-/speedometer-1.1.0.tgz";
- sha512 = "z/wAiTESw2XVPssY2XRcme4niTc4S5FkkJ4gknudtVoc33Zil8TdTxHy5torRcgqMqksJV2Yz8HQcvtbsnw0mQ==";
+ url = "https://registry.npmjs.org/color/-/color-3.0.0.tgz";
+ sha512 = "jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==";
};
};
- "split-0.3.3" = {
- name = "split";
- packageName = "split";
- version = "0.3.3";
+ "color-convert-1.9.3" = {
+ name = "color-convert";
+ packageName = "color-convert";
+ version = "1.9.3";
src = fetchurl {
- url = "https://registry.npmjs.org/split/-/split-0.3.3.tgz";
- sha1 = "cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f";
+ url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz";
+ sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==";
};
};
- "split-string-3.1.0" = {
- name = "split-string";
- packageName = "split-string";
- version = "3.1.0";
+ "color-name-1.1.3" = {
+ name = "color-name";
+ packageName = "color-name";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
- sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==";
+ url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
+ sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
};
};
- "sprintf-js-1.0.3" = {
- name = "sprintf-js";
- packageName = "sprintf-js";
- version = "1.0.3";
+ "color-string-1.5.3" = {
+ name = "color-string";
+ packageName = "color-string";
+ version = "1.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz";
- sha1 = "04e6926f662895354f3dd015203633b857297e2c";
+ url = "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz";
+ sha512 = "dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==";
};
};
- "sshpk-1.14.2" = {
- name = "sshpk";
- packageName = "sshpk";
- version = "1.14.2";
+ "color-support-1.1.3" = {
+ name = "color-support";
+ packageName = "color-support";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz";
- sha1 = "c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98";
+ url = "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz";
+ sha512 = "qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==";
};
};
- "stack-trace-0.0.10" = {
- name = "stack-trace";
- packageName = "stack-trace";
- version = "0.0.10";
+ "colors-0.5.1" = {
+ name = "colors";
+ packageName = "colors";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz";
- sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
+ url = "https://registry.npmjs.org/colors/-/colors-0.5.1.tgz";
+ sha1 = "7d0023eaeb154e8ee9fce75dcb923d0ed1667774";
};
};
- "stat-mode-0.2.2" = {
- name = "stat-mode";
- packageName = "stat-mode";
- version = "0.2.2";
+ "colors-0.6.2" = {
+ name = "colors";
+ packageName = "colors";
+ version = "0.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/stat-mode/-/stat-mode-0.2.2.tgz";
- sha1 = "e6c80b623123d7d80cf132ce538f346289072502";
+ url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
+ sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
};
};
- "static-extend-0.1.2" = {
- name = "static-extend";
- packageName = "static-extend";
- version = "0.1.2";
+ "colors-1.0.3" = {
+ name = "colors";
+ packageName = "colors";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
- sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
+ url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz";
+ sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
};
};
- "statuses-1.3.1" = {
- name = "statuses";
- packageName = "statuses";
- version = "1.3.1";
+ "colors-1.1.2" = {
+ name = "colors";
+ packageName = "colors";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz";
- sha1 = "faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e";
+ url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
+ sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
};
};
- "statuses-1.4.0" = {
- name = "statuses";
- packageName = "statuses";
- version = "1.4.0";
+ "colors-1.3.0" = {
+ name = "colors";
+ packageName = "colors";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz";
- sha512 = "zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==";
+ url = "https://registry.npmjs.org/colors/-/colors-1.3.0.tgz";
+ sha512 = "EDpX3a7wHMWFA7PUHWPHNWqOxIIRSJetuwl0AS5Oi/5FMV8kWm69RTlgm00GKjBO1xFHMtBbL49yRtMMdticBw==";
};
};
- "statuses-1.5.0" = {
- name = "statuses";
- packageName = "statuses";
- version = "1.5.0";
+ "colors-1.3.2" = {
+ name = "colors";
+ packageName = "colors";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz";
- sha1 = "161c7dac177659fd9811f43771fa99381478628c";
+ url = "https://registry.npmjs.org/colors/-/colors-1.3.2.tgz";
+ sha512 = "rhP0JSBGYvpcNQj4s5AdShMeE5ahMop96cTeDl/v9qQQm2fYClE2QXZRi8wLzc+GmXSxdIqqbOIAhyObEXDbfQ==";
};
};
- "stream-collector-1.0.1" = {
- name = "stream-collector";
- packageName = "stream-collector";
- version = "1.0.1";
+ "colour-0.7.1" = {
+ name = "colour";
+ packageName = "colour";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-collector/-/stream-collector-1.0.1.tgz";
- sha1 = "4d4e55f171356121b2c5f6559f944705ab28db15";
+ url = "https://registry.npmjs.org/colour/-/colour-0.7.1.tgz";
+ sha1 = "9cb169917ec5d12c0736d3e8685746df1cadf778";
};
};
- "stream-combiner-0.0.4" = {
- name = "stream-combiner";
- packageName = "stream-combiner";
- version = "0.0.4";
+ "columnify-1.5.4" = {
+ name = "columnify";
+ packageName = "columnify";
+ version = "1.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz";
- sha1 = "4d5e433c185261dde623ca3f44c586bcf5c4ad14";
+ url = "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz";
+ sha1 = "4737ddf1c7b69a8a7c340570782e947eec8e78bb";
};
};
- "stream-each-1.2.3" = {
- name = "stream-each";
- packageName = "stream-each";
- version = "1.2.3";
+ "combine-errors-3.0.3" = {
+ name = "combine-errors";
+ packageName = "combine-errors";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz";
- sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==";
+ url = "https://registry.npmjs.org/combine-errors/-/combine-errors-3.0.3.tgz";
+ sha1 = "f4df6740083e5703a3181110c2b10551f003da86";
};
};
- "stream-parser-0.3.1" = {
- name = "stream-parser";
- packageName = "stream-parser";
- version = "0.3.1";
+ "combine-lists-1.0.1" = {
+ name = "combine-lists";
+ packageName = "combine-lists";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz";
- sha1 = "1618548694420021a1182ff0af1911c129761773";
+ url = "https://registry.npmjs.org/combine-lists/-/combine-lists-1.0.1.tgz";
+ sha1 = "458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6";
};
};
- "stream-shift-1.0.0" = {
- name = "stream-shift";
- packageName = "stream-shift";
- version = "1.0.0";
+ "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/stream-shift/-/stream-shift-1.0.0.tgz";
- sha1 = "d5c752825e5367e786f78e18e445ea223a155952";
+ url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz";
+ sha1 = "a58d0df042c186fcf822a8e8015f5450d2d79a8b";
};
};
- "streamsearch-0.1.2" = {
- name = "streamsearch";
- packageName = "streamsearch";
- version = "0.1.2";
+ "combined-stream-0.0.7" = {
+ name = "combined-stream";
+ packageName = "combined-stream";
+ version = "0.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz";
- sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a";
+ url = "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz";
+ sha1 = "0137e657baa5a7541c57ac37ac5fc07d73b4dc1f";
};
};
- "string-3.3.3" = {
- name = "string";
- packageName = "string";
- version = "3.3.3";
+ "combined-stream-1.0.6" = {
+ name = "combined-stream";
+ packageName = "combined-stream";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/string/-/string-3.3.3.tgz";
- sha1 = "5ea211cd92d228e184294990a6cc97b366a77cb0";
+ url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz";
+ sha1 = "723e7df6e801ac5613113a7e445a9b69cb632818";
};
};
- "string-width-1.0.2" = {
- name = "string-width";
- packageName = "string-width";
- version = "1.0.2";
+ "command-exists-1.2.7" = {
+ name = "command-exists";
+ packageName = "command-exists";
+ version = "1.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
- sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
+ url = "https://registry.npmjs.org/command-exists/-/command-exists-1.2.7.tgz";
+ sha512 = "doWDvhXCcW5LK0cIUWrOQ8oMFXJv3lEQCkJpGVjM8v9SV0uhqYXB943538tEA2CiaWqSyuYUGAm5ezDwEx9xlw==";
};
};
- "string-width-2.1.1" = {
- name = "string-width";
- packageName = "string-width";
- version = "2.1.1";
+ "commander-0.6.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "0.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
- sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==";
+ url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz";
+ sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06";
};
};
- "string_decoder-0.10.31" = {
- name = "string_decoder";
- packageName = "string_decoder";
- version = "0.10.31";
+ "commander-1.0.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
- sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
+ url = "https://registry.npmjs.org/commander/-/commander-1.0.0.tgz";
+ sha1 = "5e6a88e7070ff5908836ead19169548c30f90bcd";
};
};
- "string_decoder-1.1.1" = {
- name = "string_decoder";
- packageName = "string_decoder";
+ "commander-1.0.4" = {
+ name = "commander";
+ packageName = "commander";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-1.0.4.tgz";
+ sha1 = "5edeb1aee23c4fb541a6b70d692abef19669a2d3";
+ };
+ };
+ "commander-1.1.1" = {
+ name = "commander";
+ packageName = "commander";
version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
- sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
+ url = "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz";
+ sha1 = "50d1651868ae60eccff0a2d9f34595376bc6b041";
};
};
- "strip-ansi-3.0.1" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "3.0.1";
+ "commander-1.3.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
- sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
+ url = "https://registry.npmjs.org/commander/-/commander-1.3.1.tgz";
+ sha1 = "02443e02db96f4b32b674225451abb6e9510000e";
};
};
- "strip-ansi-4.0.0" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "4.0.0";
+ "commander-1.3.2" = {
+ name = "commander";
+ packageName = "commander";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
- sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
+ url = "https://registry.npmjs.org/commander/-/commander-1.3.2.tgz";
+ sha1 = "8a8f30ec670a6fdd64af52f1914b907d79ead5b5";
};
};
- "strip-dirs-2.1.0" = {
- name = "strip-dirs";
- packageName = "strip-dirs";
- version = "2.1.0";
+ "commander-2.0.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz";
- sha512 = "JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==";
+ url = "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz";
+ sha1 = "d1b86f901f8b64bd941bdeadaf924530393be928";
};
};
- "strip-eof-1.0.0" = {
- name = "strip-eof";
- packageName = "strip-eof";
- version = "1.0.0";
+ "commander-2.1.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz";
- sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
+ url = "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz";
+ sha1 = "d121bbae860d9992a3d517ba96f56588e47c6781";
};
};
- "strip-json-comments-2.0.1" = {
- name = "strip-json-comments";
- packageName = "strip-json-comments";
- version = "2.0.1";
+ "commander-2.11.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
- sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
+ url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz";
+ sha512 = "b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==";
};
};
- "strip-outer-1.0.1" = {
- name = "strip-outer";
- packageName = "strip-outer";
- version = "1.0.1";
+ "commander-2.13.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz";
- sha512 = "k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==";
+ url = "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz";
+ sha512 = "MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==";
};
};
- "subcommand-2.1.0" = {
- name = "subcommand";
- packageName = "subcommand";
- version = "2.1.0";
+ "commander-2.14.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/subcommand/-/subcommand-2.1.0.tgz";
- sha1 = "5e4ceca5a3779e3365b1511e05f866877302f760";
+ url = "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz";
+ sha512 = "+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==";
};
};
- "superagent-1.8.5" = {
- name = "superagent";
- packageName = "superagent";
- version = "1.8.5";
+ "commander-2.15.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/superagent/-/superagent-1.8.5.tgz";
- sha1 = "1c0ddc3af30e80eb84ebc05cb2122da8fe940b55";
+ url = "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz";
+ sha512 = "VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==";
};
};
- "superagent-3.8.2" = {
- name = "superagent";
- packageName = "superagent";
- version = "3.8.2";
+ "commander-2.17.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/superagent/-/superagent-3.8.2.tgz";
- sha512 = "gVH4QfYHcY3P0f/BZzavLreHW3T1v7hG9B+hpMQotGQqurOvhv87GcMCd6LWySmBuf+BDR44TQd0aISjVHLeNQ==";
+ url = "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz";
+ sha512 = "wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==";
};
};
- "superagent-3.8.3" = {
- name = "superagent";
- packageName = "superagent";
- version = "3.8.3";
+ "commander-2.3.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz";
- sha512 = "GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==";
+ url = "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz";
+ sha1 = "fd430e889832ec353b9acd1de217c11cb3eef873";
};
};
- "supports-color-1.2.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "1.2.0";
+ "commander-2.6.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-1.2.0.tgz";
- sha1 = "ff1ed1e61169d06b3cf2d588e188b18d8847e17e";
+ url = "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz";
+ sha1 = "9df7e52fb2a0cb0fb89058ee80c3104225f37e1d";
};
};
- "supports-color-2.0.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "2.0.0";
+ "commander-2.8.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
- sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
+ url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz";
+ sha1 = "06be367febfda0c330aa1e2a072d3dc9762425d4";
};
};
- "supports-color-5.4.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "5.4.0";
+ "commander-2.9.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz";
- sha512 = "zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==";
+ url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz";
+ sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
};
};
- "swagger-converter-0.1.7" = {
- name = "swagger-converter";
- packageName = "swagger-converter";
- version = "0.1.7";
+ "commist-1.0.0" = {
+ name = "commist";
+ packageName = "commist";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-converter/-/swagger-converter-0.1.7.tgz";
- sha1 = "a097519c6f1ee4dd67e308d9b53ddc9c2b257f97";
+ url = "https://registry.npmjs.org/commist/-/commist-1.0.0.tgz";
+ sha1 = "c0c352501cf6f52e9124e3ef89c9806e2022ebef";
};
};
- "swagger-converter-0.2.0" = {
- name = "swagger-converter";
- packageName = "swagger-converter";
- version = "0.2.0";
+ "common-tags-1.8.0" = {
+ name = "common-tags";
+ packageName = "common-tags";
+ version = "1.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-converter/-/swagger-converter-0.2.0.tgz";
- sha1 = "354023cfc5ed3d4ef6895c310189067bbe66d616";
+ url = "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz";
+ sha512 = "6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==";
};
};
- "swagger-editor-2.10.5" = {
- name = "swagger-editor";
- packageName = "swagger-editor";
- version = "2.10.5";
+ "commondir-1.0.1" = {
+ name = "commondir";
+ packageName = "commondir";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-editor/-/swagger-editor-2.10.5.tgz";
- sha1 = "a4316ccb0d40a77d30dadf91f0f4db7e475f948a";
+ url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz";
+ sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b";
};
};
- "swagger-test-templates-1.5.0" = {
- name = "swagger-test-templates";
- packageName = "swagger-test-templates";
- version = "1.5.0";
+ "commoner-0.10.8" = {
+ name = "commoner";
+ packageName = "commoner";
+ version = "0.10.8";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-test-templates/-/swagger-test-templates-1.5.0.tgz";
- sha512 = "1IBHCamO7uJuFo11a/aaA0ZPWJkAfiuvadmLO9TwXiY2Op+SigTL9er/GabuhK4gXMNJ2MaoPQ4F90HQlNFYJQ==";
+ url = "https://registry.npmjs.org/commoner/-/commoner-0.10.8.tgz";
+ sha1 = "34fc3672cd24393e8bb47e70caa0293811f4f2c5";
};
};
- "swagger-tools-0.9.16" = {
- name = "swagger-tools";
- packageName = "swagger-tools";
- version = "0.9.16";
+ "compact2string-1.4.0" = {
+ name = "compact2string";
+ packageName = "compact2string";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-tools/-/swagger-tools-0.9.16.tgz";
- sha1 = "e39fae3d581d713682491e1926cd87bf2c209bfb";
+ url = "https://registry.npmjs.org/compact2string/-/compact2string-1.4.0.tgz";
+ sha1 = "a99cd96ea000525684b269683ae2222d6eea7b49";
};
};
- "symbol-observable-1.2.0" = {
- name = "symbol-observable";
- packageName = "symbol-observable";
- version = "1.2.0";
+ "compare-func-1.3.2" = {
+ name = "compare-func";
+ packageName = "compare-func";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz";
- sha512 = "e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==";
+ url = "https://registry.npmjs.org/compare-func/-/compare-func-1.3.2.tgz";
+ sha1 = "99dd0ba457e1f9bc722b12c08ec33eeab31fa648";
};
};
- "tar-2.2.1" = {
- name = "tar";
- packageName = "tar";
- version = "2.2.1";
+ "component-bind-1.0.0" = {
+ name = "component-bind";
+ packageName = "component-bind";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz";
- sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1";
+ url = "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz";
+ sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1";
};
};
- "tar-4.4.6" = {
- name = "tar";
- packageName = "tar";
- version = "4.4.6";
+ "component-emitter-1.1.2" = {
+ name = "component-emitter";
+ packageName = "component-emitter";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-4.4.6.tgz";
- sha512 = "tMkTnh9EdzxyfW+6GK6fCahagXsnYk6kE6S9Gr9pjVdys769+laCTbodXDhPAjzVtEBazRgP0gYqOjnk9dQzLg==";
+ url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz";
+ sha1 = "296594f2753daa63996d2af08d15a95116c9aec3";
};
};
- "tar-stream-1.6.1" = {
- name = "tar-stream";
- packageName = "tar-stream";
- version = "1.6.1";
+ "component-emitter-1.2.1" = {
+ name = "component-emitter";
+ packageName = "component-emitter";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.1.tgz";
- sha512 = "IFLM5wp3QrJODQFPm6/to3LJZrONdBY/otxcvDIQzu217zKye6yVR3hhi9lAjrC2Z+m/j5oDxMPb1qcd8cIvpA==";
+ url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
+ sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
};
};
- "term-size-1.2.0" = {
- name = "term-size";
- packageName = "term-size";
- version = "1.2.0";
+ "component-inherit-0.0.3" = {
+ name = "component-inherit";
+ packageName = "component-inherit";
+ version = "0.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz";
- sha1 = "458b83887f288fc56d6fffbfad262e26638efa69";
+ url = "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz";
+ sha1 = "645fc4adf58b72b649d5cae65135619db26ff143";
};
};
- "throttle-1.0.3" = {
- name = "throttle";
- packageName = "throttle";
- version = "1.0.3";
+ "compress-commons-1.2.2" = {
+ name = "compress-commons";
+ packageName = "compress-commons";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/throttle/-/throttle-1.0.3.tgz";
- sha1 = "8a32e4a15f1763d997948317c5ebe3ad8a41e4b7";
+ url = "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.2.tgz";
+ sha1 = "524a9f10903f3a813389b0225d27c48bb751890f";
};
};
- "through-2.3.8" = {
- name = "through";
- packageName = "through";
- version = "2.3.8";
+ "compressible-2.0.14" = {
+ name = "compressible";
+ packageName = "compressible";
+ version = "2.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz";
- sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
+ url = "https://registry.npmjs.org/compressible/-/compressible-2.0.14.tgz";
+ sha1 = "326c5f507fbb055f54116782b969a81b67a29da7";
};
};
- "thunkify-2.1.2" = {
- name = "thunkify";
- packageName = "thunkify";
- version = "2.1.2";
+ "compression-1.5.2" = {
+ name = "compression";
+ packageName = "compression";
+ version = "1.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz";
- sha1 = "faa0e9d230c51acc95ca13a361ac05ca7e04553d";
+ url = "https://registry.npmjs.org/compression/-/compression-1.5.2.tgz";
+ sha1 = "b03b8d86e6f8ad29683cba8df91ddc6ffc77b395";
};
};
- "thunkify-wrap-1.0.4" = {
- name = "thunkify-wrap";
- packageName = "thunkify-wrap";
- version = "1.0.4";
+ "compression-1.7.3" = {
+ name = "compression";
+ packageName = "compression";
+ version = "1.7.3";
src = fetchurl {
- url = "https://registry.npmjs.org/thunkify-wrap/-/thunkify-wrap-1.0.4.tgz";
- sha1 = "b52be548ddfefda20e00b58c6096762b43dd6880";
+ url = "https://registry.npmjs.org/compression/-/compression-1.7.3.tgz";
+ sha512 = "HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==";
};
};
- "thunky-0.1.0" = {
- name = "thunky";
- packageName = "thunky";
- version = "0.1.0";
+ "concat-map-0.0.1" = {
+ name = "concat-map";
+ packageName = "concat-map";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz";
- sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e";
+ url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
+ sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
};
};
- "thunky-1.0.2" = {
- name = "thunky";
- packageName = "thunky";
- version = "1.0.2";
+ "concat-stream-1.5.0" = {
+ name = "concat-stream";
+ packageName = "concat-stream";
+ version = "1.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/thunky/-/thunky-1.0.2.tgz";
- sha1 = "a862e018e3fb1ea2ec3fce5d55605cf57f247371";
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz";
+ sha1 = "53f7d43c51c5e43f81c8fdd03321c631be68d611";
};
};
- "tildify-1.2.0" = {
- name = "tildify";
- packageName = "tildify";
- version = "1.2.0";
+ "concat-stream-1.5.2" = {
+ name = "concat-stream";
+ packageName = "concat-stream";
+ version = "1.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz";
- sha1 = "dcec03f55dca9b7aa3e5b04f21817eb56e63588a";
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz";
+ sha1 = "708978624d856af41a5a741defdd261da752c266";
};
};
- "timed-out-4.0.1" = {
- name = "timed-out";
- packageName = "timed-out";
- version = "4.0.1";
+ "concat-stream-1.6.2" = {
+ name = "concat-stream";
+ packageName = "concat-stream";
+ version = "1.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz";
- sha1 = "f32eacac5a175bea25d7fab565ab3ed8741ef56f";
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
+ sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==";
};
};
- "tmp-0.0.33" = {
- name = "tmp";
- packageName = "tmp";
- version = "0.0.33";
+ "conf-1.4.0" = {
+ name = "conf";
+ packageName = "conf";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz";
- sha512 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==";
+ url = "https://registry.npmjs.org/conf/-/conf-1.4.0.tgz";
+ sha512 = "bzlVWS2THbMetHqXKB8ypsXN4DQ/1qopGwNJi1eYbpwesJcd86FBjFciCQX/YwAhp9bM7NVnPFqZ5LpV7gP0Dg==";
};
};
- "to-buffer-1.1.1" = {
- name = "to-buffer";
- packageName = "to-buffer";
- version = "1.1.1";
+ "config-0.4.15" = {
+ name = "config";
+ packageName = "config";
+ version = "0.4.15";
src = fetchurl {
- url = "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz";
- sha512 = "lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==";
+ url = "https://registry.npmjs.org/config/-/config-0.4.15.tgz";
+ sha1 = "d43ddf58b8df5637fdd1314fc816ccae7bfbcd18";
};
};
- "to-iso-string-0.0.2" = {
- name = "to-iso-string";
- packageName = "to-iso-string";
- version = "0.0.2";
+ "config-chain-1.1.11" = {
+ name = "config-chain";
+ packageName = "config-chain";
+ version = "1.1.11";
src = fetchurl {
- url = "https://registry.npmjs.org/to-iso-string/-/to-iso-string-0.0.2.tgz";
- sha1 = "4dc19e664dfccbe25bd8db508b00c6da158255d1";
+ url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz";
+ sha1 = "aba09747dfbe4c3e70e766a6e41586e1859fc6f2";
};
};
- "to-object-path-0.3.0" = {
- name = "to-object-path";
- packageName = "to-object-path";
- version = "0.3.0";
+ "configstore-1.4.0" = {
+ name = "configstore";
+ packageName = "configstore";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
- sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
+ url = "https://registry.npmjs.org/configstore/-/configstore-1.4.0.tgz";
+ sha1 = "c35781d0501d268c25c54b8b17f6240e8a4fb021";
};
};
- "to-regex-3.0.2" = {
- name = "to-regex";
- packageName = "to-regex";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz";
- sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==";
+ "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";
};
};
- "to-regex-range-2.1.1" = {
- name = "to-regex-range";
- packageName = "to-regex-range";
- version = "2.1.1";
+ "configstore-3.1.2" = {
+ name = "configstore";
+ packageName = "configstore";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
- sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
+ url = "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz";
+ sha512 = "vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==";
};
};
- "toiletdb-1.4.1" = {
- name = "toiletdb";
- packageName = "toiletdb";
- version = "1.4.1";
+ "connect-1.9.2" = {
+ name = "connect";
+ packageName = "connect";
+ version = "1.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/toiletdb/-/toiletdb-1.4.1.tgz";
- sha512 = "FOinMMjECHmDt6PZkSmcbM8ir41kGwYCbVW7NczWkWNNeuX9/mQHz31oNSJKZrkvgfas692ZoZ+G1jdM43qVGA==";
+ url = "https://registry.npmjs.org/connect/-/connect-1.9.2.tgz";
+ sha1 = "42880a22e9438ae59a8add74e437f58ae8e52807";
};
};
- "toml-2.3.3" = {
- name = "toml";
- packageName = "toml";
- version = "2.3.3";
+ "connect-2.11.0" = {
+ name = "connect";
+ packageName = "connect";
+ version = "2.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/toml/-/toml-2.3.3.tgz";
- sha512 = "O7L5hhSQHxuufWUdcTRPfuTh3phKfAZ/dqfxZFoxPCj2RYmpaSGLEIs016FCXItQwNr08yefUB5TSjzRYnajTA==";
+ url = "https://registry.npmjs.org/connect/-/connect-2.11.0.tgz";
+ sha1 = "9991ce09ff9b85d9ead27f9d41d0b2a2df2f9284";
};
};
- "touch-3.1.0" = {
- name = "touch";
- packageName = "touch";
- version = "3.1.0";
+ "connect-2.3.9" = {
+ name = "connect";
+ packageName = "connect";
+ version = "2.3.9";
src = fetchurl {
- url = "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz";
- sha512 = "WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==";
+ url = "https://registry.npmjs.org/connect/-/connect-2.3.9.tgz";
+ sha1 = "4d26ddc485c32e5a1cf1b35854823b4720d25a52";
};
};
- "tough-cookie-2.3.4" = {
- name = "tough-cookie";
- packageName = "tough-cookie";
- version = "2.3.4";
+ "connect-2.30.2" = {
+ name = "connect";
+ packageName = "connect";
+ version = "2.30.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz";
- sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==";
+ url = "https://registry.npmjs.org/connect/-/connect-2.30.2.tgz";
+ sha1 = "8da9bcbe8a054d3d318d74dfec903b5c39a1b609";
};
};
- "township-client-1.3.2" = {
- name = "township-client";
- packageName = "township-client";
- version = "1.3.2";
+ "connect-2.7.6" = {
+ name = "connect";
+ packageName = "connect";
+ version = "2.7.6";
src = fetchurl {
- url = "https://registry.npmjs.org/township-client/-/township-client-1.3.2.tgz";
- sha512 = "6Di70O1dWm45SJ5xrGzlE805z3gYn4ZUmNKomIrI4OojzRA4zyQzJ/4lAxQbJlq0ihG/mUE2xbP4q85Q68ig2g==";
+ url = "https://registry.npmjs.org/connect/-/connect-2.7.6.tgz";
+ sha1 = "b83b68fa6f245c5020e2395472cc8322b0060738";
};
};
- "traverse-0.6.6" = {
- name = "traverse";
- packageName = "traverse";
- version = "0.6.6";
+ "connect-3.5.1" = {
+ name = "connect";
+ packageName = "connect";
+ version = "3.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz";
- sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137";
+ url = "https://registry.npmjs.org/connect/-/connect-3.5.1.tgz";
+ sha1 = "6d30d7a63c7f170857a6b3aa6b363d973dca588e";
};
};
- "trim-0.0.1" = {
- name = "trim";
- packageName = "trim";
- version = "0.0.1";
+ "connect-3.6.6" = {
+ name = "connect";
+ packageName = "connect";
+ version = "3.6.6";
src = fetchurl {
- url = "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz";
- sha1 = "5858547f6b290757ee95cccc666fb50084c460dd";
+ url = "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz";
+ sha1 = "09eff6c55af7236e137135a72574858b6786f524";
};
};
- "trim-repeated-1.0.0" = {
- name = "trim-repeated";
- packageName = "trim-repeated";
- version = "1.0.0";
+ "connect-busboy-0.0.2" = {
+ name = "connect-busboy";
+ packageName = "connect-busboy";
+ version = "0.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz";
- sha1 = "e3646a2ea4e891312bf7eace6cfb05380bc01c21";
+ url = "https://registry.npmjs.org/connect-busboy/-/connect-busboy-0.0.2.tgz";
+ sha1 = "ac5c9c96672171885e576c66b2bfd95d3bb11097";
};
};
- "truncate-utf8-bytes-1.0.2" = {
- name = "truncate-utf8-bytes";
- packageName = "truncate-utf8-bytes";
- version = "1.0.2";
+ "connect-flash-0.1.0" = {
+ name = "connect-flash";
+ packageName = "connect-flash";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz";
- sha1 = "405923909592d56f78a5818434b0b78489ca5f2b";
+ url = "https://registry.npmjs.org/connect-flash/-/connect-flash-0.1.0.tgz";
+ sha1 = "82b381d61a12b651437df1c259c1f1c841239b88";
};
};
- "tslib-1.9.3" = {
- name = "tslib";
- packageName = "tslib";
- version = "1.9.3";
+ "connect-multiparty-2.1.1" = {
+ name = "connect-multiparty";
+ packageName = "connect-multiparty";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz";
- sha512 = "4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==";
+ url = "https://registry.npmjs.org/connect-multiparty/-/connect-multiparty-2.1.1.tgz";
+ sha1 = "6ee8212fdb2204d3f135f8c12e3afa495d181fd7";
};
};
- "ttl-1.3.1" = {
- name = "ttl";
- packageName = "ttl";
- version = "1.3.1";
+ "connect-pause-0.1.1" = {
+ name = "connect-pause";
+ packageName = "connect-pause";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ttl/-/ttl-1.3.1.tgz";
- sha512 = "+bGy9iDAqg3WSfc2ZrprToSPJhZjqy7vUv9wupQzsiv+BVPVx1T2a6G4T0290SpQj+56Toaw9BiLO5j5Bd7QzA==";
+ url = "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz";
+ sha1 = "b269b2bb82ddb1ac3db5099c0fb582aba99fb37a";
};
};
- "tunnel-agent-0.6.0" = {
- name = "tunnel-agent";
- packageName = "tunnel-agent";
- version = "0.6.0";
+ "connect-restreamer-1.0.3" = {
+ name = "connect-restreamer";
+ packageName = "connect-restreamer";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
- sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
+ url = "https://registry.npmjs.org/connect-restreamer/-/connect-restreamer-1.0.3.tgz";
+ sha1 = "a73f04d88e7292d7fd2f2d7d691a0cdeeed141a9";
};
};
- "tweetnacl-0.14.5" = {
- name = "tweetnacl";
- packageName = "tweetnacl";
- version = "0.14.5";
+ "connect-timeout-1.6.2" = {
+ name = "connect-timeout";
+ packageName = "connect-timeout";
+ version = "1.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
- sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
+ url = "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.6.2.tgz";
+ sha1 = "de9a5ec61e33a12b6edaab7b5f062e98c599b88e";
};
};
- "type-is-1.6.16" = {
- name = "type-is";
- packageName = "type-is";
- version = "1.6.16";
+ "connection-parse-0.0.7" = {
+ name = "connection-parse";
+ packageName = "connection-parse";
+ version = "0.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz";
- sha512 = "HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==";
+ url = "https://registry.npmjs.org/connection-parse/-/connection-parse-0.0.7.tgz";
+ sha1 = "18e7318aab06a699267372b10c5226d25a1c9a69";
};
};
- "typedarray-0.0.6" = {
- name = "typedarray";
- packageName = "typedarray";
- version = "0.0.6";
+ "connections-1.4.2" = {
+ name = "connections";
+ packageName = "connections";
+ version = "1.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
- sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
+ url = "https://registry.npmjs.org/connections/-/connections-1.4.2.tgz";
+ sha1 = "7890482bf5c71af6c5ca192be3136aed74428aad";
};
};
- "uglify-js-2.8.29" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "2.8.29";
+ "console-browserify-1.1.0" = {
+ name = "console-browserify";
+ packageName = "console-browserify";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz";
- sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
+ url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz";
+ sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10";
};
};
- "uglify-to-browserify-1.0.2" = {
- name = "uglify-to-browserify";
- packageName = "uglify-to-browserify";
- version = "1.0.2";
+ "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/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
- sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
+ url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
+ sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
};
};
- "uid-0.0.2" = {
- name = "uid";
- packageName = "uid";
- version = "0.0.2";
+ "consolidate-0.14.5" = {
+ name = "consolidate";
+ packageName = "consolidate";
+ version = "0.14.5";
src = fetchurl {
- url = "https://registry.npmjs.org/uid/-/uid-0.0.2.tgz";
- sha1 = "5e4a5d4b78138b4f70f89fd3c76fc59aa9d2f103";
+ url = "https://registry.npmjs.org/consolidate/-/consolidate-0.14.5.tgz";
+ sha1 = "5a25047bc76f73072667c8cb52c989888f494c63";
};
};
- "uint64be-2.0.2" = {
- name = "uint64be";
- packageName = "uint64be";
- version = "2.0.2";
+ "constant-case-2.0.0" = {
+ name = "constant-case";
+ packageName = "constant-case";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/uint64be/-/uint64be-2.0.2.tgz";
- sha512 = "9QqdvpGQTXgxthP+lY4e/gIBy+RuqcBaC6JVwT5I3bDLgT/btL6twZMR0pI3/Fgah9G/pdwzIprE5gL6v9UvyQ==";
+ url = "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz";
+ sha1 = "4175764d389d3fa9c8ecd29186ed6005243b6a46";
};
};
- "unbzip2-stream-1.2.5" = {
- name = "unbzip2-stream";
- packageName = "unbzip2-stream";
- version = "1.2.5";
+ "constantinople-3.0.2" = {
+ name = "constantinople";
+ packageName = "constantinople";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz";
- sha512 = "izD3jxT8xkzwtXRUZjtmRwKnZoeECrfZ8ra/ketwOcusbZEp4mjULMnJOCfTDZBgGQAAY1AJ/IgxcwkavcX9Og==";
+ url = "https://registry.npmjs.org/constantinople/-/constantinople-3.0.2.tgz";
+ sha1 = "4b945d9937907bcd98ee575122c3817516544141";
};
};
- "undefsafe-2.0.2" = {
- name = "undefsafe";
- packageName = "undefsafe";
- version = "2.0.2";
+ "constantinople-3.1.2" = {
+ name = "constantinople";
+ packageName = "constantinople";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.2.tgz";
- sha1 = "225f6b9e0337663e0d8e7cfd686fc2836ccace76";
+ url = "https://registry.npmjs.org/constantinople/-/constantinople-3.1.2.tgz";
+ sha512 = "yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw==";
};
};
- "union-value-1.0.0" = {
- name = "union-value";
- packageName = "union-value";
+ "constants-browserify-1.0.0" = {
+ name = "constants-browserify";
+ packageName = "constants-browserify";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz";
- sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4";
+ url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz";
+ sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
};
};
- "unique-string-1.0.0" = {
- name = "unique-string";
- packageName = "unique-string";
+ "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/unique-string/-/unique-string-1.0.0.tgz";
- sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a";
+ url = "https://registry.npmjs.org/consume-http-header/-/consume-http-header-1.0.0.tgz";
+ sha1 = "95976d74f7f1b38dfb13fd9b3b68b91a0240556f";
};
};
- "unixify-1.0.0" = {
- name = "unixify";
- packageName = "unixify";
+ "consume-until-1.0.0" = {
+ name = "consume-until";
+ packageName = "consume-until";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz";
- sha1 = "3a641c8c2ffbce4da683a5c70f03a462940c2090";
+ url = "https://registry.npmjs.org/consume-until/-/consume-until-1.0.0.tgz";
+ sha1 = "75b91fa9f16663e51f98e863af995b9164068c1a";
};
};
- "unordered-array-remove-1.0.2" = {
- name = "unordered-array-remove";
- packageName = "unordered-array-remove";
- version = "1.0.2";
+ "content-disposition-0.5.0" = {
+ name = "content-disposition";
+ packageName = "content-disposition";
+ version = "0.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/unordered-array-remove/-/unordered-array-remove-1.0.2.tgz";
- sha1 = "c546e8f88e317a0cf2644c97ecb57dba66d250ef";
+ url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.0.tgz";
+ sha1 = "4284fe6ae0630874639e44e80a418c2934135e9e";
};
};
- "unordered-set-1.1.0" = {
- name = "unordered-set";
- packageName = "unordered-set";
- version = "1.1.0";
+ "content-disposition-0.5.2" = {
+ name = "content-disposition";
+ packageName = "content-disposition";
+ version = "0.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/unordered-set/-/unordered-set-1.1.0.tgz";
- sha1 = "2ba7ef316edd0b9590cc547c74f76a2f164fecca";
+ url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz";
+ sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4";
};
};
- "unordered-set-2.0.1" = {
- name = "unordered-set";
- packageName = "unordered-set";
- version = "2.0.1";
+ "content-type-1.0.4" = {
+ name = "content-type";
+ packageName = "content-type";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/unordered-set/-/unordered-set-2.0.1.tgz";
- sha512 = "eUmNTPzdx+q/WvOHW0bgGYLWvWHNT3PTKEQLg0MAQhc0AHASHVHoP/9YytYd4RBVariqno/mEUhVZN98CmD7bg==";
+ url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz";
+ sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==";
};
};
- "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";
+ "content-type-git+https://github.com/wikimedia/content-type#master" = {
+ name = "content-type";
+ packageName = "content-type";
+ version = "1.0.1";
+ src = fetchgit {
+ url = "https://github.com/wikimedia/content-type";
+ rev = "47b2632d0a2ee79a7d67268e2f6621becd95d05b";
+ sha256 = "e583031138b98e2a09ce14dbd72afa0377201894092c941ef4cc07206c35ed04";
};
};
- "unset-value-1.0.0" = {
- name = "unset-value";
- packageName = "unset-value";
- version = "1.0.0";
+ "content-types-0.1.0" = {
+ name = "content-types";
+ packageName = "content-types";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
- sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
+ url = "https://registry.npmjs.org/content-types/-/content-types-0.1.0.tgz";
+ sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
};
};
- "untildify-3.0.3" = {
- name = "untildify";
- packageName = "untildify";
- version = "3.0.3";
+ "conventional-changelog-angular-1.6.6" = {
+ name = "conventional-changelog-angular";
+ packageName = "conventional-changelog-angular";
+ version = "1.6.6";
src = fetchurl {
- url = "https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz";
- sha512 = "iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==";
+ url = "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz";
+ sha512 = "suQnFSqCxRwyBxY68pYTsFkG0taIdinHLNEAX5ivtw8bCRnIgnpvcHmlR/yjUyZIrNPYAoXlY1WiEKWgSE4BNg==";
};
};
- "unyield-0.0.1" = {
- name = "unyield";
- packageName = "unyield";
- version = "0.0.1";
+ "conventional-changelog-core-2.0.11" = {
+ name = "conventional-changelog-core";
+ packageName = "conventional-changelog-core";
+ version = "2.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/unyield/-/unyield-0.0.1.tgz";
- sha1 = "150e65da42bf7742445b958a64eb9b85d1d2b180";
+ url = "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-2.0.11.tgz";
+ sha512 = "HvTE6RlqeEZ/NFPtQeFLsIDOLrGP3bXYr7lFLMhCVsbduF1MXIe8OODkwMFyo1i9ku9NWBwVnVn0jDmIFXjDRg==";
};
};
- "unzip-response-2.0.1" = {
- name = "unzip-response";
- packageName = "unzip-response";
- version = "2.0.1";
+ "conventional-changelog-preset-loader-1.1.8" = {
+ name = "conventional-changelog-preset-loader";
+ packageName = "conventional-changelog-preset-loader";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz";
- sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97";
+ url = "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-1.1.8.tgz";
+ sha512 = "MkksM4G4YdrMlT2MbTsV2F6LXu/hZR0Tc/yenRrDIKRwBl/SP7ER4ZDlglqJsCzLJi4UonBc52Bkm5hzrOVCcw==";
};
};
- "upath-1.1.0" = {
- name = "upath";
- packageName = "upath";
- version = "1.1.0";
+ "conventional-changelog-writer-3.0.9" = {
+ name = "conventional-changelog-writer";
+ packageName = "conventional-changelog-writer";
+ version = "3.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz";
- sha512 = "bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==";
+ url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-3.0.9.tgz";
+ sha512 = "n9KbsxlJxRQsUnK6wIBRnARacvNnN4C/nxnxCkH+B/R1JS2Fa+DiP1dU4I59mEDEjgnFaN2+9wr1P1s7GYB5/Q==";
};
};
- "update-notifier-2.5.0" = {
- name = "update-notifier";
- packageName = "update-notifier";
- version = "2.5.0";
+ "conventional-commits-filter-1.1.6" = {
+ name = "conventional-commits-filter";
+ packageName = "conventional-commits-filter";
+ version = "1.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz";
- sha512 = "gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==";
+ url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-1.1.6.tgz";
+ sha512 = "KcDgtCRKJCQhyk6VLT7zR+ZOyCnerfemE/CsR3iQpzRRFbLEs0Y6rwk3mpDvtOh04X223z+1xyJ582Stfct/0Q==";
};
};
- "uri-js-3.0.2" = {
- name = "uri-js";
- packageName = "uri-js";
- version = "3.0.2";
+ "conventional-commits-parser-2.1.7" = {
+ name = "conventional-commits-parser";
+ packageName = "conventional-commits-parser";
+ version = "2.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/uri-js/-/uri-js-3.0.2.tgz";
- sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa";
+ url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-2.1.7.tgz";
+ sha512 = "BoMaddIEJ6B4QVMSDu9IkVImlGOSGA1I2BQyOZHeLQ6qVOJLcLKn97+fL6dGbzWEiqDzfH4OkcveULmeq2MHFQ==";
};
};
- "urix-0.1.0" = {
- name = "urix";
- packageName = "urix";
- version = "0.1.0";
+ "conventional-recommended-bump-2.0.9" = {
+ name = "conventional-recommended-bump";
+ packageName = "conventional-recommended-bump";
+ version = "2.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
- sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
+ url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-2.0.9.tgz";
+ sha512 = "YE6/o+648qkX3fTNvfBsvPW3tSnbZ6ec3gF0aBahCPgyoVHU2Mw0nUAZ1h1UN65GazpORngrgRC8QCltNYHPpQ==";
};
};
- "url-parse-lax-1.0.0" = {
- name = "url-parse-lax";
- packageName = "url-parse-lax";
- version = "1.0.0";
+ "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/url-parse-lax/-/url-parse-lax-1.0.0.tgz";
- sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73";
+ url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz";
+ sha1 = "4829c877e9fe49b3161f3bf3673888e204699860";
};
};
- "url-to-options-1.0.1" = {
- name = "url-to-options";
- packageName = "url-to-options";
- version = "1.0.1";
+ "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/url-to-options/-/url-to-options-1.0.1.tgz";
- sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9";
+ url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz";
+ sha1 = "b8278097b9bc229365de5c62cf5fcaed8b5599e5";
};
};
- "use-3.1.1" = {
- name = "use";
- packageName = "use";
- version = "3.1.1";
+ "cookie-0.0.4" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz";
- sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==";
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.0.4.tgz";
+ sha1 = "5456bd47aee2666eac976ea80a6105940483fe98";
};
};
- "user-home-2.0.0" = {
- name = "user-home";
- packageName = "user-home";
- version = "2.0.0";
+ "cookie-0.0.5" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz";
- sha1 = "9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f";
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.0.5.tgz";
+ sha1 = "f9acf9db57eb7568c9fcc596256b7bb22e307c81";
};
};
- "utf8-byte-length-1.0.4" = {
- name = "utf8-byte-length";
- packageName = "utf8-byte-length";
- version = "1.0.4";
+ "cookie-0.1.0" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz";
- sha1 = "f45f150c4c66eee968186505ab93fcbb8ad6bf61";
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.1.0.tgz";
+ sha1 = "90eb469ddce905c866de687efc43131d8801f9d0";
};
};
- "util-deprecate-1.0.2" = {
- name = "util-deprecate";
- packageName = "util-deprecate";
- version = "1.0.2";
+ "cookie-0.1.2" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
- sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.1.2.tgz";
+ sha1 = "72fec3d24e48a3432073d90c12642005061004b1";
};
};
- "utile-0.3.0" = {
- name = "utile";
- packageName = "utile";
- version = "0.3.0";
+ "cookie-0.1.3" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/utile/-/utile-0.3.0.tgz";
- sha1 = "1352c340eb820e4d8ddba039a4fbfaa32ed4ef3a";
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.1.3.tgz";
+ sha1 = "e734a5c1417fce472d5aef82c381cabb64d1a435";
};
};
- "utils-merge-1.0.1" = {
- name = "utils-merge";
- packageName = "utils-merge";
- version = "1.0.1";
+ "cookie-0.3.1" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz";
- sha1 = "9f95710f50a267947b2ccc124741c1028427e713";
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz";
+ sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb";
};
};
- "utp-native-1.7.2" = {
- name = "utp-native";
- packageName = "utp-native";
- version = "1.7.2";
+ "cookie-jar-0.2.0" = {
+ name = "cookie-jar";
+ packageName = "cookie-jar";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/utp-native/-/utp-native-1.7.2.tgz";
- sha512 = "jxNZIa49OXRCFbbqlp0SWsTCasvD9QjumUW85++KMaT21PKMDn6dLl2GsSsf1OsWRI8yKdzXg1OxhNsifPjyEA==";
+ url = "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz";
+ sha1 = "64ecc06ac978db795e4b5290cbe48ba3781400fa";
};
};
- "uuid-3.3.2" = {
- name = "uuid";
- packageName = "uuid";
- version = "3.3.2";
+ "cookie-parser-1.3.5" = {
+ name = "cookie-parser";
+ packageName = "cookie-parser";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz";
- sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==";
+ url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.3.5.tgz";
+ sha1 = "9d755570fb5d17890771227a02314d9be7cf8356";
};
};
- "valid-url-1.0.9" = {
- name = "valid-url";
- packageName = "valid-url";
- version = "1.0.9";
+ "cookie-parser-1.4.3" = {
+ name = "cookie-parser";
+ packageName = "cookie-parser";
+ version = "1.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz";
- sha1 = "1c14479b40f1397a75782f115e4086447433a200";
+ url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.3.tgz";
+ sha1 = "0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5";
};
};
- "validate-npm-package-name-3.0.0" = {
- name = "validate-npm-package-name";
- packageName = "validate-npm-package-name";
- version = "3.0.0";
+ "cookie-signature-1.0.1" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
- sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz";
+ sha1 = "44e072148af01e6e8e24afbf12690d68ae698ecb";
};
};
- "validator-10.5.0" = {
- name = "validator";
- packageName = "validator";
- version = "10.5.0";
+ "cookie-signature-1.0.5" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-10.5.0.tgz";
- sha512 = "6OOi+eV2mOxCFLq0f2cJDrdB6lrtLXEUxabhNRGjgOLT/l3SSll9J49Cl+LIloUqkWWTPraK/mucEQ3dc2jStQ==";
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.5.tgz";
+ sha1 = "a122e3f1503eca0f5355795b0711bb2368d450f9";
};
};
- "variable-diff-1.1.0" = {
- name = "variable-diff";
- packageName = "variable-diff";
- version = "1.1.0";
+ "cookie-signature-1.0.6" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/variable-diff/-/variable-diff-1.1.0.tgz";
- sha1 = "d2bd5c66db76c13879d96e6a306edc989df978da";
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz";
+ sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c";
};
};
- "varint-3.0.1" = {
- name = "varint";
- packageName = "varint";
- version = "3.0.1";
+ "cookie-signature-1.1.0" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-3.0.1.tgz";
- sha1 = "9d3f53e036c0ab12000a74bc2d24cbf093a581d9";
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.1.0.tgz";
+ sha512 = "Alvs19Vgq07eunykd3Xy2jF0/qSNv2u7KDbAek9H5liV1UMijbqFs5cycZvv5dVsvseT/U4H8/7/w8Koh35C4A==";
};
};
- "varint-4.0.1" = {
- name = "varint";
- packageName = "varint";
- version = "4.0.1";
+ "cookiejar-2.0.1" = {
+ name = "cookiejar";
+ packageName = "cookiejar";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-4.0.1.tgz";
- sha1 = "490829b942d248463b2b35097995c3bf737198e9";
+ url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.0.1.tgz";
+ sha1 = "3d12752f6adf68a892f332433492bd5812bb668f";
};
};
- "varint-5.0.0" = {
- name = "varint";
- packageName = "varint";
- version = "5.0.0";
+ "cookiejar-2.0.6" = {
+ name = "cookiejar";
+ packageName = "cookiejar";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-5.0.0.tgz";
- sha1 = "d826b89f7490732fabc0c0ed693ed475dcb29ebf";
+ url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.0.6.tgz";
+ sha1 = "0abf356ad00d1c5a219d88d44518046dd026acfe";
};
};
- "verror-1.10.0" = {
- name = "verror";
- packageName = "verror";
- version = "1.10.0";
+ "cookiejar-2.1.2" = {
+ name = "cookiejar";
+ packageName = "cookiejar";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
- sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
+ url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz";
+ sha512 = "Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==";
};
};
- "ware-1.3.0" = {
- name = "ware";
- packageName = "ware";
- version = "1.3.0";
+ "cookies-0.7.1" = {
+ name = "cookies";
+ packageName = "cookies";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz";
- sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4";
+ url = "https://registry.npmjs.org/cookies/-/cookies-0.7.1.tgz";
+ sha1 = "7c8a615f5481c61ab9f16c833731bcb8f663b99b";
};
};
- "which-1.3.1" = {
- name = "which";
- packageName = "which";
- version = "1.3.1";
+ "copy-concurrently-1.0.5" = {
+ name = "copy-concurrently";
+ packageName = "copy-concurrently";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
- sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
+ url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz";
+ sha512 = "f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==";
};
};
- "wide-align-1.1.3" = {
- name = "wide-align";
- packageName = "wide-align";
- version = "1.1.3";
+ "copy-descriptor-0.1.1" = {
+ name = "copy-descriptor";
+ packageName = "copy-descriptor";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz";
- sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==";
+ url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
+ sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
};
};
- "widest-line-2.0.0" = {
- name = "widest-line";
- packageName = "widest-line";
- version = "2.0.0";
+ "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/widest-line/-/widest-line-2.0.0.tgz";
- sha1 = "0142a4e8a243f8882c0233aa0e0281aa76152273";
+ url = "https://registry.npmjs.org/cordova-app-hello-world/-/cordova-app-hello-world-3.12.0.tgz";
+ sha1 = "270e06b67b2ae94bcfee6592ed39eb42303d186f";
};
};
- "win-fork-1.1.1" = {
- name = "win-fork";
- packageName = "win-fork";
- version = "1.1.1";
+ "cordova-common-2.2.5" = {
+ name = "cordova-common";
+ packageName = "cordova-common";
+ version = "2.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/win-fork/-/win-fork-1.1.1.tgz";
- sha1 = "8f58e0656fca00adc8c86a2b89e3cd2d6a2d5e5e";
+ url = "https://registry.npmjs.org/cordova-common/-/cordova-common-2.2.5.tgz";
+ sha1 = "f93cef2ad494cfcbf56c46e3d612aaa9cb5fcc32";
};
};
- "window-size-0.1.0" = {
- name = "window-size";
- packageName = "window-size";
- version = "0.1.0";
+ "cordova-create-1.1.2" = {
+ name = "cordova-create";
+ packageName = "cordova-create";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz";
- sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d";
+ url = "https://registry.npmjs.org/cordova-create/-/cordova-create-1.1.2.tgz";
+ sha1 = "83b09271b378d1c03bc7d9a786fedd60485c3ccf";
};
};
- "winston-2.1.1" = {
- name = "winston";
- packageName = "winston";
- version = "2.1.1";
+ "cordova-fetch-1.3.0" = {
+ name = "cordova-fetch";
+ packageName = "cordova-fetch";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz";
- sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e";
+ url = "https://registry.npmjs.org/cordova-fetch/-/cordova-fetch-1.3.0.tgz";
+ sha1 = "4986d0779b36eb239822c2ab413a47ff9f097fea";
};
};
- "wordwrap-0.0.2" = {
- name = "wordwrap";
- packageName = "wordwrap";
- version = "0.0.2";
+ "cordova-js-4.2.4" = {
+ name = "cordova-js";
+ packageName = "cordova-js";
+ version = "4.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz";
- sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f";
+ url = "https://registry.npmjs.org/cordova-js/-/cordova-js-4.2.4.tgz";
+ sha512 = "Qy0O3w/gwbIqIJzlyCy60nPwJlF1c74ELpsfDIGXB92/uST5nQSSUDVDP4UOfb/c6OU7yPqxhCWOGROyTYKPDw==";
};
};
- "wordwrap-0.0.3" = {
- name = "wordwrap";
- packageName = "wordwrap";
- version = "0.0.3";
+ "cordova-lib-8.0.0" = {
+ name = "cordova-lib";
+ packageName = "cordova-lib";
+ version = "8.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz";
- sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107";
+ url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-8.0.0.tgz";
+ sha1 = "864bd5de6b79fc4944361460aa3214e59da936f2";
};
};
- "wrap-fn-0.1.5" = {
- name = "wrap-fn";
- packageName = "wrap-fn";
- version = "0.1.5";
+ "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/wrap-fn/-/wrap-fn-0.1.5.tgz";
- sha1 = "f21b6e41016ff4a7e31720dbc63a09016bdf9845";
+ url = "https://registry.npmjs.org/cordova-registry-mapper/-/cordova-registry-mapper-1.1.15.tgz";
+ sha1 = "e244b9185b8175473bff6079324905115f83dc7c";
};
};
- "wrappy-1.0.2" = {
- name = "wrappy";
- packageName = "wrappy";
- version = "1.0.2";
+ "cordova-serve-2.0.1" = {
+ name = "cordova-serve";
+ packageName = "cordova-serve";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
+ url = "https://registry.npmjs.org/cordova-serve/-/cordova-serve-2.0.1.tgz";
+ sha512 = "3Xl1D5eyiQlY5ow6Kn/say0us2TqSw/zgQmyTLxbewTngQZ1CIqxmqD7EFGoCNBrB4HsdPmpiSpFCitybKQN9g==";
};
};
- "write-file-atomic-2.3.0" = {
- name = "write-file-atomic";
- packageName = "write-file-atomic";
+ "core-js-2.3.0" = {
+ name = "core-js";
+ packageName = "core-js";
version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz";
- sha512 = "xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-2.3.0.tgz";
+ sha1 = "fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65";
};
};
- "xdg-basedir-3.0.0" = {
- name = "xdg-basedir";
- packageName = "xdg-basedir";
- version = "3.0.0";
+ "core-js-2.5.7" = {
+ name = "core-js";
+ packageName = "core-js";
+ version = "2.5.7";
src = fetchurl {
- url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz";
- sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4";
+ url = "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz";
+ sha512 = "RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==";
};
};
- "xhr-2.5.0" = {
- name = "xhr";
- packageName = "xhr";
- version = "2.5.0";
+ "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/xhr/-/xhr-2.5.0.tgz";
- sha512 = "4nlO/14t3BNUZRXIXfXe+3N6w3s1KoxcJUUURctd64BLRe67E4gRwp4PjywtDY72fXpZ1y6Ch0VZQRY/gMPzzQ==";
+ url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
+ sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
};
};
- "xsalsa20-1.0.2" = {
- name = "xsalsa20";
- packageName = "xsalsa20";
- version = "1.0.2";
+ "cors-2.8.4" = {
+ name = "cors";
+ packageName = "cors";
+ version = "2.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/xsalsa20/-/xsalsa20-1.0.2.tgz";
- sha512 = "g1DFmZ5JJ9Qzvt4dMw6m9IydqoCSP381ucU5zm46Owbk3bwmqAr8eEJirOPc7PrXRn45drzOpAyDp8jsnoyXyw==";
+ url = "https://registry.npmjs.org/cors/-/cors-2.8.4.tgz";
+ sha1 = "2bd381f2eb201020105cd50ea59da63090694686";
};
};
- "xstream-11.7.0" = {
- name = "xstream";
- packageName = "xstream";
- version = "11.7.0";
+ "corsify-2.1.0" = {
+ name = "corsify";
+ packageName = "corsify";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xstream/-/xstream-11.7.0.tgz";
- sha512 = "wO3TXiQd2/1UZNVsixDIcQgAN6TU4sGH7qIXvs1CRp1kgtkpU8YTfyKt/z/Z1psqcGnR0cJJxHaCnBxtktLx9w==";
+ url = "https://registry.npmjs.org/corsify/-/corsify-2.1.0.tgz";
+ sha1 = "11a45bc47ab30c54d00bb869ea1802fbcd9a09d0";
};
};
- "xtend-4.0.1" = {
- name = "xtend";
- packageName = "xtend";
- version = "4.0.1";
+ "cosmiconfig-3.1.0" = {
+ name = "cosmiconfig";
+ packageName = "cosmiconfig";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
- sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
+ url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-3.1.0.tgz";
+ sha512 = "zedsBhLSbPBms+kE7AH4vHg6JsKDz6epSv2/+5XHs8ILHlgDciSJfSWf8sX9aQ52Jb7KI7VswUTsLpR/G0cr2Q==";
};
};
- "yallist-2.1.2" = {
- name = "yallist";
- packageName = "yallist";
- version = "2.1.2";
+ "cosmiconfig-5.0.6" = {
+ name = "cosmiconfig";
+ packageName = "cosmiconfig";
+ version = "5.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
- sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
+ url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.6.tgz";
+ sha512 = "6DWfizHriCrFWURP1/qyhsiFvYdlJzbCzmtFWh744+KyWsJo5+kPzUZZaMRSSItoYc0pxFX7gEO7ZC1/gN/7AQ==";
};
};
- "yallist-3.0.2" = {
- name = "yallist";
- packageName = "yallist";
+ "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";
+ };
+ };
+ "count-trailing-zeros-1.0.1" = {
+ name = "count-trailing-zeros";
+ packageName = "count-trailing-zeros";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/count-trailing-zeros/-/count-trailing-zeros-1.0.1.tgz";
+ sha1 = "aba6c5833be410d45b1eca3e6d583844ce682c77";
+ };
+ };
+ "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.8.0" = {
+ name = "crc";
+ packageName = "crc";
+ version = "3.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz";
+ sha512 = "iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==";
+ };
+ };
+ "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.3" = {
+ name = "create-ecdh";
+ packageName = "create-ecdh";
+ version = "4.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz";
+ sha512 = "GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==";
+ };
+ };
+ "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/yallist/-/yallist-3.0.2.tgz";
- sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9";
+ url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz";
+ sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
};
};
- "yaml-js-0.0.8" = {
- name = "yaml-js";
- packageName = "yaml-js";
- version = "0.0.8";
+ "create-hash-1.2.0" = {
+ name = "create-hash";
+ packageName = "create-hash";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yaml-js/-/yaml-js-0.0.8.tgz";
- sha1 = "87cfa5a9613f48e26005420d6a8ee0da6fe8daec";
+ url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz";
+ sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==";
};
};
- "yargs-3.10.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "3.10.0";
+ "create-hmac-1.1.7" = {
+ name = "create-hmac";
+ packageName = "create-hmac";
+ version = "1.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
- sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
+ url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz";
+ sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==";
};
};
- "yauzl-2.10.0" = {
- name = "yauzl";
- packageName = "yauzl";
- version = "2.10.0";
+ "create-torrent-3.32.1" = {
+ name = "create-torrent";
+ packageName = "create-torrent";
+ version = "3.32.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz";
- sha1 = "c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9";
+ url = "https://registry.npmjs.org/create-torrent/-/create-torrent-3.32.1.tgz";
+ sha512 = "8spZUeFyVc+2mGnWBRTuLOhuHmHrmUomFWf7QvxztCEvTpn5SIrvF8F+HKdkzBPM9B7v/2w+f/65jqLWBXSndg==";
};
};
- "z-schema-3.22.0" = {
- name = "z-schema";
- packageName = "z-schema";
- version = "3.22.0";
+ "cron-1.3.0" = {
+ name = "cron";
+ packageName = "cron";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/z-schema/-/z-schema-3.22.0.tgz";
- sha512 = "Oq82unxX2PTcJ031gFGcksDHE5PNBs5CbcQ1tbre0Sl4Mu5habZTVmEAkuZS4cK//VgIdNg9UG9PMgMlN6KmiA==";
+ url = "https://registry.npmjs.org/cron/-/cron-1.3.0.tgz";
+ sha512 = "K/SF7JlgMmNjcThWxkKvsHhey2EDB4CeOEWJ9aXWj3fbQJppsvTPIeyLdHfNq5IbbsMUUjRW1nr5dSO95f2E4w==";
};
};
- };
-in
-{
- bower = nodeEnv.buildNodePackage {
- name = "bower";
- packageName = "bower";
- version = "1.8.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
- sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
+ "cross-fetch-2.2.2" = {
+ name = "cross-fetch";
+ packageName = "cross-fetch";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.2.2.tgz";
+ sha1 = "a47ff4f7fc712daba8f6a695a11c948440d45723";
+ };
};
- buildInputs = globalBuildInputs;
- meta = {
- description = "The browser package manager";
- homepage = http://bower.io/;
- license = "MIT";
+ "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";
+ };
};
- production = true;
- bypassCache = true;
- };
- coffee-script = nodeEnv.buildNodePackage {
- 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 = "fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==";
+ "cross-spawn-4.0.2" = {
+ name = "cross-spawn";
+ packageName = "cross-spawn";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz";
+ sha1 = "7b9247621c23adfdd3856004a823cbe397424d41";
+ };
};
- buildInputs = globalBuildInputs;
- meta = {
- description = "Unfancy JavaScript";
- homepage = http://coffeescript.org/;
- license = "MIT";
+ "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";
+ };
};
- production = true;
- bypassCache = true;
- };
- create-cycle-app = nodeEnv.buildNodePackage {
- name = "create-cycle-app";
- packageName = "create-cycle-app";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-cycle-app/-/create-cycle-app-4.0.0.tgz";
- sha512 = "ofgR7gXf+7lgnXQvj0KeveHAyrtoK8zveCDD3sTHPFQY1FKJGkJ7M404ak+G8w6VbTuHwzaBrYbEh8M/SBuykQ==";
+ "cross-spawn-6.0.5" = {
+ name = "cross-spawn";
+ packageName = "cross-spawn";
+ version = "6.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz";
+ sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==";
+ };
};
- dependencies = [
- sources."@cycle/dom-18.3.0"
- sources."@cycle/http-14.9.0"
- (sources."@cycle/isolate-3.4.0" // {
- dependencies = [
- sources."@cycle/run-4.4.0"
- ];
- })
- sources."@cycle/run-3.4.0"
- sources."@cycle/time-0.10.1"
- sources."@types/node-10.5.7"
- sources."@types/superagent-3.5.6"
- sources."ansi-escapes-3.1.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."asynckit-0.4.0"
- (sources."chalk-2.4.1" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."chardet-0.4.2"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."combine-errors-3.0.3"
- sources."combined-stream-1.0.6"
- sources."component-emitter-1.2.1"
- sources."cookiejar-2.1.2"
- sources."core-util-is-1.0.2"
- sources."cross-spawn-5.1.0"
- sources."cssauron-1.4.0"
- sources."custom-error-instance-2.1.1"
- sources."cycle-onionify-4.0.0"
- sources."d-1.0.0"
- sources."debug-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."es5-ext-0.10.45"
- 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."escape-string-regexp-1.0.5"
- sources."event-emitter-0.3.5"
- sources."extend-3.0.2"
- sources."external-editor-2.2.0"
- sources."figures-2.0.0"
- sources."form-data-2.3.2"
- sources."formidable-1.2.1"
- sources."has-ansi-2.0.0"
- sources."has-flag-3.0.0"
- sources."iconv-lite-0.4.23"
- sources."inherits-2.0.3"
- (sources."inquirer-3.3.0" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- sources."is-fullwidth-code-point-2.0.0"
- sources."is-promise-2.1.0"
- sources."isarray-1.0.0"
- sources."isexe-2.0.0"
- sources."lodash-4.17.10"
- sources."lodash._baseiteratee-4.7.0"
- sources."lodash._basetostring-4.12.0"
- sources."lodash._baseuniq-4.6.0"
- sources."lodash._createset-4.0.3"
- sources."lodash._root-3.0.1"
- sources."lodash._stringtopath-4.8.0"
- sources."lodash.uniqby-4.5.0"
- sources."lru-cache-4.1.3"
- sources."methods-1.1.2"
- sources."mime-1.6.0"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimist-1.2.0"
- sources."ms-2.0.0"
- sources."mute-stream-0.0.7"
- sources."next-tick-1.0.0"
- sources."object-assign-4.1.1"
- sources."onetime-2.0.1"
+ "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";
+ };
+ };
+ "crypt-0.0.2" = {
+ name = "crypt";
+ packageName = "crypt";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz";
+ sha1 = "88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b";
+ };
+ };
+ "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 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==";
+ };
+ };
+ "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-2.2.3" = {
+ name = "css";
+ packageName = "css";
+ version = "2.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css/-/css-2.2.3.tgz";
+ sha512 = "0W171WccAjQGGTKLhw4m2nnl0zPHUlTO/I8td4XzJgIB8Hg3ZZx71qT4G4eX8OVsSiaAKiUMy73E3nsbPlg2DQ==";
+ };
+ };
+ "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.29" = {
+ name = "css-tree";
+ packageName = "css-tree";
+ version = "1.0.0-alpha.29";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz";
+ sha512 = "sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==";
+ };
+ };
+ "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 = "XC6xLW/JqIGirnZuUWHXCHRaAjje2b3OIB0Vj5RIJo6mIi/AdJo30quQl5LxUl0gkXDIrTrFGbMlcZjyFplz1A==";
+ };
+ };
+ "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";
+ };
+ };
+ "cssauron-1.4.0" = {
+ name = "cssauron";
+ packageName = "cssauron";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cssauron/-/cssauron-1.4.0.tgz";
+ sha1 = "a6602dff7e04a8306dc0db9a551e92e8b5662ad8";
+ };
+ };
+ "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.1" = {
+ name = "csso";
+ packageName = "csso";
+ version = "3.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz";
+ sha512 = "vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==";
+ };
+ };
+ "cssom-0.3.4" = {
+ name = "cssom";
+ packageName = "cssom";
+ version = "0.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cssom/-/cssom-0.3.4.tgz";
+ sha512 = "+7prCSORpXNeR4/fUP3rL+TzqtiFfhMvTd7uEqMdgPvLPt4+uzFUeufx5RHjGTACCargg/DiEt/moMQmvnfkog==";
+ };
+ };
+ "cssstyle-0.2.37" = {
+ name = "cssstyle";
+ packageName = "cssstyle";
+ version = "0.2.37";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz";
+ sha1 = "541097234cb2513c83ceed3acddc27ff27987d54";
+ };
+ };
+ "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";
+ };
+ };
+ "cucumber-html-reporter-3.0.4" = {
+ name = "cucumber-html-reporter";
+ packageName = "cucumber-html-reporter";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cucumber-html-reporter/-/cucumber-html-reporter-3.0.4.tgz";
+ sha512 = "uit68jymdI8Z6m+kJ5YnJPeHf5IdYXt2j52l5xLwgpcLBQRhCvr1peV9UODaCN5nLnRN9nqh1qaw4iNp1rTpvQ==";
+ };
+ };
+ "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-error-instance-2.1.1" = {
+ name = "custom-error-instance";
+ packageName = "custom-error-instance";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/custom-error-instance/-/custom-error-instance-2.1.1.tgz";
+ sha1 = "3cf6391487a6629a6247eb0ca0ce00081b7e361a";
+ };
+ };
+ "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.3" = {
+ name = "cvss";
+ packageName = "cvss";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cvss/-/cvss-1.0.3.tgz";
+ sha512 = "1FfNhEFVfeC+fgZpEr6oCOOTXifJicZS+Lq/mmUKI4Om+2O8zYspc/uhw51He+CTM5givI1dqIw5JUqyi1BWtA==";
+ };
+ };
+ "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";
+ };
+ };
+ "cycle-onionify-4.0.0" = {
+ name = "cycle-onionify";
+ packageName = "cycle-onionify";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cycle-onionify/-/cycle-onionify-4.0.0.tgz";
+ sha1 = "9aeddd88dedf6fda9fbb98b1e79ab38810b7ddda";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "dag-map-1.0.2" = {
+ name = "dag-map";
+ packageName = "dag-map";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dag-map/-/dag-map-1.0.2.tgz";
+ sha1 = "e8379f041000ed561fc515475c1ed2c85eece8d7";
+ };
+ };
+ "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";
+ };
+ };
+ "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-3.0.2" = {
+ name = "dat-dns";
+ packageName = "dat-dns";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-dns/-/dat-dns-3.0.2.tgz";
+ sha512 = "TqkWQ03NvdLK9Rm9n11UCy59KnIsu82A0lPQYcMG02pYTU4xTxShzDryGO2orvmcT5063olmI1R9vKil0jw0Lw==";
+ };
+ };
+ "dat-doctor-2.1.0" = {
+ name = "dat-doctor";
+ packageName = "dat-doctor";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-doctor/-/dat-doctor-2.1.0.tgz";
+ sha512 = "Cetzl3lrV23cdIqH8zadQ+cMTpsAFjT7cAQa7EpqQTkV52rB/p6sp8EXXvPNxgTNHwm2Y8iR5o9163sHZxdtxA==";
+ };
+ };
+ "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 = "PET9PlGt6ejgqU07hbPLx3tP2siDMMFumUe+xwmm4+5W+0cOlpzreCPoMVUBzxWeR4sPdxL+AS53odQTBtzEqA==";
+ };
+ };
+ "dat-ignore-2.1.1" = {
+ name = "dat-ignore";
+ packageName = "dat-ignore";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.1.1.tgz";
+ sha512 = "jRCfWtLh+wtbqJMuge+wZV/2kSL1TKMRWXFgUaT7r0O1OnChKUDG4wqLJo4SjzJjXo7f3V8CVN/u5wYltgSd1Q==";
+ };
+ };
+ "dat-json-1.0.2" = {
+ name = "dat-json";
+ packageName = "dat-json";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-json/-/dat-json-1.0.2.tgz";
+ sha512 = "EZq+VeE/tM7FGygMVZx3hsMVm7zW3qxhuUYCNtLONaZptqXz4laB5cIWHydmeEn6sl3RZatZqpIuWRu4xDYxIg==";
+ };
+ };
+ "dat-link-resolve-2.2.0" = {
+ name = "dat-link-resolve";
+ packageName = "dat-link-resolve";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-2.2.0.tgz";
+ sha512 = "cu6Fwapm34myc5um6jdQBrtDkjx28oVkOVHbaV4YNLdxrRqUm+FlWuIqFk7zaCZDoZg5TMlCG1SF0j3AFbiOYA==";
+ };
+ };
+ "dat-log-1.2.0" = {
+ name = "dat-log";
+ packageName = "dat-log";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-log/-/dat-log-1.2.0.tgz";
+ sha512 = "oK6R74WV8TdhGR9VCLym7D/vlN8lXND5AyhJhrjtm1WNDrg/6Clx1Tk7k3Dt8quy2AmmGO7vbIk7iwFtzTAJfA==";
+ };
+ };
+ "dat-node-3.5.12" = {
+ name = "dat-node";
+ packageName = "dat-node";
+ version = "3.5.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.12.tgz";
+ sha512 = "XYxdkeNYk8gM6nb125XrOQKAXLZlICLYZUk7bZAktpQUrSjAQnc9qPY2a/KCvHSbdoJf//PwyB00K0UiBTqawQ==";
+ };
+ };
+ "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 = "CKV7j8kwWNBW2Oacdbf5x0ihxMfPNN8wcKHHmx5UjE4iyaOnfnTwCqTGM5rFoMleXKOGWpB7uCKQa0qpvzmCIA==";
+ };
+ };
+ "dat-secret-storage-4.0.1" = {
+ name = "dat-secret-storage";
+ packageName = "dat-secret-storage";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-secret-storage/-/dat-secret-storage-4.0.1.tgz";
+ sha512 = "BUhemnKpXUhKNl/1DuUwfFUyjzomlNF940uHPsOa3okmYu9z6mrp/EGQsLO3lO0YQomDUqS0G0DmHTse9vTU1A==";
+ };
+ };
+ "dat-storage-1.0.4" = {
+ name = "dat-storage";
+ packageName = "dat-storage";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-storage/-/dat-storage-1.0.4.tgz";
+ sha512 = "THxtCBzrt+AJzhGxXedlxLYeW+AVi5eFLi9Ke9JQ7fTA/j84m1Ci7KPuZ1q44Um/BeIYZ3LO01FWS2MlAOTFRg==";
+ };
+ };
+ "dat-swarm-defaults-1.0.1" = {
+ name = "dat-swarm-defaults";
+ packageName = "dat-swarm-defaults";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-swarm-defaults/-/dat-swarm-defaults-1.0.1.tgz";
+ sha512 = "T2WlO7BVmN9USchefsP8entQiByIlJLGuzHLL9qEqOBkyKB8p0Y7XPWxP8dcL43+SkeoxU5NVe7O0bsi3xL8Jg==";
+ };
+ };
+ "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 = "vKQ9DTQPN1FLYiiEEOQ6IBGFqvjCa5rSK3cWMy/Nespm5d/x3dGFT9UBZnkLxCwua/IXBi2TYnwTEpsOvhC4UQ==";
+ };
+ };
+ "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.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";
+ };
+ };
+ "dateformat-3.0.3" = {
+ name = "dateformat";
+ packageName = "dateformat";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz";
+ sha512 = "jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==";
+ };
+ };
+ "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 = "ZQVKfRVlwRfD150ndzEK8M90ABT+Y/JQKs4Y7U4MXdpuoUkkrr4DwKbVux3YjylA5bUMUj0Nc3pMxPJX6N2QQQ==";
+ };
+ };
+ "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.9" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
+ sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
+ };
+ };
+ "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 = "OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==";
+ };
+ };
+ "debug-fabulous-1.1.0" = {
+ name = "debug-fabulous";
+ packageName = "debug-fabulous";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug-fabulous/-/debug-fabulous-1.1.0.tgz";
+ sha512 = "GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg==";
+ };
+ };
+ "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";
+ };
+ };
+ "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 = "Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==";
+ };
+ };
+ "decamelize-keys-1.1.0" = {
+ name = "decamelize-keys";
+ packageName = "decamelize-keys";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz";
+ sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9";
+ };
+ };
+ "decimal.js-10.0.1" = {
+ name = "decimal.js";
+ packageName = "decimal.js";
+ version = "10.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.0.1.tgz";
+ sha512 = "vklWB5C4Cj423xnaOtsUmAv0/7GqlXIgDv2ZKDyR64OV3OSzGHNx2mk4p/1EKnB5s70k73cIOOEcG9YzF0q4Lw==";
+ };
+ };
+ "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-4.2.0" = {
+ name = "decompress";
+ packageName = "decompress";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz";
+ sha1 = "7aedd85427e5a92dacfe55674a7c505e96d01f9d";
+ };
+ };
+ "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-tar-4.1.1" = {
+ name = "decompress-tar";
+ packageName = "decompress-tar";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz";
+ sha512 = "JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==";
+ };
+ };
+ "decompress-tarbz2-4.1.1" = {
+ name = "decompress-tarbz2";
+ packageName = "decompress-tarbz2";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz";
+ sha512 = "s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==";
+ };
+ };
+ "decompress-targz-4.1.1" = {
+ name = "decompress-targz";
+ packageName = "decompress-targz";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz";
+ sha512 = "4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==";
+ };
+ };
+ "decompress-unzip-4.0.1" = {
+ name = "decompress-unzip";
+ packageName = "decompress-unzip";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz";
+ sha1 = "deaaccdfd14aeaf85578f733ae8210f9b4848f69";
+ };
+ };
+ "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 = "+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==";
+ };
+ };
+ "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-extend-0.6.0" = {
+ name = "deep-extend";
+ packageName = "deep-extend";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz";
+ sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==";
+ };
+ };
+ "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-2.1.0" = {
+ name = "deepmerge";
+ packageName = "deepmerge";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deepmerge/-/deepmerge-2.1.0.tgz";
+ sha512 = "Q89Z26KAfA3lpPGhbF6XMfYAm3jIV3avViy6KOJ2JLzFbeWHOvPQUu5aSJIWXap3gDZC2y1eF5HXEPI2wGqgvw==";
+ };
+ };
+ "deepmerge-2.1.1" = {
+ name = "deepmerge";
+ packageName = "deepmerge";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deepmerge/-/deepmerge-2.1.1.tgz";
+ sha512 = "urQxA1smbLZ2cBbXbaYObM1dJ82aJ2H57A1C/Kklfh/ZN1bgH4G/n5KWhdNfOK11W98gqZfyYj7W4frJJRwA2w==";
+ };
+ };
+ "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.3" = {
+ name = "define-properties";
+ packageName = "define-properties";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz";
+ sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "define-property-2.0.2" = {
+ name = "define-property";
+ packageName = "define-property";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz";
+ sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "delegate-3.2.0" = {
+ name = "delegate";
+ packageName = "delegate";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz";
+ sha512 = "IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==";
+ };
+ };
+ "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";
+ };
+ };
+ "denque-1.3.0" = {
+ name = "denque";
+ packageName = "denque";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/denque/-/denque-1.3.0.tgz";
+ sha512 = "4SRaSj+PqmrS1soW5/Avd7eJIM2JJIqLLmwhRqIGleZM/8KwZq80njbSS2Iqas+6oARkSkLDHEk4mm78q3JlIg==";
+ };
+ };
+ "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";
+ };
+ };
+ "deprecated-decorator-0.1.6" = {
+ name = "deprecated-decorator";
+ packageName = "deprecated-decorator";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deprecated-decorator/-/deprecated-decorator-0.1.6.tgz";
+ sha1 = "00966317b7a12fe92f3cc831f7583af329b86c37";
+ };
+ };
+ "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-newline-2.1.0" = {
+ name = "detect-newline";
+ packageName = "detect-newline";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz";
+ sha1 = "f41f1c10be4b00e87b5f13da680759f2c5bfd3e2";
+ };
+ };
+ "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 = "H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==";
+ };
+ };
+ "detective-5.1.0" = {
+ name = "detective";
+ packageName = "detective";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detective/-/detective-5.1.0.tgz";
+ sha512 = "TFHMqfOvxlgrfVzTEkNBSh9SvSNX/HfF4OFI2QFGCyPm02EsyILqnUeb5P6q7JZ3SFNTBL5t2sePRgrN4epUWQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "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.5.0" = {
+ name = "diff";
+ packageName = "diff";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz";
+ sha512 = "A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==";
+ };
+ };
+ "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.3" = {
+ name = "diffie-hellman";
+ packageName = "diffie-hellman";
+ version = "5.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz";
+ sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==";
+ };
+ };
+ "difflib-0.2.4" = {
+ name = "difflib";
+ packageName = "difflib";
+ version = "0.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/difflib/-/difflib-0.2.4.tgz";
+ sha1 = "b5e30361a6db023176d562892db85940a718f47e";
+ };
+ };
+ "diffy-2.0.0" = {
+ name = "diffy";
+ packageName = "diffy";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diffy/-/diffy-2.0.0.tgz";
+ sha512 = "T1+MF7chaOtNaBeV59td6lYlci6dCTUraySH8LDltafhd+FLTsYpJJbLVpl6S4ih6kPFMaHSIqQ92bRVvoE+3Q==";
+ };
+ };
+ "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 = "37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==";
+ };
+ };
+ "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.5.1" = {
+ name = "discovery-channel";
+ packageName = "discovery-channel";
+ version = "5.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/discovery-channel/-/discovery-channel-5.5.1.tgz";
+ sha512 = "EEmZQFE0PiOsJj7G3KVCwFGbYs4QchUvzA91iHtZ6HfkIqfBEDSTGLygJrUlY1Tr77WDV+qZVrZuNghHxSL/vw==";
+ };
+ };
+ "discovery-swarm-5.1.2" = {
+ name = "discovery-swarm";
+ packageName = "discovery-swarm";
+ version = "5.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-5.1.2.tgz";
+ sha512 = "aqNdl4l76PFb301I1hXkHZSakQTOXR0yRbfDtF7XrZKk+9V5gMQBbQ2xPgnQPfDVG0IeErxkQkoWqp4f9EJe5w==";
+ };
+ };
+ "disparity-2.0.0" = {
+ name = "disparity";
+ packageName = "disparity";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/disparity/-/disparity-2.0.0.tgz";
+ sha1 = "57ddacb47324ae5f58d2cc0da886db4ce9eeb718";
+ };
+ };
+ "dispensary-0.21.0" = {
+ name = "dispensary";
+ packageName = "dispensary";
+ version = "0.21.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dispensary/-/dispensary-0.21.0.tgz";
+ sha512 = "p7qK1sLukrOGYVVcea63lN9CSiE8wO61cweOjtG6MnKoeC9uKHRIO1iJuE5izcX0BeimhkqrQwEMrFWC1yOyAw==";
+ };
+ };
+ "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";
+ };
+ };
+ "dlnacasts-0.1.0" = {
+ name = "dlnacasts";
+ packageName = "dlnacasts";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dlnacasts/-/dlnacasts-0.1.0.tgz";
+ sha1 = "f805211dcac74f6bb3a4d5d5541ad783b1b67d22";
+ };
+ };
+ "dnd-page-scroll-0.0.4" = {
+ name = "dnd-page-scroll";
+ packageName = "dnd-page-scroll";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dnd-page-scroll/-/dnd-page-scroll-0.0.4.tgz";
+ sha512 = "bvjUS5Cylrm1uJJop/dFhEpnYtz2NQFOO0/z6vk0ORtx0AqKvUwPToc4reJk+TnHV9GBxbtZXj7ad5dJT/Dqkg==";
+ };
+ };
+ "dns-discovery-6.1.0" = {
+ name = "dns-discovery";
+ packageName = "dns-discovery";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-discovery/-/dns-discovery-6.1.0.tgz";
+ sha512 = "Kl2tL2zuNR1w6SnsoRaqrOFm7gGP3/i/HzRXtyVBqaOq/5L1D2TUdViUAZ8e/NDbt+jQCJFWoaKCnmDC343usQ==";
+ };
+ };
+ "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 = "0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==";
+ };
+ };
+ "dns-packet-4.2.0" = {
+ name = "dns-packet";
+ packageName = "dns-packet";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-4.2.0.tgz";
+ sha512 = "bn1AKpfkFbm0MIioOMHZ5qJzl2uypdBwI4nYNsqvhjsegBhcKJUlCrMPWLx6JEezRjxZmxhtIz/FkBEur2l8Cw==";
+ };
+ };
+ "dns-socket-3.0.0" = {
+ name = "dns-socket";
+ packageName = "dns-socket";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-socket/-/dns-socket-3.0.0.tgz";
+ sha512 = "M0WkByoJ/mTm+HtwBQLsRJPe5uGIC/lYVOp+s6ZzhbZ5iq4GxjFyxYPQhB85dgCLvVb43aJQXHDC9aUgyKGc/Q==";
+ };
+ };
+ "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";
+ };
+ };
+ "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 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==";
+ };
+ };
+ "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.1.0" = {
+ name = "dom-storage";
+ packageName = "dom-storage";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz";
+ sha512 = "g6RpyWXzl0RR6OTElHKBl7nwnK87GUyZMYC7JWsB/IA73vpqK2K6LT39x4VepLxlSsWBFrPVLnsSR5Jyty0+2Q==";
+ };
+ };
+ "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";
+ };
+ };
+ "dom4-2.1.3" = {
+ name = "dom4";
+ packageName = "dom4";
+ version = "2.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dom4/-/dom4-2.1.3.tgz";
+ sha512 = "begvh4z5GV0kyxx+YgJZ7sIo/jsELx/v7MQxoLZpOvT5yFo18X8dfgtUmKAwdGuyMeugncylarLHlO4gIK6YNw==";
+ };
+ };
+ "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 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==";
+ };
+ };
+ "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.2" = {
+ name = "domhandler";
+ packageName = "domhandler";
+ version = "2.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz";
+ sha512 = "JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==";
+ };
+ };
+ "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 = "ikq8WiDSkICdkElud317F2Sigc6A3EDpWsxWBwIZqOl95km4p/Vc9Rj98id7qKgsjDmExj0AVM7JOd4bb647Xg==";
+ };
+ };
+ "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.7.0" = {
+ name = "domutils";
+ packageName = "domutils";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz";
+ sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==";
+ };
+ };
+ "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";
+ };
+ };
+ "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 = "tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "dotenv-5.0.1" = {
+ name = "dotenv";
+ packageName = "dotenv";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz";
+ sha512 = "4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow==";
+ };
+ };
+ "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";
+ };
+ };
+ "download-5.0.3" = {
+ name = "download";
+ packageName = "download";
+ version = "5.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/download/-/download-5.0.3.tgz";
+ sha1 = "63537f977f99266a30eb8a2a2fbd1f20b8000f7a";
+ };
+ };
+ "download-git-repo-1.1.0" = {
+ name = "download-git-repo";
+ packageName = "download-git-repo";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/download-git-repo/-/download-git-repo-1.1.0.tgz";
+ sha512 = "yXcCvhkPKmq5M2cQXss6Qbig+LZnzRIT40XCYm/QCRnJaPG867StB1qnsBLxOGrPH1YEIRWW2gJq7LLMyw+NmA==";
+ };
+ };
+ "dreamopt-0.6.0" = {
+ name = "dreamopt";
+ packageName = "dreamopt";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dreamopt/-/dreamopt-0.6.0.tgz";
+ sha1 = "d813ccdac8d39d8ad526775514a13dda664d6b4b";
+ };
+ };
+ "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.7" = {
+ name = "dtrace-provider";
+ packageName = "dtrace-provider";
+ version = "0.8.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz";
+ sha1 = "dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04";
+ };
+ };
+ "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.6.0" = {
+ name = "duplexify";
+ packageName = "duplexify";
+ version = "3.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz";
+ sha512 = "fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==";
+ };
+ };
+ "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-stack-1.0.0" = {
+ name = "easy-stack";
+ packageName = "easy-stack";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/easy-stack/-/easy-stack-1.0.0.tgz";
+ sha1 = "12c91b3085a37f0baa336e9486eac4bf94e3e788";
+ };
+ };
+ "easy-table-1.1.0" = {
+ name = "easy-table";
+ packageName = "easy-table";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz";
+ sha1 = "86f9ab4c102f0371b7297b92a651d5824bc8cb73";
+ };
+ };
+ "ecc-jsbn-0.1.2" = {
+ name = "ecc-jsbn";
+ packageName = "ecc-jsbn";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
+ sha1 = "3a83a904e54353287874c564b7549386849a98c9";
+ };
+ };
+ "ecc-jsbn-0.2.0" = {
+ name = "ecc-jsbn";
+ packageName = "ecc-jsbn";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.2.0.tgz";
+ sha1 = "7c98afab245f6df32290473c0abee2f2d39334c7";
+ };
+ };
+ "ecdsa-sig-formatter-1.0.10" = {
+ name = "ecdsa-sig-formatter";
+ packageName = "ecdsa-sig-formatter";
+ version = "1.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.10.tgz";
+ sha1 = "1c595000f04a8897dfb85000892a0f4c33af86c3";
+ };
+ };
+ "ecstatic-3.2.1" = {
+ name = "ecstatic";
+ packageName = "ecstatic";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecstatic/-/ecstatic-3.2.1.tgz";
+ sha512 = "BAdHx9LOCG1fwxY8MIydUBskl8UUQrYeC3WE14FA1DPlBzqoG1aOgEkypcSpmiiel8RAj8gW1s40RrclfrpGUg==";
+ };
+ };
+ "editions-1.3.4" = {
+ name = "editions";
+ packageName = "editions";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/editions/-/editions-1.3.4.tgz";
+ sha512 = "gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==";
+ };
+ };
+ "editions-2.0.1" = {
+ name = "editions";
+ packageName = "editions";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/editions/-/editions-2.0.1.tgz";
+ sha512 = "GNBqG7eF4lxz/jPGM1A/oazdRW9D86OMeggfvCXuA9kcxBJ8fcWO1O8q73pepQlwR8+KecxrgGduwdNeZJ0R9Q==";
+ };
+ };
+ "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.15.0" = {
+ name = "editorconfig";
+ packageName = "editorconfig";
+ version = "0.15.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.0.tgz";
+ sha512 = "j7JBoj/bpNzvoTQylfRZSc85MlLNKWQiq5y6gwKhmqD2h1eZ+tH4AXbkhEJD468gjDna/XMx2YtSkCxBRX9OGg==";
+ };
+ };
+ "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";
+ };
+ };
+ "ejs-2.6.1" = {
+ name = "ejs";
+ packageName = "ejs";
+ version = "2.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz";
+ sha512 = "0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ==";
+ };
+ };
+ "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.1" = {
+ name = "elliptic";
+ packageName = "elliptic";
+ version = "6.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz";
+ sha512 = "BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==";
+ };
+ };
+ "email-validator-2.0.4" = {
+ name = "email-validator";
+ packageName = "email-validator";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/email-validator/-/email-validator-2.0.4.tgz";
+ sha512 = "gYCwo7kh5S3IDyZPLZf6hSS0MnZT8QmJFqYvbqlDZSbwdZlY6QZWxJ4i/6UhITOJ4XzyI647Bm2MXKCLqnJ4nQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "enable-1.3.2" = {
+ name = "enable";
+ packageName = "enable";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/enable/-/enable-1.3.2.tgz";
+ sha1 = "9eba6837d16d0982b59f87d889bf754443d52931";
+ };
+ };
+ "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 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==";
+ };
+ };
+ "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 = "j1DWIcktw4hRwrv6nWx++5nFH2X64x16MAG2P0Lmi5Dvdfi3I+Jhc7JKJIdAmDJa+5aZ/imHV7dWRPy2Cqjh3A==";
+ };
+ };
+ "engine.io-3.2.0" = {
+ name = "engine.io";
+ packageName = "engine.io";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-3.2.0.tgz";
+ sha512 = "mRbgmAtQ4GAlKwuPnnAvXXwdPhEx+jkc0OBCLrXuD/CRvwNK3AxRSnqK4FSqmAMRRHryVJP8TopOvmEaA64fKw==";
+ };
+ };
+ "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 = "AYTgHyeVUPitsseqjoedjhYJapNVoSPShbZ+tEUX9/73jgZ/Z3sUlJf9oYgdEBBdVhupUpUqSxH0kBCXlQnmZg==";
+ };
+ };
+ "engine.io-client-3.2.1" = {
+ name = "engine.io-client";
+ packageName = "engine.io-client";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz";
+ sha512 = "y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==";
+ };
+ };
+ "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 = "dInLFzr80RijZ1rGpx1+56/uFoH7/7InhH3kZt+Ms6hT8tNx3NGW/WNSA/f8As1WkOfkuyb3tnRyuXGxusclMw==";
+ };
+ };
+ "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-4.1.0" = {
+ name = "enhanced-resolve";
+ packageName = "enhanced-resolve";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz";
+ sha512 = "F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==";
+ };
+ };
+ "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";
+ };
+ };
+ "envinfo-3.4.2" = {
+ name = "envinfo";
+ packageName = "envinfo";
+ version = "3.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/envinfo/-/envinfo-3.4.2.tgz";
+ sha512 = "yqKl+qfQ849zLua/aRGIs4TzNah6ypvdX6KPmK9LPP54Ea+Hqx2gFzSBmGhka8HvWcmCmffGIshG4INSh0ku6g==";
+ };
+ };
+ "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";
+ };
+ };
+ "errlop-1.0.3" = {
+ name = "errlop";
+ packageName = "errlop";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/errlop/-/errlop-1.0.3.tgz";
+ sha512 = "5VTnt0yikY4LlQEfCXVSqfE6oLj1HVM4zVSvAKMnoYjL/zrb6nqiLowZS4XlG7xENfyj7lpYWvT+wfSCr6dtlA==";
+ };
+ };
+ "errno-0.1.7" = {
+ name = "errno";
+ packageName = "errno";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz";
+ sha512 = "MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==";
+ };
+ };
+ "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.2" = {
+ name = "error-ex";
+ packageName = "error-ex";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz";
+ sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==";
+ };
+ };
+ "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.12.0" = {
+ name = "es-abstract";
+ packageName = "es-abstract";
+ version = "1.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz";
+ sha512 = "C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==";
+ };
+ };
+ "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.46" = {
+ name = "es5-ext";
+ packageName = "es5-ext";
+ version = "0.10.46";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.46.tgz";
+ sha512 = "24XxRvJXNFwEMpJb3nOkiRJKRoupmjYmOPVlI65Qy2SrtxwOTB+g6ODjBKOtwEHbYrhWRty9xxOWLNdClT2djw==";
+ };
+ };
+ "es5-ext-0.8.2" = {
+ name = "es5-ext";
+ packageName = "es5-ext";
+ version = "0.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.8.2.tgz";
+ sha1 = "aba8d9e1943a895ac96837a62a39b3f55ecd94ab";
+ };
+ };
+ "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 = "Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==";
+ };
+ };
+ "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.0.2" = {
+ name = "es6-promise";
+ packageName = "es6-promise";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.0.2.tgz";
+ sha1 = "010d5858423a5f118979665f46486a95c6ee2bb6";
+ };
+ };
+ "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 = "/NdNZVJg+uZgtm9eS3O6lrOLYmQag2DjdEXuPaHlZ6RuVqgqaVZfgYCepEIKsLqwdQArOPtC3XzRLqGGfT8KQQ==";
+ };
+ };
+ "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.2" = {
+ name = "escape-string-regexp";
+ packageName = "escape-string-regexp";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz";
+ sha1 = "4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1";
+ };
+ };
+ "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.11.0" = {
+ name = "escodegen";
+ packageName = "escodegen";
+ version = "1.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escodegen/-/escodegen-1.11.0.tgz";
+ sha512 = "IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw==";
+ };
+ };
+ "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";
+ };
+ };
+ "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-5.0.1" = {
+ name = "eslint";
+ packageName = "eslint";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint/-/eslint-5.0.1.tgz";
+ sha512 = "D5nG2rErquLUstgUaxJlWB5+gu+U/3VDY0fk/Iuq8y9CUFy/7Y6oF4N2cR1tV8knzQvciIbfqfohd359xTLIKQ==";
+ };
+ };
+ "eslint-5.4.0" = {
+ name = "eslint";
+ packageName = "eslint";
+ version = "5.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint/-/eslint-5.4.0.tgz";
+ sha512 = "UIpL91XGex3qtL6qwyCQJar2j3osKxK9e3ano3OcGEIRM4oWIpCkDg9x95AXEC2wMs7PnxzOkPZ2gq+tsMS9yg==";
+ };
+ };
+ "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-4.0.0" = {
+ name = "eslint-scope";
+ packageName = "eslint-scope";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz";
+ sha512 = "1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==";
+ };
+ };
+ "eslint-utils-1.3.1" = {
+ name = "eslint-utils";
+ packageName = "eslint-utils";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz";
+ sha512 = "Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==";
+ };
+ };
+ "eslint-visitor-keys-1.0.0" = {
+ name = "eslint-visitor-keys";
+ packageName = "eslint-visitor-keys";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz";
+ sha512 = "qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==";
+ };
+ };
+ "espree-3.5.4" = {
+ name = "espree";
+ packageName = "espree";
+ version = "3.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz";
+ sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==";
+ };
+ };
+ "espree-4.0.0" = {
+ name = "espree";
+ packageName = "espree";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/espree/-/espree-4.0.0.tgz";
+ sha512 = "kapdTCt1bjmspxStVKX6huolXVV5ZfyZguY1lcfhVVZstce3bqxH9mcLzNn3/mlgW6wQ732+0fuG9v7h0ZQoKg==";
+ };
+ };
+ "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.1" = {
+ name = "esprima";
+ packageName = "esprima";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz";
+ sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==";
+ };
+ };
+ "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.1" = {
+ name = "esquery";
+ packageName = "esquery";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz";
+ sha512 = "SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==";
+ };
+ };
+ "esrecurse-4.2.1" = {
+ name = "esrecurse";
+ packageName = "esrecurse";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz";
+ sha512 = "64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==";
+ };
+ };
+ "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-pubsub-4.3.0" = {
+ name = "event-pubsub";
+ packageName = "event-pubsub";
+ version = "4.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/event-pubsub/-/event-pubsub-4.3.0.tgz";
+ sha512 = "z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==";
+ };
+ };
+ "event-stream-0.5.3" = {
+ name = "event-stream";
+ packageName = "event-stream";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "http://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 = "http://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 = "http://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 = "http://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.1.0" = {
+ name = "eventemitter3";
+ packageName = "eventemitter3";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz";
+ sha512 = "ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA==";
+ };
+ };
+ "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-2.1.0" = {
+ name = "events";
+ packageName = "events";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/events/-/events-2.1.0.tgz";
+ sha512 = "3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg==";
+ };
+ };
+ "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 = "/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==";
+ };
+ };
+ "exec-sh-0.2.2" = {
+ name = "exec-sh";
+ packageName = "exec-sh";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.2.tgz";
+ sha512 = "FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==";
+ };
+ };
+ "execa-0.1.1" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.1.1.tgz";
+ sha1 = "b09c2a9309bc0ef0501479472db3180f8d4c3edd";
+ };
+ };
+ "execa-0.10.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz";
+ sha512 = "7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==";
+ };
+ };
+ "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";
+ };
+ };
+ "executable-4.1.1" = {
+ name = "executable";
+ packageName = "executable";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz";
+ sha512 = "8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==";
+ };
+ };
+ "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 = "h2z5mrROTxce56S+pnvAV890uu7ls7f1kEvVGJbw1OlFH3/mlJ5bkXu0KRyW94v37zzHPiUd55iLn3DA7TjWpw==";
+ };
+ };
+ "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.1" = {
+ name = "expand-template";
+ packageName = "expand-template";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-template/-/expand-template-1.1.1.tgz";
+ sha512 = "cebqLtV8KOZfw0UI8TEFWxtczxxC1jvyUvx6H4fyp1K1FN7A4Q+uggVUlOsI1K8AGU0rwOGqP8nCapdrw8CYQg==";
+ };
+ };
+ "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.16.3" = {
+ name = "express";
+ packageName = "express";
+ version = "4.16.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-4.16.3.tgz";
+ sha1 = "6af8a502350db3246ecc4becf6b5a34d22f7ed53";
+ };
+ };
+ "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-history-api-fallback-2.2.1" = {
+ name = "express-history-api-fallback";
+ packageName = "express-history-api-fallback";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-history-api-fallback/-/express-history-api-fallback-2.2.1.tgz";
+ sha1 = "3a2ad27f7bebc90fc533d110d7c6d83097bcd057";
+ };
+ };
+ "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-request-proxy-2.2.0" = {
+ name = "express-request-proxy";
+ packageName = "express-request-proxy";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-request-proxy/-/express-request-proxy-2.2.0.tgz";
+ sha512 = "tObSNa1H5NMltFxg/UAB7tG2PdjkBeQI7fOTUTWyZWHchS7wY9TKqW1RAe3rn/Tq+EwsPTFRYptuLvBK722ipg==";
+ };
+ };
+ "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.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 = "r0nrHTCYtAMrFwZ0kBzZEXa1vtPVrw0dKvGSrKP4dahwBQ1BJpF2/y1Pp4sCD/0kvxV4zZeclyvfmw0B4RMJQA==";
+ };
+ };
+ "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 = "u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==";
+ };
+ };
+ "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.0" = {
+ name = "extend";
+ packageName = "extend";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz";
+ sha1 = "5a474353b9f3353ddd8176dfd37b91c83a46f1d4";
+ };
+ };
+ "extend-3.0.2" = {
+ name = "extend";
+ packageName = "extend";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
+ sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
+ };
+ };
+ "extend-shallow-1.1.4" = {
+ name = "extend-shallow";
+ packageName = "extend-shallow";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz";
+ sha1 = "19d6bf94dfc09d76ba711f39b872d21ff4dd9071";
+ };
+ };
+ "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.2.0" = {
+ name = "external-editor";
+ packageName = "external-editor";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz";
+ sha512 = "bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==";
+ };
+ };
+ "external-editor-3.0.1" = {
+ name = "external-editor";
+ packageName = "external-editor";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/external-editor/-/external-editor-3.0.1.tgz";
+ sha512 = "e1neqvSt5pSwQcFnYc6yfGuJD2Q4336cdbHs5VeUO0zTkqPbrHMyw2q1r47fpfLWbvIG8H8A6YO3sck7upTV6Q==";
+ };
+ };
+ "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 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
+ };
+ };
+ "extract-files-3.1.0" = {
+ name = "extract-files";
+ packageName = "extract-files";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extract-files/-/extract-files-3.1.0.tgz";
+ sha512 = "urkJPM4N88CMy1AfDw+Avudon6fToTsaG5j5VN0aybn88udv1yrERFCweV78NaZg7DOFsQULkFgvP64vNQFNMQ==";
+ };
+ };
+ "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.7" = {
+ name = "extract-zip";
+ packageName = "extract-zip";
+ version = "1.6.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz";
+ sha1 = "a840b4b8af6403264c8db57f4f1a74333ef81fe9";
+ };
+ };
+ "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.0.2" = {
+ name = "extsprintf";
+ packageName = "extsprintf";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz";
+ sha1 = "e1080e0658e300b06294990cc70e1502235fd550";
+ };
+ };
+ "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-bitfield-1.2.1" = {
+ name = "fast-bitfield";
+ packageName = "fast-bitfield";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-bitfield/-/fast-bitfield-1.2.1.tgz";
+ sha512 = "OnsvI4w/LRwjv7y10ZTyRsl7A7ROV9SNBhr+sFVzqKjVHV1qCIESU5kHHcS1awJeE03Aa6X52F59HW+w0YI0lg==";
+ };
+ };
+ "fast-deep-equal-1.1.0" = {
+ name = "fast-deep-equal";
+ packageName = "fast-deep-equal";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz";
+ sha1 = "c053477817c86b51daa853c81e059b733d023614";
+ };
+ };
+ "fast-deep-equal-2.0.1" = {
+ name = "fast-deep-equal";
+ packageName = "fast-deep-equal";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz";
+ sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49";
+ };
+ };
+ "fast-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 = "KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==";
+ };
+ };
+ "fast-glob-2.2.2" = {
+ name = "fast-glob";
+ packageName = "fast-glob";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.2.tgz";
+ sha512 = "TR6zxCKftDQnUAPvkrCWdBgDq/gbqx8A3ApnBrR5rMvpp6+KMJI0Igw7fkWPgeVK0uhRXTXdvO3O+YP0CaUX2g==";
+ };
+ };
+ "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 = "FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==";
+ };
+ };
+ "fast-json-patch-0.5.6" = {
+ name = "fast-json-patch";
+ packageName = "fast-json-patch";
+ version = "0.5.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-0.5.6.tgz";
+ sha1 = "66e4028e381eaa002edeb280d10238f3a46c3402";
+ };
+ };
+ "fast-json-patch-2.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-redact-1.1.14" = {
+ name = "fast-redact";
+ packageName = "fast-redact";
+ version = "1.1.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-redact/-/fast-redact-1.1.14.tgz";
+ sha512 = "jWvfd9kIZeRdwIRTUmLrxEaNgr3b8VW6uAAz5rcQwFhvA3TOK/LXv0kTJytjBjVIQWLdeK7YzM6zVY0kHGuGVw==";
+ };
+ };
+ "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 = "QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw==";
+ };
+ };
+ "fast-safe-stringify-2.0.6" = {
+ name = "fast-safe-stringify";
+ packageName = "fast-safe-stringify";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.6.tgz";
+ sha512 = "q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg==";
+ };
+ };
+ "fast-url-parser-1.1.3" = {
+ name = "fast-url-parser";
+ packageName = "fast-url-parser";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz";
+ sha1 = "f4af3ea9f34d8a271cf58ad2b3759f431f0b318d";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "fd-slicer-1.1.0" = {
+ name = "fd-slicer";
+ packageName = "fd-slicer";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz";
+ sha1 = "25c7c89cb1f9077f8891bbe61d8f390eae256f1e";
+ };
+ };
+ "feedparser-2.2.9" = {
+ name = "feedparser";
+ packageName = "feedparser";
+ version = "2.2.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/feedparser/-/feedparser-2.2.9.tgz";
+ sha1 = "9138197dafdae05fcadde0036beeaf6066c2c5e9";
+ };
+ };
+ "fibers-1.0.15" = {
+ name = "fibers";
+ packageName = "fibers";
+ version = "1.0.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fibers/-/fibers-1.0.15.tgz";
+ sha1 = "22f039c8f18b856190fbbe4decf056154c1eae9c";
+ };
+ };
+ "fields-0.1.24" = {
+ name = "fields";
+ packageName = "fields";
+ 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";
+ };
+ };
+ "figgy-pudding-3.5.1" = {
+ name = "figgy-pudding";
+ packageName = "figgy-pudding";
+ version = "3.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz";
+ sha512 = "vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==";
+ };
+ };
+ "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-type-3.9.0" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "3.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz";
+ sha1 = "257a078384d1db8087bc449d107d52a52672b9e9";
+ };
+ };
+ "file-type-5.2.0" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz";
+ sha1 = "2ddbea7c73ffe36368dfae49dc338c058c2b8ad6";
+ };
+ };
+ "file-type-6.2.0" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "6.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz";
+ sha512 = "YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==";
+ };
+ };
+ "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 = "0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==";
+ };
+ };
+ "filelist-0.0.6" = {
+ name = "filelist";
+ packageName = "filelist";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filelist/-/filelist-0.0.6.tgz";
+ sha1 = "58a641ad1f57574a27fe87a440ef318834b55719";
+ };
+ };
+ "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";
+ };
+ };
+ "filename-reserved-regex-2.0.0" = {
+ name = "filename-reserved-regex";
+ packageName = "filename-reserved-regex";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz";
+ sha1 = "abf73dfab735d045440abfea2d91f389ebbfa229";
+ };
+ };
+ "filenamify-2.1.0" = {
+ name = "filenamify";
+ packageName = "filenamify";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz";
+ sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==";
+ };
+ };
+ "filestream-4.1.3" = {
+ name = "filestream";
+ packageName = "filestream";
+ version = "4.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filestream/-/filestream-4.1.3.tgz";
+ sha1 = "948fcaade8221f715f5ecaddc54862faaacc9325";
+ };
+ };
+ "fill-range-2.2.4" = {
+ name = "fill-range";
+ packageName = "fill-range";
+ version = "2.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz";
+ sha512 = "cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "finalhandler-1.1.1" = {
+ name = "finalhandler";
+ packageName = "finalhandler";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz";
+ sha512 = "Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==";
+ };
+ };
+ "find-0.2.9" = {
+ name = "find";
+ packageName = "find";
+ version = "0.2.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find/-/find-0.2.9.tgz";
+ sha1 = "4b73f1ff9e56ad91b76e716407fe5ffe6554bb8c";
+ };
+ };
+ "find-cache-dir-1.0.0" = {
+ name = "find-cache-dir";
+ packageName = "find-cache-dir";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz";
+ sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f";
+ };
+ };
+ "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 = "gnvu2zAKFEHd76zV/JkRvof7HNyM2X8yW5vflCfWbXeo9hmXMndz/SrEsTQFSXXgNqf0AdjhQSRPnG8JYR92oQ==";
+ };
+ };
+ "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-up-3.0.0" = {
+ name = "find-up";
+ packageName = "find-up";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz";
+ sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==";
+ };
+ };
+ "find-versions-2.0.0" = {
+ name = "find-versions";
+ packageName = "find-versions";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-versions/-/find-versions-2.0.0.tgz";
+ sha1 = "2ad90d490f6828c1aa40292cf709ac3318210c3c";
+ };
+ };
+ "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-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-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 = "wUIE4QeAjwoHvFbomWmXgKyYtV4/oZxDcJG4znxtGGa/0BhKkd3HzeOf3tAsMWPq1ExARZxCRRiNw1BL3FuPqA==";
+ };
+ };
+ "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.8" = {
+ name = "flatstr";
+ packageName = "flatstr";
+ version = "1.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flatstr/-/flatstr-1.0.8.tgz";
+ sha512 = "YXblbv/vc1zuVVUtnKl1hPqqk7TalZCppnKE7Pr8FI/Rp48vzckS/4SJ4Y9O9RNiI82Vcw/FydmtqdQOg1Dpqw==";
+ };
+ };
+ "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";
+ };
+ };
+ "flatten-1.0.2" = {
+ name = "flatten";
+ packageName = "flatten";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz";
+ sha1 = "dae46a9d78fbe25292258cc1e780a41d95c03782";
+ };
+ };
+ "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";
+ };
+ };
+ "fluent-syntax-0.7.0" = {
+ name = "fluent-syntax";
+ packageName = "fluent-syntax";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fluent-syntax/-/fluent-syntax-0.7.0.tgz";
+ sha512 = "T0iqfhC40jrs3aDjYOKgzIQjjhsH2Fa6LnXB6naPv0ymW3DeYMUFa89y9aLKMpi1P9nl2vEimK7blx4tVnUWBg==";
+ };
+ };
+ "flush-write-stream-1.0.3" = {
+ name = "flush-write-stream";
+ packageName = "flush-write-stream";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz";
+ sha512 = "calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==";
+ };
+ };
+ "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.5.7" = {
+ name = "follow-redirects";
+ packageName = "follow-redirects";
+ version = "1.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.7.tgz";
+ sha512 = "NONJVIFiX7Z8k2WxfqBjtwqMifx7X42ORLFrOZ2LTKGj71G3C0kfdyTqGqr8fx5zSX6Foo/D95dgGWbPUiwnew==";
+ };
+ };
+ "for-each-0.3.3" = {
+ name = "for-each";
+ packageName = "for-each";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz";
+ sha512 = "jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==";
+ };
+ };
+ "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.0-rc3" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "1.0.0-rc3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz";
+ sha1 = "d35bc62e7fbc2937ae78f948aaa0d38d90607577";
+ };
+ };
+ "form-data-1.0.1" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz";
+ sha1 = "ae315db9a4907fa065502304a66d7733475ee37c";
+ };
+ };
+ "form-data-2.1.4" = {
+ name = "form-data";
+ packageName = "form-data";
+ 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.2" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz";
+ sha1 = "4970498be604c20c005d4f5c23aecd21d6b49099";
+ };
+ };
+ "format-util-1.0.3" = {
+ name = "format-util";
+ packageName = "format-util";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/format-util/-/format-util-1.0.3.tgz";
+ sha1 = "032dca4a116262a12c43f4c3ec8566416c5b2d95";
+ };
+ };
+ "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.2.1" = {
+ name = "formidable";
+ packageName = "formidable";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz";
+ sha512 = "Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg==";
+ };
+ };
+ "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.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.7.0" = {
+ name = "fs-chunk-store";
+ packageName = "fs-chunk-store";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-1.7.0.tgz";
+ sha512 = "KhjJmZAs2eqfhCb6PdPx4RcZtheGTz86tpTC5JTvqBn/xda+Nb+0C7dCyjOSN7T76H6a56LvH0SVXQMchLXDRw==";
+ };
+ };
+ "fs-constants-1.0.0" = {
+ name = "fs-constants";
+ packageName = "fs-constants";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz";
+ sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==";
+ };
+ };
+ "fs-exists-sync-0.1.0" = {
+ name = "fs-exists-sync";
+ packageName = "fs-exists-sync";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz";
+ sha1 = "982d6893af918e72d08dec9e8673ff2b5a8d6add";
+ };
+ };
+ "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.24.0" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "0.24.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.24.0.tgz";
+ sha1 = "d4e4342a96675cb7846633a6099249332b539952";
+ };
+ };
+ "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-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";
+ };
+ };
+ "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 = "q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==";
+ };
+ };
+ "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 = "66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==";
+ };
+ };
+ "fs-extra-6.0.1" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "6.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-6.0.1.tgz";
+ sha512 = "GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==";
+ };
+ };
+ "fs-extra-7.0.0" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.0.tgz";
+ sha512 = "EglNDLRpmaTWiD/qraZn6HREAEAHJcJOmxNEYwq6xeMKnVMAy3GUcFB+wXt2C6k4CNvB/mP1y/U3dzvKKj5OtQ==";
+ };
+ };
+ "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 = "JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==";
+ };
+ };
+ "fs-mkdirp-stream-1.0.0" = {
+ name = "fs-mkdirp-stream";
+ packageName = "fs-mkdirp-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz";
+ sha1 = "0b7815fc3201c6a69e14db98ce098c16935259eb";
+ };
+ };
+ "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.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 = "Sn44E5wQW4bTHXvQmvSHwqbuiXtduD6Rrjm2ZtUEGbyrig+nUH3t/QD4M4/ZXViY556TBpRgZkHLDx3JxPwxiw==";
+ };
+ };
+ "fsevents-1.2.4" = {
+ name = "fsevents";
+ packageName = "fsevents";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz";
+ sha512 = "z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==";
+ };
+ };
+ "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";
+ };
+ };
+ "fswin-2.17.1227" = {
+ name = "fswin";
+ packageName = "fswin";
+ version = "2.17.1227";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fswin/-/fswin-2.17.1227.tgz";
+ sha512 = "xNDktvwzSsXT8Xqnpz59VbuFwGHhtn1w+dS7QQ+wAu5cbH0p3WMGKU9Duf7cPna+nubhR+5ZG1MTl6/V6xgRgw==";
+ };
+ };
+ "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 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==";
+ };
+ };
+ "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";
+ };
+ };
+ "fuzzyset.js-0.0.1" = {
+ name = "fuzzyset.js";
+ packageName = "fuzzyset.js";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fuzzyset.js/-/fuzzyset.js-0.0.1.tgz";
+ sha1 = "979e22f9451b4b38f051f7937c919dbacc692958";
+ };
+ };
+ "fx-runner-1.0.9" = {
+ name = "fx-runner";
+ packageName = "fx-runner";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.9.tgz";
+ sha1 = "7b23f3773dc76aacc42f11d9aff2769675cb63f0";
+ };
+ };
+ "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.2.0" = {
+ name = "generate-function";
+ packageName = "generate-function";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/generate-function/-/generate-function-2.2.0.tgz";
+ sha512 = "EYWRyUEUdNSsmfMZ2udk1AaxEmJQBaCNgfh+FJo0lcUvP42nyR/Xe30kCyxZs7e6t47bpZw0HftWF+KFjD/Lzg==";
+ };
+ };
+ "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";
+ };
+ };
+ "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-assigned-identifiers-1.2.0" = {
+ name = "get-assigned-identifiers";
+ packageName = "get-assigned-identifiers";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz";
+ sha512 = "mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==";
+ };
+ };
+ "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.3" = {
+ name = "get-caller-file";
+ packageName = "get-caller-file";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz";
+ sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==";
+ };
+ };
+ "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";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz";
+ 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-proxy-2.1.0" = {
+ name = "get-proxy";
+ packageName = "get-proxy";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz";
+ sha512 = "zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==";
+ };
+ };
+ "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-stdin-6.0.0" = {
+ name = "get-stdin";
+ packageName = "get-stdin";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz";
+ sha512 = "jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==";
+ };
+ };
+ "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";
+ };
+ };
+ "get-uri-2.0.2" = {
+ name = "get-uri";
+ packageName = "get-uri";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-uri/-/get-uri-2.0.2.tgz";
+ sha512 = "ZD325dMZOgerGqF/rF6vZXyFGTAay62svjQIT+X/oU2PtxYpFxvSkbsdi+oxIrsNxlZVd4y8wUDqkaExWTI/Cw==";
+ };
+ };
+ "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.4.5" = {
+ name = "getmac";
+ packageName = "getmac";
+ version = "1.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/getmac/-/getmac-1.4.5.tgz";
+ sha512 = "Y4Zu6i3zXAnH+Q2zSdnV8SSmyu3BisdfQhsH8YLsC/7vTxgNTTT/JzHWmU3tZEim8hvaCtZLaE5E95wo8P4oGQ==";
+ };
+ };
+ "getpass-0.1.6" = {
+ name = "getpass";
+ packageName = "getpass";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/getpass/-/getpass-0.1.6.tgz";
+ sha1 = "283ffd9fc1256840875311c1b60e8c40187110e6";
+ };
+ };
+ "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-clone-0.1.0" = {
+ name = "git-clone";
+ packageName = "git-clone";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-clone/-/git-clone-0.1.0.tgz";
+ sha1 = "0d76163778093aef7f1c30238f2a9ef3f07a2eb9";
+ };
+ };
+ "git-config-path-1.0.1" = {
+ name = "git-config-path";
+ packageName = "git-config-path";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-config-path/-/git-config-path-1.0.1.tgz";
+ sha1 = "6d33f7ed63db0d0e118131503bab3aca47d54664";
+ };
+ };
+ "git-raw-commits-1.3.6" = {
+ name = "git-raw-commits";
+ packageName = "git-raw-commits";
+ version = "1.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-1.3.6.tgz";
+ sha512 = "svsK26tQ8vEKnMshTDatSIQSMDdz8CxIIqKsvPqbtV23Etmw6VNaFAitu8zwZ0VrOne7FztwPyRLxK7/DIUTQg==";
+ };
+ };
+ "git-remote-origin-url-2.0.0" = {
+ name = "git-remote-origin-url";
+ packageName = "git-remote-origin-url";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz";
+ 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.3.6" = {
+ name = "git-semver-tags";
+ packageName = "git-semver-tags";
+ version = "1.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-1.3.6.tgz";
+ sha512 = "2jHlJnln4D/ECk9FxGEBh3k44wgYdWjWDtMmJPaecjoRmxKo3Y1Lh8GMYuOPu04CHw86NTAODchYjC5pnpMQig==";
+ };
+ };
+ "gitconfiglocal-1.0.0" = {
+ name = "gitconfiglocal";
+ packageName = "gitconfiglocal";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz";
+ sha1 = "41d045f3851a5ea88f03f24ca1c6178114464b9b";
+ };
+ };
+ "github-0.1.6" = {
+ name = "github";
+ packageName = "github";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/github/-/github-0.1.6.tgz";
+ sha1 = "1344e694f8d20ef9b29bcbfd1ca5eb4f7a287922";
+ };
+ };
+ "github-from-package-0.0.0" = {
+ name = "github-from-package";
+ packageName = "github-from-package";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz";
+ sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce";
+ };
+ };
+ "github-slugger-1.2.0" = {
+ name = "github-slugger";
+ packageName = "github-slugger";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.2.0.tgz";
+ sha512 = "wIaa75k1vZhyPm9yWrD08A5Xnx/V+RmzGrpjQuLemGKSb77Qukiaei58Bogrl/LZSADDfPzKJX8jhLs4CRTl7Q==";
+ };
+ };
+ "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-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";
+ };
+ };
+ "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-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";
+ };
+ };
+ "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";
+ };
+ };
+ "glob-7.1.1" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz";
+ sha1 = "805211df04faaf1c63a3600306cdf5ade50b2ec8";
+ };
+ };
+ "glob-7.1.2" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
+ sha512 = "MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==";
+ };
+ };
+ "glob-7.1.3" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz";
+ sha512 = "vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "glob-parent-3.1.0" = {
+ name = "glob-parent";
+ packageName = "glob-parent";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
+ sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
+ };
+ };
+ "glob-slash-1.0.0" = {
+ name = "glob-slash";
+ packageName = "glob-slash";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-slash/-/glob-slash-1.0.0.tgz";
+ sha1 = "fe52efa433233f74a2fe64c7abb9bc848202ab95";
+ };
+ };
+ "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-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";
+ };
+ };
+ "glob-to-regexp-0.3.0" = {
+ name = "glob-to-regexp";
+ packageName = "glob-to-regexp";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz";
+ sha1 = "8c5a1494d2066c570cc3bfe4496175acc4d502ab";
+ };
+ };
+ "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-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/global-modules/-/global-modules-0.2.3.tgz";
+ sha1 = "ea5a3bed42c6d6ce995a4f8a1269b5dae223828d";
+ };
+ };
+ "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 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==";
+ };
+ };
+ "global-paths-1.0.0" = {
+ name = "global-paths";
+ packageName = "global-paths";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global-paths/-/global-paths-1.0.0.tgz";
+ sha1 = "3ffc84341594e47b32bfade5785355d4df7feac7";
+ };
+ };
+ "global-prefix-0.1.5" = {
+ name = "global-prefix";
+ packageName = "global-prefix";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz";
+ sha1 = "8d3bc6b8da3ca8112a160d8d496ff0462bfef78f";
+ };
+ };
+ "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";
+ };
+ };
+ "global-tunnel-ng-2.5.4" = {
+ name = "global-tunnel-ng";
+ packageName = "global-tunnel-ng";
+ version = "2.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.5.4.tgz";
+ sha1 = "5ef9d5ff2f2a6bed1b305abd463837d47e85b5f4";
+ };
+ };
+ "globals-11.7.0" = {
+ name = "globals";
+ packageName = "globals";
+ version = "11.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/globals/-/globals-11.7.0.tgz";
+ sha512 = "K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==";
+ };
+ };
+ "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 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==";
+ };
+ };
+ "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-8.0.1" = {
+ name = "globby";
+ packageName = "globby";
+ version = "8.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/globby/-/globby-8.0.1.tgz";
+ sha512 = "oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw==";
+ };
+ };
+ "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 = "ynYqXLoluBKf9XGR1gA59yEJisIL7YHEH4xr3ZziHB5/yl4qWfaK8Js9jGe6gBGCSCKVqiyO30WnRZADvemUNw==";
+ };
+ };
+ "good-listener-1.2.2" = {
+ name = "good-listener";
+ packageName = "good-listener";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz";
+ sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50";
+ };
+ };
+ "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/got/-/got-3.3.1.tgz";
+ sha1 = "e5d0ed4af55fc3eef4d56007769d98192bcb2eca";
+ };
+ };
+ "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 = "Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==";
+ };
+ };
+ "got-8.3.2" = {
+ name = "got";
+ packageName = "got";
+ version = "8.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/got/-/got-8.3.2.tgz";
+ sha512 = "qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==";
+ };
+ };
+ "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";
+ };
+ };
+ "graphcool-json-schema-1.2.1" = {
+ name = "graphcool-json-schema";
+ packageName = "graphcool-json-schema";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphcool-json-schema/-/graphcool-json-schema-1.2.1.tgz";
+ sha1 = "6cefb6c8b50543615e6efa43bb54f9e3fbb281f3";
+ };
+ };
+ "graphcool-yml-0.4.15" = {
+ name = "graphcool-yml";
+ packageName = "graphcool-yml";
+ version = "0.4.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphcool-yml/-/graphcool-yml-0.4.15.tgz";
+ sha512 = "ZVbRfVI8l21+1JQkcG0XuRam9mgiVUh9/PIcluzCZca2+lZQg/e1WCDXpwsC69i2ZdPcZwpOCLFKQMg5rnulCA==";
+ };
+ };
+ "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 = "XvtbqCcw+EM5SqQrIetIKKD+uZVNQtDPD1goIg7K73RuRZtVI5rYMdcCVSHm/AS1sCBZ7vt0p5WgXouucHQaOA==";
+ };
+ };
+ "graphql-0.12.3" = {
+ name = "graphql";
+ packageName = "graphql";
+ version = "0.12.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql/-/graphql-0.12.3.tgz";
+ sha512 = "Hn9rdu4zacplKXNrLCvR8YFiTGnbM4Zw/UH8FDmzBDsH7ou40lSNH4tIlsxcYnz2TGNVJCpu1WxCM23yd6kzhA==";
+ };
+ };
+ "graphql-0.13.2" = {
+ name = "graphql";
+ packageName = "graphql";
+ version = "0.13.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql/-/graphql-0.13.2.tgz";
+ sha512 = "QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog==";
+ };
+ };
+ "graphql-anywhere-4.1.18" = {
+ name = "graphql-anywhere";
+ packageName = "graphql-anywhere";
+ version = "4.1.18";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-anywhere/-/graphql-anywhere-4.1.18.tgz";
+ sha512 = "n0jsAEpGpQxsF0RDaxSjtEQdIP3tx2C3q++QuHYFyUl+4Npl5t64zFjWwO3ZhotxmTgs8zaSbZPVFpydn6k0dQ==";
+ };
+ };
+ "graphql-cli-prepare-1.4.19" = {
+ name = "graphql-cli-prepare";
+ packageName = "graphql-cli-prepare";
+ version = "1.4.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-cli-prepare/-/graphql-cli-prepare-1.4.19.tgz";
+ sha512 = "PJFm9/DvfZwKz3h2Wyn/5Sr/sX35XsYzNO3olfm5V8qqueNIONI0g7sVqpF7wYdvhEtt/8YA9DjgrGclCbpMfA==";
+ };
+ };
+ "graphql-config-1.2.1" = {
+ name = "graphql-config";
+ packageName = "graphql-config";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-config/-/graphql-config-1.2.1.tgz";
+ sha512 = "BOtbEOn/fD13jT0peCy3Fzp1DSTsA/1AcZp266AQ5Sk3wFndKCEa/H7donbu5UriOw1V/N1WDirYPnr7rd8E7Q==";
+ };
+ };
+ "graphql-config-2.0.0" = {
+ name = "graphql-config";
+ packageName = "graphql-config";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-config/-/graphql-config-2.0.0.tgz";
+ sha512 = "//hZmROEk79zzPlH6SVTQeXd8NVV65rquz1zxZeO6oEuX5KNnii8+oznLu7d897EfJ+NShTZtsY9FMmxxkWmJw==";
+ };
+ };
+ "graphql-config-2.0.1" = {
+ name = "graphql-config";
+ packageName = "graphql-config";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-config/-/graphql-config-2.0.1.tgz";
+ sha512 = "eb4FzlODifHE/Q+91QptAmkGw39wL5ToinJ2556UUsGt2drPc4tzifL+HSnHSaxiIbH8EUhc/Fa6+neinF04qA==";
+ };
+ };
+ "graphql-config-extension-graphcool-1.0.8" = {
+ name = "graphql-config-extension-graphcool";
+ packageName = "graphql-config-extension-graphcool";
+ version = "1.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-config-extension-graphcool/-/graphql-config-extension-graphcool-1.0.8.tgz";
+ sha512 = "eMvL/RAo88EHo8SmP40Zcsrx7nrLTE82G4ZochsHYoEvP+QMo0XA+Vq9lxYeRTJEtGMFD4imjHXGHWh4B0srQw==";
+ };
+ };
+ "graphql-config-extension-openapi-1.0.6" = {
+ name = "graphql-config-extension-openapi";
+ packageName = "graphql-config-extension-openapi";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-config-extension-openapi/-/graphql-config-extension-openapi-1.0.6.tgz";
+ sha512 = "Do6tHyQyxaPhaZdJ+ZCpYbVhczlqNqMVuO46aG/YkMuRQPoj/FRmeH9BFXniFkz60TZyRpLTQNel2sllMekRLQ==";
+ };
+ };
+ "graphql-config-extension-prisma-0.0.11" = {
+ name = "graphql-config-extension-prisma";
+ packageName = "graphql-config-extension-prisma";
+ version = "0.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-config-extension-prisma/-/graphql-config-extension-prisma-0.0.11.tgz";
+ sha512 = "Mlj/VYshHbwDrVHgNyNAl2cBU7+Rh503S43UYXcBtR9Am2KNvmPPPccXEeP6yist0yY2WM0WTwL8JoIGrWeFOw==";
+ };
+ };
+ "graphql-extensions-0.1.2" = {
+ name = "graphql-extensions";
+ packageName = "graphql-extensions";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.1.2.tgz";
+ sha512 = "A81kfGtOKG0/1sDQGm23u60bkTuk9VDof0SrQrz7yNpPLY48JF11b8+4LNlYfEBVvceDbLAs1KRfyLQskJjJSg==";
+ };
+ };
+ "graphql-import-0.4.5" = {
+ name = "graphql-import";
+ packageName = "graphql-import";
+ version = "0.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-import/-/graphql-import-0.4.5.tgz";
+ sha512 = "G/+I08Qp6/QGTb9qapknCm3yPHV0ZL7wbaalWFpxsfR8ZhZoTBe//LsbsCKlbALQpcMegchpJhpTSKiJjhaVqQ==";
+ };
+ };
+ "graphql-playground-html-1.5.5" = {
+ name = "graphql-playground-html";
+ packageName = "graphql-playground-html";
+ version = "1.5.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-playground-html/-/graphql-playground-html-1.5.5.tgz";
+ sha512 = "PzSywpEKcjbDUkV6e3ivEixvAuUJGyYmBUvuittzySe/RgwHRo0xKLD7HouUCTbpFfWMw8kRKhAUVtt7Ys97uw==";
+ };
+ };
+ "graphql-playground-middleware-express-1.6.2" = {
+ name = "graphql-playground-middleware-express";
+ packageName = "graphql-playground-middleware-express";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.6.2.tgz";
+ sha512 = "BHaEZe2J2lQ1TX2W73a6PI2zVjB9Nb0J9pFdbG1L7ugYdbait/elDrsNMxLCsDHVOGJF009VlYszrk7Cq7FiTg==";
+ };
+ };
+ "graphql-request-1.8.2" = {
+ name = "graphql-request";
+ packageName = "graphql-request";
+ version = "1.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-request/-/graphql-request-1.8.2.tgz";
+ sha512 = "dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg==";
+ };
+ };
+ "graphql-schema-linter-0.1.1" = {
+ name = "graphql-schema-linter";
+ packageName = "graphql-schema-linter";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-schema-linter/-/graphql-schema-linter-0.1.1.tgz";
+ sha512 = "caZbOgNw08/9p3a+qusmaFi1TklG9ti+KHI6a2yfdp009gyoClWGQ+ElKVIiZkJQSeWCri2s2UFBCZjoM0JwTw==";
+ };
+ };
+ "graphql-static-binding-0.9.3" = {
+ name = "graphql-static-binding";
+ packageName = "graphql-static-binding";
+ version = "0.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-static-binding/-/graphql-static-binding-0.9.3.tgz";
+ sha512 = "C8+EqwNCiQxUhbrWEokxN16oINAkhIDBzEpKHXeatBRaAyMczXm0J6HMaMSKOuQmk7P1PbDHIVW3FVZwXF2WJQ==";
+ };
+ };
+ "graphql-subscriptions-0.5.8" = {
+ name = "graphql-subscriptions";
+ packageName = "graphql-subscriptions";
+ version = "0.5.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-subscriptions/-/graphql-subscriptions-0.5.8.tgz";
+ sha512 = "0CaZnXKBw2pwnIbvmVckby5Ge5e2ecmjofhYCdyeACbCly2j3WXDP/pl+s+Dqd2GQFC7y99NB+53jrt55CKxYQ==";
+ };
+ };
+ "graphql-tag-2.9.2" = {
+ name = "graphql-tag";
+ packageName = "graphql-tag";
+ version = "2.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.9.2.tgz";
+ sha512 = "qnNmof9pAqj/LUzs3lStP0Gw1qhdVCUS7Ab7+SUB6KD5aX1uqxWQRwMnOGTkhKuLvLNIs1TvNz+iS9kUGl1MhA==";
+ };
+ };
+ "graphql-tools-3.1.1" = {
+ name = "graphql-tools";
+ packageName = "graphql-tools";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-tools/-/graphql-tools-3.1.1.tgz";
+ sha512 = "yHvPkweUB0+Q/GWH5wIG60bpt8CTwBklCSzQdEHmRUgAdEQKxw+9B7zB3dG7wB3Ym7M7lfrS4Ej+jtDZfA2UXg==";
+ };
+ };
+ "graphql-type-json-0.2.1" = {
+ name = "graphql-type-json";
+ packageName = "graphql-type-json";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-type-json/-/graphql-type-json-0.2.1.tgz";
+ sha1 = "d2c177e2f1b17d87f81072cd05311c0754baa420";
+ };
+ };
+ "gray-matter-2.1.1" = {
+ name = "gray-matter";
+ packageName = "gray-matter";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz";
+ sha1 = "3042d9adec2a1ded6a7707a9ed2380f8a17a430e";
+ };
+ };
+ "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.5" = {
+ name = "growl";
+ packageName = "growl";
+ version = "1.10.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz";
+ sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==";
+ };
+ };
+ "growl-1.9.2" = {
+ name = "growl";
+ packageName = "growl";
+ version = "1.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz";
+ sha1 = "0ea7743715db8d8de2c5ede1775e1b45ac85c02f";
+ };
+ };
+ "growly-1.3.0" = {
+ name = "growly";
+ packageName = "growly";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz";
+ sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081";
+ };
+ };
+ "grunt-known-options-1.1.1" = {
+ name = "grunt-known-options";
+ packageName = "grunt-known-options";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz";
+ sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==";
+ };
+ };
+ "gulp-3.9.1" = {
+ name = "gulp";
+ packageName = "gulp";
+ version = "3.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz";
+ sha1 = "571ce45928dd40af6514fc4011866016c13845b4";
+ };
+ };
+ "gulp-clean-css-3.10.0" = {
+ name = "gulp-clean-css";
+ packageName = "gulp-clean-css";
+ version = "3.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-3.10.0.tgz";
+ sha512 = "7Isf9Y690o/Q5MVjEylH1H7L8WeZ89woW7DnhD5unTintOdZb67KdOayRgp9trUFo+f9UyJtuatV42e/+kghPg==";
+ };
+ };
+ "gulp-less-3.5.0" = {
+ name = "gulp-less";
+ packageName = "gulp-less";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gulp-less/-/gulp-less-3.5.0.tgz";
+ sha512 = "FQLY7unaHdTOXG0jlwxeBQcWoPPrTMQZRA7HfYwSNi9IPVx5l7GJEN72mG4ri2yigp/f/VNGUAJnFMJHBmH3iw==";
+ };
+ };
+ "gulp-sourcemaps-2.6.4" = {
+ name = "gulp-sourcemaps";
+ packageName = "gulp-sourcemaps";
+ version = "2.6.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-2.6.4.tgz";
+ sha1 = "cbb2008450b1bcce6cd23bf98337be751bf6e30a";
+ };
+ };
+ "gulp-typescript-4.0.2" = {
+ name = "gulp-typescript";
+ packageName = "gulp-typescript";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gulp-typescript/-/gulp-typescript-4.0.2.tgz";
+ sha512 = "Hhbn5Aa2l3T+tnn0KqsG6RRJmcYEsr3byTL2nBpNBeAK8pqug9Od4AwddU4JEI+hRw7mzZyjRbB8DDWR6paGVA==";
+ };
+ };
+ "gulp-uglify-3.0.1" = {
+ name = "gulp-uglify";
+ packageName = "gulp-uglify";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.1.tgz";
+ sha512 = "KVffbGY9d4Wv90bW/B1KZJyunLMyfHTBbilpDvmcrj5Go0/a1G3uVpt+1gRBWSw/11dqR3coJ1oWNTt1AiXuWQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "handlebars-4.0.11" = {
+ name = "handlebars";
+ packageName = "handlebars";
+ version = "4.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz";
+ sha1 = "630a35dfe0294bc281edae6ffc5d329fc7982dcc";
+ };
+ };
+ "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-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";
+ };
+ };
+ "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";
+ };
+ };
+ "har-validator-5.1.0" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.0.tgz";
+ sha512 = "+qnmNjI4OfH2ipQ9VQOw23bBd/ibtfbVdK2fYbY4acTDqKTW/YDp9McimZdDbG8iV9fZizUqQMD5xvriB146TA==";
+ };
+ };
+ "has-1.0.3" = {
+ name = "has";
+ packageName = "has";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz";
+ sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==";
+ };
+ };
+ "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.3" = {
+ name = "has-binary2";
+ packageName = "has-binary2";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz";
+ sha512 = "G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==";
+ };
+ };
+ "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/has-cors/-/has-cors-1.1.0.tgz";
+ sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39";
+ };
+ };
+ "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-flag-3.0.0" = {
+ name = "has-flag";
+ packageName = "has-flag";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz";
+ sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
+ };
+ };
+ "has-generators-1.0.1" = {
+ name = "has-generators";
+ packageName = "has-generators";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-generators/-/has-generators-1.0.1.tgz";
+ sha1 = "a6a2e55486011940482e13e2c93791c449acf449";
+ };
+ };
+ "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-symbol-support-x-1.4.2" = {
+ name = "has-symbol-support-x";
+ packageName = "has-symbol-support-x";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz";
+ sha512 = "3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==";
+ };
+ };
+ "has-symbols-1.0.0" = {
+ name = "has-symbols";
+ packageName = "has-symbols";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz";
+ sha1 = "ba1a8f1af2a0fc39650f5c850367704122063b44";
+ };
+ };
+ "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 = "vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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" = {
+ name = "hash-sum";
+ packageName = "hash-sum";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz";
+ sha1 = "33b40777754c6432573c120cc3808bbd10d47f04";
+ };
+ };
+ "hash.js-1.1.5" = {
+ name = "hash.js";
+ packageName = "hash.js";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz";
+ sha512 = "eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==";
+ };
+ };
+ "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 = "miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "heap-0.2.6" = {
+ name = "heap";
+ packageName = "heap";
+ version = "0.2.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/heap/-/heap-0.2.6.tgz";
+ sha1 = "087e1f10b046932fc8594dd9e6d378afc9d1e5ac";
+ };
+ };
+ "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";
+ };
+ };
+ "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.1" = {
+ name = "hoek";
+ packageName = "hoek";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz";
+ sha512 = "QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==";
+ };
+ };
+ "hoek-5.0.4" = {
+ name = "hoek";
+ packageName = "hoek";
+ version = "5.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoek/-/hoek-5.0.4.tgz";
+ sha512 = "Alr4ZQgoMlnere5FZJsIyfIjORBqZll5POhDsF4q64dPuJR6rNxXdDxtHSQq8OXRurhmx+PWYEE8bXRROY8h0w==";
+ };
+ };
+ "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.7.1" = {
+ name = "hosted-git-info";
+ packageName = "hosted-git-info";
+ version = "2.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz";
+ sha512 = "7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==";
+ };
+ };
+ "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 = "5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==";
+ };
+ };
+ "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-errors-1.6.3" = {
+ name = "http-errors";
+ packageName = "http-errors";
+ version = "1.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz";
+ sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d";
+ };
+ };
+ "http-errors-1.7.0" = {
+ name = "http-errors";
+ packageName = "http-errors";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.0.tgz";
+ sha512 = "hz3BtSHB7Z6dNWzYc+gUbWqG4dIpJedwwOhe1cvGUq5tGmcTTIRkPiAbyh/JlZx+ksSJyGJlgcHo5jGahiXnKw==";
+ };
+ };
+ "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 = "87E1I+2Wg4dxxz4rcxElo3dxO/w1ZtgL1yA0Sb6vH3qU16vRKq1NjWQv9SCY3ly2OQROcoxHZOUpmelS+k6wOw==";
+ };
+ };
+ "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.13" = {
+ name = "http-parser-js";
+ packageName = "http-parser-js";
+ version = "0.4.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.13.tgz";
+ sha1 = "3bd6d6fde6e3172c9334c3b33b6c193d80fe1137";
+ };
+ };
+ "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-1.17.0" = {
+ name = "http-proxy";
+ packageName = "http-proxy";
+ version = "1.17.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz";
+ sha512 = "Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==";
+ };
+ };
+ "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-agent-2.1.0" = {
+ name = "http-proxy-agent";
+ packageName = "http-proxy-agent";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz";
+ sha512 = "qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==";
+ };
+ };
+ "http-response-object-1.1.0" = {
+ name = "http-response-object";
+ packageName = "http-response-object";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-response-object/-/http-response-object-1.1.0.tgz";
+ sha1 = "a7c4e75aae82f3bb4904e4f43f615673b4d518c3";
+ };
+ };
+ "http-signature-0.11.0" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ 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";
+ };
+ };
+ "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";
+ };
+ };
+ "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.2.1" = {
+ name = "https-proxy-agent";
+ packageName = "https-proxy-agent";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz";
+ sha512 = "HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ==";
+ };
+ };
+ "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-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";
+ };
+ };
+ "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.2" = {
+ name = "humanize-string";
+ packageName = "humanize-string";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/humanize-string/-/humanize-string-1.0.2.tgz";
+ sha512 = "PH5GBkXqFxw5+4eKaKRIkD23y6vRd/IXSl7IldyJxEXpDH9SEIXRORkBtkGni/ae2P7RVOw6Wxypd2tGXhha1w==";
+ };
+ };
+ "hypercore-6.18.2" = {
+ name = "hypercore";
+ packageName = "hypercore";
+ version = "6.18.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hypercore/-/hypercore-6.18.2.tgz";
+ sha512 = "aPnBx3nyrZGia0D17/+GrGBWCRhM/+0HABRNugva1Z+Cr1LSRlwMeYM/V1goFWity48thoYae5AAJ+WduknZLw==";
+ };
+ };
+ "hypercore-crypto-1.0.0" = {
+ name = "hypercore-crypto";
+ packageName = "hypercore-crypto";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hypercore-crypto/-/hypercore-crypto-1.0.0.tgz";
+ sha512 = "xFwOnNlOt8L+SovC7dTNchKaNYJb5l8rKZZwpWQnCme1r7CU4Hlhp1RDqPES6b0OpS7DkTo9iU0GltQGkpsjMw==";
+ };
+ };
+ "hypercore-protocol-6.6.4" = {
+ name = "hypercore-protocol";
+ packageName = "hypercore-protocol";
+ version = "6.6.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.6.4.tgz";
+ sha512 = "9TU7P+uve0e5v1ZiBx70DFhkpepW4iNSGYlZthK+Unm0EbZ+Yppc6clH7JTffPBNUMSnDrE552MfXMilpCHZMw==";
+ };
+ };
+ "hyperdrive-9.14.0" = {
+ name = "hyperdrive";
+ packageName = "hyperdrive";
+ version = "9.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.14.0.tgz";
+ sha512 = "LTgbsJ+9ZrdQfLaXXc01kQMttaicHhSOtUM3v/k7ORwXJziqQ2eMQ80+8Tfg67ja+w6zrdl5HYOK+mnlwQpCww==";
+ };
+ };
+ "hyperdrive-http-4.3.3" = {
+ name = "hyperdrive-http";
+ packageName = "hyperdrive-http";
+ version = "4.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hyperdrive-http/-/hyperdrive-http-4.3.3.tgz";
+ sha512 = "YRAjbCCRefLK9EMcgDXRgDx/sZksWf85iLtGl9JMVrzFSIfUx0//DpUJ6k0m0eG4KHJJM+dBwORxFPNi29EQHg==";
+ };
+ };
+ "hyperdrive-network-speed-2.1.0" = {
+ name = "hyperdrive-network-speed";
+ packageName = "hyperdrive-network-speed";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hyperdrive-network-speed/-/hyperdrive-network-speed-2.1.0.tgz";
+ sha512 = "JolPS374h6oS1rmz1iebFfeDDvA2nAtiHbx9VJJGMgSDSx4Q77eeY09hDgZwY7KatSKUGWnnSyydSgVUb3+8Lw==";
+ };
+ };
+ "hyperquest-2.1.3" = {
+ name = "hyperquest";
+ packageName = "hyperquest";
+ version = "2.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hyperquest/-/hyperquest-2.1.3.tgz";
+ sha512 = "fUuDOrB47PqNK/BAMOS13v41UoaqIxqSLHX6CAbOD7OfT+/GCWO1/vPLfTNutOeXrv1ikuaZ3yux+33Z9vh+rw==";
+ };
+ };
+ "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-11.6.0" = {
+ name = "i18next";
+ packageName = "i18next";
+ version = "11.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/i18next/-/i18next-11.6.0.tgz";
+ sha512 = "+eOdu1laoPX8l3zuaEFpf0MPYqAyKeX46WEjRkpPLp0TcijP3ww6NrDCPcRwX3yKB69R+ggiLvLGzCm8ALaVXQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "iconv-lite-0.4.15" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz";
+ sha1 = "fe265a218ac6a57cfe854927e9d04c19825eddeb";
+ };
+ };
+ "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 = "oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==";
+ };
+ };
+ "iconv-lite-0.4.23" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.23";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz";
+ sha512 = "neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==";
+ };
+ };
+ "iconv-lite-0.4.24" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz";
+ sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==";
+ };
+ };
+ "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";
+ };
+ };
+ "ieee754-1.1.12" = {
+ name = "ieee754";
+ packageName = "ieee754";
+ version = "1.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz";
+ sha512 = "GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==";
+ };
+ };
+ "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";
+ };
+ };
+ "iferr-0.1.5" = {
+ name = "iferr";
+ packageName = "iferr";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz";
+ sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
+ };
+ };
+ "ignore-3.3.10" = {
+ name = "ignore";
+ packageName = "ignore";
+ version = "3.3.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz";
+ sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==";
+ };
+ };
+ "ignore-4.0.6" = {
+ name = "ignore";
+ packageName = "ignore";
+ version = "4.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz";
+ sha512 = "cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==";
+ };
+ };
+ "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";
+ };
+ };
+ "ignore-walk-3.0.1" = {
+ name = "ignore-walk";
+ packageName = "ignore-walk";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz";
+ sha512 = "DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==";
+ };
+ };
+ "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-3.0.6" = {
+ name = "immediate";
+ packageName = "immediate";
+ version = "3.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz";
+ sha1 = "9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b";
+ };
+ };
+ "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";
+ };
+ };
+ "immediate-chunk-store-2.0.0" = {
+ name = "immediate-chunk-store";
+ packageName = "immediate-chunk-store";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/immediate-chunk-store/-/immediate-chunk-store-2.0.0.tgz";
+ sha512 = "5s6NiCGbtWc+OQA60jrre54w12U7tynIyUNjO5LJjNA5lWwvCv6640roq8Wk/wIuaqnd4Pgtp453OyJ7hbONkQ==";
+ };
+ };
+ "import-global-0.1.0" = {
+ name = "import-global";
+ packageName = "import-global";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/import-global/-/import-global-0.1.0.tgz";
+ sha1 = "97b38fd444114eec16824a935f8da575b57aa1ce";
+ };
+ };
+ "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 = "YQ1wdkSZeRhWNvlSyQGvn8d34tIChAYb/USZv08tHATBWOyfXIU7u2R/YieyCRZIVNUxB5G9Bq+aiyrep/zejQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "import-local-1.0.0" = {
+ name = "import-local";
+ packageName = "import-local";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz";
+ sha512 = "vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "indx-0.2.3" = {
+ name = "indx";
+ packageName = "indx";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/indx/-/indx-0.2.3.tgz";
+ sha1 = "15dcf56ee9cf65c0234c513c27fbd580e70fbc50";
+ };
+ };
+ "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";
+ };
+ };
+ "inflected-2.0.4" = {
+ name = "inflected";
+ packageName = "inflected";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inflected/-/inflected-2.0.4.tgz";
+ sha512 = "HQPzFLTTUvwfeUH6RAGjD8cHS069mBqXG5n4qaxX7sJXBhVQrsGgF+0ZJGkSuN6a8pcUWB/GXStta11kKi/WvA==";
+ };
+ };
+ "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 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
+ };
+ };
+ "init-package-json-1.10.3" = {
+ name = "init-package-json";
+ packageName = "init-package-json";
+ version = "1.10.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.10.3.tgz";
+ sha512 = "zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw==";
+ };
+ };
+ "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 = "e3JOOBLE6cDO2aWWkIYXXT7qhb9HN4mBHSiOj2Hv94VAMDiDb0J50koYtxY0tZBq9N117QENGoURmL+tunxQJw==";
+ };
+ };
+ "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 = "bOblvdmbXFC/UYbBj0WsKGkVhQaiZXK8A/O0e7/eh8HVr0DAbuZgQKatPzZ2ySsrpmcaMUGSVPbeuJOPO53X/g==";
+ };
+ };
+ "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.3" = {
+ name = "innertext";
+ packageName = "innertext";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/innertext/-/innertext-1.0.3.tgz";
+ sha512 = "ZC410b7IbrTrmt8bQb27xUOJgXkJu+XL6MVncb9FGyxjRIHyQqNjpSDY20zvSUttkAiYj0dait/67/sXyWvwYg==";
+ };
+ };
+ "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.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 = "h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==";
+ };
+ };
+ "inquirer-5.1.0" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-5.1.0.tgz";
+ sha512 = "kn7N70US1MSZHZHSGJLiZ7iCwwncc7b0gc68YtlX29OjI3Mp0tSVV+snVXpZ1G+ONS3Ac9zd1m6hve2ibLDYfA==";
+ };
+ };
+ "inquirer-5.2.0" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-5.2.0.tgz";
+ sha512 = "E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ==";
+ };
+ };
+ "inquirer-6.2.0" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "6.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-6.2.0.tgz";
+ sha512 = "QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg==";
+ };
+ };
+ "insert-module-globals-7.2.0" = {
+ name = "insert-module-globals";
+ packageName = "insert-module-globals";
+ version = "7.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.0.tgz";
+ sha512 = "VE6NlW+WGn2/AeOMd496AHFYmE7eLKkUY6Ty31k4og5vmA3Fjuwe9v6ifH6Xx/Hz27QvdoMoviw1/pqWRB09Sw==";
+ };
+ };
+ "insight-0.10.1" = {
+ name = "insight";
+ packageName = "insight";
+ version = "0.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/insight/-/insight-0.10.1.tgz";
+ sha512 = "kLGeYQkh18f8KuC68QKdi0iwUcIaayJVB/STpX7x452/7pAUm1yfG4giJwcxbrTh0zNYtc8kBR+6maLMOzglOQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "inspect-custom-symbol-1.1.0" = {
+ name = "inspect-custom-symbol";
+ packageName = "inspect-custom-symbol";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inspect-custom-symbol/-/inspect-custom-symbol-1.1.0.tgz";
+ sha512 = "vtI2YXBRZBkU6DlfHfd0GtZENfiEiTacAXUd0ZY6HA+X7aPznpFfPmzSC+tHKXAkz9KDSdI4AYfwAMXR5t+isg==";
+ };
+ };
+ "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.4" = {
+ name = "invariant";
+ packageName = "invariant";
+ version = "2.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz";
+ sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==";
+ };
+ };
+ "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";
+ };
+ };
+ "ip-regex-1.0.3" = {
+ name = "ip-regex";
+ packageName = "ip-regex";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz";
+ sha1 = "dc589076f659f419c222039a33316f1c7387effd";
+ };
+ };
+ "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.8.0" = {
+ name = "ipaddr.js";
+ packageName = "ipaddr.js";
+ version = "1.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz";
+ sha1 = "eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e";
+ };
+ };
+ "ipaddr.js-1.8.1" = {
+ name = "ipaddr.js";
+ packageName = "ipaddr.js";
+ version = "1.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.1.tgz";
+ sha1 = "fa4b79fa47fd3def5e3b159825161c0a519c9427";
+ };
+ };
+ "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 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==";
+ };
+ };
+ "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 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
+ };
+ };
+ "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.2" = {
+ name = "is-arrayish";
+ packageName = "is-arrayish";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz";
+ sha512 = "eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==";
+ };
+ };
+ "is-ascii-1.0.0" = {
+ name = "is-ascii";
+ packageName = "is-ascii";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-ascii/-/is-ascii-1.0.0.tgz";
+ sha1 = "f02ad0259a0921cd199ff21ce1b09e0f6b4e3929";
+ };
+ };
+ "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 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
+ };
+ };
+ "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.4" = {
+ name = "is-callable";
+ packageName = "is-callable";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz";
+ sha512 = "r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==";
+ };
+ };
+ "is-ci-1.2.0" = {
+ name = "is-ci";
+ packageName = "is-ci";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-ci/-/is-ci-1.2.0.tgz";
+ sha512 = "plgvKjQtalH2P3Gytb7L61Lmz95g2DlpzFiQyRSFew8WoJKxtKRzrZMeyRN2supblm3Psc8OQGy7Xjb6XG11jw==";
+ };
+ };
+ "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 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
+ };
+ };
+ "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-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 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==";
+ };
+ };
+ "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 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
+ };
+ };
+ "is-directory-0.3.1" = {
+ name = "is-directory";
+ packageName = "is-directory";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz";
+ sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1";
+ };
+ };
+ "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-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 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==";
+ };
+ };
+ "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-file-1.0.0" = {
+ name = "is-file";
+ packageName = "is-file";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-file/-/is-file-1.0.0.tgz";
+ sha1 = "28a44cfbd9d3db193045f22b65fce8edf9620596";
+ };
+ };
+ "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-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-invalid-path-0.1.0" = {
+ name = "is-invalid-path";
+ packageName = "is-invalid-path";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz";
+ sha1 = "307a855b3cf1a938b44ea70d2c61106053714f34";
+ };
+ };
+ "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-mergeable-object-1.1.0" = {
+ name = "is-mergeable-object";
+ packageName = "is-mergeable-object";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.0.tgz";
+ sha512 = "JfyDDwUdtS4yHCgUpxOyKB9dnfZ0gecufxB0eytX6BmSXSE+8dbxDGt+V7CNRIRJ9sYFV/WQt2KJG6hNob2sBw==";
+ };
+ };
+ "is-my-ip-valid-1.0.0" = {
+ name = "is-my-ip-valid";
+ packageName = "is-my-ip-valid";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz";
+ sha512 = "gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==";
+ };
+ };
+ "is-my-json-valid-2.19.0" = {
+ name = "is-my-json-valid";
+ packageName = "is-my-json-valid";
+ version = "2.19.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.19.0.tgz";
+ sha512 = "mG0f/unGX1HZ5ep4uhRaPOS8EkAY8/j6mDRMJrutq4CqhoJWYp7qAlonIPy3TV7p3ju4TK9fo/PbnoksWmsp5Q==";
+ };
+ };
+ "is-natural-number-4.0.1" = {
+ name = "is-natural-number";
+ packageName = "is-natural-number";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz";
+ sha1 = "ab9d76e1db4ced51e35de0c72ebecf09f734cde8";
+ };
+ };
+ "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-number-4.0.0" = {
+ name = "is-number";
+ packageName = "is-number";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz";
+ sha512 = "rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==";
+ };
+ };
+ "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-options-1.0.1" = {
+ name = "is-options";
+ packageName = "is-options";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-options/-/is-options-1.0.1.tgz";
+ sha512 = "2Xj8sA0zDrAcaoWfBiNmc6VPWAgKDpim0T3J9Djq7vbm1UjwbUWzeuLu/FwC46g3cBbAn0E5R0xwVtOobM6Xxg==";
+ };
+ };
+ "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.1" = {
+ name = "is-path-in-cwd";
+ packageName = "is-path-in-cwd";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz";
+ sha512 = "FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==";
+ };
+ };
+ "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 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
+ };
+ };
+ "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 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==";
+ };
+ };
+ "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 = "qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==";
+ };
+ };
+ "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.1" = {
+ name = "is-supported-regexp-flag";
+ packageName = "is-supported-regexp-flag";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz";
+ sha512 = "3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==";
+ };
+ };
+ "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 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "is-url-1.2.4" = {
+ name = "is-url";
+ packageName = "is-url";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz";
+ sha512 = "ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==";
+ };
+ };
+ "is-url-superb-2.0.0" = {
+ name = "is-url-superb";
+ packageName = "is-url-superb";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-url-superb/-/is-url-superb-2.0.0.tgz";
+ sha1 = "b728a18cf692e4d16da6b94c7408a811db0d0492";
+ };
+ };
+ "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-1.0.0" = {
+ name = "is-valid-glob";
+ packageName = "is-valid-glob";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz";
+ sha1 = "29bf3eff701be2d4d315dbacc39bc39fe8f601aa";
+ };
+ };
+ "is-valid-path-0.1.1" = {
+ name = "is-valid-path";
+ packageName = "is-valid-path";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz";
+ sha1 = "110f9ff74c37f663e1ec7915eb451f2db93ac9df";
+ };
+ };
+ "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.2" = {
+ name = "is-windows";
+ packageName = "is-windows";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz";
+ sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
+ };
+ };
+ "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";
+ };
+ };
+ "isarray-2.0.4" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isarray/-/isarray-2.0.4.tgz";
+ sha512 = "GMxXOiUirWg1xTKRipM0Ek07rX+ubx4nNVElTJdNLYmNO/2YrDkgJGw9CljXn+r4EWiDQg/8lsRdHyg2PJuUaA==";
+ };
+ };
+ "isbinaryfile-3.0.3" = {
+ name = "isbinaryfile";
+ packageName = "isbinaryfile";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz";
+ sha512 = "8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==";
+ };
+ };
+ "isemail-3.1.3" = {
+ name = "isemail";
+ packageName = "isemail";
+ version = "3.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isemail/-/isemail-3.1.3.tgz";
+ sha512 = "5xbsG5wYADIcB+mfLsd+nst1V/D+I7EU7LEZPo2GOIMu4JzfcRs5yQoypP4avA7QtUqgxYLKBYNv4IdzBmbhdw==";
+ };
+ };
+ "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 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==";
+ };
+ };
+ "iterall-1.1.3" = {
+ name = "iterall";
+ packageName = "iterall";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iterall/-/iterall-1.1.3.tgz";
+ sha512 = "Cu/kb+4HiNSejAPhSaN1VukdNTTi/r4/e+yykqjlG/IW+1gZH5b4+Bq3whDX4tvbYugta3r8KTMUiqT3fIGxuQ==";
+ };
+ };
+ "iterall-1.2.2" = {
+ name = "iterall";
+ packageName = "iterall";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz";
+ sha512 = "yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==";
+ };
+ };
+ "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";
+ };
+ };
+ "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.26.3" = {
+ name = "jade";
+ packageName = "jade";
+ version = "0.26.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz";
+ sha1 = "8f10d7977d8d79f2f6ff862a81b0513ccb25686c";
+ };
+ };
+ "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.12.0" = {
+ name = "jaeger-client";
+ packageName = "jaeger-client";
+ version = "3.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jaeger-client/-/jaeger-client-3.12.0.tgz";
+ sha512 = "TRwzui1D0OdNREHKWGw0Iuz2EkyTmlPVnzpIEXgPeiEbr/8j164Xvpfc1eCpbfGjNStcWj7Ipcvba/JBSy+q8w==";
+ };
+ };
+ "javascript-stringify-1.6.0" = {
+ name = "javascript-stringify";
+ packageName = "javascript-stringify";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-1.6.0.tgz";
+ sha1 = "142d111f3a6e3dae8f4a9afd77d45855b5a9cce3";
+ };
+ };
+ "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.4.0" = {
+ name = "jju";
+ packageName = "jju";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz";
+ sha1 = "a3abe2718af241a2b2904f84a625970f389ae32a";
+ };
+ };
+ "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-13.6.0" = {
+ name = "joi";
+ packageName = "joi";
+ version = "13.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/joi/-/joi-13.6.0.tgz";
+ sha512 = "E4QB0yRgEa6ZZKcSHJuBC+QeAwy+akCG0Bsa9edLqljyhlr+GuGDSmXYW1q7sj/FuAPy+ECUI3evVtK52tVfwg==";
+ };
+ };
+ "jquery-3.3.1" = {
+ name = "jquery";
+ packageName = "jquery";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz";
+ sha512 = "Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg==";
+ };
+ };
+ "jquery-ui-bundle-1.12.1" = {
+ name = "jquery-ui-bundle";
+ packageName = "jquery-ui-bundle";
+ version = "1.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jquery-ui-bundle/-/jquery-ui-bundle-1.12.1.tgz";
+ sha1 = "d6be2e4c377494e2378b1cae2920a91d1182d8c4";
+ };
+ };
+ "js-base64-2.4.9" = {
+ name = "js-base64";
+ packageName = "js-base64";
+ version = "2.4.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-base64/-/js-base64-2.4.9.tgz";
+ sha512 = "xcinL3AuDJk7VSzsHgb9DvvIXayBbadtMZ4HFPx8rUszbW1MuNMlwYVC4zzCZ6e1sqZpnNS5ZFYOhXqA39T7LQ==";
+ };
+ };
+ "js-message-1.0.5" = {
+ name = "js-message";
+ packageName = "js-message";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-message/-/js-message-1.0.5.tgz";
+ sha1 = "2300d24b1af08e89dd095bc1a4c9c9cfcb892d15";
+ };
+ };
+ "js-queue-2.0.0" = {
+ name = "js-queue";
+ packageName = "js-queue";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-queue/-/js-queue-2.0.0.tgz";
+ sha1 = "362213cf860f468f0125fc6c96abc1742531f948";
+ };
+ };
+ "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-tokens-4.0.0" = {
+ name = "js-tokens";
+ packageName = "js-tokens";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz";
+ sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==";
+ };
+ };
+ "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 = "O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==";
+ };
+ };
+ "js-yaml-3.12.0" = {
+ name = "js-yaml";
+ packageName = "js-yaml";
+ version = "3.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz";
+ sha512 = "PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==";
+ };
+ };
+ "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";
+ };
+ };
+ "jsdom-7.2.2" = {
+ name = "jsdom";
+ packageName = "jsdom";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsdom/-/jsdom-7.2.2.tgz";
+ sha1 = "40b402770c2bda23469096bee91ab675e3b1fc6e";
+ };
+ };
+ "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";
+ };
+ };
+ "jsesc-2.5.1" = {
+ name = "jsesc";
+ packageName = "jsesc";
+ version = "2.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.1.tgz";
+ sha1 = "e421a2a8e20d6b0819df28908f782526b96dd1fe";
+ };
+ };
+ "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-merge-patch-0.2.3" = {
+ name = "json-merge-patch";
+ packageName = "json-merge-patch";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-merge-patch/-/json-merge-patch-0.2.3.tgz";
+ sha1 = "fa2c6b5af87da77bae2966a589d52e23ed81fe40";
+ };
+ };
+ "json-parse-better-errors-1.0.2" = {
+ name = "json-parse-better-errors";
+ packageName = "json-parse-better-errors";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
+ sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==";
+ };
+ };
+ "json-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-deref-sync-0.3.4" = {
+ name = "json-schema-deref-sync";
+ packageName = "json-schema-deref-sync";
+ version = "0.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.3.4.tgz";
+ sha512 = "4Ssj+1UGDJAzPIdTL1QW/rvHwWeuwC28gjbA0EjStLxVsalc+UPciKXxs3rhtr4gaGdIBojW/VmvC8B8bCQwcA==";
+ };
+ };
+ "json-schema-ref-parser-3.3.1" = {
+ name = "json-schema-ref-parser";
+ packageName = "json-schema-ref-parser";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema-ref-parser/-/json-schema-ref-parser-3.3.1.tgz";
+ sha512 = "stQTMhec2R/p2L9dH4XXRlpNCP0mY8QrLd/9Kl+8SHJQmwHtE1nDfXH4wbsSM+GkJMl8t92yZbI0OIol432CIQ==";
+ };
+ };
+ "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-schema-traverse-0.4.1" = {
+ name = "json-schema-traverse";
+ packageName = "json-schema-traverse";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
+ sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==";
+ };
+ };
+ "json-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.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";
+ };
+ };
+ "json5-1.0.1" = {
+ name = "json5";
+ packageName = "json5";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz";
+ sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==";
+ };
+ };
+ "jsonata-1.5.4" = {
+ name = "jsonata";
+ packageName = "jsonata";
+ version = "1.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonata/-/jsonata-1.5.4.tgz";
+ sha512 = "F/p92UWYUn+kD3SE898jjlz1mkBzjtok9ZTtWT6+axS4Z2Wtc8p/md6xHkyCGWPdIEJBTSw0mlvKE+s+fAVSjg==";
+ };
+ };
+ "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-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";
+ };
+ };
+ "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-8.2.1" = {
+ name = "jsonwebtoken";
+ packageName = "jsonwebtoken";
+ version = "8.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.2.1.tgz";
+ sha512 = "l8rUBr0fqYYwPc8/ZGrue7GiW7vWdZtZqelxo4Sd5lMvuEeCK8/wS54sEo6tJhdZ6hqfutsj6COgC0d1XdbHGw==";
+ };
+ };
+ "jsonwebtoken-8.3.0" = {
+ name = "jsonwebtoken";
+ packageName = "jsonwebtoken";
+ version = "8.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.3.0.tgz";
+ sha512 = "oge/hvlmeJCH+iIz1DwcO7vKPkNGJHhgkspk8OH3VKlw+mbi42WtD4ig1+VXRln765vxptAv+xT26Fd3cteqag==";
+ };
+ };
+ "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.0" = {
+ name = "jsprim";
+ packageName = "jsprim";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz";
+ sha1 = "a3b87e40298d8c380552d8cc7628a0bb95a22918";
+ };
+ };
+ "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";
+ };
+ };
+ "jszip-3.1.5" = {
+ name = "jszip";
+ packageName = "jszip";
+ version = "3.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jszip/-/jszip-3.1.5.tgz";
+ sha512 = "5W8NUaFRFRqTOL7ZDDrx5qWHJyBXy6velVudIzQUSoqAAYqzSh2Z7/m0Rf1QbmQJccegD0r+YZxBjzqoBiEeJQ==";
+ };
+ };
+ "junk-2.1.0" = {
+ name = "junk";
+ packageName = "junk";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/junk/-/junk-2.1.0.tgz";
+ sha1 = "f431b4b7f072dc500a5f10ce7f4ec71930e70134";
+ };
+ };
+ "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.6" = {
+ name = "jwa";
+ packageName = "jwa";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jwa/-/jwa-1.1.6.tgz";
+ sha512 = "tBO/cf++BUsJkYql/kBbJroKOgHWEigTKBAjjBEmrMGYd1QMBC74Hr4Wo2zCZw6ZrVhlJPvoMrkcOnlWR/DJfw==";
+ };
+ };
+ "jws-3.1.5" = {
+ name = "jws";
+ packageName = "jws";
+ version = "3.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jws/-/jws-3.1.5.tgz";
+ sha512 = "GsCSexFADNQUr8T5HPJvayTjvPIfoyJPtLQBwn5a4WZQchcrPMPMAWcC1AzJVRDKyD6ZPROPAxgv6rfHViO4uQ==";
+ };
+ };
+ "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 = "kgwWqYT79rAahn4maIVTP8dIe+m1KulufWW+f1bB9DlZrRFiGpZ4iJOg2HUp4xJYBWONP3+rOPIWF/RXABU6mw==";
+ };
+ };
+ "k-bucket-4.0.1" = {
+ name = "k-bucket";
+ packageName = "k-bucket";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-bucket/-/k-bucket-4.0.1.tgz";
+ sha512 = "YvDpmY3waI999h1zZoW1rJ04fZrgZ+5PAlVmvwDHT6YO/Q1AOhdel07xsKy9eAvJjQ9xZV1wz3rXKqEfaWvlcQ==";
+ };
+ };
+ "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.3.1" = {
+ name = "k-rpc";
+ packageName = "k-rpc";
+ version = "4.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-rpc/-/k-rpc-4.3.1.tgz";
+ sha512 = "mgAJZeFYbpP0xzJzmS0TQTYoFI0sjy3GnKFhg8wyboL+KvWg2WLaA2Oy9PthLPx2Rxz4WeBMk4y3MSOrDJ95FA==";
+ };
+ };
+ "k-rpc-5.0.0" = {
+ name = "k-rpc";
+ packageName = "k-rpc";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-rpc/-/k-rpc-5.0.0.tgz";
+ sha512 = "vCH2rQdfMOS+MlUuTSuar1pS2EMrltURf9LmAR9xR6Jik0XPlMX3vEixgqMn17wKmFVCublJqSJ4hJIP7oKZ3Q==";
+ };
+ };
+ "k-rpc-socket-1.8.0" = {
+ name = "k-rpc-socket";
+ packageName = "k-rpc-socket";
+ version = "1.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-rpc-socket/-/k-rpc-socket-1.8.0.tgz";
+ sha512 = "f/9TynsO8YYjZ6JjNNtSSH7CJcIHcio1buy3zqByGxb/GX8AWLdL6FZEWTrN8V3/J7W4/E0ZTQQ+Jt2rVq7ELg==";
+ };
+ };
+ "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.5" = {
+ name = "keen.io";
+ packageName = "keen.io";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keen.io/-/keen.io-0.1.5.tgz";
+ sha512 = "THuLqGgrsqRiszyq7Mkasf4uKCtpIXjoptQJZQcvQ6WutSjf17ndJ/eHZCi7IbvulNq5NwJWBH1earF0duIzDw==";
+ };
+ };
+ "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 = "eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==";
+ };
+ };
+ "kind-of-1.1.0" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz";
+ sha1 = "140a3d2d41a36d2efcfa9377b62c24f8495a5c44";
+ };
+ };
+ "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 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==";
+ };
+ };
+ "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 = "s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==";
+ };
+ };
+ "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";
+ };
+ };
+ "klaw-3.0.0" = {
+ name = "klaw";
+ packageName = "klaw";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz";
+ sha512 = "0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==";
+ };
+ };
+ "klaw-sync-4.0.0" = {
+ name = "klaw-sync";
+ packageName = "klaw-sync";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/klaw-sync/-/klaw-sync-4.0.0.tgz";
+ sha512 = "go/5tXbgLkgwxQ2c2ewaMen6TpQtI9fTzzmTdlSGK8XxKcFSsJvn/Sgn75Vg+mOJwkKVPrqLw2Xq7x/zP1v7PQ==";
+ };
+ };
+ "knockout-3.5.0-rc" = {
+ name = "knockout";
+ packageName = "knockout";
+ version = "3.5.0-rc";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/knockout/-/knockout-3.5.0-rc.tgz";
+ sha512 = "eROh551BD9dDQ2ItCF60IPcZZXP46WiEcFCU6pVlekeQ6mv3L+in4u8BIIUDp1h0OtL7IXLwvwEY8HkG/BPtrQ==";
+ };
+ };
+ "kuduscript-1.0.16" = {
+ name = "kuduscript";
+ packageName = "kuduscript";
+ version = "1.0.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kuduscript/-/kuduscript-1.0.16.tgz";
+ sha512 = "++ulra2RtdutmJhZZFohhF+kbccz2XdFTf23857x8X1M9Jfm54ZKY4kXPJKgPdMz6eTH1MBXWXh17RvGWxLNrw==";
+ };
+ };
+ "labeled-stream-splicer-2.0.1" = {
+ name = "labeled-stream-splicer";
+ packageName = "labeled-stream-splicer";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz";
+ sha512 = "MC94mHZRvJ3LfykJlTUipBqenZz1pacOZEMhhQ8dMGcDHs0SBE5GbsavUXV7YtP3icBW17W0Zy1I0lfASmo9Pg==";
+ };
+ };
+ "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-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";
+ };
+ };
+ "launch-editor-2.2.1" = {
+ name = "launch-editor";
+ packageName = "launch-editor";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/launch-editor/-/launch-editor-2.2.1.tgz";
+ sha512 = "On+V7K2uZK6wK7x691ycSUbLD/FyKKelArkbaAMSSJU8JmqmhwN2+mnJDNINuJWSrh2L0kDk+ZQtbC/gOWUwLw==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "lead-1.0.0" = {
+ name = "lead";
+ packageName = "lead";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz";
+ sha1 = "6f14f99a37be3a9dd784f5495690e5903466ee42";
+ };
+ };
+ "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 = "KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ==";
+ };
+ };
+ "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 = "1fDsyifwRGObMmqaZhkTDAmVnvgpZmdf6ZTSCbVv9vt+xhlzOz5TDNlLCbITsusEB3d0OKOEadwN9ic3PyOWCg==";
+ };
+ };
+ "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.7" = {
+ name = "level-post";
+ packageName = "level-post";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/level-post/-/level-post-1.0.7.tgz";
+ sha512 = "PWYqG4Q00asOrLhX7BejSajByB4EmG2GaKHfj3h5UmmZ2duciXLPGYWIjBzLECFWUGOZWlm5B20h/n3Gs3HKew==";
+ };
+ };
+ "level-sublevel-6.6.5" = {
+ name = "level-sublevel";
+ packageName = "level-sublevel";
+ version = "6.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/level-sublevel/-/level-sublevel-6.6.5.tgz";
+ sha512 = "SBSR60x+dghhwGUxPKS+BvV1xNqnwsEUBKmnFepPaHJ6VkBXyPK9SImGc3K2BkwBfpxlt7GKkBNlCnrdufsejA==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "lie-3.1.1" = {
+ name = "lie";
+ packageName = "lie";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz";
+ sha1 = "9a436b2cc7746ca59de7a41fa469b3efb76bd87e";
+ };
+ };
+ "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";
+ };
+ };
+ "load-ip-set-2.1.0" = {
+ name = "load-ip-set";
+ packageName = "load-ip-set";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/load-ip-set/-/load-ip-set-2.1.0.tgz";
+ sha512 = "taz7U6B+F7Zq90dfIKwqsB1CrFKelSEmMGC68OUqem8Cgd1QZygQBYb2Fk9i6muBSfH4xwF/Pjt4KKlAdOyWZw==";
+ };
+ };
+ "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";
+ };
+ };
+ "locate-path-3.0.0" = {
+ name = "locate-path";
+ packageName = "locate-path";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz";
+ sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==";
+ };
+ };
+ "lockfile-1.0.4" = {
+ name = "lockfile";
+ packageName = "lockfile";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz";
+ sha512 = "cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==";
+ };
+ };
+ "locks-0.2.2" = {
+ name = "locks";
+ packageName = "locks";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/locks/-/locks-0.2.2.tgz";
+ sha1 = "259933d1327cbaf0fd3662f8fffde36809d84ced";
+ };
+ };
+ "locutus-2.0.9" = {
+ name = "locutus";
+ packageName = "locutus";
+ version = "2.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/locutus/-/locutus-2.0.9.tgz";
+ sha1 = "e265af1e85fd19173e74386373888560783a02fc";
+ };
+ };
+ "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.10" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "4.17.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz";
+ sha512 = "UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==";
+ };
+ };
+ "lodash-4.17.5" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "4.17.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz";
+ sha512 = "svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==";
+ };
+ };
+ "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-compat-3.10.2" = {
+ name = "lodash-compat";
+ packageName = "lodash-compat";
+ version = "3.10.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash-compat/-/lodash-compat-3.10.2.tgz";
+ sha1 = "c6940128a9d30f8e902cd2cf99fd0cba4ecfc183";
+ };
+ };
+ "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._arraypool-2.4.1" = {
+ name = "lodash._arraypool";
+ packageName = "lodash._arraypool";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._arraypool/-/lodash._arraypool-2.4.1.tgz";
+ sha1 = "e88eecb92e2bb84c9065612fd958a0719cd47f94";
+ };
+ };
+ "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._basebind-2.4.1" = {
+ name = "lodash._basebind";
+ packageName = "lodash._basebind";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basebind/-/lodash._basebind-2.4.1.tgz";
+ sha1 = "e940b9ebdd27c327e0a8dab1b55916c5341e9575";
+ };
+ };
+ "lodash._baseclone-2.4.1" = {
+ name = "lodash._baseclone";
+ packageName = "lodash._baseclone";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-2.4.1.tgz";
+ sha1 = "30f823e57e17e3735d383bd62b60b387543b4186";
+ };
+ };
+ "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._basecreate-2.4.1" = {
+ name = "lodash._basecreate";
+ packageName = "lodash._basecreate";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-2.4.1.tgz";
+ sha1 = "f8e6f5b578a9e34e541179b56b8eeebf4a287e08";
+ };
+ };
+ "lodash._basecreatecallback-2.4.1" = {
+ name = "lodash._basecreatecallback";
+ packageName = "lodash._basecreatecallback";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basecreatecallback/-/lodash._basecreatecallback-2.4.1.tgz";
+ sha1 = "7d0b267649cb29e7a139d0103b7c11fae84e4851";
+ };
+ };
+ "lodash._basecreatewrapper-2.4.1" = {
+ name = "lodash._basecreatewrapper";
+ packageName = "lodash._basecreatewrapper";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basecreatewrapper/-/lodash._basecreatewrapper-2.4.1.tgz";
+ sha1 = "4d31f2e7de7e134fbf2803762b8150b32519666f";
+ };
+ };
+ "lodash._baseiteratee-4.7.0" = {
+ name = "lodash._baseiteratee";
+ packageName = "lodash._baseiteratee";
+ version = "4.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._baseiteratee/-/lodash._baseiteratee-4.7.0.tgz";
+ sha1 = "34a9b5543572727c3db2e78edae3c0e9e66bd102";
+ };
+ };
+ "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._basetostring-4.12.0" = {
+ name = "lodash._basetostring";
+ packageName = "lodash._basetostring";
+ version = "4.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-4.12.0.tgz";
+ sha1 = "9327c9dc5158866b7fa4b9d42f4638e5766dd9df";
+ };
+ };
+ "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._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._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._createwrapper-2.4.1" = {
+ name = "lodash._createwrapper";
+ packageName = "lodash._createwrapper";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._createwrapper/-/lodash._createwrapper-2.4.1.tgz";
+ sha1 = "51d6957973da4ed556e37290d8c1a18c53de1607";
+ };
+ };
+ "lodash._getarray-2.4.1" = {
+ name = "lodash._getarray";
+ packageName = "lodash._getarray";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._getarray/-/lodash._getarray-2.4.1.tgz";
+ sha1 = "faf1f7f810fa985a251c2187404481094839e5ee";
+ };
+ };
+ "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._isnative-2.4.1" = {
+ name = "lodash._isnative";
+ packageName = "lodash._isnative";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz";
+ sha1 = "3ea6404b784a7be836c7b57580e1cdf79b14832c";
+ };
+ };
+ "lodash._maxpoolsize-2.4.1" = {
+ name = "lodash._maxpoolsize";
+ packageName = "lodash._maxpoolsize";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._maxpoolsize/-/lodash._maxpoolsize-2.4.1.tgz";
+ sha1 = "9d482f463b8e66afbe59c2c14edb117060172334";
+ };
+ };
+ "lodash._objecttypes-2.4.1" = {
+ name = "lodash._objecttypes";
+ packageName = "lodash._objecttypes";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz";
+ sha1 = "7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11";
+ };
+ };
+ "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._releasearray-2.4.1" = {
+ name = "lodash._releasearray";
+ packageName = "lodash._releasearray";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._releasearray/-/lodash._releasearray-2.4.1.tgz";
+ sha1 = "a6139630d76d1536b07ddc80962889b082f6a641";
+ };
+ };
+ "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._setbinddata-2.4.1" = {
+ name = "lodash._setbinddata";
+ packageName = "lodash._setbinddata";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._setbinddata/-/lodash._setbinddata-2.4.1.tgz";
+ sha1 = "f7c200cd1b92ef236b399eecf73c648d17aa94d2";
+ };
+ };
+ "lodash._shimkeys-2.4.1" = {
+ name = "lodash._shimkeys";
+ packageName = "lodash._shimkeys";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz";
+ sha1 = "6e9cc9666ff081f0b5a6c978b83e242e6949d203";
+ };
+ };
+ "lodash._slice-2.4.1" = {
+ name = "lodash._slice";
+ packageName = "lodash._slice";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._slice/-/lodash._slice-2.4.1.tgz";
+ sha1 = "745cf41a53597b18f688898544405efa2b06d90f";
+ };
+ };
+ "lodash._stringtopath-4.8.0" = {
+ name = "lodash._stringtopath";
+ packageName = "lodash._stringtopath";
+ version = "4.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._stringtopath/-/lodash._stringtopath-4.8.0.tgz";
+ sha1 = "941bcf0e64266e5fc1d66fed0a6959544c576824";
+ };
+ };
+ "lodash.assign-2.4.1" = {
+ name = "lodash.assign";
+ packageName = "lodash.assign";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-2.4.1.tgz";
+ sha1 = "84c39596dd71181a97b0652913a7c9675e49b1aa";
+ };
+ };
+ "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" = {
+ name = "lodash.assignin";
+ packageName = "lodash.assignin";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz";
+ sha1 = "ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2";
+ };
+ };
+ "lodash.bind-2.4.1" = {
+ name = "lodash.bind";
+ packageName = "lodash.bind";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.bind/-/lodash.bind-2.4.1.tgz";
+ sha1 = "5d19fa005c8c4d236faf4742c7b7a1fcabe29267";
+ };
+ };
+ "lodash.bind-4.2.1" = {
+ name = "lodash.bind";
+ packageName = "lodash.bind";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz";
+ 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.clone-4.5.0" = {
+ name = "lodash.clone";
+ packageName = "lodash.clone";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz";
+ sha1 = "195870450f5a13192478df4bc3d23d2dea1907b6";
+ };
+ };
+ "lodash.clonedeep-2.4.1" = {
+ name = "lodash.clonedeep";
+ packageName = "lodash.clonedeep";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-2.4.1.tgz";
+ sha1 = "f29203b40b12fee0a45d3631648259bebabc7868";
+ };
+ };
+ "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";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz";
+ sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c";
+ };
+ };
+ "lodash.difference-4.5.0" = {
+ name = "lodash.difference";
+ packageName = "lodash.difference";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz";
+ sha1 = "9ccb4e505d486b91651345772885a2df27fd017c";
+ };
+ };
+ "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.every-4.6.0" = {
+ name = "lodash.every";
+ packageName = "lodash.every";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.every/-/lodash.every-4.6.0.tgz";
+ sha1 = "eb89984bebc4364279bb3aefbbd1ca19bfa6c6a7";
+ };
+ };
+ "lodash.filter-4.6.0" = {
+ name = "lodash.filter";
+ packageName = "lodash.filter";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz";
+ sha1 = "668b1d4981603ae1cc5a6fa760143e480b4c4ace";
+ };
+ };
+ "lodash.flatten-4.4.0" = {
+ name = "lodash.flatten";
+ packageName = "lodash.flatten";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz";
+ 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-2.4.1" = {
+ name = "lodash.foreach";
+ packageName = "lodash.foreach";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-2.4.1.tgz";
+ sha1 = "fe3fc3a34c86c94cab6f9522560282741e016309";
+ };
+ };
+ "lodash.foreach-4.5.0" = {
+ name = "lodash.foreach";
+ packageName = "lodash.foreach";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz";
+ sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53";
+ };
+ };
+ "lodash.forown-2.4.1" = {
+ name = "lodash.forown";
+ packageName = "lodash.forown";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.forown/-/lodash.forown-2.4.1.tgz";
+ sha1 = "78b41eafe1405fa966459ea4193fd502d084524b";
+ };
+ };
+ "lodash.get-4.4.2" = {
+ name = "lodash.get";
+ packageName = "lodash.get";
+ version = "4.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz";
+ sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99";
+ };
+ };
+ "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.has-4.5.2" = {
+ name = "lodash.has";
+ packageName = "lodash.has";
+ version = "4.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.has/-/lodash.has-4.5.2.tgz";
+ sha1 = "d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862";
+ };
+ };
+ "lodash.identity-2.4.1" = {
+ name = "lodash.identity";
+ packageName = "lodash.identity";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.identity/-/lodash.identity-2.4.1.tgz";
+ sha1 = "6694cffa65fef931f7c31ce86c74597cf560f4f1";
+ };
+ };
+ "lodash.includes-4.3.0" = {
+ name = "lodash.includes";
+ packageName = "lodash.includes";
+ version = "4.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz";
+ sha1 = "60bb98a87cb923c68ca1e51325483314849f553f";
+ };
+ };
+ "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-2.4.1" = {
+ name = "lodash.isarray";
+ packageName = "lodash.isarray";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-2.4.1.tgz";
+ sha1 = "b52a326c1f62f6d7da73a31d5401df6ef44f0fa1";
+ };
+ };
+ "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.isboolean-3.0.3" = {
+ name = "lodash.isboolean";
+ packageName = "lodash.isboolean";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz";
+ sha1 = "6c2e171db2a257cd96802fd43b01b20d5f5870f6";
+ };
+ };
+ "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-2.4.1" = {
+ name = "lodash.isfunction";
+ packageName = "lodash.isfunction";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-2.4.1.tgz";
+ sha1 = "2cfd575c73e498ab57e319b77fa02adef13a94d1";
+ };
+ };
+ "lodash.isinteger-4.0.4" = {
+ name = "lodash.isinteger";
+ packageName = "lodash.isinteger";
+ version = "4.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz";
+ sha1 = "619c0af3d03f8b04c31f5882840b77b11cd68343";
+ };
+ };
+ "lodash.isnumber-3.0.3" = {
+ name = "lodash.isnumber";
+ packageName = "lodash.isnumber";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz";
+ sha1 = "3ce76810c5928d03352301ac287317f11c0b1ffc";
+ };
+ };
+ "lodash.isobject-2.4.1" = {
+ name = "lodash.isobject";
+ packageName = "lodash.isobject";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz";
+ sha1 = "5a2e47fe69953f1ee631a7eba1fe64d2d06558f5";
+ };
+ };
+ "lodash.isplainobject-4.0.6" = {
+ name = "lodash.isplainobject";
+ packageName = "lodash.isplainobject";
+ version = "4.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz";
+ sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb";
+ };
+ };
+ "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-2.4.1" = {
+ name = "lodash.keys";
+ packageName = "lodash.keys";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz";
+ sha1 = "48dea46df8ff7632b10d706b8acb26591e2b3727";
+ };
+ };
+ "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";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz";
+ sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3";
+ };
+ };
+ "lodash.maxby-4.6.0" = {
+ name = "lodash.maxby";
+ packageName = "lodash.maxby";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.maxby/-/lodash.maxby-4.6.0.tgz";
+ sha1 = "082240068f3c7a227aa00a8380e4f38cf0786e3d";
+ };
+ };
+ "lodash.memoize-3.0.4" = {
+ name = "lodash.memoize";
+ packageName = "lodash.memoize";
+ 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.1" = {
+ name = "lodash.merge";
+ packageName = "lodash.merge";
+ version = "4.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz";
+ sha512 = "AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==";
+ };
+ };
+ "lodash.mergewith-4.6.1" = {
+ name = "lodash.mergewith";
+ packageName = "lodash.mergewith";
+ version = "4.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz";
+ sha512 = "eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ==";
+ };
+ };
+ "lodash.noop-2.4.1" = {
+ name = "lodash.noop";
+ packageName = "lodash.noop";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.noop/-/lodash.noop-2.4.1.tgz";
+ sha1 = "4fb54f816652e5ae10e8f72f717a388c7326538a";
+ };
+ };
+ "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.partialright-4.2.1" = {
+ name = "lodash.partialright";
+ packageName = "lodash.partialright";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.partialright/-/lodash.partialright-4.2.1.tgz";
+ sha1 = "0130d80e83363264d40074f329b8a3e7a8a1cc4b";
+ };
+ };
+ "lodash.pick-4.4.0" = {
+ name = "lodash.pick";
+ packageName = "lodash.pick";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz";
+ sha1 = "52f05610fff9ded422611441ed1fc123a03001b3";
+ };
+ };
+ "lodash.reduce-4.6.0" = {
+ name = "lodash.reduce";
+ packageName = "lodash.reduce";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz";
+ sha1 = "f1ab6b839299ad48f784abbf476596f03b914d3b";
+ };
+ };
+ "lodash.reject-4.6.0" = {
+ name = "lodash.reject";
+ packageName = "lodash.reject";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz";
+ 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.set-4.3.2" = {
+ name = "lodash.set";
+ packageName = "lodash.set";
+ version = "4.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz";
+ sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23";
+ };
+ };
+ "lodash.some-4.6.0" = {
+ name = "lodash.some";
+ packageName = "lodash.some";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz";
+ sha1 = "1bb9f314ef6b8baded13b549169b2a945eb68e4d";
+ };
+ };
+ "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";
+ };
+ };
+ "lodash.support-2.4.1" = {
+ name = "lodash.support";
+ packageName = "lodash.support";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.support/-/lodash.support-2.4.1.tgz";
+ sha1 = "320e0b67031673c28d7a2bb5d9e0331a45240515";
+ };
+ };
+ "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";
+ };
+ };
+ "lodash.toarray-4.4.0" = {
+ name = "lodash.toarray";
+ packageName = "lodash.toarray";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz";
+ sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561";
+ };
+ };
+ "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.uniqby-4.5.0" = {
+ name = "lodash.uniqby";
+ packageName = "lodash.uniqby";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.5.0.tgz";
+ sha1 = "a3a17bbf62eeb6240f491846e97c1c4e2a5e1e21";
+ };
+ };
+ "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 = "VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==";
+ };
+ };
+ "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-3.0.5" = {
+ name = "log4js";
+ packageName = "log4js";
+ version = "3.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log4js/-/log4js-3.0.5.tgz";
+ sha512 = "IX5c3G/7fuTtdr0JjOT2OIR12aTESVhsH6cEsijloYwKgcPRlO6DgOU72v0UFhWcoV1HN6+M3dwT89qVPLXm0w==";
+ };
+ };
+ "lokijs-1.5.3" = {
+ name = "lokijs";
+ packageName = "lokijs";
+ version = "1.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lokijs/-/lokijs-1.5.3.tgz";
+ sha1 = "6952722ffa3049a55a5e1c10ee4a0947a3e5e19b";
+ };
+ };
+ "lomstream-1.1.0" = {
+ name = "lomstream";
+ packageName = "lomstream";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lomstream/-/lomstream-1.1.0.tgz";
+ sha1 = "2a7f8066ec3ab40bef28ca384842e75340183bf0";
+ };
+ };
+ "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";
+ };
+ };
+ "long-3.2.0" = {
+ name = "long";
+ packageName = "long";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/long/-/long-3.2.0.tgz";
+ sha1 = "d821b7138ca1cb581c172990ef14db200b5c474b";
+ };
+ };
+ "long-4.0.0" = {
+ name = "long";
+ packageName = "long";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/long/-/long-4.0.0.tgz";
+ sha512 = "XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==";
+ };
+ };
+ "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";
+ };
+ };
+ "longjohn-0.2.12" = {
+ name = "longjohn";
+ packageName = "longjohn";
+ version = "0.2.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/longjohn/-/longjohn-0.2.12.tgz";
+ sha1 = "7ca7446b083655c377e7512213dc754d52a64a7e";
+ };
+ };
+ "looper-2.0.0" = {
+ name = "looper";
+ packageName = "looper";
+ 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";
+ };
+ };
+ "loose-envify-1.4.0" = {
+ name = "loose-envify";
+ packageName = "loose-envify";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz";
+ sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==";
+ };
+ };
+ "lossless-json-1.0.3" = {
+ name = "lossless-json";
+ packageName = "lossless-json";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lossless-json/-/lossless-json-1.0.3.tgz";
+ sha512 = "r4w0WrhIHV1lOTVGbTg4Toqwso5x6C8pM7Q/Nto2vy4c7yUSdTYVYlj16uHVX3MT1StpSELDv8yrqGx41MBsDA==";
+ };
+ };
+ "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";
+ };
+ };
+ "lowdb-0.15.5" = {
+ name = "lowdb";
+ packageName = "lowdb";
+ version = "0.15.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lowdb/-/lowdb-0.15.5.tgz";
+ sha1 = "9ade105df8aa573692d1221622b85414fbf4fa96";
+ };
+ };
+ "lowdb-1.0.0" = {
+ name = "lowdb";
+ packageName = "lowdb";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz";
+ sha512 = "2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "lowercase-keys-1.0.1" = {
+ name = "lowercase-keys";
+ packageName = "lowercase-keys";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz";
+ sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==";
+ };
+ };
+ "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-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";
+ };
+ };
+ "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";
+ };
+ };
+ "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.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-4.1.3" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "4.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz";
+ sha512 = "fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==";
+ };
+ };
+ "lru-queue-0.1.0" = {
+ name = "lru-queue";
+ packageName = "lru-queue";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz";
+ sha1 = "2738bd9f0d3cf4f84490c5736c48699ac632cda3";
+ };
+ };
+ "lstream-0.0.4" = {
+ name = "lstream";
+ packageName = "lstream";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lstream/-/lstream-0.0.4.tgz";
+ sha1 = "d637764ea33a929bd00f34d2a23c2256d0d5fb5b";
+ };
+ };
+ "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/lynx/-/lynx-0.2.0.tgz";
+ sha1 = "79e6674530da4183e87953bd686171e070da50b9";
+ };
+ };
+ "macos-release-1.1.0" = {
+ name = "macos-release";
+ packageName = "macos-release";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/macos-release/-/macos-release-1.1.0.tgz";
+ sha512 = "mmLbumEYMi5nXReB9js3WGsB8UE6cDBWyIO62Z4DNx6GbRhDxHNjA1MlzSpJ2S2KM1wyiPRA0d19uHWYYvMHjA==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "magnet-uri-5.2.3" = {
+ name = "magnet-uri";
+ packageName = "magnet-uri";
+ version = "5.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-5.2.3.tgz";
+ sha512 = "INWVwcpWfZTVM+Yb4EXVBpm0FTd8Q98Fn5x7nuHv1hkFDRELgdIM+eJ3zYLbNTFpFPYtHs6B+sx8exs29IYwgA==";
+ };
+ };
+ "mailcomposer-2.1.0" = {
+ name = "mailcomposer";
+ packageName = "mailcomposer";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mailcomposer/-/mailcomposer-2.1.0.tgz";
+ sha1 = "a6531822899614fee899c92226d81e2b9cbb183d";
+ };
+ };
+ "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";
+ };
+ };
+ "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.3.0" = {
+ name = "make-dir";
+ packageName = "make-dir";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz";
+ sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==";
+ };
+ };
+ "make-error-1.3.4" = {
+ name = "make-error";
+ packageName = "make-error";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/make-error/-/make-error-1.3.4.tgz";
+ sha512 = "0Dab5btKVPhibSalc9QGXb559ED7G7iLjFXBaj9Wq8O3vorueR5K5jaE3hkG6ZQINyhA/JgG6Qk4qdFQjsYV6g==";
+ };
+ };
+ "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-fetch-happen-4.0.1" = {
+ name = "make-fetch-happen";
+ packageName = "make-fetch-happen";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-4.0.1.tgz";
+ sha512 = "7R5ivfy9ilRJ1EMKIOziwrns9fGeAD4bAha8EB7BIiBBLHm2KeTUGCrICFt2rbHfzheTLynv50GnNTK1zDTrcQ==";
+ };
+ };
+ "make-iterator-1.0.1" = {
+ name = "make-iterator";
+ packageName = "make-iterator";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz";
+ sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==";
+ };
+ };
+ "mamacro-0.0.3" = {
+ name = "mamacro";
+ packageName = "mamacro";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz";
+ sha512 = "qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==";
+ };
+ };
+ "map-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-obj-2.0.0" = {
+ name = "map-obj";
+ packageName = "map-obj";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/map-obj/-/map-obj-2.0.0.tgz";
+ sha1 = "a65cd29087a92598b8791257a523e021222ac1f9";
+ };
+ };
+ "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";
+ };
+ };
+ "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.2" = {
+ name = "markdown-it";
+ packageName = "markdown-it";
+ version = "8.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz";
+ sha512 = "GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==";
+ };
+ };
+ "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.1" = {
+ name = "markdown-it-github-headings";
+ packageName = "markdown-it-github-headings";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/markdown-it-github-headings/-/markdown-it-github-headings-1.1.1.tgz";
+ sha512 = "jEthmVitZXhYJ0Fkvh6RfBcxdIKKec/p3LidX9a+Hs5/AnUjtxi1nxDVhu1muyacXoTiA+ChVilASQyTdfWk2Q==";
+ };
+ };
+ "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/markdown-it-task-checkbox/-/markdown-it-task-checkbox-1.0.6.tgz";
+ sha512 = "7pxkHuvqTOu3iwVGmDPeYjQg+AIS9VQxzyLP9JCg9lBjgPAJXGEkChK6A2iFuj3tS0GV3HG2u5AMNhcQqwxpJw==";
+ };
+ };
+ "marked-0.3.19" = {
+ name = "marked";
+ packageName = "marked";
+ version = "0.3.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz";
+ sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==";
+ };
+ };
+ "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 = "nUCmzKipcJEwYsBVAFh5P+d7JBuhJaW1xs85Hara9xuMLqtCVUrW6DSC0JVIkluxEH2W45nPBM/wjHtBXa/tYA==";
+ };
+ };
+ "math-random-1.0.1" = {
+ name = "math-random";
+ packageName = "math-random";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz";
+ sha1 = "8b3aac588b8a66e4975e3cdea67f7bb329601fac";
+ };
+ };
+ "md5-2.2.1" = {
+ name = "md5";
+ packageName = "md5";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz";
+ sha1 = "53ab38d5fe3c8891ba465329ea23fac0540126f9";
+ };
+ };
+ "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.4" = {
+ name = "mdn-data";
+ packageName = "mdn-data";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz";
+ sha512 = "FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==";
+ };
+ };
+ "mdn-data-1.2.0" = {
+ name = "mdn-data";
+ packageName = "mdn-data";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.2.0.tgz";
+ sha512 = "esDqNvsJB2q5V28+u7NdtdMg6Rmg4khQmAVSjUiX7BY/7haIv0K2yWM43hYp0or+3nvG7+UaTF1JHz31hgU1TA==";
+ };
+ };
+ "mdns-js-0.5.0" = {
+ name = "mdns-js";
+ packageName = "mdns-js";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdns-js/-/mdns-js-0.5.0.tgz";
+ sha1 = "4c8abb6ba7cabdc892d39228c3faa2556e09cf87";
+ };
+ };
+ "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 = "dwEtMzmoZCQcGlr004J4m2+W6dCMpCoGQ5kYIEY+7rMPdMM7ztT+1qD9ExmottvLGgbqAVsjllhwU8PyusecPg==";
+ };
+ };
+ "mdns-js-packet-0.2.0" = {
+ name = "mdns-js-packet";
+ packageName = "mdns-js-packet";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdns-js-packet/-/mdns-js-packet-0.2.0.tgz";
+ sha1 = "642409e8183c7561cc60615bbd1420ec2fad7616";
+ };
+ };
+ "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";
+ };
+ };
+ "mediasource-2.2.2" = {
+ name = "mediasource";
+ packageName = "mediasource";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mediasource/-/mediasource-2.2.2.tgz";
+ sha512 = "yIyAJMcu1mudTkxZ0jDAKnZJJba4eWPCxxtZRMpoaA4/AI7m7nqbRjmdxmi+x3hKTohb5vC9Yd3IBF/SUzp1vQ==";
+ };
+ };
+ "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 = "fPcI4r2yH02UUgMo308CVzIuXUaRUrBzMvjXX8J4XfcHgX9Y73iB0/VLp+S3TnxnTgIGrQ3BFb7kWGR7kkyS8g==";
+ };
+ };
+ "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";
+ };
+ };
+ "memoizee-0.4.14" = {
+ name = "memoizee";
+ packageName = "memoizee";
+ version = "0.4.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memoizee/-/memoizee-0.4.14.tgz";
+ sha512 = "/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg==";
+ };
+ };
+ "memory-cache-0.1.6" = {
+ name = "memory-cache";
+ packageName = "memory-cache";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memory-cache/-/memory-cache-0.1.6.tgz";
+ sha1 = "2ed9933ed7a8c718249be7366f7ca8749acf8a24";
+ };
+ };
+ "memory-chunk-store-1.3.0" = {
+ name = "memory-chunk-store";
+ packageName = "memory-chunk-store";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memory-chunk-store/-/memory-chunk-store-1.3.0.tgz";
+ sha512 = "6LsOpHKKhxYrLhHmOJdBCUtSO7op5rUs1pag0fhjHo0QiXRyna0bwYf4EmQuL7InUeF2J7dUMPr6VMogRyf9NA==";
+ };
+ };
+ "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 = "Mf9OHV/Y7h6YWDxTzX/b4ZZ4oh9NSXblQL8dtPCOomOtZciEHxePR78+uHFLLlsk01A6jVHhHsQZZ/WcIPpnzg==";
+ };
+ };
+ "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";
+ };
+ };
+ "menu-string-1.2.0" = {
+ name = "menu-string";
+ packageName = "menu-string";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/menu-string/-/menu-string-1.2.0.tgz";
+ sha512 = "b6RTFmSlLjs20Qninl0Wq6dOstjpaPM2pQ63li06pLVTGIIoxjuMRbOmYbGW8l73/AiGNoCK9yXfdfIpLIURPQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "meow-4.0.1" = {
+ name = "meow";
+ packageName = "meow";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/meow/-/meow-4.0.1.tgz";
+ sha512 = "xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==";
+ };
+ };
+ "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";
+ };
+ };
+ "merge2-1.2.2" = {
+ name = "merge2";
+ packageName = "merge2";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/merge2/-/merge2-1.2.2.tgz";
+ sha512 = "bgM8twH86rWni21thii6WCMQMRMmwqqdW3sGWi9IipnVAszdLXRjwDwAnyrVXo6DuP3AjRMMttZKUB48QWIFGg==";
+ };
+ };
+ "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";
+ };
+ };
+ "metalsmith-2.3.0" = {
+ name = "metalsmith";
+ packageName = "metalsmith";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/metalsmith/-/metalsmith-2.3.0.tgz";
+ sha1 = "833afbb5a2a6385e2d9ae3d935e39e33eaea5231";
+ };
+ };
+ "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";
+ };
+ };
+ "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.10" = {
+ name = "micromatch";
+ packageName = "micromatch";
+ version = "3.1.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
+ sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
+ };
+ };
+ "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 = "115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==";
+ };
+ };
+ "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 = "KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==";
+ };
+ };
+ "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 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
+ };
+ };
+ "mime-2.3.1" = {
+ name = "mime";
+ packageName = "mime";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-2.3.1.tgz";
+ sha512 = "OEUllcVoydBHGN1z84yfQDimn58pZNNNXgZlHXSboxMlFvgI6MXSWpWKpFRra7H1HxpVhHTkrghfRW49k6yjeg==";
+ };
+ };
+ "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.33.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.33.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz";
+ sha512 = "BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==";
+ };
+ };
+ "mime-db-1.36.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.36.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.36.0.tgz";
+ sha512 = "L+xvyD9MkoYMXb1jAmzI/lWYAxAMCPvIBSWur0PZ5nOf5euahRLVqH//FKW9mWp2lkqUgYiXPgkzfMUFi4zVDw==";
+ };
+ };
+ "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.18" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.18";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz";
+ sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==";
+ };
+ };
+ "mime-types-2.1.20" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.20";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.20.tgz";
+ sha512 = "HrkrPaP9vGuWbLK1B1FfgAkbqNjIuy4eHlIYnFi7kamZyLLrGlo2mpcx0bBmNpKqBtYtAfGbodDddIgddSJC2A==";
+ };
+ };
+ "mimelib-0.3.1" = {
+ name = "mimelib";
+ packageName = "mimelib";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mimelib/-/mimelib-0.3.1.tgz";
+ sha1 = "787add2415d827acb3af6ec4bca1ea9596418853";
+ };
+ };
+ "mimic-fn-1.2.0" = {
+ name = "mimic-fn";
+ packageName = "mimic-fn";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz";
+ sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==";
+ };
+ };
+ "mimic-response-1.0.1" = {
+ name = "mimic-response";
+ packageName = "mimic-response";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz";
+ sha512 = "j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==";
+ };
+ };
+ "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/minilog/-/minilog-3.1.0.tgz";
+ sha1 = "d2d0f1887ca363d1acf0ea86d5c4df293b3fb675";
+ };
+ };
+ "minimalistic-assert-1.0.1" = {
+ name = "minimalistic-assert";
+ packageName = "minimalistic-assert";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz";
+ sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "minimatch-3.0.4" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
+ sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
+ };
+ };
+ "minimist-0.0.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";
+ };
+ };
+ "minimist-options-3.0.2" = {
+ name = "minimist-options";
+ packageName = "minimist-options";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimist-options/-/minimist-options-3.0.2.tgz";
+ sha512 = "FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==";
+ };
+ };
+ "minipass-2.3.4" = {
+ name = "minipass";
+ packageName = "minipass";
+ version = "2.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.3.4.tgz";
+ sha512 = "mlouk1OHlaUE8Odt1drMtG1bAJA4ZA6B/ehysgV0LUIrDHdKgo1KorZq3pK0b/7Z7LJIQ12MNM6aC+Tn6lUZ5w==";
+ };
+ };
+ "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 = "4T6Ur/GctZ27nHfpt9THOdRZNgyJ9FZchYO1ceg5S8Q3DNLCKYy44nCZzgCJgcvx2UM8czmqak5BCxJMrq37lA==";
+ };
+ };
+ "mirror-folder-3.0.0" = {
+ name = "mirror-folder";
+ packageName = "mirror-folder";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-3.0.0.tgz";
+ sha512 = "fh6wDXcSpFoKY7ZPHnEv1+xjLOS7tlkEpTvl4Y6ZsT0HNjIaYg6ktq9ng8MPthFruunS8D/3GnPeaWhoQD3X9g==";
+ };
+ };
+ "mississippi-2.0.0" = {
+ name = "mississippi";
+ packageName = "mississippi";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz";
+ sha512 = "zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==";
+ };
+ };
+ "mississippi-3.0.0" = {
+ name = "mississippi";
+ packageName = "mississippi";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz";
+ sha512 = "x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==";
+ };
+ };
+ "mixin-deep-1.3.1" = {
+ name = "mixin-deep";
+ packageName = "mixin-deep";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz";
+ sha512 = "8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "mocha-2.5.3" = {
+ name = "mocha";
+ packageName = "mocha";
+ version = "2.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mocha/-/mocha-2.5.3.tgz";
+ sha1 = "161be5bdeb496771eb9b35745050b622b5aefc58";
+ };
+ };
+ "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.1" = {
+ name = "modify-values";
+ packageName = "modify-values";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz";
+ sha512 = "xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==";
+ };
+ };
+ "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-6.1.0" = {
+ name = "module-deps";
+ packageName = "module-deps";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/module-deps/-/module-deps-6.1.0.tgz";
+ sha512 = "NPs5N511VD1rrVJihSso/LiBShRbJALYBKzDW91uZYy7BpjnO4bGnZL3HjZ9yKcFdZUWwaYjDz9zxbuP7vKMuQ==";
+ };
+ };
+ "mold-source-map-0.4.0" = {
+ name = "mold-source-map";
+ packageName = "mold-source-map";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mold-source-map/-/mold-source-map-0.4.0.tgz";
+ sha1 = "cf67e0b31c47ab9badb5c9c25651862127bb8317";
+ };
+ };
+ "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.20.1" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.20.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz";
+ sha512 = "Yh9y73JRljxW5QxN08Fner68eFLxM5ynNOAw2LbIB1YAGeQzZT8QFSUvkAz609Zf+IHhhaUxqZK8dG3W/+HEvg==";
+ };
+ };
+ "moment-2.22.2" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.22.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz";
+ sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66";
+ };
+ };
+ "moment-2.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.21" = {
+ name = "moment-timezone";
+ packageName = "moment-timezone";
+ version = "0.5.21";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.21.tgz";
+ sha512 = "j96bAh4otsgj3lKydm3K7kdtA3iKf2m6MY2iSYCzCm5a1zmHo1g+aK3068dDEeocLZQIS9kU8bsdQHLqEvgW0A==";
+ };
+ };
+ "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" = {
+ name = "mongoose";
+ packageName = "mongoose";
+ version = "3.6.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mongoose/-/mongoose-3.6.7.tgz";
+ sha1 = "aa6c9f4dfb740c7721dbe734fbb97714e5ab0ebc";
+ };
+ };
+ "mongoose-lifecycle-1.0.0" = {
+ name = "mongoose-lifecycle";
+ packageName = "mongoose-lifecycle";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mongoose-lifecycle/-/mongoose-lifecycle-1.0.0.tgz";
+ sha1 = "3bac3f3924a845d147784fc6558dee900b0151e2";
+ };
+ };
+ "mooremachine-2.2.1" = {
+ name = "mooremachine";
+ packageName = "mooremachine";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mooremachine/-/mooremachine-2.2.1.tgz";
+ sha1 = "0d9891aa7c2cf32ca73e72f52a3561ed787e2e8c";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "mp4-box-encoding-1.3.0" = {
+ name = "mp4-box-encoding";
+ packageName = "mp4-box-encoding";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mp4-box-encoding/-/mp4-box-encoding-1.3.0.tgz";
+ sha512 = "U4pMLpjT/UzB8d36dxj6Mf1bG9xypEvgbuRIa1fztRXNKKTCAtRxsnFZhNOd7YDFOKtjBgssYGvo4H/Q3ZY1MA==";
+ };
+ };
+ "mp4-stream-2.0.3" = {
+ name = "mp4-stream";
+ packageName = "mp4-stream";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mp4-stream/-/mp4-stream-2.0.3.tgz";
+ sha512 = "5NzgI0+bGakoZEwnIYINXqB3mnewkt3Y7jcvkXsTubnCNUSdM8cpP0Vemxf6FLg0qUN8fydTgNMVAc3QU8B92g==";
+ };
+ };
+ "mpath-0.1.1" = {
+ name = "mpath";
+ packageName = "mpath";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mpath/-/mpath-0.1.1.tgz";
+ sha1 = "23da852b7c232ee097f4759d29c0ee9cd22d5e46";
+ };
+ };
+ "mpath-0.2.1" = {
+ name = "mpath";
+ packageName = "mpath";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mpath/-/mpath-0.2.1.tgz";
+ sha1 = "3a4e829359801de96309c27a6b2e102e89f9e96e";
+ };
+ };
+ "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";
+ };
+ };
+ "mqtt-2.18.5" = {
+ name = "mqtt";
+ packageName = "mqtt";
+ version = "2.18.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mqtt/-/mqtt-2.18.5.tgz";
+ sha512 = "VkQeH81VIS0nOL3Ilf58ypPtM3I6VzVsE5as+k/AgrnX7xjcrCSfgSJdYGa6rW3px4DLAnh2gCD3URUZ23riKQ==";
+ };
+ };
+ "mqtt-packet-5.6.0" = {
+ name = "mqtt-packet";
+ packageName = "mqtt-packet";
+ version = "5.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-5.6.0.tgz";
+ sha512 = "QECe2ivqcR1LRsPobRsjenEKAC3i1a5gmm+jNKJLrsiq9PaSQ18LlKFuxvhGxWkvGEPadWv6rKd31O4ICqS1Xw==";
+ };
+ };
+ "mri-1.1.1" = {
+ name = "mri";
+ packageName = "mri";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mri/-/mri-1.1.1.tgz";
+ sha1 = "85aa26d3daeeeedf80dc5984af95cc5ca5cad9f1";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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 = "tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==";
+ };
+ };
+ "ms-rest-1.15.7" = {
+ name = "ms-rest";
+ packageName = "ms-rest";
+ version = "1.15.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms-rest/-/ms-rest-1.15.7.tgz";
+ sha1 = "400515e05b1924889cb61a1ec6054290a68e1207";
+ };
+ };
+ "ms-rest-2.3.6" = {
+ name = "ms-rest";
+ packageName = "ms-rest";
+ version = "2.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.3.6.tgz";
+ sha512 = "M+Lx9P7Wy4TeAk7jqPLwGS1QS1gvxF6Xo+OHv5j1g3Kcb44T/GTUuSjxTKarF6aKyeacZH1ZD++Nt7pcql7dDA==";
+ };
+ };
+ "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";
+ };
+ };
+ "ms-rest-azure-2.5.7" = {
+ name = "ms-rest-azure";
+ packageName = "ms-rest-azure";
+ version = "2.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.5.7.tgz";
+ sha512 = "e4lgB0z29Dx4ufu/c+PmEAYY1WXq98GYUBkE+iRx7WsxsN04lrM3B1vj8y+B8rKt7clPUE0niqB9VovVL8zvag==";
+ };
+ };
+ "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 = "6HuCZHA57WtNUzrKIvjJ8OMxigzveJ6D5i13y6TsgGu3X3zxABpuBvChpppOoGdB9SyWZcmqUs1fwUV/PpSQ7Q==";
+ };
+ };
+ "multer-1.3.1" = {
+ name = "multer";
+ packageName = "multer";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multer/-/multer-1.3.1.tgz";
+ sha512 = "JHdEoxkA/5NgZRo91RNn4UT+HdcJV9XUo01DTkKC7vo1erNIngtuaw9Y0WI8RdTlyi+wMIbunflhghzVLuGJyw==";
+ };
+ };
+ "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.3" = {
+ name = "multicast-dns";
+ packageName = "multicast-dns";
+ version = "6.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz";
+ sha512 = "ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==";
+ };
+ };
+ "multicast-dns-7.0.1" = {
+ name = "multicast-dns";
+ packageName = "multicast-dns";
+ version = "7.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.0.1.tgz";
+ sha512 = "jx8bO2QZvx5oJXWhiuEb6I8XgufpPXvKFSAoSvurD2nECVhbQQTilY33IfChreWqhqPgzKZbpgsyHapjnRTnlw==";
+ };
+ };
+ "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 = "PZM4dhYFmCF6uZGWpEmoPMUqJBywS9IcAgybT2GmSpYI1BvGvoWSdbio+ik+q/YD2vodhvslESWIS3NnkKYdqQ==";
+ };
+ };
+ "multimatch-2.1.0" = {
+ name = "multimatch";
+ packageName = "multimatch";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz";
+ sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b";
+ };
+ };
+ "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.4" = {
+ name = "multiparty";
+ packageName = "multiparty";
+ version = "4.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multiparty/-/multiparty-4.1.4.tgz";
+ sha1 = "4c96dcbdc11e3f7917e1615e640b4b5022be64fd";
+ };
+ };
+ "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";
+ };
+ };
+ "multistream-2.1.1" = {
+ name = "multistream";
+ packageName = "multistream";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multistream/-/multistream-2.1.1.tgz";
+ sha512 = "xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==";
+ };
+ };
+ "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.1" = {
+ name = "mustache";
+ packageName = "mustache";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mustache/-/mustache-2.3.1.tgz";
+ sha512 = "20dW38oeiTzauvbxs1YxQbr3gbu/Lfo15J4V0EqbspYnn/GwSeTSDNtESy2nak28BW0k8qp7dnrFhrsejLPUtw==";
+ };
+ };
+ "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 = "oprzxd2zhfrJqEuB98qc1dRMMonClBQ57UPDjnbcrah4orEMTq1jq3+AcdFe5ePzdbJXI7zmdhfftIdMnhYFoQ==";
+ };
+ };
+ "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 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==";
+ };
+ };
+ "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" = {
+ name = "nan";
+ packageName = "nan";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-1.0.0.tgz";
+ sha1 = "ae24f8850818d662fcab5acf7f3b95bfaa2ccf38";
+ };
+ };
+ "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";
+ };
+ };
+ "nan-2.10.0" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz";
+ sha512 = "bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==";
+ };
+ };
+ "nan-2.11.0" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-2.11.0.tgz";
+ sha512 = "F4miItu2rGnV2ySkXOQoA8FKz/SR2Q2sWP0sbTxNxz/tuokeC8WxOhPMcwi0qIyGtVn/rrSeLbvVkznqCdwYnw==";
+ };
+ };
+ "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";
+ };
+ };
+ "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-4.3.3" = {
+ name = "nanobus";
+ packageName = "nanobus";
+ version = "4.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanobus/-/nanobus-4.3.3.tgz";
+ sha512 = "4/uzl+LkMGoVv/9eMzH2QFvefmlJErT0KR7EmuYbmht2QvxSEqTjhFFOZ/KHE6chH58fKL3njrOcEwbYV0h9Yw==";
+ };
+ };
+ "nanoid-1.2.1" = {
+ name = "nanoid";
+ packageName = "nanoid";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanoid/-/nanoid-1.2.1.tgz";
+ sha512 = "S1QSG+TQtsqr2/ujHZcNT0OxygffUaUT755qTc/SPKfQ0VJBlOO6qb1425UYoHXPvCZ3pWgMVCuy1t7+AoCxnQ==";
+ };
+ };
+ "nanolru-1.0.0" = {
+ name = "nanolru";
+ packageName = "nanolru";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanolru/-/nanolru-1.0.0.tgz";
+ sha512 = "GyQkE8M32pULhQk7Sko5raoIbPalAk90ICG+An4fq6fCsFHsP6fB2K46WGXVdoJpy4SGMnZ/EKbo123fZJomWg==";
+ };
+ };
+ "nanomatch-1.2.13" = {
+ name = "nanomatch";
+ packageName = "nanomatch";
+ version = "1.2.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz";
+ sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==";
+ };
+ };
+ "nanoscheduler-1.0.3" = {
+ name = "nanoscheduler";
+ packageName = "nanoscheduler";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanoscheduler/-/nanoscheduler-1.0.3.tgz";
+ sha512 = "jBbrF3qdU9321r8n9X7yu18DjP31Do2ItJm3mWrt90wJTrnDO+HXpoV7ftaUglAtjgj9s+OaCxGufbvx6pvbEQ==";
+ };
+ };
+ "nanotiming-7.3.1" = {
+ name = "nanotiming";
+ packageName = "nanotiming";
+ version = "7.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanotiming/-/nanotiming-7.3.1.tgz";
+ sha512 = "l3lC7v/PfOuRWQa8vV29Jo6TG10wHtnthLElFXs4Te4Aas57Fo4n1Q8LH9n+NDh9riOzTVvb2QNBhTS4JUKNjw==";
+ };
+ };
+ "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.4" = {
+ name = "natives";
+ packageName = "natives";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/natives/-/natives-1.1.4.tgz";
+ sha512 = "Q29yeg9aFKwhLVdkTAejM/HvYG0Y1Am1+HUkFQGn5k2j8GS+v60TVmZh6nujpEAj/qql+wGUrlryO8bF+b1jEg==";
+ };
+ };
+ "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";
+ };
+ };
+ "nconf-0.10.0" = {
+ name = "nconf";
+ packageName = "nconf";
+ version = "0.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nconf/-/nconf-0.10.0.tgz";
+ sha512 = "fKiXMQrpP7CYWJQzKkPPx9hPgmq+YLDyxcG9N8RpiE9FoCkCbzD0NyW0YhE3xn3Aupe7nnDeIx4PFzYehpHT9Q==";
+ };
+ };
+ "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";
+ };
+ };
+ "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-input-1.8.0" = {
+ name = "neat-input";
+ packageName = "neat-input";
+ version = "1.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/neat-input/-/neat-input-1.8.0.tgz";
+ sha512 = "9LsyX7NcQBOT0/VEthxOCpYlKXgo0UZeGlMSx/a2SKFkE4ZiU/wTUBoF9brQKtKspmBZyLnXqDiktsbopEb0Tg==";
+ };
+ };
+ "neat-log-2.4.0" = {
+ name = "neat-log";
+ packageName = "neat-log";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/neat-log/-/neat-log-2.4.0.tgz";
+ sha512 = "5Gb0J17bqRxKBfgetrYCZav7kpFgunDhFq0i+kEq5Kn36Cuw4IskIl3yd+/P8jCcAzaKrQ7mrb+p6r/NP5esWA==";
+ };
+ };
+ "neat-log-3.1.0" = {
+ name = "neat-log";
+ packageName = "neat-log";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/neat-log/-/neat-log-3.1.0.tgz";
+ sha512 = "VarbsDsRN5C5pCdOskjJ7bOPvyjYeVduftgs1dYXqoFXwKFBPJq3VrmFRpbwjoW03Z80DSiiDbaPGX7ix+OFyA==";
+ };
+ };
+ "neat-spinner-1.0.0" = {
+ name = "neat-spinner";
+ packageName = "neat-spinner";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/neat-spinner/-/neat-spinner-1.0.0.tgz";
+ sha512 = "+T6UtYItDTE1L30g/nLRjP55dFlvldrzCRsn4CrcNHIbhg5JUe0hnOx1DHFViysUC7I1cevBQVjdGJ9ZftY9DA==";
+ };
+ };
+ "neat-tasks-1.1.1" = {
+ name = "neat-tasks";
+ packageName = "neat-tasks";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/neat-tasks/-/neat-tasks-1.1.1.tgz";
+ sha512 = "U8HkIv90/lrdNlHVp63PoF3FeuQUvJ6toMX6InqRqpBmQq9iukZRAnq/yCE4Ii6WHZRYa6DEiTH/EGFTZ0rIGg==";
+ };
+ };
+ "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.2.2" = {
+ name = "needle";
+ packageName = "needle";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/needle/-/needle-2.2.2.tgz";
+ sha512 = "mW7W8dKuVYefCpNzE3Z7xUmPI9wSrSL/1qH31YGMxmSOAnjatS3S9Zv3cmiHrhx3Jkp1SrWWBdOFXjfF48Uq3A==";
+ };
+ };
+ "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#full-parse-access" = {
+ name = "negotiator";
+ packageName = "negotiator";
+ version = "0.6.1";
+ src = fetchgit {
+ url = "https://github.com/arlolra/negotiator";
+ rev = "0418ab4e9a665772b7e233564a4525c9d9a8ec3a";
+ sha256 = "243e90fbf6616ef39f3c71bbcd027799e35cbf2ef3f25203676f65b20f7f7394";
+ };
+ };
+ "neo-async-2.5.2" = {
+ name = "neo-async";
+ packageName = "neo-async";
+ version = "2.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/neo-async/-/neo-async-2.5.2.tgz";
+ sha512 = "vdqTKI9GBIYcAEbFAcpKPErKINfPF5zIuz3/niBfq8WUZjpT2tytLlFVrBgWdOtqI4uaA/Rb6No0hux39XXDuw==";
+ };
+ };
+ "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/network-address/-/network-address-0.0.5.tgz";
+ sha1 = "a400225438cacb67cd6108e8e826d5920a705dcc";
+ };
+ };
+ "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";
+ };
+ };
+ "next-event-1.0.0" = {
+ name = "next-event";
+ packageName = "next-event";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/next-event/-/next-event-1.0.0.tgz";
+ sha1 = "e7778acde2e55802e0ad1879c39cf6f75eda61d8";
+ };
+ };
+ "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";
+ };
+ };
+ "nice-try-1.0.5" = {
+ name = "nice-try";
+ packageName = "nice-try";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz";
+ sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==";
+ };
+ };
+ "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 = "rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==";
+ };
+ };
+ "node-abi-2.4.3" = {
+ name = "node-abi";
+ packageName = "node-abi";
+ version = "2.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-abi/-/node-abi-2.4.3.tgz";
+ sha512 = "b656V5C0628gOOA2kwcpNA/bxdlqYF9FvxJ+qqVX0ctdXNVZpS8J6xEUYir3WAKc7U0BH/NRlSpNbGsy+azjeg==";
+ };
+ };
+ "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.48" = {
+ name = "node-appc";
+ packageName = "node-appc";
+ version = "0.2.48";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-appc/-/node-appc-0.2.48.tgz";
+ sha512 = "fKPynW61a+PmqssitvJXxN2FZAN/w4eBvmE5zqJXl+eDfOip/b26y7SIGGJOn23KjAYX2uyl2Oy/+qTaRz/gHQ==";
+ };
+ };
+ "node-cache-4.2.0" = {
+ name = "node-cache";
+ packageName = "node-cache";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-cache/-/node-cache-4.2.0.tgz";
+ sha512 = "obRu6/f7S024ysheAjoYFEEBqqDWv4LOMNJEuO8vMeEw2AT4z+NCzO4hlc2lhI4vATzbCQv6kke9FVdx0RbCOw==";
+ };
+ };
+ "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 = "DUqXaoEFcx0xqZnMyYniyEzTKcdBhAC5GAcNsRS4tiG3VR8tidwth73cr5/rc4NzbjXIk+Jje8P4VJI+fWXHuw==";
+ };
+ };
+ "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 = "NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==";
+ };
+ };
+ "node-fetch-2.1.2" = {
+ name = "node-fetch";
+ packageName = "node-fetch";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz";
+ sha1 = "ab884e8e7e57e38a944753cec706f788d1768bb5";
+ };
+ };
+ "node-fetch-2.2.0" = {
+ name = "node-fetch";
+ packageName = "node-fetch";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.2.0.tgz";
+ sha512 = "OayFWziIxiHY8bCUyLX6sTpDH8Jsbp4FfYd1j1f7vZyfgkcOnAyM4oQR16f8a0s7Gl/viMGRey8eScYk4V4EZA==";
+ };
+ };
+ "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 = "nJIxm1QmAj4v3nfCvEeCrYSoVwXyxLnaPBK5W1W5DGEJwjlKuC2VEUycGw5oxk+4zZahRrB84PUJJgEmhFTDFw==";
+ };
+ };
+ "node-forge-0.6.23" = {
+ name = "node-forge";
+ packageName = "node-forge";
+ version = "0.6.23";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-forge/-/node-forge-0.6.23.tgz";
+ sha1 = "f03cf65ebd5d4d9dd2f7becb57ceaf78ed94a2bf";
+ };
+ };
+ "node-forge-0.7.6" = {
+ name = "node-forge";
+ packageName = "node-forge";
+ version = "0.7.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz";
+ sha512 = "sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==";
+ };
+ };
+ "node-gyp-3.8.0" = {
+ name = "node-gyp";
+ packageName = "node-gyp";
+ version = "3.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz";
+ sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==";
+ };
+ };
+ "node-gyp-build-3.4.0" = {
+ name = "node-gyp-build";
+ packageName = "node-gyp-build";
+ version = "3.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.4.0.tgz";
+ sha512 = "YoviGBJYGrPdLOKDIQB0sKxuKy/EEsxzooNkOZak4vSTKT/qH0Pa6dj3t1MJjEQGsefih61IyHDmO1WW7xOFfw==";
+ };
+ };
+ "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-ipc-9.1.1" = {
+ name = "node-ipc";
+ packageName = "node-ipc";
+ version = "9.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-ipc/-/node-ipc-9.1.1.tgz";
+ sha512 = "FAyICv0sIRJxVp3GW5fzgaf9jwwRQxAKDJlmNFUL5hOy+W4X/I5AypyHoq0DXXbo9o/gt79gj++4cMr4jVWE/w==";
+ };
+ };
+ "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 = "5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==";
+ };
+ };
+ "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 = "MIBs+AAd6dJ2SklbbE8RUDRlIVhU8MaNLh1A9SUZDUHPiZkWLFde6UNwG41yQHZEToHgJMXqyVZ9UcS/ReOVTg==";
+ };
+ };
+ "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.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 = "OsJV74qxnvz/AMGgcfZoDaeDXKD3oY3QVIbBmwszTFkRisTSXbMQyn4UWzUMOtA5SVhrBZOTp0wcoSBgfMfMmQ==";
+ };
+ };
+ "node-red-node-email-0.1.29" = {
+ name = "node-red-node-email";
+ packageName = "node-red-node-email";
+ version = "0.1.29";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-email/-/node-red-node-email-0.1.29.tgz";
+ sha512 = "+tqda0bNT8A0PM9G47XqFiUP9gEe1zvB/9f+JJhbLWTEk9TeRB4UeyycubmCbR1/TzJnk2v9yCDogFhDJQWbOw==";
+ };
+ };
+ "node-red-node-feedparser-0.1.12" = {
+ name = "node-red-node-feedparser";
+ packageName = "node-red-node-feedparser";
+ version = "0.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-feedparser/-/node-red-node-feedparser-0.1.12.tgz";
+ sha512 = "kwo7k7pXhl9wANXqgQTRo1WqxyrpJFelvZ2u9EnKfDA2yKrsZq0ZeYB8BDc/uVIycqh8XEJeX44EnAHkidddvQ==";
+ };
+ };
+ "node-red-node-rbe-0.2.3" = {
+ name = "node-red-node-rbe";
+ packageName = "node-red-node-rbe";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.2.3.tgz";
+ sha512 = "5+MtH9t8tX6Aw6M+SeoyGR23XplNTOln3aTQ7El9tj/606bxea4GxYyvV4ymTmuoODz3GXQlLLQVdGkFLyIdDQ==";
+ };
+ };
+ "node-red-node-twitter-1.1.2" = {
+ name = "node-red-node-twitter";
+ packageName = "node-red-node-twitter";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-1.1.2.tgz";
+ sha512 = "6qyeZluZCn3SBkmDFGNm3Zf5Y21FosRQ0AMHv9UM9KOf1v9gFS82Ybyah2Z85NHaXqTvyIM5R7zJbvsK2GMq9g==";
+ };
+ };
+ "node-request-by-swagger-1.1.3" = {
+ name = "node-request-by-swagger";
+ packageName = "node-request-by-swagger";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-request-by-swagger/-/node-request-by-swagger-1.1.3.tgz";
+ sha512 = "granjsEA0c+1GnJaKnOjJy1E3wWLADUnAg+x1eopWOo+oMDfRYKJjCBaInUgrli/yEnvUAJoymGhExP/6tcOyQ==";
+ };
+ };
+ "node-ssdp-2.9.1" = {
+ name = "node-ssdp";
+ packageName = "node-ssdp";
+ version = "2.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-ssdp/-/node-ssdp-2.9.1.tgz";
+ sha1 = "2d6ba8e7eff9bf5b338564f91f7ac5d5cdddc55b";
+ };
+ };
+ "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 = "bd7zO5hvCWzdglgwz9t82T4mYTEUzEG5pXnSqEzitvmEacusbhl8/VwuCbMaYR9g2PNK5191yBtAEQLJEmQh1A==";
+ };
+ };
+ "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.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-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";
+ };
+ };
+ "nodebmc-0.0.7" = {
+ name = "nodebmc";
+ packageName = "nodebmc";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nodebmc/-/nodebmc-0.0.7.tgz";
+ sha1 = "fae179165265509302cefbebeabd29bd4035184d";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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-fetch-1.6.0" = {
+ name = "nodemailer-fetch";
+ packageName = "nodemailer-fetch";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nodemailer-fetch/-/nodemailer-fetch-1.6.0.tgz";
+ sha1 = "79c4908a1c0f5f375b73fe888da9828f6dc963a4";
+ };
+ };
+ "nodemailer-shared-1.1.0" = {
+ name = "nodemailer-shared";
+ packageName = "nodemailer-shared";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nodemailer-shared/-/nodemailer-shared-1.1.0.tgz";
+ sha1 = "cf5994e2fd268d00f5cf0fa767a08169edb07ec0";
+ };
+ };
+ "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/nodemailer-smtp-transport/-/nodemailer-smtp-transport-1.1.0.tgz";
+ sha1 = "e6c37f31885ab3080e7ded3cf528c4ad7e691398";
+ };
+ };
+ "nodemailer-wellknown-0.1.10" = {
+ name = "nodemailer-wellknown";
+ packageName = "nodemailer-wellknown";
+ version = "0.1.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz";
+ sha1 = "586db8101db30cb4438eb546737a41aad0cf13d5";
+ };
+ };
+ "nodemon-1.18.3" = {
+ name = "nodemon";
+ packageName = "nodemon";
+ version = "1.18.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.3.tgz";
+ sha512 = "XdVfAjGlDKU2nqoGgycxTndkJ5fdwvWJ/tlMGk2vHxMZBrSPVh86OM6z7viAv8BBJWjMgeuYQBofzr6LUoi+7g==";
+ };
+ };
+ "nodesecurity-npm-utils-6.0.0" = {
+ name = "nodesecurity-npm-utils";
+ packageName = "nodesecurity-npm-utils";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nodesecurity-npm-utils/-/nodesecurity-npm-utils-6.0.0.tgz";
+ sha512 = "NLRle1woNaT2orR6fue2jNqkhxDTktgJj3sZxvR/8kp21pvOY7Gwlx5wvo0H8ZVPqdgd2nE2ADB9wDu5Cl8zNg==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "nopt-1.0.10" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "1.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
+ sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
+ };
+ };
+ "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 = "9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==";
+ };
+ };
+ "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-path-3.0.0" = {
+ name = "normalize-path";
+ packageName = "normalize-path";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz";
+ sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==";
+ };
+ };
+ "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 = "D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==";
+ };
+ };
+ "now-and-later-2.0.0" = {
+ name = "now-and-later";
+ packageName = "now-and-later";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.0.tgz";
+ sha1 = "bc61cbb456d79cb32207ce47ca05136ff2e7d6ee";
+ };
+ };
+ "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-6.1.0" = {
+ name = "npm";
+ packageName = "npm";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm/-/npm-6.1.0.tgz";
+ sha512 = "e38cCtJ0lEjLXXpc4twEfj8Xw5hDLolc2Py87ueWnUhJfZ8GA/5RVIeD+XbSr1+aVRGsRsdtLdzUNO63PvQJ1w==";
+ };
+ };
+ "npm-bundled-1.0.5" = {
+ name = "npm-bundled";
+ packageName = "npm-bundled";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.5.tgz";
+ sha512 = "m/e6jgWu8/v5niCUKQi9qQl8QdeEduFA96xHDDzFGqly0OOjI7c+60KM/2sppfnUU9JJagf+zs+yGhqSOFj71g==";
+ };
+ };
+ "npm-conf-1.1.3" = {
+ name = "npm-conf";
+ packageName = "npm-conf";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz";
+ sha512 = "Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==";
+ };
+ };
+ "npm-keyword-5.0.0" = {
+ name = "npm-keyword";
+ packageName = "npm-keyword";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-keyword/-/npm-keyword-5.0.0.tgz";
+ sha1 = "99b85aec29fcb388d2dd351f0013bf5268787e67";
+ };
+ };
+ "npm-lifecycle-2.1.0" = {
+ name = "npm-lifecycle";
+ packageName = "npm-lifecycle";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-2.1.0.tgz";
+ sha512 = "QbBfLlGBKsktwBZLj6AviHC6Q9Y3R/AY4a2PYSIRhSKSS0/CxRyD/PfxEX6tPeOCXQgMSNdwGeECacstgptc+g==";
+ };
+ };
+ "npm-package-arg-6.1.0" = {
+ name = "npm-package-arg";
+ packageName = "npm-package-arg";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-6.1.0.tgz";
+ sha512 = "zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA==";
+ };
+ };
+ "npm-packlist-1.1.11" = {
+ name = "npm-packlist";
+ packageName = "npm-packlist";
+ version = "1.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.11.tgz";
+ sha512 = "CxKlZ24urLkJk+9kCm48RTQ7L4hsmgSVzEk0TLGPzzyuFxD7VNgy5Sl24tOLMzQv773a/NeJ1ce1DKeacqffEA==";
+ };
+ };
+ "npm-path-2.0.4" = {
+ name = "npm-path";
+ packageName = "npm-path";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-path/-/npm-path-2.0.4.tgz";
+ sha512 = "IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==";
+ };
+ };
+ "npm-paths-1.0.0" = {
+ name = "npm-paths";
+ packageName = "npm-paths";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-paths/-/npm-paths-1.0.0.tgz";
+ sha512 = "COlxSO5PK9UvZXIa7/sqJDZOlffWFx9+CKJJWkdbhUJMBwcf9sof2jxt4uiVsl+nY3sy0/XFGl4iGr8GoKfiXA==";
+ };
+ };
+ "npm-pick-manifest-2.1.0" = {
+ name = "npm-pick-manifest";
+ packageName = "npm-pick-manifest";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-2.1.0.tgz";
+ sha512 = "q9zLP8cTr8xKPmMZN3naxp1k/NxVFsjxN6uWuO1tiw9gxg7wZWQ/b5UTfzD0ANw2q1lQxdLKTeCCksq+bPSgbQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "npm-registry-client-8.5.1" = {
+ name = "npm-registry-client";
+ packageName = "npm-registry-client";
+ version = "8.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.5.1.tgz";
+ sha512 = "7rjGF2eA7hKDidGyEWmHTiKfXkbrcQAsGL/Rh4Rt3x3YNRNHhwaTzVJfW3aNvvlhg4G62VCluif0sLCb/i51Hg==";
+ };
+ };
+ "npm-registry-fetch-3.8.0" = {
+ name = "npm-registry-fetch";
+ packageName = "npm-registry-fetch";
+ version = "3.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-3.8.0.tgz";
+ sha512 = "hrw8UMD+Nob3Kl3h8Z/YjmKamb1gf7D1ZZch2otrIXM3uFLB5vjEY6DhMlq80z/zZet6eETLbOXcuQudCB3Zpw==";
+ };
+ };
+ "npm-run-4.1.2" = {
+ name = "npm-run";
+ packageName = "npm-run";
+ version = "4.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-run/-/npm-run-4.1.2.tgz";
+ sha1 = "1030e1ec56908c89fcc3fa366d03a2c2ba98eb99";
+ };
+ };
+ "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";
+ };
+ };
+ "npm-which-3.0.1" = {
+ name = "npm-which";
+ packageName = "npm-which";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-which/-/npm-which-3.0.1.tgz";
+ sha1 = "9225f26ec3a285c209cae67c3b11a6b4ab7140aa";
+ };
+ };
+ "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.3" = {
+ name = "npmconf";
+ packageName = "npmconf";
+ version = "2.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmconf/-/npmconf-2.1.3.tgz";
+ sha512 = "iTK+HI68GceCoGOHAQiJ/ik1iDfI7S+cgyG8A+PP18IU3X83kRhQIRhAUNj4Bp2JMx6Zrt5kCiozYa9uGWTjhA==";
+ };
+ };
+ "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 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==";
+ };
+ };
+ "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 = fetchurl {
+ url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz";
+ sha1 = "9929acdf628fc2c41098deab82ac580cf149aae4";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "numeral-2.0.6" = {
+ name = "numeral";
+ packageName = "numeral";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz";
+ sha1 = "4ad080936d443c2561aed9f2197efffe25f4e506";
+ };
+ };
+ "nwmatcher-1.4.4" = {
+ name = "nwmatcher";
+ packageName = "nwmatcher";
+ version = "1.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.4.tgz";
+ sha512 = "3iuY4N5dhgMpCUrOVnuAdGrgxVqV2cJpM+XNccjR2DKOB1RUP0aA+wGXEiNziG/UKboFyGBIoKOaNlJxx8bciQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "oauth-sign-0.9.0" = {
+ name = "oauth-sign";
+ packageName = "oauth-sign";
+ version = "0.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz";
+ sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==";
+ };
+ };
+ "oauth2orize-1.11.0" = {
+ name = "oauth2orize";
+ packageName = "oauth2orize";
+ version = "1.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/oauth2orize/-/oauth2orize-1.11.0.tgz";
+ sha1 = "793cef251d45ebdeac32ae40a8b6814faab1d483";
+ };
+ };
+ "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/object-assign/-/object-assign-3.0.0.tgz";
+ sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2";
+ };
+ };
+ "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";
+ };
+ };
+ "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.3.0" = {
+ name = "object-hash";
+ packageName = "object-hash";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-hash/-/object-hash-1.3.0.tgz";
+ sha512 = "05KzQ70lSeGSrZJQXE5wNDiTkBJDlUT/myi6RX9dVIvz7a7Qh4oH93BQdiPMn27nldYvVQCKMUaM83AfizZlsQ==";
+ };
+ };
+ "object-keys-1.0.12" = {
+ name = "object-keys";
+ packageName = "object-keys";
+ version = "1.0.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz";
+ sha512 = "FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==";
+ };
+ };
+ "object-path-0.11.4" = {
+ name = "object-path";
+ packageName = "object-path";
+ version = "0.11.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-path/-/object-path-0.11.4.tgz";
+ sha1 = "370ae752fbf37de3ea70a861c23bba8915691949";
+ };
+ };
+ "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 = "exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==";
+ };
+ };
+ "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.2" = {
+ name = "once";
+ packageName = "once";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.3.2.tgz";
+ sha1 = "d8feeca93b039ec1dcdee7741c92bdac5e28081b";
+ };
+ };
+ "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 = "http://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";
+ };
+ };
+ "ono-4.0.6" = {
+ name = "ono";
+ packageName = "ono";
+ version = "4.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ono/-/ono-4.0.6.tgz";
+ sha512 = "fJc3tfcgNzIEpDmZIyPRZkYrhoSoexXNnEN4I0QyVQ9l7NMw3sBFeG26/UpCdSXyAOr4wqr9+/ym/769sZakSw==";
+ };
+ };
+ "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-wrapper-0.3.4" = {
+ name = "openssl-wrapper";
+ packageName = "openssl-wrapper";
+ version = "0.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.3.4.tgz";
+ sha1 = "c01ec98e4dcd2b5dfe0b693f31827200e3b81b07";
+ };
+ };
+ "opentracing-0.13.0" = {
+ name = "opentracing";
+ packageName = "opentracing";
+ version = "0.13.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opentracing/-/opentracing-0.13.0.tgz";
+ sha1 = "6a341442f09d7d866bc11ed03de1e3828e3d6aab";
+ };
+ };
+ "opentracing-0.14.3" = {
+ name = "opentracing";
+ packageName = "opentracing";
+ version = "0.14.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opentracing/-/opentracing-0.14.3.tgz";
+ sha1 = "23e3ad029fa66a653926adbe57e834469f8550aa";
+ };
+ };
+ "opn-5.3.0" = {
+ name = "opn";
+ packageName = "opn";
+ version = "5.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz";
+ sha512 = "bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==";
+ };
+ };
+ "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 = 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.4.0" = {
+ name = "ora";
+ packageName = "ora";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ora/-/ora-1.4.0.tgz";
+ sha512 = "iMK1DOQxzzh2MBlVsU42G80mnrvUhqsMh74phHtDlrcTZPK0pH6o7l7DRshK+0YsxDyEuaOkziVdvM3T0QTzpw==";
+ };
+ };
+ "ora-2.1.0" = {
+ name = "ora";
+ packageName = "ora";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ora/-/ora-2.1.0.tgz";
+ sha512 = "hNNlAd3gfv/iPmsNxYoAPLvxg7HuPozww7fFonMZvL84tP6Ox5igfk5j/+a9rtJJwqMgKK+JgWsAQik5o0HTLA==";
+ };
+ };
+ "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-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 = "3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==";
+ };
+ };
+ "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.5" = {
+ name = "osenv";
+ packageName = "osenv";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
+ sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
+ };
+ };
+ "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 = "Ef0tVa4CZ5pTAmKn+Cg3w8ABBXh+hHO1aV8281dKOoUHfX+3tjG2EaFcC+aZyagg9b4EYGsHEjz21DnEE8Og2g==";
+ };
+ };
+ "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 = "RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==";
+ };
+ };
+ "p-cancelable-0.4.1" = {
+ name = "p-cancelable";
+ packageName = "p-cancelable";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz";
+ sha512 = "HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==";
+ };
+ };
+ "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.3.0" = {
+ name = "p-limit";
+ packageName = "p-limit";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz";
+ sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==";
+ };
+ };
+ "p-limit-2.0.0" = {
+ name = "p-limit";
+ packageName = "p-limit";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz";
+ sha512 = "fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==";
+ };
+ };
+ "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-locate-3.0.0" = {
+ name = "p-locate";
+ packageName = "p-locate";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz";
+ sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==";
+ };
+ };
+ "p-map-1.2.0" = {
+ name = "p-map";
+ packageName = "p-map";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz";
+ sha512 = "r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==";
+ };
+ };
+ "p-map-series-1.0.0" = {
+ name = "p-map-series";
+ packageName = "p-map-series";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz";
+ sha1 = "bf98fe575705658a9e1351befb85ae4c1f07bdca";
+ };
+ };
+ "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-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 = "88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==";
+ };
+ };
+ "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";
+ };
+ };
+ "p-try-2.0.0" = {
+ name = "p-try";
+ packageName = "p-try";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz";
+ sha512 = "hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==";
+ };
+ };
+ "p-waterfall-1.0.0" = {
+ name = "p-waterfall";
+ packageName = "p-waterfall";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-waterfall/-/p-waterfall-1.0.0.tgz";
+ sha1 = "7ed94b3ceb3332782353af6aae11aa9fc235bb00";
+ };
+ };
+ "pac-proxy-agent-2.0.2" = {
+ name = "pac-proxy-agent";
+ packageName = "pac-proxy-agent";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-2.0.2.tgz";
+ sha512 = "cDNAN1Ehjbf5EHkNY5qnRhGPUCp6SnpyVof5fRzN800QV1Y2OkzbH9rmjZkbBRa8igof903yOnjIl6z0SlAhxA==";
+ };
+ };
+ "pac-resolver-3.0.0" = {
+ name = "pac-resolver";
+ packageName = "pac-resolver";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pac-resolver/-/pac-resolver-3.0.0.tgz";
+ sha512 = "tcc38bsjuE3XZ5+4vP96OfhOugrX+JcnpUbhfuc4LuXBLQhoTthOstZeoQJBDnQUDYzYmdImKsbz0xSl1/9qeA==";
+ };
+ };
+ "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-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";
+ };
+ };
+ "package-json-5.0.0" = {
+ name = "package-json";
+ packageName = "package-json";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/package-json/-/package-json-5.0.0.tgz";
+ sha512 = "EeHQFFTlEmLrkIQoxbE9w0FuAWHoc1XpthDqnZ/i9keOt701cteyXwAxQFLpVqVjj3feh2TodkihjLaRUtIgLg==";
+ };
+ };
+ "package-json-versionify-1.0.4" = {
+ name = "package-json-versionify";
+ packageName = "package-json-versionify";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/package-json-versionify/-/package-json-versionify-1.0.4.tgz";
+ sha1 = "5860587a944873a6b7e6d26e8e51ffb22315bf17";
+ };
+ };
+ "pacote-9.1.0" = {
+ name = "pacote";
+ packageName = "pacote";
+ version = "9.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pacote/-/pacote-9.1.0.tgz";
+ sha512 = "AFXaSWhOtQf3jHqEvg+ZYH/dfT8TKq6TKspJ4qEFwVVuh5aGvMIk6SNF8vqfzz+cBceDIs9drOcpBbrPai7i+g==";
+ };
+ };
+ "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 = "lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==";
+ };
+ };
+ "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";
+ };
+ };
+ "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.1" = {
+ name = "parse-asn1";
+ packageName = "parse-asn1";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz";
+ sha512 = "KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==";
+ };
+ };
+ "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-git-config-2.0.3" = {
+ name = "parse-git-config";
+ packageName = "parse-git-config";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-git-config/-/parse-git-config-2.0.3.tgz";
+ sha512 = "Js7ueMZOVSZ3tP8C7E3KZiHv6QQl7lnJ+OkbxoaFazzSa2KyEHqApfGbU3XboUgUnq4ZuUmskUpYKTNx01fm5A==";
+ };
+ };
+ "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-github-url-1.0.2" = {
+ name = "parse-github-url";
+ packageName = "parse-github-url";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz";
+ sha512 = "kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==";
+ };
+ };
+ "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-1.0.0" = {
+ name = "parse-help";
+ packageName = "parse-help";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-help/-/parse-help-1.0.0.tgz";
+ sha512 = "dlOrbBba6Rrw/nrJ+V7/vkGZdiimWJQzMHZZrYsUq03JE8AV3fAv6kOYX7dP/w2h67lIdmRf8ES8mU44xAgE/Q==";
+ };
+ };
+ "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-3.0.0" = {
+ name = "parse-json";
+ packageName = "parse-json";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-json/-/parse-json-3.0.0.tgz";
+ sha1 = "fa6f47b18e23826ead32f263e744d0e1e847fb13";
+ };
+ };
+ "parse-json-4.0.0" = {
+ name = "parse-json";
+ packageName = "parse-json";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz";
+ sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
+ };
+ };
+ "parse-numeric-range-0.0.2" = {
+ name = "parse-numeric-range";
+ packageName = "parse-numeric-range";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-0.0.2.tgz";
+ sha1 = "b4f09d413c7adbcd987f6e9233c7b4b210c938e4";
+ };
+ };
+ "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.9.1" = {
+ name = "parse-torrent";
+ packageName = "parse-torrent";
+ version = "5.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-5.9.1.tgz";
+ sha512 = "yy7UTSmliOT/7Yl+P4hwwW2W7PbCTAMcD0lasaVG+k4/2laj42YWzLm468bLFGDoFPIb29g3BuwBcA3gLopKww==";
+ };
+ };
+ "parse-torrent-6.1.2" = {
+ name = "parse-torrent";
+ packageName = "parse-torrent";
+ version = "6.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-6.1.2.tgz";
+ sha512 = "Z/vig84sHwtrTEbOzisT4xnYTFlOgAaLQccPruMPgRahZUppVE/BUXzAos3jZM7c64o0lfukQdQ4ozWa5lN39w==";
+ };
+ };
+ "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";
+ };
+ };
+ "parse5-1.5.1" = {
+ name = "parse5";
+ packageName = "parse5";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz";
+ sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94";
+ };
+ };
+ "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 = "rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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.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-0.12.7" = {
+ name = "path";
+ packageName = "path";
+ version = "0.12.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path/-/path-0.12.7.tgz";
+ sha1 = "d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f";
+ };
+ };
+ "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-browserify-0.0.1" = {
+ name = "path-browserify";
+ packageName = "path-browserify";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz";
+ sha512 = "BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "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.7" = {
+ name = "path-loader";
+ packageName = "path-loader";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-loader/-/path-loader-1.0.7.tgz";
+ sha512 = "FIorK5Wwz8LzyklCCsPnHI2ieelYbnnGvEtBC4DxW8MkdzBbGKKhxoDH1pDPnQN5ll+gT7t77fac/VD7Vi1kFA==";
+ };
+ };
+ "path-parse-1.0.6" = {
+ name = "path-parse";
+ packageName = "path-parse";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
+ sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
+ };
+ };
+ "path-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-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-to-regexp-2.2.1" = {
+ name = "path-to-regexp";
+ packageName = "path-to-regexp";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz";
+ sha512 = "gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==";
+ };
+ };
+ "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 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==";
+ };
+ };
+ "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.16" = {
+ name = "pbkdf2";
+ packageName = "pbkdf2";
+ version = "3.0.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz";
+ sha512 = "y4CXP3thSxqf7c0qmOF+9UeOTrifiVTIM+u7NWlq+PRsHbr7r7dpCmvzrZxa96JJUNi0Y5w9VqG5ZNeCVMoDcA==";
+ };
+ };
+ "peer-wire-protocol-0.7.1" = {
+ name = "peer-wire-protocol";
+ packageName = "peer-wire-protocol";
+ version = "0.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/peer-wire-protocol/-/peer-wire-protocol-0.7.1.tgz";
+ sha512 = "V9oTa/ZcfNNz9fAST28Gg0fXbPeFPk3SBImsYO8GDDG5D0E195vxXmjZ+SPrzr4BJyMQmdDmwUfTf9MZ62z4mw==";
+ };
+ };
+ "peer-wire-swarm-0.12.2" = {
+ name = "peer-wire-swarm";
+ packageName = "peer-wire-swarm";
+ version = "0.12.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/peer-wire-swarm/-/peer-wire-swarm-0.12.2.tgz";
+ sha512 = "sIWZ1nTL9l6mI9J18kW1AeByBwagvNzGJlMmQA9pM+otKQtTIwnigK8SR0nEFrNZYqZelI6RQ6g4udvtQ2TI1g==";
+ };
+ };
+ "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#fork" = {
+ name = "pegjs";
+ packageName = "pegjs";
+ version = "0.8.0";
+ src = fetchgit {
+ url = "https://github.com/tstarling/pegjs";
+ rev = "36d584bd7bbc564c86c058c5dfe8053b1fe1d584";
+ sha256 = "df0bf31b132e63beae73a28f1edfe0a2e9edf01660632c72834c682e2b484905";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "phantom-4.0.12" = {
+ name = "phantom";
+ packageName = "phantom";
+ version = "4.0.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/phantom/-/phantom-4.0.12.tgz";
+ sha512 = "Tz82XhtPmwCk1FFPmecy7yRGZG2btpzY2KI9fcoPT7zT9det0CcMyfBFPp1S8DqzsnQnm8ZYEfdy528mwVtksA==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "piece-length-1.0.0" = {
+ name = "piece-length";
+ packageName = "piece-length";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/piece-length/-/piece-length-1.0.0.tgz";
+ sha1 = "4db7167157fd69fef14caf7262cd39f189b24508";
+ };
+ };
+ "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";
+ };
+ };
+ "pino-4.17.6" = {
+ name = "pino";
+ packageName = "pino";
+ version = "4.17.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pino/-/pino-4.17.6.tgz";
+ sha512 = "LFDwmhyWLBnmwO/2UFbWu1jEGVDzaPupaVdx0XcZ3tIAx1EDEBauzxXf2S0UcFK7oe+X9MApjH0hx9U1XMgfCA==";
+ };
+ };
+ "pino-5.0.0-rc.4" = {
+ name = "pino";
+ packageName = "pino";
+ version = "5.0.0-rc.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pino/-/pino-5.0.0-rc.4.tgz";
+ sha512 = "n5aJmABDjzZbwrB0AEbUeugz1Rh55c9T62yVGv6YL1vP1GuqpjIcLgwZIM1SI8E4Nfmcoo46SSmPgSSA9mPdog==";
+ };
+ };
+ "pino-std-serializers-2.2.1" = {
+ name = "pino-std-serializers";
+ packageName = "pino-std-serializers";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.2.1.tgz";
+ sha512 = "QqL7kkF7eMCpFG4hpZD8UPQga/kxkkh3E62HzMzTIL4OQyijyisAnBL8msBEAml8xcb/ioGhH7UUzGxuHqczhQ==";
+ };
+ };
+ "pkg-dir-2.0.0" = {
+ name = "pkg-dir";
+ packageName = "pkg-dir";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz";
+ sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b";
+ };
+ };
+ "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.3.0" = {
+ name = "playerui";
+ packageName = "playerui";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/playerui/-/playerui-1.3.0.tgz";
+ sha1 = "a32b907f28d17f61b74d45d46fd89dea3c4e88b5";
+ };
+ };
+ "please-upgrade-node-3.1.1" = {
+ name = "please-upgrade-node";
+ packageName = "please-upgrade-node";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz";
+ sha512 = "KY1uHnQ2NlQHqIJQpnh/i54rKkuxCEBx+voJIS/Mvb+L2iYd2NMotwduhKTMjfC1uKoX3VXOxLjIYG66dfJTVQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "plist-3.0.1" = {
+ name = "plist";
+ packageName = "plist";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/plist/-/plist-3.0.1.tgz";
+ sha512 = "GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ==";
+ };
+ };
+ "plist-with-patches-0.5.1" = {
+ name = "plist-with-patches";
+ packageName = "plist-with-patches";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/plist-with-patches/-/plist-with-patches-0.5.1.tgz";
+ sha1 = "868aae2e0df8989b026562b35cbc19cfd8bb780d";
+ };
+ };
+ "plugin-error-0.1.2" = {
+ name = "plugin-error";
+ packageName = "plugin-error";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz";
+ sha1 = "3b9bb3335ccf00f425e07437e19276967da47ace";
+ };
+ };
+ "plugin-error-1.0.1" = {
+ name = "plugin-error";
+ packageName = "plugin-error";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz";
+ sha512 = "L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==";
+ };
+ };
+ "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 = "ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==";
+ };
+ };
+ "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 = "petRj39w05GvH1WKuGFmzxR9+k+R9E7zX5XWTFee7P/qf88hMuLT7aAO/RsmldpQMtJsWQISkTQlfMRECKlxhw==";
+ };
+ };
+ "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";
+ };
+ };
+ "portfinder-1.0.17" = {
+ name = "portfinder";
+ packageName = "portfinder";
+ version = "1.0.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/portfinder/-/portfinder-1.0.17.tgz";
+ sha512 = "syFcRIRzVI1BoEFOCaAiizwDolh1S1YXSodsVhncbhjzjZQulhczNRbqnUl9N31Q4dKGOXsNDqxC2BWBgSMqeQ==";
+ };
+ };
+ "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.23" = {
+ name = "postcss";
+ packageName = "postcss";
+ version = "6.0.23";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz";
+ sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==";
+ };
+ };
+ "prebuild-install-2.1.2" = {
+ name = "prebuild-install";
+ packageName = "prebuild-install";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-2.1.2.tgz";
+ sha1 = "d9ae0ca85330e03962d93292f95a8b44c2ebf505";
+ };
+ };
+ "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 = "UCDQscAfQ1HArwvSUobJWbc3sTGLqGpYkRqXUpBZgf+zOWpOjz2dxnpRsOu+qxIj1K0n5UT1wgbCCgetsIwiug==";
+ };
+ };
+ "printf-0.2.5" = {
+ name = "printf";
+ packageName = "printf";
+ version = "0.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/printf/-/printf-0.2.5.tgz";
+ sha1 = "c438ca2ca33e3927671db4ab69c0e52f936a4f0f";
+ };
+ };
+ "prisma-json-schema-0.0.4" = {
+ name = "prisma-json-schema";
+ packageName = "prisma-json-schema";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prisma-json-schema/-/prisma-json-schema-0.0.4.tgz";
+ sha512 = "NTbourUhkmhM18rrcnp+IdxTdWftUsepZcNX2QntOqkOOwccYADmmZJpTr9tuvCYsW3i48B8LVEwvm0v1pAhxQ==";
+ };
+ };
+ "prisma-yml-1.0.50" = {
+ name = "prisma-yml";
+ packageName = "prisma-yml";
+ version = "1.0.50";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prisma-yml/-/prisma-yml-1.0.50.tgz";
+ sha512 = "Vpt6q+YzS6yozMnIPU75hlHzmDR1Hj4Z3FXaazJrOXUyeQx/xDqeEwRJ+ii4xl/GRYiFnMEVSLfsPzjLehA1Zw==";
+ };
+ };
+ "prismjs-1.15.0" = {
+ name = "prismjs";
+ packageName = "prismjs";
+ version = "1.15.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prismjs/-/prismjs-1.15.0.tgz";
+ sha512 = "Lf2JrFYx8FanHrjoV5oL8YHCclLQgbJcVZR+gikGGMqz6ub5QVWDTM6YIwm3BuPxM/LOV+rKns3LssXNLIf+DA==";
+ };
+ };
+ "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 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==";
+ };
+ };
+ "probe-image-size-4.0.0" = {
+ name = "probe-image-size";
+ packageName = "probe-image-size";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/probe-image-size/-/probe-image-size-4.0.0.tgz";
+ sha512 = "nm7RvWUxps+2+jZKNLkd04mNapXNariS6G5WIEVzvAqjx7EUuKcY1Dp3e6oUK7GLwzJ+3gbSbPLFAASHFQrPcQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "process-nextick-args-2.0.0" = {
+ name = "process-nextick-args";
+ packageName = "process-nextick-args";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz";
+ sha512 = "MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==";
+ };
+ };
+ "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 = "JymvIR4IJ0qTyma7ExefBeJGp2IGaXYGWv8Z//Jq+AhrCd0uKlMPK9IWJ0LL6zbXbAN8fhLe1TL1hl1ZKOljDw==";
+ };
+ };
+ "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 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==";
+ };
+ };
+ "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-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-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";
+ };
+ };
+ "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";
+ };
+ };
+ "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.2" = {
+ name = "prop-types";
+ packageName = "prop-types";
+ version = "15.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz";
+ sha512 = "3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "protobufjs-6.8.8" = {
+ name = "protobufjs";
+ packageName = "protobufjs";
+ version = "6.8.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/protobufjs/-/protobufjs-6.8.8.tgz";
+ sha512 = "AAmHtD5pXgZfi7GMpllpO3q1Xw1OYldr+dMUlAnffGTAhqkg72WdmSY71uKBF/JuyiKs8psYbtKrhi0ASCD8qw==";
+ };
+ };
+ "protochain-1.0.5" = {
+ name = "protochain";
+ packageName = "protochain";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/protochain/-/protochain-1.0.5.tgz";
+ sha1 = "991c407e99de264aadf8f81504b5e7faf7bfa260";
+ };
+ };
+ "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 = "SmjEuAf3hc3h3rWZ6V1YaaQw2MNJWK848gLJgzx/sefOJdNLujKinJVXIS0q2cBQpQn2Q32TinawZyDZPzm4kQ==";
+ };
+ };
+ "protoduck-5.0.0" = {
+ name = "protoduck";
+ packageName = "protoduck";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/protoduck/-/protoduck-5.0.0.tgz";
+ sha512 = "agsGWD8/RZrS4ga6v82Fxb0RHIS2RZnbsSue6A9/MBRhB/jcqOANAMNrqM9900b8duj+Gx+T/JMy5IowDoO/hQ==";
+ };
+ };
+ "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.4" = {
+ name = "proxy-addr";
+ packageName = "proxy-addr";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz";
+ sha512 = "5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==";
+ };
+ };
+ "proxy-agent-2.3.1" = {
+ name = "proxy-agent";
+ packageName = "proxy-agent";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.3.1.tgz";
+ sha512 = "CNKuhC1jVtm8KJYFTS2ZRO71VCBx3QSA92So/e6NrY6GoJonkx3Irnk4047EsCcswczwqAekRj3s8qLRGahSKg==";
+ };
+ };
+ "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/prr/-/prr-0.0.0.tgz";
+ sha1 = "1a84b85908325501411853d0081ee3fa86e2926a";
+ };
+ };
+ "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-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";
+ };
+ };
+ "ps-tree-1.1.0" = {
+ name = "ps-tree";
+ packageName = "ps-tree";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz";
+ sha1 = "b421b24140d6203f1ed3c76996b4427b08e8c014";
+ };
+ };
+ "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";
+ };
+ };
+ "psl-1.1.29" = {
+ name = "psl";
+ packageName = "psl";
+ version = "1.1.29";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz";
+ sha512 = "AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==";
+ };
+ };
+ "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 = "q5I5vLRMVtdWa8n/3UEzZX7Lfghzrg9eG2IKk2ENLSofKRCXVqMvMUHxCKgXNaqH/8ebhBxrqftHWnyTFweJ5Q==";
+ };
+ };
+ "public-encrypt-4.0.2" = {
+ name = "public-encrypt";
+ packageName = "public-encrypt";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz";
+ sha512 = "4kJ5Esocg8X3h8YgJsKAuoesBgB7mqH3eowiDzMUPKiRDDE7E/BqqZD1hnTByIaAFiwAw246YEltSq7tdrOH0Q==";
+ };
+ };
+ "pug-2.0.3" = {
+ name = "pug";
+ packageName = "pug";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug/-/pug-2.0.3.tgz";
+ sha1 = "71cba82537c95a5eab7ed04696e4221f53aa878e";
+ };
+ };
+ "pug-attrs-2.0.3" = {
+ name = "pug-attrs";
+ packageName = "pug-attrs";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-attrs/-/pug-attrs-2.0.3.tgz";
+ sha1 = "a3095f970e64151f7bdad957eef55fb5d7905d15";
+ };
+ };
+ "pug-code-gen-2.0.1" = {
+ name = "pug-code-gen";
+ packageName = "pug-code-gen";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-2.0.1.tgz";
+ sha1 = "0951ec83225d74d8cfc476a7f99a259b5f7d050c";
+ };
+ };
+ "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-3.1.0" = {
+ name = "pug-filters";
+ packageName = "pug-filters";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-filters/-/pug-filters-3.1.0.tgz";
+ sha1 = "27165555bc04c236e4aa2b0366246dfa021b626e";
+ };
+ };
+ "pug-lexer-4.0.0" = {
+ name = "pug-lexer";
+ packageName = "pug-lexer";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-lexer/-/pug-lexer-4.0.0.tgz";
+ sha1 = "210c18457ef2e1760242740c5e647bd794cec278";
+ };
+ };
+ "pug-linker-3.0.5" = {
+ name = "pug-linker";
+ packageName = "pug-linker";
+ version = "3.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-linker/-/pug-linker-3.0.5.tgz";
+ sha1 = "9e9a7ae4005682d027deeb96b000f88eeb83a02f";
+ };
+ };
+ "pug-load-2.0.11" = {
+ name = "pug-load";
+ packageName = "pug-load";
+ version = "2.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-load/-/pug-load-2.0.11.tgz";
+ sha1 = "e648e57ed113fe2c1f45d57858ea2bad6bc01527";
+ };
+ };
+ "pug-parser-5.0.0" = {
+ name = "pug-parser";
+ packageName = "pug-parser";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-parser/-/pug-parser-5.0.0.tgz";
+ sha1 = "e394ad9b3fca93123940aff885c06e44ab7e68e4";
+ };
+ };
+ "pug-runtime-2.0.4" = {
+ name = "pug-runtime";
+ packageName = "pug-runtime";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-runtime/-/pug-runtime-2.0.4.tgz";
+ sha1 = "e178e1bda68ab2e8c0acfc9bced2c54fd88ceb58";
+ };
+ };
+ "pug-strip-comments-1.0.3" = {
+ name = "pug-strip-comments";
+ packageName = "pug-strip-comments";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-1.0.3.tgz";
+ sha1 = "f1559592206edc6f85310dacf4afb48a025af59f";
+ };
+ };
+ "pug-walk-1.1.7" = {
+ name = "pug-walk";
+ packageName = "pug-walk";
+ version = "1.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-walk/-/pug-walk-1.1.7.tgz";
+ sha1 = "c00d5c5128bac5806bec15d2b7e7cdabe42531f3";
+ };
+ };
+ "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-defer-0.2.3" = {
+ name = "pull-defer";
+ packageName = "pull-defer";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pull-defer/-/pull-defer-0.2.3.tgz";
+ sha512 = "/An3KE7mVjZCqNhZsr22k1Tx8MACnUnHZZNPSJ0S62td8JtYr/AiRG42Vz7Syu31SoTLUzVIe61jtT/pNdjVYA==";
+ };
+ };
+ "pull-level-2.0.4" = {
+ name = "pull-level";
+ packageName = "pull-level";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pull-level/-/pull-level-2.0.4.tgz";
+ sha512 = "fW6pljDeUThpq5KXwKbRG3X7Ogk3vc75d5OQU/TvXXui65ykm+Bn+fiktg+MOx2jJ85cd+sheufPL+rw9QSVZg==";
+ };
+ };
+ "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.2.0" = {
+ name = "pull-pushable";
+ packageName = "pull-pushable";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pull-pushable/-/pull-pushable-2.2.0.tgz";
+ sha1 = "5f2f3aed47ad86919f01b12a2e99d6f1bd776581";
+ };
+ };
+ "pull-stream-3.6.9" = {
+ name = "pull-stream";
+ packageName = "pull-stream";
+ version = "3.6.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.9.tgz";
+ sha512 = "hJn4POeBrkttshdNl0AoSCVjMVSuBwuHocMerUdoZ2+oIUzrWHFTwJMlbHND7OiKLVgvz6TFj8ZUVywUMXccbw==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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 = "8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw==";
+ };
+ };
+ "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 = "ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==";
+ };
+ };
+ "pump-3.0.0" = {
+ name = "pump";
+ packageName = "pump";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz";
+ sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==";
+ };
+ };
+ "pumpify-1.5.1" = {
+ name = "pumpify";
+ packageName = "pumpify";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz";
+ sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "punycode-1.4.1" = {
+ name = "punycode";
+ packageName = "punycode";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
+ sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
+ };
+ };
+ "punycode-2.1.1" = {
+ name = "punycode";
+ packageName = "punycode";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
+ sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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.2.0" = {
+ name = "qjobs";
+ packageName = "qjobs";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz";
+ sha512 = "8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==";
+ };
+ };
+ "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" = {
+ name = "qs";
+ packageName = "qs";
+ version = "0.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-0.6.5.tgz";
+ sha1 = "294b268e4b0d4250f6dde19b3b8b34935dff14ef";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "qs-2.4.2" = {
+ name = "qs";
+ packageName = "qs";
+ version = "2.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-2.4.2.tgz";
+ sha1 = "f7ce788e5777df0b5010da7f7c4e73ba32470f5a";
+ };
+ };
+ "qs-3.1.0" = {
+ name = "qs";
+ packageName = "qs";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-3.1.0.tgz";
+ sha1 = "d0e9ae745233a12dc43fb4f3055bba446261153c";
+ };
+ };
+ "qs-4.0.0" = {
+ name = "qs";
+ packageName = "qs";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz";
+ sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607";
+ };
+ };
+ "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";
+ };
+ };
+ "qs-6.2.3" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz";
+ sha1 = "1cfcb25c10a9b2b483053ff39f5dfc9233908cfe";
+ };
+ };
+ "qs-6.3.2" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz";
+ sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c";
+ };
+ };
+ "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.0" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.5.0.tgz";
+ sha512 = "fjVFjW9yhqMhVGwRExCXLhJKrLlkYSaxNWdyc9rmHlrVZbk35YHH312dFd7191uQeXkI3mKLZTIbSvIeFwFemg==";
+ };
+ };
+ "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 = "eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==";
+ };
+ };
+ "qs-6.5.2" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz";
+ sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "query-string-5.1.1" = {
+ name = "query-string";
+ packageName = "query-string";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz";
+ sha512 = "gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "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/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz";
+ sha1 = "0ca581de3174becef25ac3c2e8956342381db698";
+ };
+ };
+ "quick-format-unescaped-3.0.0" = {
+ name = "quick-format-unescaped";
+ packageName = "quick-format-unescaped";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-3.0.0.tgz";
+ sha512 = "XmIOc07VM2kPm6m3j/U6jgxyUgDm2Rgh2c1PPy0JUHoQRdoh86hOym0bHyF6G1T6sn+N5lildhvl/T59H5KVyA==";
+ };
+ };
+ "quick-lru-1.1.0" = {
+ name = "quick-lru";
+ packageName = "quick-lru";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/quick-lru/-/quick-lru-1.1.0.tgz";
+ sha1 = "4360b17c61136ad38078397ff11416e186dcfbb8";
+ };
+ };
+ "quicktask-1.1.0" = {
+ name = "quicktask";
+ packageName = "quicktask";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/quicktask/-/quicktask-1.1.0.tgz";
+ sha512 = "b3w19IEXnt5auacLAbePVsqPyVQUwmuhJQrrWnVhm4pP8PAMg2U9vFHbAD9XYXXbMDjdLJs0x5NLqwTV8uFK4g==";
+ };
+ };
+ "raf-3.3.2" = {
+ name = "raf";
+ packageName = "raf";
+ version = "3.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raf/-/raf-3.3.2.tgz";
+ sha1 = "0c13be0b5b49b46f76d6669248d527cf2b02fe27";
+ };
+ };
+ "rai-0.1.12" = {
+ name = "rai";
+ packageName = "rai";
+ version = "0.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rai/-/rai-0.1.12.tgz";
+ sha1 = "8ccfd014d0f9608630dd73c19b8e4b057754a6a6";
+ };
+ };
+ "random-access-file-2.0.1" = {
+ name = "random-access-file";
+ packageName = "random-access-file";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/random-access-file/-/random-access-file-2.0.1.tgz";
+ sha512 = "nb4fClpzoUY+v1SHrro+9yykN90eMA1rc+xM39tnZ5R3BgFY+J/NxPZ0KuUpishEsvnwou9Fvm2wa3cjeuG7vg==";
+ };
+ };
+ "random-access-memory-3.0.0" = {
+ name = "random-access-memory";
+ packageName = "random-access-memory";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.0.0.tgz";
+ sha512 = "O/d5C/kTOs/aDix1CD+N7z4SgNVGPx+xpFKXGfrC0TFpqYVrsJEUmQCl3ITTg7FVMoCmLBo5rdkA5FcFg00NTA==";
+ };
+ };
+ "random-access-storage-1.3.0" = {
+ name = "random-access-storage";
+ packageName = "random-access-storage";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/random-access-storage/-/random-access-storage-1.3.0.tgz";
+ sha512 = "pdS9Mcb9TB7oICypPRALlheaSuszuAKmLVEPKJMuYor7R/zDuHh5ALuQoS+ox31XRwQUL+tDwWH2GPdyspwelA==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "randomatic-3.1.0" = {
+ name = "randomatic";
+ packageName = "randomatic";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz";
+ sha512 = "KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ==";
+ };
+ };
+ "randombytes-2.0.6" = {
+ name = "randombytes";
+ packageName = "randombytes";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz";
+ sha512 = "CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==";
+ };
+ };
+ "randomfill-1.0.4" = {
+ name = "randomfill";
+ packageName = "randomfill";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz";
+ sha512 = "87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==";
+ };
+ };
+ "range-parser-0.0.4" = {
+ name = "range-parser";
+ packageName = "range-parser";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz";
+ sha1 = "c0427ffef51c10acba0782a46c9602e744ff620b";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "range-slice-stream-1.2.0" = {
+ name = "range-slice-stream";
+ packageName = "range-slice-stream";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/range-slice-stream/-/range-slice-stream-1.2.0.tgz";
+ sha1 = "01ba954276052b783900e63d6118d8fcf3875d7f";
+ };
+ };
+ "raven-js-3.26.4" = {
+ name = "raven-js";
+ packageName = "raven-js";
+ version = "3.26.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raven-js/-/raven-js-3.26.4.tgz";
+ sha512 = "5VmC3IWhTQJkaiQaCY0S5V8za4bpUgbbuVT1MkDH7JVqgu8CPQ750XaFF8BVRbLV9F5nvoz7n0UT0CKteDuZAg==";
+ };
+ };
+ "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.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.0.2" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-2.0.2.tgz";
+ sha1 = "a2c2f98c8531cee99c63d8d238b7de97bb659fca";
+ };
+ };
+ "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.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-body-2.3.3" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz";
+ sha512 = "9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==";
+ };
+ };
+ "raw-socket-1.6.2" = {
+ name = "raw-socket";
+ packageName = "raw-socket";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-socket/-/raw-socket-1.6.2.tgz";
+ sha512 = "JbmNAXPFNI+yJv3Kx0Lsl+ao2doZ/kdz9J4Ba9+ggC1U4e50BK0GfHHYuLFj8acnYzqXgKiLzhi2ixOPk6/kcw==";
+ };
+ };
+ "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.8" = {
+ name = "rc";
+ packageName = "rc";
+ version = "1.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz";
+ sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==";
+ };
+ };
+ "rc-config-loader-2.0.2" = {
+ name = "rc-config-loader";
+ packageName = "rc-config-loader";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-2.0.2.tgz";
+ sha512 = "Nx9SNM47eNRqe0TdntOY600qWb8NDh+xU9sv5WnTscEtzfTB0ukihlqwuCLPteyJksvZ0sEVPoySNE01TKrmTQ==";
+ };
+ };
+ "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-metadata-1.0.0" = {
+ name = "read-metadata";
+ packageName = "read-metadata";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-metadata/-/read-metadata-1.0.0.tgz";
+ sha1 = "6df9cbe51184e8ceb7d0668b40ee5191e6f3dac6";
+ };
+ };
+ "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.13" = {
+ name = "read-package-json";
+ packageName = "read-package-json";
+ version = "2.0.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.13.tgz";
+ sha512 = "/1dZ7TRZvGrYqE0UAfN6qQb5GYBsNcqS1C0tNK601CFOJmtHI7NIGXwetEPU/OtoFHZL3hDxm4rolFFVE9Bnmg==";
+ };
+ };
+ "read-package-tree-5.2.1" = {
+ name = "read-package-tree";
+ packageName = "read-package-tree";
+ version = "5.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.2.1.tgz";
+ sha512 = "2CNoRoh95LxY47LvqrehIAfUVda2JbuFE/HaGYs42bNrGG+ojbw1h3zOcPcQ+1GQ3+rkzNndZn85u1XyZ3UsIA==";
+ };
+ };
+ "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-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-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-pkg-up-3.0.0" = {
+ name = "read-pkg-up";
+ packageName = "read-pkg-up";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz";
+ sha1 = "3ed496685dba0f8fe118d0691dc51f4a1ff96f07";
+ };
+ };
+ "read-pkg-up-4.0.0" = {
+ name = "read-pkg-up";
+ packageName = "read-pkg-up";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz";
+ sha512 = "6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==";
+ };
+ };
+ "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.6" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "2.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz";
+ sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==";
+ };
+ };
+ "readable-stream-3.0.2" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.0.2.tgz";
+ sha512 = "E3RfQoPuKDBhec0s8fOsgFXDVFlEipbsheGBX/NNByfKMfzPEEQJXcLy6fJ7bDD820HG/d+eXQ1ezCj29KoAJA==";
+ };
+ };
+ "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" = {
+ name = "readdirp";
+ packageName = "readdirp";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz";
+ sha1 = "4ed0ad060df3073300c48440373f72d1cc642d78";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "recast-0.11.23" = {
+ name = "recast";
+ packageName = "recast";
+ version = "0.11.23";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz";
+ sha1 = "451fd3004ab1e4df9b4e4b66376b2a21912462d3";
+ };
+ };
+ "recast-0.15.3" = {
+ name = "recast";
+ packageName = "recast";
+ version = "0.15.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/recast/-/recast-0.15.3.tgz";
+ sha512 = "xqnagxQH7mL4+UpcCVMObPPdjCEE2dmfGcTwcdpyNgZOd9W0rfdLRF3+smoA+AQqMw6xK6G4021dAQK8XfPYIQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "record-cache-1.1.0" = {
+ name = "record-cache";
+ packageName = "record-cache";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/record-cache/-/record-cache-1.1.0.tgz";
+ sha512 = "u8rbtLEJV7HRacl/ZYwSBFD8NFyB3PfTTfGLP37IW3hftQCwu6z4Q2RLyxo1YJUNRTEzJfpLpGwVuEYdaIkG9Q==";
+ };
+ };
+ "recursive-readdir-2.2.2" = {
+ name = "recursive-readdir";
+ packageName = "recursive-readdir";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz";
+ sha512 = "nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==";
+ };
+ };
+ "recursive-watch-1.1.4" = {
+ name = "recursive-watch";
+ packageName = "recursive-watch";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.4.tgz";
+ sha512 = "fWejAmdLi7B/jipBUjTLnqId+PK+573fbGNbdaNA/AiAnQAx6OYOLCGWRs0W5+PyM1rLzZSWK2f40QpHSR49PQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "redent-2.0.0" = {
+ name = "redent";
+ packageName = "redent";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz";
+ sha1 = "c1b2007b42d57eb1389079b3c8333639d5e1ccaa";
+ };
+ };
+ "redis-0.10.3" = {
+ name = "redis";
+ packageName = "redis";
+ version = "0.10.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redis/-/redis-0.10.3.tgz";
+ sha1 = "8927fe2110ee39617bcf3fd37b89d8e123911bb6";
+ };
+ };
+ "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";
+ };
+ };
+ "redis-0.7.3" = {
+ name = "redis";
+ packageName = "redis";
+ version = "0.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redis/-/redis-0.7.3.tgz";
+ sha1 = "ee57b7a44d25ec1594e44365d8165fa7d1d4811a";
+ };
+ };
+ "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";
+ };
+ };
+ "regenerator-runtime-0.10.5" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.10.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz";
+ sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658";
+ };
+ };
+ "regenerator-runtime-0.11.1" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.11.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
+ sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==";
+ };
+ };
+ "regenerator-runtime-0.12.1" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz";
+ sha512 = "odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==";
+ };
+ };
+ "regenerator-runtime-0.9.6" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.9.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz";
+ sha1 = "d33eb95d0d2001a4be39659707c51b0cb71ce029";
+ };
+ };
+ "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 = "nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==";
+ };
+ };
+ "regex-not-1.0.2" = {
+ name = "regex-not";
+ packageName = "regex-not";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz";
+ sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
+ };
+ };
+ "regexp.prototype.flags-1.2.0" = {
+ name = "regexp.prototype.flags";
+ packageName = "regexp.prototype.flags";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz";
+ sha512 = "ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA==";
+ };
+ };
+ "regexpp-1.1.0" = {
+ name = "regexpp";
+ packageName = "regexpp";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz";
+ sha512 = "LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw==";
+ };
+ };
+ "regexpp-2.0.0" = {
+ name = "regexpp";
+ packageName = "regexpp";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regexpp/-/regexpp-2.0.0.tgz";
+ sha512 = "g2FAVtR8Uh8GO1Nv5wpxW7VFVwHcCEr4wyA8/MHiRkO8uHoR5ntAA8Uq3P1vvMTX/BeQiRVSpDGLd+Wn5HNOTA==";
+ };
+ };
+ "registry-auth-token-3.3.2" = {
+ name = "registry-auth-token";
+ packageName = "registry-auth-token";
+ version = "3.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz";
+ sha512 = "JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "reinterval-1.1.0" = {
+ name = "reinterval";
+ packageName = "reinterval";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/reinterval/-/reinterval-1.1.0.tgz";
+ sha1 = "3361ecfa3ca6c18283380dd0bb9546f390f5ece7";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "relaxed-json-1.0.1" = {
+ name = "relaxed-json";
+ packageName = "relaxed-json";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/relaxed-json/-/relaxed-json-1.0.1.tgz";
+ sha1 = "7c8d4aa2f095704cd020e32e8099bcae103f0bd4";
+ };
+ };
+ "remove-array-items-1.0.0" = {
+ name = "remove-array-items";
+ packageName = "remove-array-items";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/remove-array-items/-/remove-array-items-1.0.0.tgz";
+ sha1 = "07bf42cb332f4cf6e85ead83b5e4e896d2326b21";
+ };
+ };
+ "remove-bom-buffer-3.0.0" = {
+ name = "remove-bom-buffer";
+ packageName = "remove-bom-buffer";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz";
+ sha512 = "8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==";
+ };
+ };
+ "remove-bom-stream-1.2.0" = {
+ name = "remove-bom-stream";
+ packageName = "remove-bom-stream";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz";
+ sha1 = "05f1a593f16e42e1fb90ebf59de8e569525f9523";
+ };
+ };
+ "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";
+ };
+ };
+ "render-media-3.1.3" = {
+ name = "render-media";
+ packageName = "render-media";
+ version = "3.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/render-media/-/render-media-3.1.3.tgz";
+ sha512 = "K7ziKKlIcgYpAovRsABDiSaNn7TzDDyyuFGpRwM52cloNcajInB6sCxFPUEzOuTJUeyvKCqT/k5INOjpKLCjhQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "repeat-element-1.1.3" = {
+ name = "repeat-element";
+ packageName = "repeat-element";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz";
+ sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==";
+ };
+ };
+ "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";
+ };
+ };
+ "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-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";
+ };
+ };
+ "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";
+ };
+ };
+ "replace-ext-1.0.0" = {
+ name = "replace-ext";
+ packageName = "replace-ext";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz";
+ sha1 = "de63128373fcbf7c3ccfa4de5a480c45a67958eb";
+ };
+ };
+ "replaceall-0.1.6" = {
+ name = "replaceall";
+ packageName = "replaceall";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/replaceall/-/replaceall-0.1.6.tgz";
+ sha1 = "81d81ac7aeb72d7f5c4942adf2697a3220688d8e";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "request-2.74.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.74.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.74.0.tgz";
+ sha1 = "7693ca768bbb0ea5c8ce08c084a45efa05b892ab";
+ };
+ };
+ "request-2.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";
+ };
+ };
+ "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 = "lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==";
+ };
+ };
+ "request-2.87.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.87.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.87.0.tgz";
+ sha512 = "fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==";
+ };
+ };
+ "request-2.88.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.88.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.88.0.tgz";
+ sha512 = "NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==";
+ };
+ };
+ "request-2.9.203" = {
+ name = "request";
+ packageName = "request";
+ version = "2.9.203";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.9.203.tgz";
+ sha1 = "6c1711a5407fb94a114219563e44145bcbf4723a";
+ };
+ };
+ "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";
+ };
+ };
+ "request-promise-4.2.2" = {
+ name = "request-promise";
+ packageName = "request-promise";
+ version = "4.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request-promise/-/request-promise-4.2.2.tgz";
+ sha1 = "d1ea46d654a6ee4f8ee6a4fea1018c22911904b4";
+ };
+ };
+ "request-promise-core-1.1.1" = {
+ name = "request-promise-core";
+ packageName = "request-promise-core";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz";
+ sha1 = "3eee00b2c5aa83239cfb04c5700da36f81cd08b6";
+ };
+ };
+ "request-promise-native-1.0.5" = {
+ name = "request-promise-native";
+ packageName = "request-promise-native";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz";
+ sha1 = "5281770f68e0c9719e5163fd3fab482215f4fda5";
+ };
+ };
+ "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-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";
+ };
+ };
+ "require-from-string-2.0.2" = {
+ name = "require-from-string";
+ packageName = "require-from-string";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz";
+ sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "requirejs-2.3.6" = {
+ name = "requirejs";
+ packageName = "requirejs";
+ version = "2.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz";
+ sha512 = "ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==";
+ };
+ };
+ "requires-port-1.0.0" = {
+ name = "requires-port";
+ packageName = "requires-port";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz";
+ sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff";
+ };
+ };
+ "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";
+ };
+ };
+ "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.8.1" = {
+ name = "resolve";
+ packageName = "resolve";
+ version = "1.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz";
+ sha512 = "AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==";
+ };
+ };
+ "resolve-cwd-2.0.0" = {
+ name = "resolve-cwd";
+ packageName = "resolve-cwd";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz";
+ sha1 = "00a9f7387556e27038eae232caa372a6a59b665a";
+ };
+ };
+ "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-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 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==";
+ };
+ };
+ "resolve-options-1.1.0" = {
+ name = "resolve-options";
+ packageName = "resolve-options";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz";
+ sha1 = "32bb9e39c06d67338dc9378c0d6d6074566ad131";
+ };
+ };
+ "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";
+ };
+ };
+ "restify-clients-1.5.2" = {
+ name = "restify-clients";
+ packageName = "restify-clients";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/restify-clients/-/restify-clients-1.5.2.tgz";
+ sha1 = "d4b13d82f287e77e2eb5daae14e6ef8534aa7389";
+ };
+ };
+ "restify-errors-3.0.0" = {
+ name = "restify-errors";
+ packageName = "restify-errors";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/restify-errors/-/restify-errors-3.0.0.tgz";
+ sha1 = "3b17177d43954acece4291465a97ce1b58cf3d57";
+ };
+ };
+ "restify-errors-3.1.0" = {
+ name = "restify-errors";
+ packageName = "restify-errors";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/restify-errors/-/restify-errors-3.1.0.tgz";
+ sha1 = "06b5479477874c0856d782a12c8707dcdad53f16";
+ };
+ };
+ "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";
+ };
+ };
+ "ret-0.1.15" = {
+ name = "ret";
+ packageName = "ret";
+ version = "0.1.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz";
+ sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
+ };
+ };
+ "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";
+ };
+ };
+ "rfdc-1.1.2" = {
+ name = "rfdc";
+ packageName = "rfdc";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rfdc/-/rfdc-1.1.2.tgz";
+ sha512 = "92ktAgvZhBzYTIK0Mja9uen5q5J3NRVMoDkJL2VMwq6SXjVCgqvQeVP2XAaUY6HT+XpQYeLSjb3UoitBryKmdA==";
+ };
+ };
+ "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.4" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.4.tgz";
+ sha1 = "b528ce2ebe0e6d89fb03b265de11d61da0dbcf82";
+ };
+ };
+ "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 = "lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==";
+ };
+ };
+ "ripemd160-2.0.2" = {
+ name = "ripemd160";
+ packageName = "ripemd160";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz";
+ sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==";
+ };
+ };
+ "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" = {
+ name = "root-check";
+ packageName = "root-check";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/root-check/-/root-check-1.0.0.tgz";
+ 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.3" = {
+ name = "router";
+ packageName = "router";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/router/-/router-1.3.3.tgz";
+ sha1 = "c142f6b5ea4d6b3359022ca95b6580bd217f89cf";
+ };
+ };
+ "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 = "OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==";
+ };
+ };
+ "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.9" = {
+ name = "run-parallel";
+ packageName = "run-parallel";
+ version = "1.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz";
+ sha512 = "DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==";
+ };
+ };
+ "run-parallel-limit-1.0.5" = {
+ name = "run-parallel-limit";
+ packageName = "run-parallel-limit";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-parallel-limit/-/run-parallel-limit-1.0.5.tgz";
+ sha512 = "NsY+oDngvrvMxKB3G8ijBzIema6aYbQMD2bHOamvN52BysbIGTnEY2xsNyfrcr9GhY995/t/0nQN3R3oZvaDlg==";
+ };
+ };
+ "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";
+ };
+ };
+ "run-series-1.1.8" = {
+ name = "run-series";
+ packageName = "run-series";
+ version = "1.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-series/-/run-series-1.1.8.tgz";
+ sha512 = "+GztYEPRpIsQoCSraWHDBs9WVy4eVME16zhOtDB4H9J4xN0XRhknnmLOl+4gRgZtu8dpp9N/utSPjKH/xmDzXg==";
+ };
+ };
+ "rusha-0.8.13" = {
+ name = "rusha";
+ packageName = "rusha";
+ version = "0.8.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rusha/-/rusha-0.8.13.tgz";
+ sha1 = "9a084e7b860b17bff3015b92c67a6a336191513a";
+ };
+ };
+ "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.11" = {
+ name = "rxjs";
+ packageName = "rxjs";
+ version = "5.5.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.11.tgz";
+ sha512 = "3bjO7UwWfA2CV7lmwYMBzj4fQ6Cq+ftHc2MvUe+WMS7wcdJ1LosDWmdjPQanYp2dBRj572p7PeU81JUxHKOcBA==";
+ };
+ };
+ "rxjs-6.2.2" = {
+ name = "rxjs";
+ packageName = "rxjs";
+ version = "6.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-6.2.2.tgz";
+ sha512 = "0MI8+mkKAXZUF9vMrEoPnaoHkfzBPP4IGwUYRJhIRJF6/w3uByO1e91bEHn8zd43RdkTMKiooYKmwz7RH6zfOQ==";
+ };
+ };
+ "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 = "kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==";
+ };
+ };
+ "safe-buffer-5.1.2" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
+ sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
+ };
+ };
+ "safe-json-stringify-1.2.0" = {
+ name = "safe-json-stringify";
+ packageName = "safe-json-stringify";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz";
+ sha512 = "gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==";
+ };
+ };
+ "safe-regex-1.1.0" = {
+ name = "safe-regex";
+ packageName = "safe-regex";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz";
+ sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
+ };
+ };
+ "safer-buffer-2.1.2" = {
+ name = "safer-buffer";
+ packageName = "safer-buffer";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
+ sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
+ };
+ };
+ "sander-0.5.1" = {
+ name = "sander";
+ packageName = "sander";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz";
+ sha1 = "741e245e231f07cafb6fdf0f133adfa216a502ad";
+ };
+ };
+ "sanitize-filename-1.6.1" = {
+ name = "sanitize-filename";
+ packageName = "sanitize-filename";
+ version = "1.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.1.tgz";
+ sha1 = "612da1c96473fa02dccda92dcd5b4ab164a6772a";
+ };
+ };
+ "sanitize-html-1.18.4" = {
+ name = "sanitize-html";
+ packageName = "sanitize-html";
+ version = "1.18.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.18.4.tgz";
+ sha512 = "hjyDYCYrQuhnEjq+5lenLlIfdPBtnZ7z0DkQOC8YGxvkuOInH+1SrkNTj30t4f2/SSv9c5kLniB+uCIpBvYuew==";
+ };
+ };
+ "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-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 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==";
+ };
+ };
+ "schema-utils-0.4.7" = {
+ name = "schema-utils";
+ packageName = "schema-utils";
+ version = "0.4.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz";
+ sha512 = "v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "scuid-1.1.0" = {
+ name = "scuid";
+ packageName = "scuid";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/scuid/-/scuid-1.1.0.tgz";
+ sha512 = "MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==";
+ };
+ };
+ "secure-keys-1.0.0" = {
+ name = "secure-keys";
+ packageName = "secure-keys";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/secure-keys/-/secure-keys-1.0.0.tgz";
+ sha1 = "f0c82d98a3b139a8776a8808050b824431087fca";
+ };
+ };
+ "seek-bzip-1.0.5" = {
+ name = "seek-bzip";
+ packageName = "seek-bzip";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz";
+ sha1 = "cfe917cb3d274bcffac792758af53173eb1fabdc";
+ };
+ };
+ "select-1.1.2" = {
+ name = "select";
+ packageName = "select";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/select/-/select-1.1.2.tgz";
+ sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d";
+ };
+ };
+ "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.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.1.0.tgz";
+ sha1 = "85f2cf8550465c4df000cf7d86f6b054106ab9e5";
+ };
+ };
+ "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.5.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
+ sha512 = "4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==";
+ };
+ };
+ "semver-5.5.1" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz";
+ sha512 = "PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==";
+ };
+ };
+ "semver-compare-1.0.0" = {
+ name = "semver-compare";
+ packageName = "semver-compare";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz";
+ sha1 = "0dee216a1c941ab37e9efb1788f6afc5ff5537fc";
+ };
+ };
+ "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.2" = {
+ name = "semver-utils";
+ packageName = "semver-utils";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.2.tgz";
+ sha512 = "+RvtdCZJdLJXN6ozVqbypYII/m4snihgWvmFHW8iWusxqGVdEP31QdUVVaC6GeJ9EYE0JCMdWiNlLF3edjifEw==";
+ };
+ };
+ "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.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.2" = {
+ name = "send";
+ packageName = "send";
+ version = "0.16.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.16.2.tgz";
+ sha512 = "E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "serialize-javascript-1.5.0" = {
+ name = "serialize-javascript";
+ packageName = "serialize-javascript";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz";
+ sha512 = "Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ==";
+ };
+ };
+ "serializerr-1.0.3" = {
+ name = "serializerr";
+ packageName = "serializerr";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serializerr/-/serializerr-1.0.3.tgz";
+ sha1 = "12d4c5aa1c3ffb8f6d1dc5f395aa9455569c3f91";
+ };
+ };
+ "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.5.0" = {
+ name = "serve-favicon";
+ packageName = "serve-favicon";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz";
+ sha1 = "935d240cdfe0f5805307fdfe967d88942a2cbcf0";
+ };
+ };
+ "serve-handler-5.0.0" = {
+ name = "serve-handler";
+ packageName = "serve-handler";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-handler/-/serve-handler-5.0.0.tgz";
+ sha512 = "VbNr1Yk4cDMAdIyVr5J1vPtGuXUsuu0R8iht+reK0g8t48fSuGWqnsIYVh3xXFJynFDHMLbPQ9mll+/hhmuGEQ==";
+ };
+ };
+ "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.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.2" = {
+ name = "serve-static";
+ packageName = "serve-static";
+ version = "1.13.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz";
+ sha512 = "p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==";
+ };
+ };
+ "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.3.0" = {
+ name = "service-runner";
+ packageName = "service-runner";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/service-runner/-/service-runner-2.3.0.tgz";
+ sha1 = "09039dfdcc40cdbd0259dd3f982916675838cb59";
+ };
+ };
+ "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" = {
+ 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 = "hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==";
+ };
+ };
+ "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 = "BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==";
+ };
+ };
+ "sha.js-2.4.11" = {
+ name = "sha.js";
+ packageName = "sha.js";
+ version = "2.4.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz";
+ sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==";
+ };
+ };
+ "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.2" = {
+ name = "shelljs";
+ packageName = "shelljs";
+ version = "0.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.2.tgz";
+ sha512 = "pRXeNrCA2Wd9itwhvLp5LZQvPJ0wU6bcjaTMywHHGX5XWhVN2nzSu7WV0q+oUY7mGK3mgSkDDzP3MgjqdyIgbQ==";
+ };
+ };
+ "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 = "vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==";
+ };
+ };
+ "shortid-2.2.13" = {
+ name = "shortid";
+ packageName = "shortid";
+ version = "2.2.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shortid/-/shortid-2.2.13.tgz";
+ sha512 = "dBuNnQGKrJNfjunmXI2X7bl1gnMO4PwbNxrTzO1JvilODmL7WyyCtA+DYxe9XunLXmxmgzFIvKPQ6XRAQrr46Q==";
+ };
+ };
+ "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.3.1" = {
+ name = "sign-addon";
+ packageName = "sign-addon";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.3.1.tgz";
+ sha512 = "feaoG7+8IXr9SymOEd8VTZCSlVZArWcBDZ33IIdfXlU5NWWzXdCxCjPDqAkLQplFa7RRZr1S4lSmgMPn80Ze1A==";
+ };
+ };
+ "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-errors-1.0.1" = {
+ name = "simple-errors";
+ packageName = "simple-errors";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-errors/-/simple-errors-1.0.1.tgz";
+ sha1 = "b0bbecac1f1082f13b3962894b4a9e88f3a0c9ef";
+ };
+ };
+ "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.8.1" = {
+ name = "simple-get";
+ packageName = "simple-get";
+ version = "2.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz";
+ sha512 = "lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw==";
+ };
+ };
+ "simple-get-3.0.3" = {
+ name = "simple-get";
+ packageName = "simple-get";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-get/-/simple-get-3.0.3.tgz";
+ sha512 = "Wvre/Jq5vgoz31Z9stYWPLn0PqRqmBDpFSdypAnHu5AvRVCYPRYGnvryNLiXu8GOBNDH82J2FRHUGMjjHUpXFw==";
+ };
+ };
+ "simple-git-1.96.0" = {
+ name = "simple-git";
+ packageName = "simple-git";
+ version = "1.96.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-git/-/simple-git-1.96.0.tgz";
+ sha512 = "+gXuzJFpGtK9zCa7rPMMNs8AF2weWMsB0Vlyym5VkFX2VGQ3VBzKhnxPN//PWrGuPFGQ/u0F1yL6rZoPhj/KPQ==";
+ };
+ };
+ "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-peer-9.1.2" = {
+ name = "simple-peer";
+ packageName = "simple-peer";
+ version = "9.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.1.2.tgz";
+ sha512 = "MUWWno5o5cvISKOH4pYQ18PQJLpDaNWoKUbrPPKuspCLCkkh+zhtuQyTE8h2U2Ags+/OUN5wnUe92+9B8/Sm2Q==";
+ };
+ };
+ "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.1" = {
+ name = "simple-sha1";
+ packageName = "simple-sha1";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-sha1/-/simple-sha1-2.1.1.tgz";
+ sha512 = "pFMPd+I/lQkpf4wFUeS/sED5IqdIG1lUlrQviBMV4u4mz8BRAcB5fvUx5Ckfg3kBigEglAjHg7E9k/yy2KlCqA==";
+ };
+ };
+ "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";
+ };
+ };
+ "simple-websocket-7.2.0" = {
+ name = "simple-websocket";
+ packageName = "simple-websocket";
+ version = "7.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-websocket/-/simple-websocket-7.2.0.tgz";
+ sha512 = "wdxFg1fHw1yqFKWDcw+yNb4VIYqtl+vknZMlpLhvZSlR6l7/iVuwozqo+Qtl73mB1IH5QnXzonD1S+hAaLNTvQ==";
+ };
+ };
+ "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.1" = {
+ name = "siphash24";
+ packageName = "siphash24";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.1.tgz";
+ sha512 = "dKKwjIoTOa587TARYLlBRXq2lkbu5Iz35XrEVWpelhBP1m8r2BGOy1QlaZe84GTFHG/BTucEUd2btnNc8QzIVA==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "slash-2.0.0" = {
+ name = "slash";
+ packageName = "slash";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz";
+ sha512 = "ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==";
+ };
+ };
+ "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 = "POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==";
+ };
+ };
+ "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";
+ };
+ };
+ "smart-buffer-4.0.1" = {
+ name = "smart-buffer";
+ packageName = "smart-buffer";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.0.1.tgz";
+ sha512 = "RFqinRVJVcCAL9Uh1oVqE6FZkqsyLiVOYEZ20TqIOjuX7iFVJ+zsbs4RIghnw/pTs7mZvt8ZHhvm1ZUrR4fykg==";
+ };
+ };
+ "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";
+ };
+ };
+ "smartdc-auth-2.5.7" = {
+ name = "smartdc-auth";
+ packageName = "smartdc-auth";
+ version = "2.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/smartdc-auth/-/smartdc-auth-2.5.7.tgz";
+ sha1 = "42d45710e791deb92df91326c8eed1bd5a842cb6";
+ };
+ };
+ "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";
+ };
+ };
+ "snabbdom-0.7.0" = {
+ name = "snabbdom";
+ packageName = "snabbdom";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snabbdom/-/snabbdom-0.7.0.tgz";
+ sha512 = "LCg6lH9p2OD5n52SI4LlpYmDW2bscxsyN7rhnGJB/R3LQy/FdJfqNBM5aVST+zOfM4OdKFl8pxVUhjGsPtQA1w==";
+ };
+ };
+ "snabbdom-selector-1.2.1" = {
+ name = "snabbdom-selector";
+ packageName = "snabbdom-selector";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snabbdom-selector/-/snabbdom-selector-1.2.1.tgz";
+ sha512 = "g0w2Ft4RJl+F/1/tQvA4BUsH09s+RNd0RRa+So24Inv5yzce5xUnPzxlEWNUBG5TwQjfKDZSFWrf2rXz+e1Q2g==";
+ };
+ };
+ "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";
+ };
+ };
+ "snapdragon-0.8.2" = {
+ name = "snapdragon";
+ packageName = "snapdragon";
+ version = "0.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz";
+ sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==";
+ };
+ };
+ "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 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==";
+ };
+ };
+ "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 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==";
+ };
+ };
+ "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 = "FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==";
+ };
+ };
+ "snyk-1.94.0" = {
+ name = "snyk";
+ packageName = "snyk";
+ version = "1.94.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.94.0.tgz";
+ sha512 = "65dc0lnzmXc4kAwMOCPu/2I6nY0Sx0FcmO5NIzhnxvsSy6K508RMh1SQcF40V7eUFhOD3uQ/HTHTN0JW/4zYBA==";
+ };
+ };
+ "snyk-config-2.2.0" = {
+ name = "snyk-config";
+ packageName = "snyk-config";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-config/-/snyk-config-2.2.0.tgz";
+ sha512 = "mq0wbP/AgjcmRq5i5jg2akVVV3iSYUPTowZwKn7DChRLDL8ySOzWAwan+ImXiyNbrWo87FNI/15O6MpOnTxOIg==";
+ };
+ };
+ "snyk-docker-plugin-1.10.4" = {
+ name = "snyk-docker-plugin";
+ packageName = "snyk-docker-plugin";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-1.10.4.tgz";
+ sha512 = "79yWMaISNbtfTY9UtTF7K24cE4k1tRsxDOZo4/a8WlyO/dmmvbdcyz3jtHiFnS8NZqOkXf7ngqae1hmcR7CdPA==";
+ };
+ };
+ "snyk-go-plugin-1.5.2" = {
+ name = "snyk-go-plugin";
+ packageName = "snyk-go-plugin";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.5.2.tgz";
+ sha512 = "XWajcSh6Ld+I+WdcyU3DGDuE2ydThQd8ORkESy0nQ2LwekygLYVYN66OBy0uxpqYfd4qoqeg+J8lb4oGzCmyGA==";
+ };
+ };
+ "snyk-gradle-plugin-1.3.0" = {
+ name = "snyk-gradle-plugin";
+ packageName = "snyk-gradle-plugin";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-1.3.0.tgz";
+ sha512 = "rKZcPwbDM9zk3pFcO0w77MIKOZTkk5ZBVBkBlTlUiFg+eNOKqPTmw2hBGF5NB4ASQmMnx3uB1C8+hrQ405CthA==";
+ };
+ };
+ "snyk-module-1.8.2" = {
+ name = "snyk-module";
+ packageName = "snyk-module";
+ version = "1.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-module/-/snyk-module-1.8.2.tgz";
+ sha512 = "XqhdbZ/CUuJ5gSaYdYfapLqx9qm2Mp6nyRMBCLXe9tJSiohOJsc9fQuUDbdOiRCqpA4BD6WLl+qlwOJmJoszBg==";
+ };
+ };
+ "snyk-mvn-plugin-1.2.0" = {
+ name = "snyk-mvn-plugin";
+ packageName = "snyk-mvn-plugin";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-1.2.0.tgz";
+ sha512 = "ieTWhn1MB88gEQ6nUtGCeUKQ6Xoxm+u+QmD9u3zfP1QS5ep9fWt3YYDUQjgUiDTJJy7QyVQdZ/fsz3RECnOA7w==";
+ };
+ };
+ "snyk-nodejs-lockfile-parser-1.4.1" = {
+ name = "snyk-nodejs-lockfile-parser";
+ packageName = "snyk-nodejs-lockfile-parser";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.4.1.tgz";
+ sha512 = "xjkf1BHk7HQlp4ABIWPtEvAOAvWhwMtJ7ElQVUvKBHPVHjMEz3mucBRfrtpuyDBJ3DaBlN8Wiw+kcEinX6f09w==";
+ };
+ };
+ "snyk-nuget-plugin-1.6.5" = {
+ name = "snyk-nuget-plugin";
+ packageName = "snyk-nuget-plugin";
+ version = "1.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.6.5.tgz";
+ sha512 = "3qIndzkxCxiaGvAwMkqChbChGdwhNePPyfi0WjhC/nJGwecqU3Fb/NeTW7lgyT+xoq/dFnzW0DgBJ4+AyNA2gA==";
+ };
+ };
+ "snyk-php-plugin-1.5.1" = {
+ name = "snyk-php-plugin";
+ packageName = "snyk-php-plugin";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-php-plugin/-/snyk-php-plugin-1.5.1.tgz";
+ sha512 = "g5QSHBsRJ2O4cNxKC4zlWwnQYiSgQ77Y6QgGmo3ihPX3VLZrc1amaZIpPsNe1jwXirnGj2rvR5Xw+jDjbzvHFw==";
+ };
+ };
+ "snyk-policy-1.12.0" = {
+ name = "snyk-policy";
+ packageName = "snyk-policy";
+ version = "1.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-policy/-/snyk-policy-1.12.0.tgz";
+ sha512 = "CEioNnDzccHyid7UIVl3bJ1dnG4co4ofI+KxuC1mo0IUXy64gxnBTeVoZF5gVLWbAyxGxSeW8f0+8GmWMHVb7w==";
+ };
+ };
+ "snyk-python-plugin-1.8.1" = {
+ name = "snyk-python-plugin";
+ packageName = "snyk-python-plugin";
+ version = "1.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.8.1.tgz";
+ sha512 = "DsUBkQZiPlXGkwzhxxEo2Tvfq6XhygWQThWM0yRBythi9M5n8UimZEwdkBHPj7xKC1clsB8boM3+sT/E1x6XGA==";
+ };
+ };
+ "snyk-resolve-1.0.1" = {
+ name = "snyk-resolve";
+ packageName = "snyk-resolve";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-resolve/-/snyk-resolve-1.0.1.tgz";
+ sha512 = "7+i+LLhtBo1Pkth01xv+RYJU8a67zmJ8WFFPvSxyCjdlKIcsps4hPQFebhz+0gC5rMemlaeIV6cqwqUf9PEDpw==";
+ };
+ };
+ "snyk-resolve-deps-3.1.0" = {
+ name = "snyk-resolve-deps";
+ packageName = "snyk-resolve-deps";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-resolve-deps/-/snyk-resolve-deps-3.1.0.tgz";
+ sha512 = "YVAelR+dTpqLgfk6lf6WgOlw+MGmGI0r3/Dny8tUbJJ9uVTHTRAOdZCbUyTFqJG7oEmEZxUwmfjqgAuniYwx8Q==";
+ };
+ };
+ "snyk-sbt-plugin-1.3.1" = {
+ name = "snyk-sbt-plugin";
+ packageName = "snyk-sbt-plugin";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-1.3.1.tgz";
+ sha512 = "un9ddM4M+7Ye/zhkh5Cm6EYMXU0Z/aM8wuYZvu4O+wd8sonoUClwckzJlsaI2BA7xvfDL9qQUaImtpgy94v5JQ==";
+ };
+ };
+ "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.3.1" = {
+ name = "snyk-try-require";
+ packageName = "snyk-try-require";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-1.3.1.tgz";
+ sha1 = "6e026f92e64af7fcccea1ee53d524841e418a212";
+ };
+ };
+ "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.1.1" = {
+ name = "socket.io";
+ packageName = "socket.io";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz";
+ sha512 = "rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==";
+ };
+ };
+ "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.1.1" = {
+ name = "socket.io-client";
+ packageName = "socket.io-client";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz";
+ sha512 = "jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ==";
+ };
+ };
+ "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.2.0" = {
+ name = "socket.io-parser";
+ packageName = "socket.io-parser";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz";
+ sha512 = "FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==";
+ };
+ };
+ "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-2.2.1" = {
+ name = "socks";
+ packageName = "socks";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socks/-/socks-2.2.1.tgz";
+ sha512 = "0GabKw7n9mI46vcNrVfs0o6XzWzjVa3h6GaSo2UPxtWAROXUWavfJWh1M4PR5tnE0dcnQXZIDFP4yrAysLze/w==";
+ };
+ };
+ "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 = "ZwEDymm204mTzvdqyUqOdovVr2YRd2NYskrYrF2LXyZ9qDiMAoFESGK8CRphiO7rtbo2Y757k2Nia3x2hGtalA==";
+ };
+ };
+ "socks-proxy-agent-4.0.1" = {
+ name = "socks-proxy-agent";
+ packageName = "socks-proxy-agent";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-4.0.1.tgz";
+ sha512 = "Kezx6/VBguXOsEe5oU3lXYyKMi4+gva72TwJ7pQY5JfqUx2nMk7NXA6z/mpNqIlfQjWYVfeuNvQjexiTaTn6Nw==";
+ };
+ };
+ "sodium-javascript-0.5.5" = {
+ name = "sodium-javascript";
+ packageName = "sodium-javascript";
+ version = "0.5.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.5.5.tgz";
+ sha512 = "UMmCHovws/sxIBZsIRhIl8uRPou/RFDD0vVop81T1hG106NLLgqajKKuHAOtAP6hflnZ0UrVA2VFwddTd/NQyA==";
+ };
+ };
+ "sodium-native-2.2.1" = {
+ name = "sodium-native";
+ packageName = "sodium-native";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.2.1.tgz";
+ sha512 = "3CfftYV2ATXQFMIkLOvcNUk/Ma+lran0855j5Z/HEjUkSTzjLZi16CK362udOoNVrwn/TwGV8bKEt5OylsFrQA==";
+ };
+ };
+ "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 = "csdVyakzHJRyCevY4aZC2Eacda8paf+4nmRGF2N7KxCLKY2Ajn72JsExaQlJQ2BiXJncp44p3T+b80cU+2TTsg==";
+ };
+ };
+ "sonic-boom-0.5.0" = {
+ name = "sonic-boom";
+ packageName = "sonic-boom";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-0.5.0.tgz";
+ sha512 = "IqUrLNxgsUQGVyMLW8w8vELMa1BZIQ/uBjBuxLK0jg7HqWwedCgmBLqvgMFGihhXCoQ8w5m2vcnMs47C4KYxuQ==";
+ };
+ };
+ "sorcery-0.10.0" = {
+ name = "sorcery";
+ packageName = "sorcery";
+ version = "0.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorcery/-/sorcery-0.10.0.tgz";
+ sha1 = "8ae90ad7d7cb05fc59f1ab0c637845d5c15a52b7";
+ };
+ };
+ "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-3.0.0" = {
+ name = "sort-on";
+ packageName = "sort-on";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sort-on/-/sort-on-3.0.0.tgz";
+ sha512 = "e2RHeY1iM6dT9od3RoqeJSyz3O7naNFsGy34+EFEcwghjAncuOXC2/Xwq87S4FbypqLVp6PcizYEsGEGsGIDXA==";
+ };
+ };
+ "sorted-array-functions-1.2.0" = {
+ name = "sorted-array-functions";
+ packageName = "sorted-array-functions";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.2.0.tgz";
+ sha512 = "sWpjPhIZJtqO77GN+LD8dDsDKcWZ9GCOJNqKzi1tvtjGIzwfoyuRH8S0psunmc6Z5P+qfDqztSbwYR5X/e1UTg==";
+ };
+ };
+ "sorted-immutable-list-1.1.0" = {
+ name = "sorted-immutable-list";
+ packageName = "sorted-immutable-list";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-immutable-list/-/sorted-immutable-list-1.1.0.tgz";
+ sha1 = "41a62c024bd755c4c57306e20eec92620dae5d97";
+ };
+ };
+ "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 = "I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==";
+ };
+ };
+ "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.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 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==";
+ };
+ };
+ "source-map-resolve-0.5.2" = {
+ name = "source-map-resolve";
+ packageName = "source-map-resolve";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz";
+ sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==";
+ };
+ };
+ "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 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==";
+ };
+ };
+ "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.3" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.3.tgz";
+ sha512 = "eKkTgWYeBOQqFGXRfKabMFdnWepo51vWqEdoeikaEPFiJC7MCU5j2h4+6Q8npkZTeLGbSyecZvRxiSoWl3rh+w==";
+ };
+ };
+ "source-map-support-0.5.6" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.5.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz";
+ sha512 = "N4KXEz7jcKqPf2b2vZF11lQIz9W5ZMuUcIOGj243lduidkf2fjkVKJS9vNxVWn3u/uxX38AcE8U9nnH9FPcq+g==";
+ };
+ };
+ "source-map-support-0.5.9" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.5.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.9.tgz";
+ sha512 = "gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA==";
+ };
+ };
+ "source-map-url-0.4.0" = {
+ name = "source-map-url";
+ packageName = "source-map-url";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
+ sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
+ };
+ };
+ "sourcemap-codec-1.4.1" = {
+ name = "sourcemap-codec";
+ packageName = "sourcemap-codec";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.1.tgz";
+ sha512 = "hX1eNBNuilj8yfFnECh0DzLgwKpBLMIvmhgEhixXNui8lMLBInTI8Kyxt++RwJnMNu7cAUo635L2+N1TxMJCzA==";
+ };
+ };
+ "spark-md5-1.0.1" = {
+ name = "spark-md5";
+ packageName = "spark-md5";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spark-md5/-/spark-md5-1.0.1.tgz";
+ sha1 = "c4b9a8d41cf7b0845423a821824f8dffa0f51b7c";
+ };
+ };
+ "sparkles-1.0.1" = {
+ name = "sparkles";
+ packageName = "sparkles";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz";
+ sha512 = "dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==";
+ };
+ };
+ "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-3.0.0" = {
+ name = "spdx-correct";
+ packageName = "spdx-correct";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz";
+ sha512 = "N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==";
+ };
+ };
+ "spdx-exceptions-2.1.0" = {
+ name = "spdx-exceptions";
+ packageName = "spdx-exceptions";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz";
+ sha512 = "4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg==";
+ };
+ };
+ "spdx-expression-parse-3.0.0" = {
+ name = "spdx-expression-parse";
+ packageName = "spdx-expression-parse";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz";
+ sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==";
+ };
+ };
+ "spdx-license-ids-3.0.0" = {
+ name = "spdx-license-ids";
+ packageName = "spdx-license-ids";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz";
+ sha512 = "2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA==";
+ };
+ };
+ "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.1.0" = {
+ name = "speedometer";
+ packageName = "speedometer";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/speedometer/-/speedometer-1.1.0.tgz";
+ sha512 = "z/wAiTESw2XVPssY2XRcme4niTc4S5FkkJ4gknudtVoc33Zil8TdTxHy5torRcgqMqksJV2Yz8HQcvtbsnw0mQ==";
+ };
+ };
+ "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 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==";
+ };
+ };
+ "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 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==";
+ };
+ };
+ "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 = "RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==";
+ };
+ };
+ "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";
+ };
+ };
+ "sprintf-js-1.1.1" = {
+ name = "sprintf-js";
+ packageName = "sprintf-js";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz";
+ sha1 = "36be78320afe5801f6cea3ee78b6e5aab940ea0c";
+ };
+ };
+ "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.14.1" = {
+ name = "sshpk";
+ packageName = "sshpk";
+ version = "1.14.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz";
+ sha1 = "130f5975eddad963f1d56f92b9ac6c51fa9f83eb";
+ };
+ };
+ "sshpk-1.14.2" = {
+ name = "sshpk";
+ packageName = "sshpk";
+ version = "1.14.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz";
+ sha1 = "c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98";
+ };
+ };
+ "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";
+ };
+ };
+ "sshpk-agent-1.7.0" = {
+ name = "sshpk-agent";
+ packageName = "sshpk-agent";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sshpk-agent/-/sshpk-agent-1.7.0.tgz";
+ sha512 = "zR4GV5XYSypCusFzfTeTSXVqrFJJsK79Ec2KXZdo/x7qxBGSJPPZFtqMcqpXPaJ9VCK7Zn/vI+/kMrqeQILv4w==";
+ };
+ };
+ "ssri-5.3.0" = {
+ name = "ssri";
+ packageName = "ssri";
+ version = "5.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz";
+ sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==";
+ };
+ };
+ "ssri-6.0.1" = {
+ name = "ssri";
+ packageName = "ssri";
+ version = "6.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz";
+ sha512 = "3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==";
+ };
+ };
+ "stable-0.1.8" = {
+ name = "stable";
+ packageName = "stable";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz";
+ sha512 = "ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==";
+ };
+ };
+ "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";
+ };
+ };
+ "stat-mode-0.2.2" = {
+ name = "stat-mode";
+ packageName = "stat-mode";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stat-mode/-/stat-mode-0.2.2.tgz";
+ sha1 = "e6c80b623123d7d80cf132ce538f346289072502";
+ };
+ };
+ "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";
+ };
+ };
+ "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 = "zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==";
+ };
+ };
+ "statuses-1.5.0" = {
+ name = "statuses";
+ packageName = "statuses";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz";
+ sha1 = "161c7dac177659fd9811f43771fa99381478628c";
+ };
+ };
+ "stealthy-require-1.1.1" = {
+ name = "stealthy-require";
+ packageName = "stealthy-require";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz";
+ sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b";
+ };
+ };
+ "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.1" = {
+ name = "stream-consume";
+ packageName = "stream-consume";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz";
+ sha512 = "tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg==";
+ };
+ };
+ "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.3" = {
+ name = "stream-each";
+ packageName = "stream-each";
+ version = "1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz";
+ sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==";
+ };
+ };
+ "stream-http-2.8.3" = {
+ name = "stream-http";
+ packageName = "stream-http";
+ version = "2.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz";
+ sha512 = "+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==";
+ };
+ };
+ "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-blob-1.0.1" = {
+ name = "stream-to-blob";
+ packageName = "stream-to-blob";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-to-blob/-/stream-to-blob-1.0.1.tgz";
+ sha512 = "aRy4neA4rf+qMtLT9fCRLPGWdrsIKtCx4kUdNTIPgPQ2hkHkdxbViVAvABMx9oRM6yCWfngHx6pwXfbYkVuPuw==";
+ };
+ };
+ "stream-to-blob-url-2.1.1" = {
+ name = "stream-to-blob-url";
+ packageName = "stream-to-blob-url";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-to-blob-url/-/stream-to-blob-url-2.1.1.tgz";
+ sha512 = "DKJPEmCmIZoBfGVle9IhSfERiWaN5cuOtmfPxP2dZbLDRZxkBWZ4QbYxEJOSALk1Kf+WjBgedAMO6qkkf7Lmrg==";
+ };
+ };
+ "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";
+ };
+ };
+ "stream-with-known-length-to-buffer-1.0.2" = {
+ name = "stream-with-known-length-to-buffer";
+ packageName = "stream-with-known-length-to-buffer";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-with-known-length-to-buffer/-/stream-with-known-length-to-buffer-1.0.2.tgz";
+ sha512 = "UxSISjxmguvfYzZdq6d4XAjc3gAocqTIOS1CjgwkDkkGT/LMTsIYiV8agIw42IHFFHf8k4lPOoroCCf4W9oqzg==";
+ };
+ };
+ "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 = "WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==";
+ };
+ };
+ "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-3.3.3" = {
+ name = "string";
+ packageName = "string";
+ version = "3.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string/-/string-3.3.3.tgz";
+ sha1 = "5ea211cd92d228e184294990a6cc97b366a77cb0";
+ };
+ };
+ "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-length-2.0.0" = {
+ name = "string-length";
+ packageName = "string-length";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz";
+ sha1 = "d40dbb686a3ace960c1cffca562bf2c45f8363ed";
+ };
+ };
+ "string-similarity-1.2.1" = {
+ name = "string-similarity";
+ packageName = "string-similarity";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-similarity/-/string-similarity-1.2.1.tgz";
+ sha512 = "XqC6lRZF3UIYdxBRHjIfJwU2nYzPm+E8udKFHjIplnRQflkXP1A1Ie3HoEv04W/zY1wGnV6TQpklM2WwZO3gIA==";
+ };
+ };
+ "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 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==";
+ };
+ };
+ "string.prototype.codepointat-0.2.1" = {
+ name = "string.prototype.codepointat";
+ packageName = "string.prototype.codepointat";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz";
+ sha512 = "2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==";
+ };
+ };
+ "string.prototype.matchall-2.0.0" = {
+ name = "string.prototype.matchall";
+ packageName = "string.prototype.matchall";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-2.0.0.tgz";
+ sha512 = "WoZ+B2ypng1dp4iFLF2kmZlwwlE19gmjgKuhL1FJfDgCREWb3ye3SDVHSzLH6bxfnvYmkCxbzkmWcQZHA4P//Q==";
+ };
+ };
+ "string.prototype.padstart-3.0.0" = {
+ name = "string.prototype.padstart";
+ packageName = "string.prototype.padstart";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string.prototype.padstart/-/string.prototype.padstart-3.0.0.tgz";
+ sha1 = "5bcfad39f4649bb2d031292e19bcf0b510d4b242";
+ };
+ };
+ "string2compact-1.3.0" = {
+ name = "string2compact";
+ packageName = "string2compact";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string2compact/-/string2compact-1.3.0.tgz";
+ sha512 = "004ulKKANDuQilQsNxy2lisrpMG0qUJxBU+2YCEF7KziRyNR0Nredm2qk0f1V82nva59H3y9GWeHXE63HzGRFw==";
+ };
+ };
+ "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 = "4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==";
+ };
+ };
+ "string_decoder-1.1.1" = {
+ name = "string_decoder";
+ packageName = "string_decoder";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
+ sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
+ };
+ };
+ "stringstream-0.0.6" = {
+ name = "stringstream";
+ packageName = "stringstream";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz";
+ sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==";
+ };
+ };
+ "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-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-bom-string-1.0.0" = {
+ name = "strip-bom-string";
+ packageName = "strip-bom-string";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz";
+ sha1 = "e5211e9224369fbb81d633a2f00044dc8cedad92";
+ };
+ };
+ "strip-dirs-2.1.0" = {
+ name = "strip-dirs";
+ packageName = "strip-dirs";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz";
+ sha512 = "JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==";
+ };
+ };
+ "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-indent-2.0.0" = {
+ name = "strip-indent";
+ packageName = "strip-indent";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz";
+ sha1 = "5ef8db295d01e6ed6cbf7aab96998d7822527b68";
+ };
+ };
+ "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";
+ };
+ };
+ "strip-outer-1.0.1" = {
+ name = "strip-outer";
+ packageName = "strip-outer";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz";
+ sha512 = "k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==";
+ };
+ };
+ "strong-data-uri-1.0.6" = {
+ name = "strong-data-uri";
+ packageName = "strong-data-uri";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.6.tgz";
+ sha512 = "zhzBZev0uhT2IrFUerenXhfaE0vFUYwAZsnG0gIKGpfM/Gi6jOUQ3cmcvyTsXeDLIPiTubHESeO7EbD6FoPmzw==";
+ };
+ };
+ "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";
+ };
+ };
+ "strsplit-1.0.0" = {
+ name = "strsplit";
+ packageName = "strsplit";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strsplit/-/strsplit-1.0.0.tgz";
+ sha1 = "0fdedc68e91addcfcb2e6be9c262581a6e8c28aa";
+ };
+ };
+ "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";
+ };
+ };
+ "subscriptions-transport-ws-0.9.14" = {
+ name = "subscriptions-transport-ws";
+ packageName = "subscriptions-transport-ws";
+ version = "0.9.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.14.tgz";
+ sha512 = "n1+mgupVdJn1MIls1ZhSJurJjc+islp7Tv9EIaEJ3HAd9DaINneKq0KRqOYNOrvUI7orVWGomEnlIxoudjfbeA==";
+ };
+ };
+ "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-1.8.5" = {
+ name = "superagent";
+ packageName = "superagent";
+ version = "1.8.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/superagent/-/superagent-1.8.5.tgz";
+ sha1 = "1c0ddc3af30e80eb84ebc05cb2122da8fe940b55";
+ };
+ };
+ "superagent-3.8.3" = {
+ name = "superagent";
+ packageName = "superagent";
+ version = "3.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz";
+ sha512 = "GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==";
+ };
+ };
+ "superagent-proxy-1.0.3" = {
+ name = "superagent-proxy";
+ packageName = "superagent-proxy";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/superagent-proxy/-/superagent-proxy-1.0.3.tgz";
+ sha512 = "79Ujg1lRL2ICfuHUdX+H2MjIw73kB7bXsIkxLwHURz3j0XUmEEEoJ+u/wq+mKwna21Uejsm2cGR3OESA00TIjA==";
+ };
+ };
+ "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.2.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-1.2.0.tgz";
+ sha1 = "ff1ed1e61169d06b3cf2d588e188b18d8847e17e";
+ };
+ };
+ "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 = "Ts0Mu/A1S1aZxEJNG88I4Oc9rcZSBFNac5e27yh4j2mqbhZSSzR1Ah79EYwSn9Zuh7lrlGD2cVGzw1RKGzyLSg==";
+ };
+ };
+ "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 = "Ry0AwkoKjDpVKK4sV4h6o3UJmNRbjYm2uXhwfj3J56lMVdvnUNqzQVRztOOMGQ++w1K/TjNDFvpJk0F/LoeBCQ==";
+ };
+ };
+ "supports-color-5.4.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "5.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz";
+ sha512 = "zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==";
+ };
+ };
+ "supports-color-5.5.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "5.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz";
+ sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==";
+ };
+ };
+ "swagger-converter-0.1.7" = {
+ name = "swagger-converter";
+ packageName = "swagger-converter";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/swagger-converter/-/swagger-converter-0.1.7.tgz";
+ sha1 = "a097519c6f1ee4dd67e308d9b53ddc9c2b257f97";
+ };
+ };
+ "swagger-converter-0.2.0" = {
+ name = "swagger-converter";
+ packageName = "swagger-converter";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/swagger-converter/-/swagger-converter-0.2.0.tgz";
+ sha1 = "354023cfc5ed3d4ef6895c310189067bbe66d616";
+ };
+ };
+ "swagger-editor-2.10.5" = {
+ name = "swagger-editor";
+ packageName = "swagger-editor";
+ version = "2.10.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/swagger-editor/-/swagger-editor-2.10.5.tgz";
+ sha1 = "a4316ccb0d40a77d30dadf91f0f4db7e475f948a";
+ };
+ };
+ "swagger-test-templates-1.5.0" = {
+ name = "swagger-test-templates";
+ packageName = "swagger-test-templates";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/swagger-test-templates/-/swagger-test-templates-1.5.0.tgz";
+ sha512 = "1IBHCamO7uJuFo11a/aaA0ZPWJkAfiuvadmLO9TwXiY2Op+SigTL9er/GabuhK4gXMNJ2MaoPQ4F90HQlNFYJQ==";
+ };
+ };
+ "swagger-tools-0.9.16" = {
+ name = "swagger-tools";
+ packageName = "swagger-tools";
+ version = "0.9.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/swagger-tools/-/swagger-tools-0.9.16.tgz";
+ sha1 = "e39fae3d581d713682491e1926cd87bf2c209bfb";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "symbol-observable-1.2.0" = {
+ name = "symbol-observable";
+ packageName = "symbol-observable";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz";
+ sha512 = "e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==";
+ };
+ };
+ "symbol-tree-3.2.2" = {
+ name = "symbol-tree";
+ packageName = "symbol-tree";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz";
+ sha1 = "ae27db38f660a7ae2e1c3b7d1bc290819b8519e6";
+ };
+ };
+ "sync-exec-0.6.2" = {
+ name = "sync-exec";
+ packageName = "sync-exec";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sync-exec/-/sync-exec-0.6.2.tgz";
+ sha1 = "717d22cc53f0ce1def5594362f3a89a2ebb91105";
+ };
+ };
+ "sync-request-3.0.0" = {
+ name = "sync-request";
+ packageName = "sync-request";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sync-request/-/sync-request-3.0.0.tgz";
+ sha1 = "8030046939b00096e625c0dd6b3905bc7b85709c";
+ };
+ };
+ "syntax-error-1.4.0" = {
+ name = "syntax-error";
+ packageName = "syntax-error";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz";
+ sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
+ };
+ };
+ "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.3" = {
+ name = "table";
+ packageName = "table";
+ version = "4.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/table/-/table-4.0.3.tgz";
+ sha512 = "S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==";
+ };
+ };
+ "tabtab-1.3.2" = {
+ name = "tabtab";
+ packageName = "tabtab";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tabtab/-/tabtab-1.3.2.tgz";
+ 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";
+ };
+ };
+ "tabula-1.10.0" = {
+ name = "tabula";
+ packageName = "tabula";
+ version = "1.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tabula/-/tabula-1.10.0.tgz";
+ sha1 = "2ed67caf8cad091de80e43622850d899713b2f47";
+ };
+ };
+ "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";
+ };
+ };
+ "tapable-1.0.0" = {
+ name = "tapable";
+ packageName = "tapable";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tapable/-/tapable-1.0.0.tgz";
+ sha512 = "dQRhbNQkRnaqauC7WqSJ21EEksgT0fYZX2lqXzGkpo8JNig9zGZTYoMGvyI2nWmXlE2VSVXVDu7wLVGu/mQEsg==";
+ };
+ };
+ "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 = "pQNFsg+Wb6VXsrIPUnuQwrHR4wD5ASBR0jRyiT4/AALFA2Nl+CjhkDX5fTmIwCuULRtyQR3Dae2BBnP2EFHscw==";
+ };
+ };
+ "tar-4.4.6" = {
+ name = "tar";
+ packageName = "tar";
+ version = "4.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-4.4.6.tgz";
+ sha512 = "tMkTnh9EdzxyfW+6GK6fCahagXsnYk6kE6S9Gr9pjVdys769+laCTbodXDhPAjzVtEBazRgP0gYqOjnk9dQzLg==";
+ };
+ };
+ "tar-fs-1.16.3" = {
+ name = "tar-fs";
+ packageName = "tar-fs";
+ version = "1.16.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.3.tgz";
+ sha512 = "NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw==";
+ };
+ };
+ "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 = "PPRybI9+jM5tjtCbN2cxmmRU7YmqT3Zv/UDy48tAh2XRkLa9bAORtSWLkVc13+GJF+cdTh1yEnHEk3cpTaL5Kg==";
+ };
+ };
+ "tar-stream-1.6.1" = {
+ name = "tar-stream";
+ packageName = "tar-stream";
+ version = "1.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.1.tgz";
+ sha512 = "IFLM5wp3QrJODQFPm6/to3LJZrONdBY/otxcvDIQzu217zKye6yVR3hhi9lAjrC2Z+m/j5oDxMPb1qcd8cIvpA==";
+ };
+ };
+ "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-2.0.0" = {
+ name = "tempfile";
+ packageName = "tempfile";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz";
+ sha1 = "6b0446856a9b1114d1856ffcbe509cccb0977265";
+ };
+ };
+ "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";
+ };
+ };
+ "terminate-2.1.0" = {
+ name = "terminate";
+ packageName = "terminate";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/terminate/-/terminate-2.1.0.tgz";
+ sha1 = "a87ee424be01a1d28f2f301045043a5bcd679a05";
+ };
+ };
+ "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 = "AKXZeDq230UaSzaO5s3qQUZOaC7iKbzq0jOFL614R7d9R593HLqAOL0cYoqLdkNrjBSOdmoQI06yigq1TSBXAg==";
+ };
+ };
+ "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.2" = {
+ name = "thriftrw";
+ packageName = "thriftrw";
+ version = "3.11.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thriftrw/-/thriftrw-3.11.2.tgz";
+ sha512 = "3iCowlHgCEXjabCkurHTaECb2+U0V+NzqBmwfKHn8fzJJwXd/oDo7Wh6Vs0kaESN7YNJMRPC8ObL3AfQ1gxKmQ==";
+ };
+ };
+ "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 = "/EY8VpvlqJ+sFtLPeOgc8Pl7kQVOWv0woD87KTXVHPIAE842FGT+rokxIhe8xIUP1cfgrkt0as0vDLjDiMtr8w==";
+ };
+ };
+ "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.2.7" = {
+ name = "through";
+ packageName = "through";
+ version = "2.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through/-/through-2.2.7.tgz";
+ sha1 = "6e8e21200191d4eb6a99f6f010df46aa1c6eb2bd";
+ };
+ };
+ "through-2.3.4" = {
+ name = "through";
+ packageName = "through";
+ version = "2.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through/-/through-2.3.4.tgz";
+ sha1 = "495e40e8d8a8eaebc7c275ea88c2b8fc14c56455";
+ };
+ };
+ "through-2.3.8" = {
+ name = "through";
+ packageName = "through";
+ 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";
+ };
+ };
+ "thunkify-wrap-1.0.4" = {
+ name = "thunkify-wrap";
+ packageName = "thunkify-wrap";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thunkify-wrap/-/thunkify-wrap-1.0.4.tgz";
+ sha1 = "b52be548ddfefda20e00b58c6096762b43dd6880";
+ };
+ };
+ "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-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.10" = {
+ name = "timers-browserify";
+ packageName = "timers-browserify";
+ version = "2.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz";
+ sha512 = "YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==";
+ };
+ };
+ "timers-ext-0.1.5" = {
+ name = "timers-ext";
+ packageName = "timers-ext";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.5.tgz";
+ sha512 = "tsEStd7kmACHENhsUPaxb8Jf8/+GZZxyNFQbZD07HQOyooOa6At1rQqjffgvg7n+dxscQa9cjjMdWhJtsP2sxg==";
+ };
+ };
+ "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-emitter-2.0.2" = {
+ name = "tiny-emitter";
+ packageName = "tiny-emitter";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.2.tgz";
+ sha512 = "2NM0auVBGft5tee/OxP4PI3d8WItkDM+fPnaRAVo6xTDI2knbz9eC5ArWGqtGlYqiH3RU5yMpdyTTO7MguC4ow==";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "titleize-1.0.1" = {
+ name = "titleize";
+ packageName = "titleize";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/titleize/-/titleize-1.0.1.tgz";
+ sha512 = "rUwGDruKq1gX+FFHbTl5qjI7teVO7eOe+C8IcQ7QT+1BK3eEUXJqbZcBOeaRP4FwSC/C1A5jDoIVta0nIQ9yew==";
+ };
+ };
+ "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 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==";
+ };
+ };
+ "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.1" = {
+ name = "to-buffer";
+ packageName = "to-buffer";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz";
+ sha512 = "lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==";
+ };
+ };
+ "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-fast-properties-2.0.0" = {
+ name = "to-fast-properties";
+ packageName = "to-fast-properties";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz";
+ sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e";
+ };
+ };
+ "to-iso-string-0.0.2" = {
+ name = "to-iso-string";
+ packageName = "to-iso-string";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-iso-string/-/to-iso-string-0.0.2.tgz";
+ sha1 = "4dc19e664dfccbe25bd8db508b00c6da158255d1";
+ };
+ };
+ "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.2" = {
+ name = "to-regex";
+ packageName = "to-regex";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz";
+ sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==";
+ };
+ };
+ "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-through-2.0.0" = {
+ name = "to-through";
+ packageName = "to-through";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz";
+ sha1 = "fc92adaba072647bc0b67d6b03664aa195093af6";
+ };
+ };
+ "toidentifier-1.0.0" = {
+ name = "toidentifier";
+ packageName = "toidentifier";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz";
+ sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==";
+ };
+ };
+ "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 = "FOinMMjECHmDt6PZkSmcbM8ir41kGwYCbVW7NczWkWNNeuX9/mQHz31oNSJKZrkvgfas692ZoZ+G1jdM43qVGA==";
+ };
+ };
+ "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 = "O7L5hhSQHxuufWUdcTRPfuTh3phKfAZ/dqfxZFoxPCj2RYmpaSGLEIs016FCXItQwNr08yefUB5TSjzRYnajTA==";
+ };
+ };
+ "topo-3.0.0" = {
+ name = "topo";
+ packageName = "topo";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/topo/-/topo-3.0.0.tgz";
+ sha512 = "Tlu1fGlR90iCdIPURqPiufqAlCZYzLjHYVVbcFWDMcX7+tK8hdZWAfsMrD/pBul9jqHHwFjNdf1WaxA9vTRRhw==";
+ };
+ };
+ "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-discovery-9.0.2" = {
+ name = "torrent-discovery";
+ packageName = "torrent-discovery";
+ version = "9.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.0.2.tgz";
+ sha512 = "UpkOyi/QUXRAwts8vSsFu/jRQ1mwGkaqv2OxLTJGr4DJKCiXpLHZ1+A4rxabcOWinM9RiqmS5mAjDuFfPHiJvw==";
+ };
+ };
+ "torrent-piece-1.1.2" = {
+ name = "torrent-piece";
+ packageName = "torrent-piece";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-1.1.2.tgz";
+ sha512 = "ElXPyXKKG73o+uziHJ8qlYE9EuyDVxnK2zWL+pW/2bma7RsLpSwFFIJAb8Qui7/tel2hsHQW1z3zBnfQNREpWA==";
+ };
+ };
+ "torrent-piece-2.0.0" = {
+ name = "torrent-piece";
+ packageName = "torrent-piece";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-2.0.0.tgz";
+ sha512 = "H/Z/yCuvZJj1vl1IQHI8dvF2QrUuXRJoptT5DW5967/dsLpXlCg+uyhFR5lfNj5mNaYePUbKtnL+qKWZGXv4Nw==";
+ };
+ };
+ "torrent-stream-1.0.4" = {
+ name = "torrent-stream";
+ packageName = "torrent-stream";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-1.0.4.tgz";
+ sha512 = "IIAoMzagHFzjRQrFjwAZrE3yQYAPsmkbx0gYMCu/x5vf/Cj5yBjZqW1/98vOcaGGGelH/LhkmrJ56VYhiAKi5g==";
+ };
+ };
+ "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 = "WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==";
+ };
+ };
+ "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.4" = {
+ name = "tough-cookie";
+ packageName = "tough-cookie";
+ version = "2.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz";
+ sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==";
+ };
+ };
+ "tough-cookie-2.4.3" = {
+ name = "tough-cookie";
+ packageName = "tough-cookie";
+ version = "2.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz";
+ sha512 = "Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==";
+ };
+ };
+ "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 = "6Di70O1dWm45SJ5xrGzlE805z3gYn4ZUmNKomIrI4OojzRA4zyQzJ/4lAxQbJlq0ihG/mUE2xbP4q85Q68ig2g==";
+ };
+ };
+ "tr46-0.0.3" = {
+ name = "tr46";
+ packageName = "tr46";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz";
+ sha1 = "8184fd347dac9cdc185992f3a6622e14b9d9ab6a";
+ };
+ };
+ "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";
+ };
+ };
+ "traverse-chain-0.1.0" = {
+ name = "traverse-chain";
+ packageName = "traverse-chain";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/traverse-chain/-/traverse-chain-0.1.0.tgz";
+ sha1 = "61dbc2d53b69ff6091a12a168fd7d433107e40f1";
+ };
+ };
+ "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 = "DlX6dR0lOIRDFxI0mjL9IYg6OTncLm/Zt+JiBhE5OlFcAR8yc9S7FFXU9so0oda47frdM/JFsk7UjNt9vscKcg==";
+ };
+ };
+ "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-newlines-2.0.0" = {
+ name = "trim-newlines";
+ packageName = "trim-newlines";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz";
+ sha1 = "b403d0b91be50c331dfc4b82eeceb22c3de16d20";
+ };
+ };
+ "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-repeated-1.0.0" = {
+ name = "trim-repeated";
+ packageName = "trim-repeated";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz";
+ sha1 = "e3646a2ea4e891312bf7eace6cfb05380bc01c21";
+ };
+ };
+ "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";
+ };
+ };
+ "truncate-2.0.1" = {
+ name = "truncate";
+ packageName = "truncate";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/truncate/-/truncate-2.0.1.tgz";
+ sha1 = "dd1a6d15630515663d8475f6f24edf2f800ebb1b";
+ };
+ };
+ "truncate-utf8-bytes-1.0.2" = {
+ name = "truncate-utf8-bytes";
+ packageName = "truncate-utf8-bytes";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz";
+ sha1 = "405923909592d56f78a5818434b0b78489ca5f2b";
+ };
+ };
+ "tslib-1.9.3" = {
+ name = "tslib";
+ packageName = "tslib";
+ version = "1.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz";
+ sha512 = "4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==";
+ };
+ };
+ "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 = "+bGy9iDAqg3WSfc2ZrprToSPJhZjqy7vUv9wupQzsiv+BVPVx1T2a6G4T0290SpQj+56Toaw9BiLO5j5Bd7QzA==";
+ };
+ };
+ "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";
+ };
+ };
+ "tty-browserify-0.0.1" = {
+ name = "tty-browserify";
+ packageName = "tty-browserify";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz";
+ sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==";
+ };
+ };
+ "tunnel-0.0.2" = {
+ name = "tunnel";
+ packageName = "tunnel";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.2.tgz";
+ sha1 = "f23bcd8b7a7b8a864261b2084f66f93193396334";
+ };
+ };
+ "tunnel-0.0.5" = {
+ name = "tunnel";
+ packageName = "tunnel";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.5.tgz";
+ sha512 = "gj5sdqherx4VZKMcBA4vewER7zdK25Td+z1npBqpbDys4eJrLx+SlYjJvq1bDXs2irkuJM5pf8ktaEQVipkrbA==";
+ };
+ };
+ "tunnel-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-1.12.0" = {
+ name = "twig";
+ packageName = "twig";
+ version = "1.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/twig/-/twig-1.12.0.tgz";
+ sha512 = "zm5OQXb8bQDGQUPytFgjqMKHhqcz/s6pU6Nwsy+rKPhsoOOVwYeHnziiDGFzeTDiFd28M8EVkEO8we6ikcrGjQ==";
+ };
+ };
+ "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.8" = {
+ name = "type-detect";
+ packageName = "type-detect";
+ version = "4.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz";
+ sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==";
+ };
+ };
+ "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.16" = {
+ name = "type-is";
+ packageName = "type-is";
+ version = "1.6.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz";
+ sha512 = "HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==";
+ };
+ };
+ "typechecker-4.5.0" = {
+ name = "typechecker";
+ packageName = "typechecker";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typechecker/-/typechecker-4.5.0.tgz";
+ sha512 = "bqPE/ck3bVIaXP7gMKTKSHrypT32lpYTpiqzPYeYzdSQnmaGvaGhy7TnN/M/+5R+2rs/kKcp9ZLPRp/Q9Yj+4w==";
+ };
+ };
+ "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";
+ };
+ };
+ "typedarray-to-buffer-3.1.5" = {
+ name = "typedarray-to-buffer";
+ packageName = "typedarray-to-buffer";
+ version = "3.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz";
+ sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==";
+ };
+ };
+ "typescript-2.7.2" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "2.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.7.2.tgz";
+ sha512 = "p5TCYZDAO0m4G344hD+wx/LATebLWZNkkh2asWUFqSsD2OrDNhbAHuSjobrmsUmdzjJjEeZVU9g1h3O6vpstnw==";
+ };
+ };
+ "typescript-2.8.3" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "2.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz";
+ sha512 = "K7g15Bb6Ra4lKf7Iq2l/I5/En+hLIHmxWZGq3D4DIRNFxMNV6j2SHSvDOqs2tGd4UvD/fJvrwopzQXjLrT7Itw==";
+ };
+ };
+ "typescript-2.9.2" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "2.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz";
+ sha512 = "Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==";
+ };
+ };
+ "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";
+ };
+ };
+ "uc.micro-1.0.5" = {
+ name = "uc.micro";
+ packageName = "uc.micro";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.5.tgz";
+ sha512 = "JoLI4g5zv5qNyT09f4YAvEZIIV1oOjqnewYg5D38dkQljIzpPT296dbIGvKro3digYI1bkb7W6EP1y4uDlmzLg==";
+ };
+ };
+ "uglify-es-3.3.10" = {
+ name = "uglify-es";
+ packageName = "uglify-es";
+ version = "3.3.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.10.tgz";
+ sha512 = "rPzPisCzW68Okj1zNrfa2dR9uEm43SevDmpR6FChoZABFk9dANGnzzBMgHYUXI3609//63fnVkyQ1SQmAMyjww==";
+ };
+ };
+ "uglify-js-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.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.4.8" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.4.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.8.tgz";
+ sha512 = "WatYTD84gP/867bELqI2F/2xC9PQBETn/L+7RGq9MQOA/7yFBNvY1UwXqvtILeE6n0ITwBXxp34M0/o70dzj6A==";
+ };
+ };
+ "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-1.3.0" = {
+ name = "uglifyjs-webpack-plugin";
+ packageName = "uglifyjs-webpack-plugin";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz";
+ sha512 = "ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==";
+ };
+ };
+ "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 = "KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==";
+ };
+ };
+ "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.2" = {
+ name = "uint64be";
+ packageName = "uint64be";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uint64be/-/uint64be-2.0.2.tgz";
+ sha512 = "9QqdvpGQTXgxthP+lY4e/gIBy+RuqcBaC6JVwT5I3bDLgT/btL6twZMR0pI3/Fgah9G/pdwzIprE5gL6v9UvyQ==";
+ };
+ };
+ "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 = "UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==";
+ };
+ };
+ "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";
+ };
+ };
+ "umd-3.0.3" = {
+ name = "umd";
+ packageName = "umd";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz";
+ sha512 = "4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow==";
+ };
+ };
+ "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 = "izD3jxT8xkzwtXRUZjtmRwKnZoeECrfZ8ra/ketwOcusbZEp4mjULMnJOCfTDZBgGQAAY1AJ/IgxcwkavcX9Og==";
+ };
+ };
+ "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";
+ };
+ };
+ "undeclared-identifiers-1.1.2" = {
+ name = "undeclared-identifiers";
+ packageName = "undeclared-identifiers";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.2.tgz";
+ sha512 = "13EaeocO4edF/3JKime9rD7oB6QI8llAGhgn5fKOPyfkJbRb6NFv9pYV6dFEmpa4uRjKeBqLZP8GpuzqHlKDMQ==";
+ };
+ };
+ "undefsafe-2.0.2" = {
+ name = "undefsafe";
+ packageName = "undefsafe";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.2.tgz";
+ sha1 = "225f6b9e0337663e0d8e7cfd686fc2836ccace76";
+ };
+ };
+ "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-1.9.1" = {
+ name = "underscore";
+ packageName = "underscore";
+ version = "1.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz";
+ sha512 = "5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==";
+ };
+ };
+ "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";
+ };
+ };
+ "unicode-5.2.0-0.7.5" = {
+ name = "unicode-5.2.0";
+ packageName = "unicode-5.2.0";
+ version = "0.7.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unicode-5.2.0/-/unicode-5.2.0-0.7.5.tgz";
+ sha512 = "KVGLW1Bri30x00yv4HNM8kBxoqFXr0Sbo55735nvrlsx4PYBZol3UtoWgO492fSwmsetzPEZzy73rbU8OGXJcA==";
+ };
+ };
+ "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";
+ };
+ };
+ "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-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-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";
+ };
+ };
+ "universalify-0.1.2" = {
+ name = "universalify";
+ packageName = "universalify";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz";
+ sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==";
+ };
+ };
+ "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.1" = {
+ name = "unordered-set";
+ packageName = "unordered-set";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unordered-set/-/unordered-set-2.0.1.tgz";
+ sha512 = "eUmNTPzdx+q/WvOHW0bgGYLWvWHNT3PTKEQLg0MAQhc0AHASHVHoP/9YytYd4RBVariqno/mEUhVZN98CmD7bg==";
+ };
+ };
+ "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.3" = {
+ name = "untildify";
+ packageName = "untildify";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz";
+ sha512 = "iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==";
+ };
+ };
+ "unyield-0.0.1" = {
+ name = "unyield";
+ packageName = "unyield";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unyield/-/unyield-0.0.1.tgz";
+ sha1 = "150e65da42bf7742445b958a64eb9b85d1d2b180";
+ };
+ };
+ "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.1.0" = {
+ name = "upath";
+ packageName = "upath";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz";
+ sha512 = "bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==";
+ };
+ };
+ "update-check-1.5.2" = {
+ name = "update-check";
+ packageName = "update-check";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-check/-/update-check-1.5.2.tgz";
+ sha512 = "1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ==";
+ };
+ };
+ "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-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-notifier-2.5.0" = {
+ name = "update-notifier";
+ packageName = "update-notifier";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz";
+ sha512 = "gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==";
+ };
+ };
+ "upnp-device-client-1.0.2" = {
+ name = "upnp-device-client";
+ packageName = "upnp-device-client";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/upnp-device-client/-/upnp-device-client-1.0.2.tgz";
+ sha1 = "91f84705f2349bf89082855fff4e3006ac435337";
+ };
+ };
+ "upnp-mediarenderer-client-1.2.4" = {
+ name = "upnp-mediarenderer-client";
+ packageName = "upnp-mediarenderer-client";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/upnp-mediarenderer-client/-/upnp-mediarenderer-client-1.2.4.tgz";
+ sha1 = "0c63a51802082b6b03b596c475cc64fc1e0877c8";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "uri-js-4.2.2" = {
+ name = "uri-js";
+ packageName = "uri-js";
+ version = "4.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz";
+ sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
+ };
+ };
+ "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-join-2.0.5" = {
+ name = "url-join";
+ packageName = "url-join";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz";
+ sha1 = "5af22f18c052a000a48d7b82c5e9c2e2feeda728";
+ };
+ };
+ "url-join-4.0.0" = {
+ name = "url-join";
+ packageName = "url-join";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-join/-/url-join-4.0.0.tgz";
+ sha1 = "4d3340e807d3773bda9991f8305acdcc2a665d2a";
+ };
+ };
+ "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-regex-3.2.0" = {
+ name = "url-regex";
+ packageName = "url-regex";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-regex/-/url-regex-3.2.0.tgz";
+ sha1 = "dbad1e0c9e29e105dd0b1f09f6862f7fdb482724";
+ };
+ };
+ "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-3.1.1" = {
+ name = "use";
+ packageName = "use";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz";
+ sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==";
+ };
+ };
+ "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";
+ };
+ };
+ "ut_metadata-3.2.2" = {
+ name = "ut_metadata";
+ packageName = "ut_metadata";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ut_metadata/-/ut_metadata-3.2.2.tgz";
+ sha512 = "PltK6kZ85DMscFl1gwyvOyja6UGROdyLI1ufWCTLsYnLfBaMyhtOEcbtgEgOwYEz8QuchR49qgHXTdJ2H05VHA==";
+ };
+ };
+ "ut_pex-1.2.1" = {
+ name = "ut_pex";
+ packageName = "ut_pex";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ut_pex/-/ut_pex-1.2.1.tgz";
+ sha512 = "ZrxMCbffYtxQDqvREN9kBXK2CB9tPnd5PylHoqQX9ai+3HV9/S39FnA5JnhLOC82dxIQQg0nTN2wmhtAdGNtOA==";
+ };
+ };
+ "utf-8-validate-5.0.1" = {
+ name = "utf-8-validate";
+ packageName = "utf-8-validate";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.1.tgz";
+ sha512 = "Qef1AuiWWxQeZ1Oa4DTV3ArRafpZvsK+CLrlB8khLfsV+9mwhj58hNSGmel0ns5jYP+3yEwav6vxxW7Gz85bVw==";
+ };
+ };
+ "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";
+ };
+ };
+ "utf8-byte-length-1.0.4" = {
+ name = "utf8-byte-length";
+ packageName = "utf8-byte-length";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz";
+ sha1 = "f45f150c4c66eee968186505ab93fcbb8ad6bf61";
+ };
+ };
+ "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.10.4" = {
+ name = "util";
+ packageName = "util";
+ version = "0.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util/-/util-0.10.4.tgz";
+ sha512 = "0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==";
+ };
+ };
+ "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 = "i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==";
+ };
+ };
+ "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";
+ };
+ };
+ "utilities-0.0.37" = {
+ name = "utilities";
+ packageName = "utilities";
+ version = "0.0.37";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utilities/-/utilities-0.0.37.tgz";
+ sha1 = "a3470d0a7f688142d9e8a57cee1128f12e19e196";
+ };
+ };
+ "utilities-1.0.5" = {
+ name = "utilities";
+ packageName = "utilities";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utilities/-/utilities-1.0.5.tgz";
+ sha1 = "f2b77a88f3510733fc7215b5c486a504a75ab245";
+ };
+ };
+ "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.7.3" = {
+ name = "utp-native";
+ packageName = "utp-native";
+ version = "1.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utp-native/-/utp-native-1.7.3.tgz";
+ sha512 = "vRAKaS8WcYNgzbxyH2LdheqgL4sQLis8LXl7r/mN+O4mpWlUpoCsTtietxepLrft2q0TFA2gaIvSWN1iRkzW/w==";
+ };
+ };
+ "uue-3.1.2" = {
+ name = "uue";
+ packageName = "uue";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uue/-/uue-3.1.2.tgz";
+ sha512 = "axKLXVqwtdI/czrjG0X8hyV1KLgeWx8F4KvSbvVCnS+RUvsQMGRjx0kfuZDXXqj0LYvVJmx3B9kWlKtEdRrJLg==";
+ };
+ };
+ "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.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 = "DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==";
+ };
+ };
+ "uuid-3.3.2" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz";
+ sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==";
+ };
+ };
+ "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";
+ };
+ };
+ "v8flags-3.0.2" = {
+ name = "v8flags";
+ packageName = "v8flags";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/v8flags/-/v8flags-3.0.2.tgz";
+ sha512 = "6sgSKoFw1UpUPd3cFdF7QGnrH6tDeBgW1F3v9gy8gLY0mlbiBXq8soy8aQpY6xeeCjH5K+JvC62Acp7gtl7wWA==";
+ };
+ };
+ "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";
+ };
+ };
+ "valid-url-1.0.9" = {
+ name = "valid-url";
+ packageName = "valid-url";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz";
+ sha1 = "1c14479b40f1397a75782f115e4086447433a200";
+ };
+ };
+ "validate-npm-package-license-3.0.4" = {
+ name = "validate-npm-package-license";
+ packageName = "validate-npm-package-license";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz";
+ sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==";
+ };
+ };
+ "validate-npm-package-name-3.0.0" = {
+ name = "validate-npm-package-name";
+ packageName = "validate-npm-package-name";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
+ sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
+ };
+ };
+ "validator-10.7.0" = {
+ name = "validator";
+ packageName = "validator";
+ version = "10.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validator/-/validator-10.7.0.tgz";
+ sha512 = "7Z4kif6HeMLroCQZvh8lwCtmPOqBTkTkt5ibXtJR8sOkzWdjW+YIJOZUpPFlfq59zYvnpSPVd4UX5QYnSCLWgA==";
+ };
+ };
+ "validator-5.2.0" = {
+ name = "validator";
+ packageName = "validator";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validator/-/validator-5.2.0.tgz";
+ sha1 = "e66fb3ec352348c1f7232512328738d8d66a9689";
+ };
+ };
+ "validator-9.4.1" = {
+ name = "validator";
+ packageName = "validator";
+ version = "9.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validator/-/validator-9.4.1.tgz";
+ sha512 = "YV5KjzvRmSyJ1ee/Dm5UED0G+1L4GZnLN3w6/T+zZm8scVua4sOhYKWTUrKa0H/tMiJyO9QLHMPN+9mB/aMunA==";
+ };
+ };
+ "value-or-function-3.0.0" = {
+ name = "value-or-function";
+ packageName = "value-or-function";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz";
+ sha1 = "1c243a50b595c1be54a754bfece8563b9ff8d813";
+ };
+ };
+ "variable-diff-1.1.0" = {
+ name = "variable-diff";
+ packageName = "variable-diff";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/variable-diff/-/variable-diff-1.1.0.tgz";
+ sha1 = "d2bd5c66db76c13879d96e6a306edc989df978da";
+ };
+ };
+ "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.3.6" = {
+ name = "verror";
+ packageName = "verror";
+ version = "1.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz";
+ sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c";
+ };
+ };
+ "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";
+ };
+ };
+ "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";
+ };
+ };
+ "videostream-2.5.1" = {
+ name = "videostream";
+ packageName = "videostream";
+ version = "2.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/videostream/-/videostream-2.5.1.tgz";
+ sha512 = "S3f34WE6NB1d/YUAa/EYcTURTkGaxsUqcDmsGWV1jQpQQJxeagc79/XA7ygNjzBf3DoQQ1MKTD+SocPsWSniAg==";
+ };
+ };
+ "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-2.2.0" = {
+ name = "vinyl";
+ packageName = "vinyl";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz";
+ sha512 = "MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==";
+ };
+ };
+ "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-3.0.3" = {
+ name = "vinyl-fs";
+ packageName = "vinyl-fs";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz";
+ sha512 = "vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==";
+ };
+ };
+ "vinyl-sourcemap-1.1.0" = {
+ name = "vinyl-sourcemap";
+ packageName = "vinyl-sourcemap";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz";
+ sha1 = "92a800593a38703a8cdb11d8b300ad4be63b3e16";
+ };
+ };
+ "vinyl-sourcemaps-apply-0.2.1" = {
+ name = "vinyl-sourcemaps-apply";
+ packageName = "vinyl-sourcemaps-apply";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz";
+ sha1 = "ab6549d61d172c2b1b87be5c508d239c8ef87705";
+ };
+ };
+ "vlc-command-1.1.1" = {
+ name = "vlc-command";
+ packageName = "vlc-command";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vlc-command/-/vlc-command-1.1.1.tgz";
+ sha1 = "349b85def831f980cd6eec560b1990fd989eaf92";
+ };
+ };
+ "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";
+ };
+ };
+ "vm-browserify-1.1.0" = {
+ name = "vm-browserify";
+ packageName = "vm-browserify";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz";
+ sha512 = "iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==";
+ };
+ };
+ "voc-1.1.0" = {
+ name = "voc";
+ packageName = "voc";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/voc/-/voc-1.1.0.tgz";
+ sha512 = "fthgd8OJLqq8vPcLjElTk6Rcl2e3v5ekcXauImaqEnQqd5yUWKg1+ZOBgS2KTWuVKcuvZMQq4TDptiT1uYddUA==";
+ };
+ };
+ "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.2" = {
+ name = "vows";
+ packageName = "vows";
+ version = "0.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vows/-/vows-0.8.2.tgz";
+ sha1 = "691f79ab26ccde80ba726dde9fec8e73d6bcf2eb";
+ };
+ };
+ "vscode-jsonrpc-3.6.0" = {
+ name = "vscode-jsonrpc";
+ packageName = "vscode-jsonrpc";
+ version = "3.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.6.0.tgz";
+ sha512 = "PqHHjuTlz3ks0vyZv3IkdduJReA/lqe6OP5zRl5nXn2ptMLW++fBotNyayyZEQLIF6nNrx/Rn6WhMSHElf02Yw==";
+ };
+ };
+ "vscode-jsonrpc-3.6.2" = {
+ name = "vscode-jsonrpc";
+ packageName = "vscode-jsonrpc";
+ version = "3.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.6.2.tgz";
+ sha512 = "T24Jb5V48e4VgYliUXMnZ379ItbrXgOimweKaJshD84z+8q7ZOZjJan0MeDe+Ugb+uqERDVV8SBmemaGMSMugA==";
+ };
+ };
+ "vscode-languageclient-4.0.1" = {
+ name = "vscode-languageclient";
+ packageName = "vscode-languageclient";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-4.0.1.tgz";
+ sha512 = "0fuBZj9pMkeJ8OMyIvSGeRaRVhUaJt+yeFxi7a3sz/AbrngQdcxOovMXPgKuieoBSBKS05gXPS88BsWpJZfBkA==";
+ };
+ };
+ "vscode-languageserver-4.0.0" = {
+ name = "vscode-languageserver";
+ packageName = "vscode-languageserver";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-4.0.0.tgz";
+ sha512 = "bxj9nRadNkXYfVG/fjA5a+KA5WaJCeP1F2Tnj3rYFS0pKALZQCPNqk3KO/LdiGFidjyICMG7xoHvYO9J9xosXg==";
+ };
+ };
+ "vscode-languageserver-4.4.2" = {
+ name = "vscode-languageserver";
+ packageName = "vscode-languageserver";
+ version = "4.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-4.4.2.tgz";
+ sha512 = "61y8Raevi9EigDgg9NelvT9cUAohiEbUl1LOwQQgOCAaNX62yKny/ddi0uC+FUTm4CzsjhBu+06R+vYgfCYReA==";
+ };
+ };
+ "vscode-languageserver-protocol-3.12.0" = {
+ name = "vscode-languageserver-protocol";
+ packageName = "vscode-languageserver-protocol";
+ version = "3.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.12.0.tgz";
+ sha512 = "evY6hmyzLnwQrqlQWPrNBq1z8wrSNjLesmgPzeS6Zv11mVS5UJRel26hbM/DH5tHdn45huNzRW0eFHRmIm8LpA==";
+ };
+ };
+ "vscode-languageserver-protocol-3.6.0" = {
+ name = "vscode-languageserver-protocol";
+ packageName = "vscode-languageserver-protocol";
+ version = "3.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.6.0.tgz";
+ sha512 = "PN5hVQQQxrtHSZR8UCstqaoI9f2H9JctFTtdIpONWjzQNurWrc48qSXXU/vTfnbSrNou8qrJgkZ4QEZsyozOMA==";
+ };
+ };
+ "vscode-languageserver-types-3.12.0" = {
+ name = "vscode-languageserver-types";
+ packageName = "vscode-languageserver-types";
+ version = "3.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.12.0.tgz";
+ sha512 = "UxqnpzBToPO7Mi2tr/s5JeyPOSKSJtLB8lIdxCg9ZNdvP2cU8wS7iTDtwQKz91Ne4CUmTdf85ddR5SIZKXmMjQ==";
+ };
+ };
+ "vscode-uri-1.0.3" = {
+ name = "vscode-uri";
+ packageName = "vscode-uri";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.3.tgz";
+ sha1 = "631bdbf716dccab0e65291a8dc25c23232085a52";
+ };
+ };
+ "vscode-uri-1.0.6" = {
+ name = "vscode-uri";
+ packageName = "vscode-uri";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.6.tgz";
+ sha512 = "sLI2L0uGov3wKVb9EB+vIQBl9tVP90nqRvxSoJ35vI3NjxE8jfsE5DSOhWgSunHSZmKS4OCi2jrtfxK7uyp2ww==";
+ };
+ };
+ "vstream-0.1.0" = {
+ name = "vstream";
+ packageName = "vstream";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vstream/-/vstream-0.1.0.tgz";
+ sha1 = "13587190f34e72ba7a07ebbaa7e70ac147b1fb7d";
+ };
+ };
+ "vue-cli-plugin-apollo-0.14.6" = {
+ name = "vue-cli-plugin-apollo";
+ packageName = "vue-cli-plugin-apollo";
+ version = "0.14.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-cli-plugin-apollo/-/vue-cli-plugin-apollo-0.14.6.tgz";
+ sha512 = "wQf4kCiUGhsKpc52GSwDVAjZlGP77YnjD+p+6TFOVg4RoMZgiFAx/qHZ6N1bUhNS0sEVJZd7wSKauiFr2elRrg==";
+ };
+ };
+ "walk-2.3.14" = {
+ name = "walk";
+ packageName = "walk";
+ version = "2.3.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/walk/-/walk-2.3.14.tgz";
+ sha512 = "5skcWAUmySj6hkBdH6B6+3ddMjVQYH5Qy9QGbPmN8kVmLteXk+yVXg+yfk1nbX30EYakahLrr8iPcCxJQSCBeg==";
+ };
+ };
+ "walk-sync-0.3.3" = {
+ name = "walk-sync";
+ packageName = "walk-sync";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.3.tgz";
+ sha512 = "jQgTHmCazUngGqvHZFlr30u2VLKEKErBMLFe+fBl5mn4rh9aI/QVRog8PT1hv2vaOu4EBwigfmpRTyZrbnpRVA==";
+ };
+ };
+ "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";
+ };
+ };
+ "watch-1.0.2" = {
+ name = "watch";
+ packageName = "watch";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/watch/-/watch-1.0.2.tgz";
+ sha1 = "340a717bde765726fa0aa07d721e0147a551df0c";
+ };
+ };
+ "watchpack-1.5.0" = {
+ name = "watchpack";
+ packageName = "watchpack";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/watchpack/-/watchpack-1.5.0.tgz";
+ sha512 = "RSlipNQB1u48cq0wH/BNfCu1tD/cJ8ydFIkNYhp9o+3d+8unClkIovpW5qpFPgmL9OE48wfAnlZydXByWP82AA==";
+ };
+ };
+ "watchpack-1.6.0" = {
+ name = "watchpack";
+ packageName = "watchpack";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz";
+ sha512 = "i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==";
+ };
+ };
+ "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-2.0.1" = {
+ name = "webidl-conversions";
+ packageName = "webidl-conversions";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-2.0.1.tgz";
+ sha1 = "3bf8258f7d318c7443c36f2e169402a1a6703506";
+ };
+ };
+ "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 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==";
+ };
+ };
+ "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 = "aqYp18kPphgoO5c/+NaUvEeACtZjMESmDChuD3NBciVpah3XpMEU9VAAtIaB1BsfJWWTSdv8Vv1m3T0aRk2dUw==";
+ };
+ };
+ "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 = "nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==";
+ };
+ };
+ "websocket-stream-5.1.2" = {
+ name = "websocket-stream";
+ packageName = "websocket-stream";
+ version = "5.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/websocket-stream/-/websocket-stream-5.1.2.tgz";
+ sha512 = "lchLOk435iDWs0jNuL+hiU14i3ERSrMA0IKSiJh7z6X/i4XNsutBZrtqu2CPOZuA4G/zabiqVAos0vW+S7GEVw==";
+ };
+ };
+ "webtorrent-0.102.2" = {
+ name = "webtorrent";
+ packageName = "webtorrent";
+ version = "0.102.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.102.2.tgz";
+ sha512 = "9+thCKf9zfs9OTMkNqSp3whqKlYd4f/VkBCsx+HkD5dh9O5oWf2lxfAMq1P411WiSY0PqBS77jxjQilYeYYskw==";
+ };
+ };
+ "whatwg-fetch-2.0.4" = {
+ name = "whatwg-fetch";
+ packageName = "whatwg-fetch";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz";
+ sha512 = "dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==";
+ };
+ };
+ "whatwg-url-6.5.0" = {
+ name = "whatwg-url";
+ packageName = "whatwg-url";
+ version = "6.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz";
+ sha512 = "rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==";
+ };
+ };
+ "whatwg-url-compat-0.6.5" = {
+ name = "whatwg-url-compat";
+ packageName = "whatwg-url-compat";
+ version = "0.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz";
+ sha1 = "00898111af689bb097541cd5a45ca6c8798445bf";
+ };
+ };
+ "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.1" = {
+ name = "which";
+ packageName = "which";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
+ sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
+ };
+ };
+ "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.3" = {
+ name = "wide-align";
+ packageName = "wide-align";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz";
+ sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==";
+ };
+ };
+ "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-fork-1.1.1" = {
+ name = "win-fork";
+ packageName = "win-fork";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/win-fork/-/win-fork-1.1.1.tgz";
+ sha1 = "8f58e0656fca00adc8c86a2b89e3cd2d6a2d5e5e";
+ };
+ };
+ "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";
+ };
+ };
+ "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.4" = {
+ name = "winreg";
+ packageName = "winreg";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winreg/-/winreg-1.2.4.tgz";
+ sha1 = "ba065629b7a925130e15779108cf540990e98d1b";
+ };
+ };
+ "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.4" = {
+ name = "winston";
+ packageName = "winston";
+ version = "2.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winston/-/winston-2.4.4.tgz";
+ sha512 = "NBo2Pepn4hK4V01UfcWcDlmiVTs7VTB1h7bgnB0rgP146bYhMxX0ypCz3lBOfNxCO4Zuek7yeT+y/zM1OfMw4Q==";
+ };
+ };
+ "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";
+ };
+ };
+ "worker-farm-1.6.0" = {
+ name = "worker-farm";
+ packageName = "worker-farm";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz";
+ sha512 = "6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==";
+ };
+ };
+ "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 = "l5DUGrc+yDyIflpty1x9XuMj1ehVjC/dTbF3/BasOO77xk0EdEa4M/DuOY8W88MQDAD0fEDqyjc8bkIMHd2E9A==";
+ };
+ };
+ "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 = "xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==";
+ };
+ };
+ "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.2.0" = {
+ name = "write-pkg";
+ packageName = "write-pkg";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.2.0.tgz";
+ sha512 = "tX2ifZ0YqEFOF1wjRW2Pk93NLsj02+n1UP5RvO6rCs0K6R2g1padvf006cY74PQJKMGS2r42NK7FD0dG6Y6paw==";
+ };
+ };
+ "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.5" = {
+ name = "ws";
+ packageName = "ws";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz";
+ sha512 = "o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==";
+ };
+ };
+ "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 = "nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==";
+ };
+ };
+ "ws-5.2.2" = {
+ name = "ws";
+ packageName = "ws";
+ version = "5.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz";
+ sha512 = "jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==";
+ };
+ };
+ "ws-6.0.0" = {
+ name = "ws";
+ packageName = "ws";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-6.0.0.tgz";
+ sha512 = "c2UlYcAZp1VS8AORtpq6y4RJIkJ9dQz18W32SpR/qXGfLDZ2jU4y4wKvvZwqbi7U6gxFQTeE+urMbXU/tsDy4w==";
+ };
+ };
+ "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";
+ };
+ };
+ "xenvar-0.5.1" = {
+ name = "xenvar";
+ packageName = "xenvar";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xenvar/-/xenvar-0.5.1.tgz";
+ sha1 = "f82d2fedee63af76687b70115ce6274dc71310e9";
+ };
+ };
+ "xhr-2.5.0" = {
+ name = "xhr";
+ packageName = "xhr";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xhr/-/xhr-2.5.0.tgz";
+ sha512 = "4nlO/14t3BNUZRXIXfXe+3N6w3s1KoxcJUUURctd64BLRe67E4gRwp4PjywtDY72fXpZ1y6Ch0VZQRY/gMPzzQ==";
+ };
+ };
+ "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-name-validator-2.0.1" = {
+ name = "xml-name-validator";
+ packageName = "xml-name-validator";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz";
+ sha1 = "4d8b8f1eccd3419aa362061becef515e1e559635";
+ };
+ };
+ "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.19" = {
+ name = "xml2js";
+ packageName = "xml2js";
+ version = "0.4.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz";
+ sha512 = "esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==";
+ };
+ };
+ "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-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.7" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "9.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz";
+ sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d";
+ };
+ };
+ "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.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 = "jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ==";
+ };
+ };
+ "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 = "PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==";
+ };
+ };
+ "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 = "g1DFmZ5JJ9Qzvt4dMw6m9IydqoCSP381ucU5zm46Owbk3bwmqAr8eEJirOPc7PrXRn45drzOpAyDp8jsnoyXyw==";
+ };
+ };
+ "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";
+ };
+ };
+ "xstream-11.7.0" = {
+ name = "xstream";
+ packageName = "xstream";
+ version = "11.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xstream/-/xstream-11.7.0.tgz";
+ sha512 = "wO3TXiQd2/1UZNVsixDIcQgAN6TU4sGH7qIXvs1CRp1kgtkpU8YTfyKt/z/Z1psqcGnR0cJJxHaCnBxtktLx9w==";
+ };
+ };
+ "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";
+ };
+ };
+ "y18n-4.0.0" = {
+ name = "y18n";
+ packageName = "y18n";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz";
+ sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==";
+ };
+ };
+ "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";
+ };
+ };
+ "yaml-ast-parser-0.0.40" = {
+ name = "yaml-ast-parser";
+ packageName = "yaml-ast-parser";
+ version = "0.0.40";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.40.tgz";
+ sha1 = "08536d4e73d322b1c9ce207ab8dd70e04d20ae6e";
+ };
+ };
+ "yaml-front-matter-3.4.1" = {
+ name = "yaml-front-matter";
+ packageName = "yaml-front-matter";
+ version = "3.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yaml-front-matter/-/yaml-front-matter-3.4.1.tgz";
+ sha1 = "e52e84fea6983b93755e9b1564dba989b006b5a5";
+ };
+ };
+ "yaml-js-0.0.8" = {
+ name = "yaml-js";
+ packageName = "yaml-js";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yaml-js/-/yaml-js-0.0.8.tgz";
+ sha1 = "87cfa5a9613f48e26005420d6a8ee0da6fe8daec";
+ };
+ };
+ "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 = "DqBpQ8NAUX4GyPP/ijDGHsJya4tYqLQrjPr95HNsr1YwL3+daCfvBwg7+gIC6IdJhR2kATh3hb61vjzMWEtjdw==";
+ };
+ };
+ "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 = "ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==";
+ };
+ };
+ "yargs-11.0.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "11.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-11.0.0.tgz";
+ sha512 = "Rjp+lMYQOWtgqojx1dEWorjCofi1YN7AoFvYV7b1gx/7dAAeuI4kN5SZiEvr0ZmsZTOpDRcCqrpI10L31tFkBw==";
+ };
+ };
+ "yargs-12.0.1" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "12.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-12.0.1.tgz";
+ sha512 = "B0vRAp1hRX4jgIOWFtjfNjd9OA9RWYZ6tqGA9/I/IrTMsxmKvtWy+ersM+jzpQqbC3YfLzeABPdeTgcJ9eu1qQ==";
+ };
+ };
+ "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.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-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-10.1.0" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "10.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz";
+ sha512 = "VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==";
+ };
+ };
+ "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 = "yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ==";
+ };
+ };
+ "yargs-parser-9.0.2" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "9.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz";
+ sha1 = "9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077";
+ };
+ };
+ "yauzl-2.10.0" = {
+ name = "yauzl";
+ packageName = "yauzl";
+ version = "2.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz";
+ sha1 = "c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9";
+ };
+ };
+ "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.2" = {
+ name = "yauzl";
+ packageName = "yauzl";
+ version = "2.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.2.tgz";
+ sha1 = "4fb1bc7ae1fc2f57037b54af6acc8fe1031c5b77";
+ };
+ };
+ "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";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yeoman-character/-/yeoman-character-1.1.0.tgz";
+ sha1 = "90d4b5beaf92759086177015b2fdfa2e0684d7c7";
+ };
+ };
+ "yeoman-doctor-3.0.2" = {
+ name = "yeoman-doctor";
+ packageName = "yeoman-doctor";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yeoman-doctor/-/yeoman-doctor-3.0.2.tgz";
+ sha512 = "/KbouQdKgnqxG6K3Tc8VBPAQLPbruQ7KkbinwR+ah507oOFobHnGs8kqj8oMfafY6rXInHdh7nC5YzicCR4Z0g==";
+ };
+ };
+ "yeoman-environment-2.3.3" = {
+ name = "yeoman-environment";
+ packageName = "yeoman-environment";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.3.3.tgz";
+ sha512 = "HBpXdNw8V66EwqIFt01rNhSgX33BOzgVb9CxpIvESvCI4ELeOSniB6gV6RXwrBur8kmHZCIAkYQYpib7Qxx8FQ==";
+ };
+ };
+ "yosay-2.0.2" = {
+ name = "yosay";
+ packageName = "yosay";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yosay/-/yosay-2.0.2.tgz";
+ sha512 = "avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA==";
+ };
+ };
+ "z-schema-3.23.0" = {
+ name = "z-schema";
+ packageName = "z-schema";
+ version = "3.23.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/z-schema/-/z-schema-3.23.0.tgz";
+ sha512 = "D8XV0BiHuQbWNEgu68RpjFZJ0C7jt+WYoszXKOohe54TdoTTauUvBQx+lsYCdalGIjGTFdQs5dxKvCUonUERzQ==";
+ };
+ };
+ "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 = "Dhp/R0pqSHj3vPs5O1gVd9kZx5Iew2lqVcfJQOBHx3llM/dLea8vl9wSa9FK8wLdSBQJ6mmgKi9+Rk2DRH3i9Q==";
+ };
+ };
+ "zen-observable-0.8.9" = {
+ name = "zen-observable";
+ packageName = "zen-observable";
+ version = "0.8.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.9.tgz";
+ sha512 = "Y9kPzjGvIZ5jchSlqlCpBW3I82zBBL4z+ulXDRVA1NwsKzjt5kwAi+gOYIy0htNkfuehGZZtP5mRXHRV6TjDWw==";
+ };
+ };
+ "zen-observable-ts-0.8.9" = {
+ name = "zen-observable-ts";
+ packageName = "zen-observable-ts";
+ version = "0.8.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.9.tgz";
+ sha512 = "KJz2O8FxbAdAU5CSc8qZ1K2WYEJb1HxS6XDRF+hOJ1rOYcg6eTMmS9xYHCXzqZZzKw6BbXWyF4UpwSsBQnHJeA==";
+ };
+ };
+ "zeparser-0.0.5" = {
+ name = "zeparser";
+ packageName = "zeparser";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/zeparser/-/zeparser-0.0.5.tgz";
+ sha1 = "03726561bc268f2e5444f54c665b7fd4a8c029e2";
+ };
+ };
+ "zero-fill-2.2.3" = {
+ name = "zero-fill";
+ packageName = "zero-fill";
+ version = "2.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/zero-fill/-/zero-fill-2.2.3.tgz";
+ sha1 = "a3def06ba5e39ae644850bb4ca2ad4112b4855e9";
+ };
+ };
+ "zip-dir-1.0.2" = {
+ name = "zip-dir";
+ packageName = "zip-dir";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/zip-dir/-/zip-dir-1.0.2.tgz";
+ sha1 = "253f907aead62a21acd8721d8b88032b2411c051";
+ };
+ };
+ "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";
+ };
+ };
+ "zip-stream-1.2.0" = {
+ name = "zip-stream";
+ packageName = "zip-stream";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/zip-stream/-/zip-stream-1.2.0.tgz";
+ sha1 = "a8bc45f4c1b49699c6b90198baacaacdbcd4ba04";
+ };
+ };
+ "zip-stream-2.0.1" = {
+ name = "zip-stream";
+ packageName = "zip-stream";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/zip-stream/-/zip-stream-2.0.1.tgz";
+ sha512 = "c+eUhhkDpaK87G/py74wvWLtz2kzMPNCCkUApkun50ssE0oQliIQzWpTnwjB+MTKVIf2tGzIgHyqW/Y+W77ecQ==";
+ };
+ };
+ };
+in
+{
+ alloy = nodeEnv.buildNodePackage {
+ name = "alloy";
+ packageName = "alloy";
+ version = "1.13.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/alloy/-/alloy-1.13.2.tgz";
+ sha512 = "XtcUf7n2nfz7tEyV2auK55d018ji3WIJYSQAowF9h69go3Jr68OPvhJiaCQikpbM5b+NNw7LBBkKUVJxA3LVsA==";
+ };
+ 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.1"
+ sources."babel-code-frame-6.26.0"
+ (sources."babel-core-6.26.3" // {
+ dependencies = [
+ sources."source-map-0.5.7"
+ ];
+ })
+ (sources."babel-generator-6.26.1" // {
+ dependencies = [
+ sources."source-map-0.5.7"
+ ];
+ })
+ 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."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."chalk-1.1.3"
+ sources."chmodr-1.0.2"
+ sources."colors-1.3.2"
+ sources."commander-2.17.1"
+ sources."concat-map-0.0.1"
+ sources."convert-source-map-1.5.1"
+ sources."core-js-2.5.7"
+ 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."global-paths-1.0.0"
+ (sources."global-prefix-0.1.5" // {
+ dependencies = [
+ sources."is-windows-0.2.0"
+ ];
+ })
+ 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."invariant-2.2.4"
+ sources."is-3.2.1"
+ sources."is-finite-1.0.2"
+ sources."is-windows-1.0.2"
+ sources."isexe-2.0.0"
+ 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"
+ sources."lodash-4.17.10"
+ sources."loose-envify-1.4.0"
+ sources."matcher-collection-1.0.5"
+ 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."node.extend-2.0.0"
+ (sources."nomnom-1.8.1" // {
+ dependencies = [
+ sources."ansi-styles-1.0.0"
+ sources."chalk-0.4.0"
+ sources."strip-ansi-0.1.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.6"
+ sources."pkginfo-0.4.1"
+ sources."private-0.1.8"
+ sources."regenerator-runtime-0.11.1"
+ sources."repeating-2.0.1"
+ sources."resolve-1.8.1"
+ sources."sax-0.5.8"
+ sources."slash-1.0.0"
+ sources."source-map-0.6.1"
+ (sources."source-map-support-0.4.18" // {
+ dependencies = [
+ sources."source-map-0.5.7"
+ ];
+ })
+ 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.2"
+ sources."walk-sync-0.3.3"
+ sources."which-1.3.1"
+ sources."xml2js-0.2.8"
+ sources."xml2tss-0.0.5"
+ sources."xmldom-0.1.27"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Appcelerator Titanium MVC Framework";
+ homepage = "https://github.com/appcelerator/alloy#readme";
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ asar = nodeEnv.buildNodePackage {
+ name = "asar";
+ packageName = "asar";
+ version = "0.14.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asar/-/asar-0.14.3.tgz";
+ sha512 = "+hNnVVDmYbv05We/a9knj/98w171+A94A9DNHj+3kXUr3ENTQoSEcfbJRvBBRHyOh4vukBYWujmHvvaMmQoQbg==";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."ajv-5.5.2"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."binary-0.3.0"
+ sources."brace-expansion-1.1.11"
+ 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.6"
+ sources."commander-2.17.1"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ sources."cuint-0.2.2"
+ sources."dashdash-1.14.1"
+ sources."decompress-zip-0.3.0"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ 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.1.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.36.0"
+ sources."mime-types-2.1.20"
+ 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"
+ sources."nopt-3.0.6"
+ sources."oauth-sign-0.9.0"
+ sources."once-1.4.0"
+ sources."os-tmpdir-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."q-1.5.1"
+ sources."qs-6.5.2"
+ sources."readable-stream-1.1.14"
+ sources."request-2.88.0"
+ (sources."rimraf-2.6.2" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ ];
+ })
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sshpk-1.14.2"
+ sources."string_decoder-0.10.31"
+ sources."tmp-0.0.28"
+ (sources."touch-0.0.3" // {
+ dependencies = [
+ sources."nopt-1.0.10"
+ ];
+ })
+ sources."tough-cookie-2.4.3"
+ sources."traverse-0.3.9"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."uuid-3.3.2"
+ sources."verror-1.10.0"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Creating Electron app packages";
+ homepage = https://github.com/electron/asar;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ azure-cli = nodeEnv.buildNodePackage {
+ name = "azure-cli";
+ packageName = "azure-cli";
+ version = "0.10.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.19.tgz";
+ sha512 = "9OBihy+L53g9ALssKTY/vTWEiz8mGEJ1asWiCdfPdQ1Uf++tewiNrN7Fq2Eb6ZYtvK0BYvPZlh3bHguKmKO3yA==";
+ };
+ dependencies = [
+ sources."@types/node-8.10.28"
+ sources."JSV-4.0.2"
+ sources."adal-node-0.1.28"
+ sources."ajv-5.5.2"
+ sources."amdefine-1.0.1"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."applicationinsights-0.16.0"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.4"
+ sources."assert-plus-0.2.0"
+ sources."async-1.4.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.8.0"
+ sources."azure-arm-authorization-2.0.0"
+ sources."azure-arm-batch-3.1.2"
+ sources."azure-arm-cdn-4.0.2"
+ sources."azure-arm-commerce-2.0.0"
+ 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."request-2.74.0"
+ ];
+ })
+ (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."request-2.74.0"
+ ];
+ })
+ sources."azure-arm-devtestlabs-2.1.1"
+ sources."azure-arm-dns-2.1.0"
+ 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-5.3.0"
+ (sources."azure-arm-powerbiembedded-0.1.1" // {
+ dependencies = [
+ sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
+ ];
+ })
+ (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."request-2.74.0"
+ ];
+ })
+ (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."request-2.74.0"
+ ];
+ })
+ sources."azure-arm-servermanagement-1.1.0"
+ sources."azure-arm-storage-5.2.0"
+ sources."azure-arm-trafficmanager-1.1.0-preview"
+ (sources."azure-arm-website-0.11.5" // {
+ dependencies = [
+ sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
+ ];
+ })
+ sources."azure-asm-compute-0.18.0"
+ sources."azure-asm-hdinsight-0.10.2"
+ 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.7" // {
+ dependencies = [
+ sources."underscore-1.9.1"
+ ];
+ })
+ (sources."azure-batch-3.2.2" // {
+ dependencies = [
+ sources."underscore-1.9.1"
+ ];
+ })
+ (sources."azure-common-0.9.20" // {
+ dependencies = [
+ sources."validator-9.4.1"
+ sources."xml2js-0.2.7"
+ ];
+ })
+ sources."azure-gallery-2.0.0-pre.18"
+ sources."azure-graph-2.2.0"
+ (sources."azure-keyvault-1.0.0" // {
+ dependencies = [
+ sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
+ ];
+ })
+ (sources."azure-monitoring-0.10.6" // {
+ dependencies = [
+ sources."underscore-1.9.1"
+ ];
+ })
+ (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."request-2.74.0"
+ ];
+ })
+ (sources."azure-storage-2.10.1" // {
+ dependencies = [
+ sources."extend-1.2.1"
+ sources."readable-stream-2.0.6"
+ sources."underscore-1.8.3"
+ sources."validator-9.4.1"
+ sources."xml2js-0.2.8"
+ ];
+ })
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ (sources."bl-1.1.2" // {
+ dependencies = [
+ sources."readable-stream-2.0.6"
+ ];
+ })
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.11"
+ sources."browserify-mime-1.2.9"
+ sources."buffer-equal-constant-time-1.0.1"
+ sources."buffer-from-1.1.1"
+ sources."caller-id-0.1.0"
+ sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
+ sources."clone-1.0.4"
+ sources."co-4.6.0"
+ sources."colors-1.1.2"
+ sources."combined-stream-1.0.6"
+ sources."commander-1.0.4"
+ sources."concat-map-0.0.1"
+ (sources."concat-stream-1.6.2" // {
+ dependencies = [
+ sources."process-nextick-args-2.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."ctype-0.5.2"
+ sources."cycle-1.0.3"
+ (sources."dashdash-1.14.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."date-utils-1.2.21"
+ sources."dateformat-1.0.2-1.2.3"
+ 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.2"
+ sources."ecdsa-sig-formatter-1.0.10"
+ sources."envconf-0.0.4"
+ sources."escape-string-regexp-1.0.5"
+ sources."event-stream-3.1.5"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ sources."fast-deep-equal-1.1.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-1.0.1" // {
+ dependencies = [
+ sources."async-2.6.1"
+ ];
+ })
+ sources."from-0.1.7"
+ sources."fs.realpath-1.0.0"
+ sources."galaxy-0.1.12"
+ sources."generate-function-2.2.0"
+ sources."generate-object-property-1.2.0"
+ (sources."getpass-0.1.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."github-0.1.6"
+ sources."glob-7.1.3"
+ sources."har-schema-2.0.0"
+ (sources."har-validator-2.0.6" // {
+ dependencies = [
+ sources."commander-2.17.1"
+ ];
+ })
+ sources."has-ansi-2.0.0"
+ sources."has-color-0.1.7"
+ sources."hash-base-3.0.4"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-basic-2.5.1"
+ sources."http-response-object-1.1.0"
+ sources."http-signature-1.1.1"
+ sources."i-0.3.6"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-buffer-1.1.6"
+ sources."is-my-ip-valid-1.0.0"
+ sources."is-my-json-valid-2.19.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."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"
+ sources."jsonminify-0.4.1"
+ sources."jsonparse-1.2.0"
+ sources."jsonpointer-4.0.1"
+ (sources."jsprim-1.4.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."jsrsasign-4.8.2"
+ sources."jwa-1.1.6"
+ sources."jws-3.1.5"
+ sources."jwt-decode-2.2.0"
+ sources."keypress-0.1.0"
+ (sources."kuduscript-1.0.16" // {
+ dependencies = [
+ sources."commander-1.1.1"
+ sources."streamline-0.4.11"
+ ];
+ })
+ sources."lodash-4.17.10"
+ sources."map-stream-0.1.0"
+ sources."md5.js-1.3.4"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.22.2"
+ (sources."ms-rest-2.3.6" // {
+ dependencies = [
+ sources."through-2.3.8"
+ sources."tunnel-0.0.5"
+ ];
+ })
+ (sources."ms-rest-azure-2.5.7" // {
+ dependencies = [
+ sources."async-2.6.0"
+ ];
+ })
+ sources."mute-stream-0.0.7"
+ sources."ncp-0.4.2"
+ sources."node-forge-0.6.23"
+ sources."node-uuid-1.4.8"
+ (sources."nomnom-1.8.1" // {
+ dependencies = [
+ sources."ansi-styles-1.0.0"
+ sources."chalk-0.4.0"
+ sources."strip-ansi-0.1.1"
+ sources."underscore-1.6.0"
+ ];
+ })
+ sources."oauth-sign-0.8.2"
+ sources."omelette-0.3.2"
+ sources."once-1.4.0"
+ sources."openssl-wrapper-0.3.4"
+ 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."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.2.3"
+ sources."read-1.0.7"
+ (sources."readable-stream-1.0.34" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ ];
+ })
+ (sources."request-2.88.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ sources."aws-sign2-0.7.0"
+ sources."caseless-0.12.0"
+ sources."form-data-2.3.2"
+ sources."har-validator-5.1.0"
+ sources."http-signature-1.2.0"
+ sources."oauth-sign-0.9.0"
+ sources."qs-6.5.2"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ ];
+ })
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-0.5.2"
+ sources."sntp-1.0.9"
+ 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.14.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ 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.6"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ sources."sync-request-3.0.0"
+ sources."then-request-2.2.0"
+ sources."through-2.3.4"
+ sources."tough-cookie-2.3.4"
+ sources."tunnel-0.0.2"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
+ sources."underscore-1.4.4"
+ sources."user-home-2.0.0"
+ sources."util-deprecate-1.0.2"
+ (sources."utile-0.2.1" // {
+ dependencies = [
+ sources."async-0.2.10"
+ ];
+ })
+ sources."uuid-3.3.2"
+ sources."validator-5.2.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."wcwidth-1.0.1"
+ (sources."winston-2.1.1" // {
+ dependencies = [
+ sources."async-1.0.0"
+ sources."colors-1.0.3"
+ sources."pkginfo-0.3.1"
+ ];
+ })
+ sources."wordwrap-0.0.2"
+ sources."wrappy-1.0.2"
+ sources."xml2js-0.1.14"
+ sources."xmlbuilder-0.4.3"
+ sources."xmldom-0.1.27"
+ sources."xpath.js-1.1.0"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Microsoft Azure Cross Platform Command Line tool";
+ homepage = https://github.com/Azure/azure-xplat-cli;
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ bower = nodeEnv.buildNodePackage {
+ name = "bower";
+ packageName = "bower";
+ version = "1.8.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
+ sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "The browser package manager";
+ homepage = http://bower.io/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ bower2nix = nodeEnv.buildNodePackage {
+ name = "bower2nix";
+ packageName = "bower2nix";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bower2nix/-/bower2nix-3.2.0.tgz";
+ sha1 = "5a0cabad7d5d5e6c35dbc068719c6c919e903fb5";
+ };
+ dependencies = [
+ sources."argparse-1.0.4"
+ sources."array-find-index-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."bower-1.8.4"
+ sources."bower-endpoint-parser-0.2.1"
+ sources."bower-json-0.6.0"
+ sources."bower-logger-0.2.1"
+ sources."brace-expansion-1.1.11"
+ 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.2"
+ sources."ext-list-2.2.2"
+ sources."ext-name-3.0.0"
+ sources."find-up-1.1.2"
+ (sources."fs-extra-0.26.7" // {
+ dependencies = [
+ 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.7.1"
+ sources."indent-string-2.1.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."intersect-1.0.1"
+ 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" // {
+ dependencies = [
+ sources."graceful-fs-4.1.11"
+ ];
+ })
+ (sources."klaw-1.3.1" // {
+ dependencies = [
+ sources."graceful-fs-4.1.11"
+ ];
+ })
+ (sources."load-json-file-1.1.0" // {
+ dependencies = [
+ sources."graceful-fs-4.1.11"
+ ];
+ })
+ 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.36.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."ms-2.0.0"
+ sources."natives-1.1.4"
+ 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" // {
+ dependencies = [
+ sources."graceful-fs-4.1.11"
+ ];
+ })
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."promised-temp-0.1.0"
+ sources."q-1.5.1"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."redent-1.0.0"
+ sources."repeating-2.0.1"
+ (sources."rimraf-2.6.2" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ ];
+ })
+ sources."semver-5.5.1"
+ sources."signal-exit-3.0.2"
+ sources."sort-keys-1.1.2"
+ sources."sort-keys-length-1.0.1"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."sprintf-js-1.0.3"
+ sources."strip-bom-2.0.0"
+ sources."strip-indent-1.0.1"
+ (sources."temp-0.8.3" // {
+ dependencies = [
+ sources."rimraf-2.2.8"
+ ];
+ })
+ sources."trim-newlines-1.0.0"
+ sources."validate-npm-package-license-3.0.4"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Generate nix expressions to fetch bower dependencies";
+ homepage = https://github.com/rvl/bower2nix;
+ license = "GPL-3.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ browserify = nodeEnv.buildNodePackage {
+ name = "browserify";
+ packageName = "browserify";
+ version = "16.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify/-/browserify-16.2.2.tgz";
+ sha512 = "fMES05wq1Oukts6ksGUU2TMVHHp06LyQt0SIwbXIHm7waSrQmNBZePsU0iM/4f94zbvb/wHma+D1YrdzWYnF/A==";
+ };
+ dependencies = [
+ sources."JSONStream-1.3.4"
+ sources."acorn-5.7.2"
+ sources."acorn-dynamic-import-3.0.0"
+ sources."acorn-node-1.5.2"
+ sources."array-filter-0.0.1"
+ sources."array-map-0.0.0"
+ sources."array-reduce-0.0.0"
+ sources."asn1.js-4.10.1"
+ (sources."assert-1.4.1" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ sources."util-0.10.3"
+ ];
+ })
+ sources."balanced-match-1.0.0"
+ sources."base64-js-1.3.0"
+ sources."bn.js-4.11.8"
+ sources."brace-expansion-1.1.11"
+ sources."brorand-1.1.0"
+ sources."browser-pack-6.1.0"
+ (sources."browser-resolve-1.11.3" // {
+ dependencies = [
+ sources."resolve-1.1.7"
+ ];
+ })
+ sources."browserify-aes-1.2.0"
+ sources."browserify-cipher-1.0.1"
+ sources."browserify-des-1.0.2"
+ sources."browserify-rsa-4.0.1"
+ sources."browserify-sign-4.0.4"
+ sources."browserify-zlib-0.2.0"
+ sources."buffer-5.2.0"
+ sources."buffer-from-1.1.1"
+ 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.6.2"
+ 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.3"
+ sources."create-hash-1.2.0"
+ sources."create-hmac-1.1.7"
+ 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-5.1.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."diffie-hellman-5.0.3"
+ sources."domain-browser-1.2.0"
+ sources."duplexer2-0.1.4"
+ sources."elliptic-6.4.1"
+ sources."events-2.1.0"
+ sources."evp_bytestokey-1.0.3"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."get-assigned-identifiers-1.2.0"
+ sources."glob-7.1.3"
+ sources."has-1.0.3"
+ sources."hash-base-3.0.4"
+ sources."hash.js-1.1.5"
+ sources."hmac-drbg-1.0.1"
+ sources."htmlescape-1.1.1"
+ sources."https-browserify-1.0.0"
+ sources."ieee754-1.1.12"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."inline-source-map-0.6.2"
+ sources."insert-module-globals-7.2.0"
+ sources."is-buffer-1.1.6"
+ sources."isarray-2.0.4"
+ sources."json-stable-stringify-0.0.1"
+ sources."jsonify-0.0.0"
+ sources."jsonparse-1.3.1"
+ sources."labeled-stream-splicer-2.0.1"
+ sources."lodash.memoize-3.0.4"
+ sources."md5.js-1.3.4"
+ sources."miller-rabin-4.0.1"
+ sources."minimalistic-assert-1.0.1"
+ 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-6.1.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.1"
+ sources."path-browserify-0.0.1"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.6"
+ sources."path-platform-0.11.15"
+ sources."pbkdf2-3.0.16"
+ sources."process-0.11.10"
+ sources."process-nextick-args-2.0.0"
+ sources."public-encrypt-4.0.2"
+ 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.4"
+ sources."read-only-stream-2.0.0"
+ (sources."readable-stream-2.3.6" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ ];
+ })
+ sources."resolve-1.8.1"
+ sources."ripemd160-2.0.2"
+ sources."safe-buffer-5.1.2"
+ sources."sha.js-2.4.11"
+ sources."shasum-1.0.2"
+ sources."shell-quote-1.6.1"
+ sources."simple-concat-1.0.0"
+ sources."source-map-0.5.7"
+ sources."stream-browserify-2.0.1"
+ sources."stream-combiner2-1.1.1"
+ sources."stream-http-2.8.3"
+ sources."stream-splicer-2.0.0"
+ sources."string_decoder-1.1.1"
+ (sources."subarg-1.0.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."syntax-error-1.4.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.1"
+ sources."typedarray-0.0.6"
+ sources."umd-3.0.3"
+ sources."undeclared-identifiers-1.1.2"
+ (sources."url-0.11.0" // {
+ dependencies = [
+ sources."punycode-1.3.2"
+ ];
+ })
+ sources."util-0.10.4"
+ sources."util-deprecate-1.0.2"
+ sources."vm-browserify-1.1.0"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "browser-side require() the node way";
+ homepage = "https://github.com/browserify/browserify#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ castnow = nodeEnv.buildNodePackage {
+ name = "castnow";
+ packageName = "castnow";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/castnow/-/castnow-0.6.0.tgz";
+ sha512 = "VybZ8QYuJyJHt88TIi12nxsIO/89vmcM1Trna0bTq5O2uzz5SDBE2piU+x87B85V4woosyw9T45f39CZzYjxAw==";
+ };
+ dependencies = [
+ sources."addr-to-ip-port-1.5.1"
+ 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.1"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-1.3.0"
+ sources."bencode-2.0.0"
+ sources."bitfield-0.1.0"
+ (sources."bittorrent-dht-6.4.2" // {
+ dependencies = [
+ sources."bencode-0.7.0"
+ ];
+ })
+ (sources."bittorrent-tracker-7.7.0" // {
+ dependencies = [
+ sources."bencode-0.8.0"
+ ];
+ })
+ sources."blob-to-buffer-1.2.8"
+ sources."bn.js-4.11.8"
+ sources."bncode-0.5.3"
+ sources."boom-0.3.8"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-equal-0.0.1"
+ sources."buffer-equals-1.0.4"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.1"
+ 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.17.1"
+ sources."compact2string-1.4.0"
+ sources."concat-map-0.0.1"
+ (sources."concat-stream-1.6.2" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ 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."decamelize-1.2.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"
+ (sources."end-of-stream-1.0.0" // {
+ dependencies = [
+ sources."once-1.3.3"
+ ];
+ })
+ sources."error-ex-1.3.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."exit-on-epipe-1.0.1"
+ sources."fifo-0.1.4"
+ (sources."figures-1.7.0" // {
+ dependencies = [
+ sources."object-assign-4.1.1"
+ ];
+ })
+ sources."find-up-1.1.2"
+ sources."flatten-0.0.1"
+ sources."forever-agent-0.2.0"
+ (sources."form-data-0.0.10" // {
+ dependencies = [
+ sources."mime-1.2.11"
+ ];
+ })
+ (sources."fs-chunk-store-1.7.0" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."thunky-1.0.2"
+ ];
+ })
+ sources."fs.realpath-1.0.0"
+ sources."get-browser-rtc-1.0.2"
+ sources."get-stdin-4.0.1"
+ sources."glob-7.1.3"
+ 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.7.1"
+ 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"
+ sources."ip-1.1.5"
+ sources."ip-set-1.0.1"
+ sources."ipaddr.js-1.8.1"
+ 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."k-bucket-2.0.1"
+ ];
+ })
+ sources."k-rpc-socket-1.8.0"
+ 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.2.3"
+ sources."map-obj-1.0.1"
+ (sources."mdns-js-1.0.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."meow-3.7.0" // {
+ dependencies = [
+ sources."object-assign-4.1.1"
+ ];
+ })
+ sources."mime-1.6.0"
+ sources."mimic-response-1.0.1"
+ 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" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ ];
+ })
+ 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.9.1" // {
+ dependencies = [
+ sources."get-stdin-6.0.0"
+ ];
+ })
+ (sources."parse-torrent-file-2.1.4" // {
+ dependencies = [
+ sources."bencode-0.7.0"
+ ];
+ })
+ 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.1" // {
+ dependencies = [
+ sources."bncode-0.2.3"
+ ];
+ })
+ sources."peer-wire-swarm-0.12.2"
+ sources."peerflix-0.34.0"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ (sources."playerui-1.3.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-3.0.1"
+ sources."process-nextick-args-2.0.0"
+ sources."promiscuous-0.6.0"
+ sources."protobufjs-3.8.2"
+ (sources."pump-0.3.5" // {
+ dependencies = [
+ sources."once-1.2.0"
+ ];
+ })
+ sources."qap-3.3.1"
+ sources."qs-0.5.6"
+ sources."query-string-1.0.1"
+ (sources."random-access-file-2.0.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ ];
+ })
+ sources."random-access-storage-1.3.0"
+ sources."random-iterate-1.0.1"
+ sources."randombytes-2.0.6"
+ sources."range-parser-1.2.0"
+ (sources."rc-0.4.0" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ ];
+ })
+ 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."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."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" // {
+ dependencies = [
+ sources."mime-1.2.11"
+ ];
+ })
+ sources."rimraf-2.6.2"
+ sources."router-0.6.2"
+ sources."run-parallel-1.1.9"
+ sources."run-series-1.1.8"
+ sources."rusha-0.8.13"
+ sources."rx-2.5.3"
+ sources."safe-buffer-5.1.2"
+ sources."sax-1.2.4"
+ sources."semver-5.5.1"
+ sources."signal-exit-3.0.2"
+ sources."simple-concat-1.0.0"
+ sources."simple-get-2.8.1"
+ (sources."simple-peer-6.4.4" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."simple-sha1-2.1.1"
+ (sources."simple-websocket-4.3.1" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."safe-buffer-5.0.1"
+ sources."string_decoder-1.1.1"
+ sources."ws-2.3.1"
+ ];
+ })
+ sources."single-line-log-0.4.1"
+ sources."sntp-0.1.4"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."speedometer-0.1.4"
+ sources."srt2vtt-1.3.1"
+ sources."stream-transcoder-0.0.5"
+ sources."string2compact-1.3.0"
+ 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"
+ sources."torrent-piece-1.1.2"
+ (sources."torrent-stream-1.0.4" // {
+ dependencies = [
+ sources."end-of-stream-0.1.5"
+ sources."magnet-uri-4.2.3"
+ sources."once-1.3.3"
+ sources."parse-torrent-4.1.0"
+ sources."thirty-two-0.0.2"
+ ];
+ })
+ sources."trim-newlines-1.0.0"
+ sources."tunnel-agent-0.2.0"
+ sources."typedarray-0.0.6"
+ 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.4"
+ sources."voc-1.1.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" // {
+ dependencies = [
+ sources."ultron-1.0.2"
+ ];
+ })
+ sources."xml2js-0.4.19"
+ sources."xmlbuilder-9.0.7"
+ sources."xmldom-0.1.27"
+ sources."xspfr-0.3.1"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "commandline chromecast player";
+ homepage = "https://github.com/xat/castnow#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ clean-css = nodeEnv.buildNodePackage {
+ name = "clean-css";
+ packageName = "clean-css";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz";
+ sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==";
+ };
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A well-tested CSS minifier";
+ homepage = https://github.com/jakubpawlowicz/clean-css;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ coffee-script = nodeEnv.buildNodePackage {
+ 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 = "fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Unfancy JavaScript";
+ homepage = http://coffeescript.org/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ coinmon = nodeEnv.buildNodePackage {
+ name = "coinmon";
+ packageName = "coinmon";
+ version = "0.0.22";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coinmon/-/coinmon-0.0.22.tgz";
+ sha512 = "IiL5bbisnZ4U3IVNn3l5Z8d1RnQ9yvzWuhAJU5VtSGoeYfdCn7jUlliwH02vaFOSggDkMoKdh8eh6OlgqmMu6g==";
+ };
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.1"
+ sources."axios-0.17.1"
+ sources."chalk-2.4.1"
+ sources."cli-cursor-2.1.0"
+ sources."cli-spinners-1.3.1"
+ sources."cli-table2-0.2.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colors-1.3.2"
+ sources."commander-2.17.1"
+ sources."debug-3.1.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."follow-redirects-1.5.7"
+ sources."has-flag-3.0.0"
+ sources."humanize-plus-1.8.2"
+ sources."is-buffer-1.1.6"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."lodash-3.10.1"
+ sources."log-symbols-2.2.0"
+ sources."mimic-fn-1.2.0"
+ sources."ms-2.0.0"
+ sources."number-is-nan-1.0.1"
+ sources."onetime-2.0.1"
+ sources."ora-1.4.0"
+ 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-5.5.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A cryptocurrency price monitoring tool";
+ homepage = "https://github.com/bichenkk/coinmon#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ 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 = "e+fxBy5cCayuNpxt3tcigBIuFsU/+oN48eK3aQtCBV12glavbBMxJa3ut2AEDHhXa/g3pC8r2BorKthrofHGRw==";
+ };
+ 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.4"
+ ];
+ 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 = true;
+ };
+ cordova = nodeEnv.buildNodePackage {
+ name = "cordova";
+ packageName = "cordova";
+ version = "8.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cordova/-/cordova-8.0.0.tgz";
+ sha1 = "2e8446d9493caafd870b1090785e7f03e2ae6a43";
+ };
+ dependencies = [
+ sources."JSONStream-1.3.4"
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.5"
+ sources."acorn-5.7.2"
+ sources."acorn-dynamic-import-3.0.0"
+ sources."acorn-node-1.5.2"
+ 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.4"
+ sources."asn1.js-4.10.1"
+ (sources."assert-1.4.1" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ sources."util-0.10.3"
+ ];
+ })
+ sources."assert-plus-0.2.0"
+ sources."async-1.5.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-1.2.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."big-integer-1.6.34"
+ sources."block-stream-0.0.9"
+ sources."bn.js-4.11.8"
+ sources."body-parser-1.18.2"
+ sources."boom-2.10.1"
+ sources."bplist-creator-0.0.7"
+ sources."bplist-parser-0.1.1"
+ sources."brace-expansion-1.1.11"
+ sources."brorand-1.1.0"
+ sources."browser-pack-6.1.0"
+ (sources."browser-resolve-1.11.3" // {
+ dependencies = [
+ sources."resolve-1.1.7"
+ ];
+ })
+ (sources."browserify-14.4.0" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ ];
+ })
+ sources."browserify-aes-1.2.0"
+ sources."browserify-cipher-1.0.1"
+ sources."browserify-des-1.0.2"
+ 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.2.0"
+ sources."buffer-from-1.1.1"
+ 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.6"
+ sources."commander-2.17.1"
+ sources."compressible-2.0.14"
+ sources."compression-1.7.3"
+ sources."concat-map-0.0.1"
+ (sources."concat-stream-1.5.2" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ 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.5"
+ (sources."cordova-create-1.1.2" // {
+ dependencies = [
+ sources."q-1.0.1"
+ sources."shelljs-0.3.0"
+ ];
+ })
+ (sources."cordova-fetch-1.3.0" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ sources."shelljs-0.7.8"
+ ];
+ })
+ sources."cordova-js-4.2.4"
+ (sources."cordova-lib-8.0.0" // {
+ dependencies = [
+ sources."base64-js-1.1.2"
+ sources."glob-7.1.1"
+ sources."nopt-4.0.1"
+ sources."plist-2.0.1"
+ sources."q-1.0.1"
+ sources."shelljs-0.3.0"
+ sources."underscore-1.8.3"
+ ];
+ })
+ sources."cordova-registry-mapper-1.1.15"
+ sources."cordova-serve-2.0.1"
+ sources."core-util-is-1.0.2"
+ sources."create-ecdh-4.0.3"
+ sources."create-hash-1.2.0"
+ sources."create-hmac-1.1.7"
+ sources."cryptiles-2.0.5"
+ sources."crypto-browserify-3.12.0"
+ (sources."dashdash-1.14.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."date-now-0.1.4"
+ sources."debug-2.6.9"
+ sources."deep-extend-0.6.0"
+ sources."defined-1.0.0"
+ sources."delayed-stream-1.0.0"
+ (sources."dep-graph-1.1.0" // {
+ dependencies = [
+ sources."underscore-1.2.1"
+ ];
+ })
+ sources."depd-1.1.2"
+ (sources."dependency-ls-1.1.1" // {
+ dependencies = [
+ sources."q-1.4.1"
+ ];
+ })
+ 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.3"
+ sources."domain-browser-1.1.7"
+ sources."dot-prop-3.0.0"
+ sources."duplexer2-0.1.4"
+ sources."duplexify-3.6.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."editor-1.0.0"
+ sources."ee-first-1.1.1"
+ sources."elementtree-0.1.6"
+ sources."elliptic-6.4.1"
+ 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.3" // {
+ dependencies = [
+ sources."safe-buffer-5.1.1"
+ ];
+ })
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."falafel-2.1.0"
+ sources."figures-1.7.0"
+ sources."finalhandler-1.1.1"
+ 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.2.0"
+ sources."generate-object-property-1.2.0"
+ sources."get-assigned-identifiers-1.2.0"
+ (sources."getpass-0.1.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."glob-5.0.15"
+ (sources."got-3.3.1" // {
+ dependencies = [
+ sources."object-assign-3.0.0"
+ ];
+ })
+ sources."graceful-fs-4.1.11"
+ sources."har-validator-2.0.6"
+ sources."has-1.0.3"
+ sources."has-ansi-2.0.0"
+ sources."hash-base-3.0.4"
+ sources."hash.js-1.1.5"
+ sources."hawk-3.1.3"
+ sources."hmac-drbg-1.0.1"
+ sources."hoek-2.16.3"
+ sources."hosted-git-info-2.7.1"
+ sources."htmlescape-1.1.1"
+ sources."http-errors-1.6.3"
+ sources."http-signature-1.1.1"
+ sources."https-browserify-1.0.0"
+ sources."iconv-lite-0.4.19"
+ sources."ieee754-1.1.12"
+ 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.3" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ ];
+ })
+ sources."inline-source-map-0.6.2"
+ sources."inquirer-0.10.1"
+ (sources."insert-module-globals-7.2.0" // {
+ dependencies = [
+ sources."concat-stream-1.6.2"
+ ];
+ })
+ (sources."insight-0.8.4" // {
+ dependencies = [
+ (sources."configstore-1.4.0" // {
+ dependencies = [
+ sources."uuid-2.0.3"
+ ];
+ })
+ sources."uuid-3.3.2"
+ ];
+ })
+ sources."interpret-1.1.0"
+ sources."ipaddr.js-1.8.0"
+ 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-ip-valid-1.0.0"
+ sources."is-my-json-valid-2.19.0"
+ 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.4"
+ sources."is-wsl-1.1.0"
+ sources."isarray-0.0.1"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-parse-better-errors-1.0.2"
+ sources."json-schema-0.2.3"
+ sources."json-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.1" // {
+ dependencies = [
+ sources."isarray-2.0.4"
+ ];
+ })
+ sources."latest-version-1.0.1"
+ 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.1"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimalistic-assert-1.0.1"
+ 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-6.1.0"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."object-keys-1.0.12"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."once-1.4.0"
+ sources."onetime-1.1.0"
+ sources."opener-1.4.2"
+ sources."opn-5.3.0"
+ 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.5"
+ (sources."osx-release-1.1.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."package-json-1.2.0"
+ sources."pako-0.2.9"
+ sources."parents-1.0.1"
+ sources."parse-asn1-5.1.1"
+ sources."parseurl-1.3.2"
+ sources."path-browserify-0.0.1"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.6"
+ sources."path-platform-0.11.15"
+ sources."path-to-regexp-0.1.7"
+ sources."pbkdf2-3.0.16"
+ sources."pegjs-0.10.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."plist-2.1.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.4"
+ sources."public-encrypt-4.0.2"
+ 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.4"
+ sources."range-parser-1.2.0"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ 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.13" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ ];
+ })
+ (sources."readable-stream-2.3.6" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."process-nextick-args-2.0.0"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ (sources."readline2-1.0.1" // {
+ dependencies = [
+ sources."mute-stream-0.0.5"
+ ];
+ })
+ sources."rechoir-0.6.2"
+ sources."registry-url-3.1.0"
+ sources."repeating-1.1.3"
+ (sources."request-2.79.0" // {
+ dependencies = [
+ sources."qs-6.3.2"
+ sources."uuid-3.3.2"
+ ];
+ })
+ sources."resolve-1.8.1"
+ sources."restore-cursor-1.0.1"
+ (sources."rimraf-2.6.2" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ ];
+ })
+ sources."ripemd160-2.0.2"
+ sources."run-async-0.1.0"
+ sources."rx-lite-3.1.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-0.3.5"
+ sources."semver-5.5.1"
+ sources."semver-diff-2.1.0"
+ sources."send-0.16.2"
+ sources."serve-static-1.13.2"
+ sources."setprototypeof-1.1.0"
+ sources."sha.js-2.4.11"
+ sources."shasum-1.0.2"
+ sources."shell-quote-1.6.1"
+ sources."shelljs-0.5.3"
+ sources."simple-concat-1.0.0"
+ (sources."simple-plist-0.2.1" // {
+ dependencies = [
+ sources."base64-js-1.1.2"
+ sources."plist-2.0.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-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ (sources."sshpk-1.14.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."statuses-1.4.0"
+ sources."stream-browserify-2.0.1"
+ sources."stream-buffers-2.2.0"
+ sources."stream-combiner2-1.1.1"
+ sources."stream-http-2.8.3"
+ sources."stream-shift-1.0.0"
+ sources."stream-splicer-2.0.0"
+ sources."string-length-1.0.1"
+ sources."string.prototype.codepointat-0.2.1"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.6"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
+ (sources."subarg-1.0.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."supports-color-2.0.0"
+ sources."syntax-error-1.4.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.4"
+ sources."tty-browserify-0.0.1"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ sources."typedarray-0.0.6"
+ sources."umd-3.0.3"
+ sources."undeclared-identifiers-1.1.2"
+ sources."underscore-1.9.1"
+ sources."unorm-1.4.1"
+ sources."unpipe-1.0.0"
+ (sources."update-notifier-0.5.0" // {
+ dependencies = [
+ sources."configstore-1.4.0"
+ ];
+ })
+ (sources."url-0.11.0" // {
+ dependencies = [
+ sources."punycode-1.3.2"
+ ];
+ })
+ sources."util-0.10.4"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-2.0.3"
+ sources."valid-identifier-0.0.1"
+ sources."validate-npm-package-license-3.0.4"
+ sources."validate-npm-package-name-3.0.0"
+ sources."vary-1.1.2"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."vm-browserify-0.0.4"
+ sources."win-release-1.1.1"
+ 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-8.2.2"
+ sources."xmldom-0.1.27"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Cordova command line interface tool";
+ homepage = "https://github.com/apache/cordova-cli#readme";
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ create-cycle-app = nodeEnv.buildNodePackage {
+ name = "create-cycle-app";
+ packageName = "create-cycle-app";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-cycle-app/-/create-cycle-app-4.0.0.tgz";
+ sha512 = "ofgR7gXf+7lgnXQvj0KeveHAyrtoK8zveCDD3sTHPFQY1FKJGkJ7M404ak+G8w6VbTuHwzaBrYbEh8M/SBuykQ==";
+ };
+ dependencies = [
+ sources."@cycle/dom-18.3.0"
+ sources."@cycle/http-14.10.0"
+ (sources."@cycle/isolate-3.4.0" // {
+ dependencies = [
+ sources."@cycle/run-4.4.0"
+ ];
+ })
+ sources."@cycle/run-3.4.0"
+ sources."@cycle/time-0.10.1"
+ sources."@types/cookiejar-2.1.0"
+ sources."@types/node-10.9.2"
+ sources."@types/superagent-3.8.2"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."asynckit-0.4.0"
+ (sources."chalk-2.4.1" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."chardet-0.4.2"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combine-errors-3.0.3"
+ sources."combined-stream-1.0.6"
+ sources."component-emitter-1.2.1"
+ sources."cookiejar-2.1.2"
+ sources."core-util-is-1.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."cssauron-1.4.0"
+ sources."custom-error-instance-2.1.1"
+ sources."cycle-onionify-4.0.0"
+ sources."d-1.0.0"
+ sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
+ sources."es5-ext-0.10.46"
+ 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."escape-string-regexp-1.0.5"
+ sources."event-emitter-0.3.5"
+ sources."extend-3.0.2"
+ sources."external-editor-2.2.0"
+ sources."figures-2.0.0"
+ sources."form-data-2.3.2"
+ sources."formidable-1.2.1"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."iconv-lite-0.4.24"
+ sources."inherits-2.0.3"
+ (sources."inquirer-3.3.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-promise-2.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."lodash-4.17.10"
+ sources."lodash._baseiteratee-4.7.0"
+ sources."lodash._basetostring-4.12.0"
+ sources."lodash._baseuniq-4.6.0"
+ sources."lodash._createset-4.0.3"
+ sources."lodash._root-3.0.1"
+ sources."lodash._stringtopath-4.8.0"
+ sources."lodash.uniqby-4.5.0"
+ sources."lru-cache-4.1.3"
+ sources."methods-1.1.2"
+ sources."mime-1.6.0"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."minimist-1.2.0"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."next-tick-1.0.0"
+ sources."object-assign-4.1.1"
+ sources."onetime-2.0.1"
+ sources."os-tmpdir-1.0.2"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-2.0.0"
+ sources."pseudomap-1.0.2"
+ sources."qs-6.5.2"
+ sources."quicktask-1.1.0"
+ sources."raf-3.3.2"
+ sources."readable-stream-2.3.6"
+ 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."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."setimmediate-1.0.5"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."snabbdom-0.7.0"
+ sources."snabbdom-selector-1.2.1"
+ sources."sorted-immutable-list-1.1.0"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ sources."superagent-3.8.3"
+ sources."supports-color-2.0.0"
+ sources."symbol-observable-1.2.0"
+ sources."through-2.3.8"
+ sources."tmp-0.0.33"
+ sources."util-deprecate-1.0.2"
+ (sources."variable-diff-1.1.0" // {
+ dependencies = [
+ sources."chalk-1.1.3"
+ ];
+ })
+ sources."which-1.3.1"
+ sources."xstream-11.7.0"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Create Cycle.js with no build configuration.";
+ homepage = "https://github.com/cyclejs-community/create-cycle-app#readme";
+ license = "ISC";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ create-react-app = nodeEnv.buildNodePackage {
+ name = "create-react-app";
+ packageName = "create-react-app";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-react-app/-/create-react-app-1.5.2.tgz";
+ sha512 = "vnYIzsfTaqai2l07P9qtxhsZgHbzirC2omxKmf16wqvpXao9CNCDmpk+BCZRElih7HTn/mpO3soe8DTZV4DsgQ==";
+ };
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."balanced-match-1.0.0"
+ sources."block-stream-0.0.9"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-from-0.1.2"
+ sources."builtins-1.0.3"
+ sources."chalk-1.1.3"
+ sources."commander-2.17.1"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ sources."cross-spawn-4.0.2"
+ sources."debug-2.6.9"
+ sources."duplexer2-0.0.2"
+ sources."envinfo-3.4.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."fs-extra-1.0.0"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ sources."fstream-ignore-1.0.5"
+ sources."glob-7.1.3"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-2.0.0"
+ sources."hyperquest-2.1.3"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."isarray-0.0.1"
+ sources."isexe-2.0.0"
+ sources."jsonfile-2.4.0"
+ sources."klaw-1.3.1"
+ sources."lru-cache-4.1.3"
+ sources."macos-release-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."ms-2.0.0"
+ sources."once-1.4.0"
+ sources."os-name-2.0.1"
+ sources."os-tmpdir-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."process-nextick-args-2.0.0"
+ sources."pseudomap-1.0.2"
+ sources."readable-stream-1.1.14"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."semver-5.5.1"
+ sources."string_decoder-0.10.31"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ sources."tar-2.2.1"
+ (sources."tar-pack-3.4.1" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ (sources."through2-0.6.5" // {
+ dependencies = [
+ sources."readable-stream-1.0.34"
+ ];
+ })
+ sources."tmp-0.0.31"
+ sources."uid-number-0.0.6"
+ sources."util-deprecate-1.0.2"
+ sources."validate-npm-package-name-3.0.0"
+ sources."which-1.3.1"
+ sources."win-release-1.1.1"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Create React apps with no build configuration.";
+ homepage = "https://github.com/facebookincubator/create-react-app#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ create-react-native-app = nodeEnv.buildNodePackage {
+ name = "create-react-native-app";
+ packageName = "create-react-native-app";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-react-native-app/-/create-react-native-app-1.0.0.tgz";
+ sha1 = "fc6046f4407bde2727ce0c4eb1354bb1a8c0f9e6";
+ };
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."babel-runtime-6.26.0"
+ sources."chalk-2.4.1"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."core-js-2.5.7"
+ sources."cross-spawn-5.1.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."fs-extra-4.0.3"
+ sources."graceful-fs-4.1.11"
+ sources."has-flag-3.0.0"
+ sources."isexe-2.0.0"
+ sources."jsonfile-4.0.0"
+ sources."lru-cache-4.1.3"
+ sources."minimist-1.2.0"
+ sources."path-exists-3.0.0"
+ sources."pseudomap-1.0.2"
+ sources."regenerator-runtime-0.11.1"
+ sources."semver-5.5.1"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."source-map-0.5.7"
+ sources."source-map-support-0.4.18"
+ sources."supports-color-5.5.0"
+ sources."universalify-0.1.2"
+ sources."which-1.3.1"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Create React Native apps with no build configuration.";
+ homepage = https://github.com/react-community/create-react-native-app;
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ csslint = nodeEnv.buildNodePackage {
+ name = "csslint";
+ packageName = "csslint";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csslint/-/csslint-1.0.5.tgz";
+ sha1 = "19cc3eda322160fd3f7232af1cb2a360e898a2e9";
+ };
+ dependencies = [
+ sources."clone-2.1.2"
+ sources."parserlib-1.1.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "CSSLint";
+ homepage = http://csslint.net/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ dat = nodeEnv.buildNodePackage {
+ name = "dat";
+ packageName = "dat";
+ version = "13.11.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat/-/dat-13.11.4.tgz";
+ sha512 = "+OSlh8PNLlCxLzOC8DVaQ1LgDPynCtarvuK6R76Cr7i2EbkdRBZkodPZMpWXYiTxIijt+nyWMLGn5HXhFsxhzg==";
+ };
+ dependencies = [
+ sources."abstract-random-access-1.1.2"
+ sources."ajv-5.5.2"
+ sources."ansi-align-2.0.0"
+ sources."ansi-diff-1.1.1"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-split-1.0.1"
+ sources."ansi-styles-3.2.1"
+ sources."anymatch-1.3.2"
+ sources."ap-0.1.0"
+ (sources."append-tree-2.4.4" // {
+ dependencies = [
+ sources."process-nextick-args-1.0.7"
+ sources."varint-5.0.0"
+ ];
+ })
+ 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.4"
+ 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.8.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bencode-1.0.0"
+ (sources."bitfield-rle-2.2.1" // {
+ dependencies = [
+ sources."varint-4.0.1"
+ ];
+ })
+ sources."bittorrent-dht-7.10.0"
+ sources."blake2b-2.1.3"
+ sources."blake2b-wasm-1.1.7"
+ sources."body-0.1.0"
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.11"
+ sources."braces-1.8.5"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-equals-1.0.4"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.1"
+ sources."bulk-write-stream-1.1.4"
+ sources."bytes-3.0.0"
+ sources."call-me-maybe-1.0.1"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
+ sources."chalk-2.4.1"
+ sources."ci-info-1.4.0"
+ sources."circular-append-file-1.0.1"
+ sources."cli-boxes-1.0.0"
+ sources."cli-spinners-1.3.1"
+ sources."cli-truncate-1.1.0"
+ sources."cliclopts-1.1.1"
+ sources."co-4.6.0"
+ sources."codecs-1.2.1"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colors-1.3.2"
+ sources."combined-stream-1.0.6"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ sources."configstore-3.1.2"
+ sources."connections-1.4.2"
+ sources."content-types-0.1.0"
+ sources."core-util-is-1.0.2"
+ sources."corsify-2.1.0"
+ sources."count-trailing-zeros-1.0.1"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."crypto-random-string-1.0.0"
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ (sources."dat-dns-3.0.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."dat-doctor-2.1.0"
+ sources."dat-encoding-5.0.1"
+ sources."dat-ignore-2.1.1"
+ (sources."dat-json-1.0.2" // {
+ dependencies = [
+ sources."dat-encoding-4.0.2"
+ ];
+ })
+ sources."dat-link-resolve-2.2.0"
+ (sources."dat-log-1.2.0" // {
+ dependencies = [
+ sources."neat-log-2.4.0"
+ ];
+ })
+ sources."dat-node-3.5.12"
+ sources."dat-registry-4.0.0"
+ sources."dat-secret-storage-4.0.1"
+ sources."dat-storage-1.0.4"
+ sources."dat-swarm-defaults-1.0.1"
+ sources."debug-3.1.0"
+ sources."deep-equal-0.2.2"
+ sources."deep-extend-0.6.0"
+ sources."delayed-stream-1.0.0"
+ sources."diffy-2.0.0"
+ sources."directory-index-html-2.1.0"
+ (sources."discovery-channel-5.5.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."thunky-0.1.0"
+ ];
+ })
+ sources."discovery-swarm-5.1.2"
+ (sources."dns-discovery-6.1.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."lru-2.0.1"
+ ];
+ })
+ sources."dns-packet-4.2.0"
+ sources."dns-socket-3.0.0"
+ sources."dom-walk-0.1.1"
+ sources."dot-prop-4.2.0"
+ sources."duplexer3-0.1.4"
+ sources."duplexify-3.6.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."end-of-stream-1.4.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."execa-0.7.0"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
+ sources."extend-3.0.2"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ sources."fast-bitfield-1.2.1"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fd-read-stream-1.1.0"
+ sources."figures-2.0.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.4"
+ sources."flat-tree-1.6.0"
+ sources."for-each-0.3.3"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."from2-2.3.0"
+ sources."fs.realpath-1.0.0"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.3"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."global-4.3.2"
+ 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.1.0"
+ sources."has-flag-3.0.0"
+ sources."http-methods-0.1.0"
+ sources."http-signature-1.2.0"
+ (sources."hypercore-6.18.2" // {
+ dependencies = [
+ sources."process-nextick-args-1.0.7"
+ sources."unordered-set-2.0.1"
+ ];
+ })
+ sources."hypercore-crypto-1.0.0"
+ (sources."hypercore-protocol-6.6.4" // {
+ dependencies = [
+ sources."varint-5.0.0"
+ ];
+ })
+ sources."hyperdrive-9.14.0"
+ sources."hyperdrive-http-4.3.3"
+ sources."hyperdrive-network-speed-2.1.0"
+ sources."i-0.3.6"
+ 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."inspect-custom-symbol-1.1.0"
+ sources."ip-1.1.5"
+ sources."is-buffer-1.1.6"
+ sources."is-callable-1.1.4"
+ sources."is-ci-1.2.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-2.0.0"
+ sources."is-function-1.0.1"
+ sources."is-glob-2.0.1"
+ sources."is-installed-globally-0.1.0"
+ sources."is-npm-1.0.0"
+ sources."is-number-2.1.0"
+ sources."is-obj-1.0.1"
+ sources."is-options-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-string-1.0.4"
+ 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."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.3.1" // {
+ dependencies = [
+ sources."k-bucket-4.0.1"
+ ];
+ })
+ (sources."k-rpc-socket-1.8.0" // {
+ dependencies = [
+ sources."bencode-2.0.0"
+ ];
+ })
+ sources."keypress-0.2.1"
+ sources."kind-of-3.2.2"
+ sources."last-one-wins-1.0.4"
+ sources."latest-version-3.1.0"
+ sources."length-prefixed-message-3.0.3"
+ sources."lodash.throttle-4.1.1"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-3.1.0"
+ sources."lru-cache-4.1.3"
+ sources."make-dir-1.3.0"
+ sources."math-random-1.0.1"
+ sources."memory-pager-1.1.0"
+ sources."menu-string-1.2.0"
+ sources."merkle-tree-stream-3.0.3"
+ sources."micromatch-2.3.11"
+ sources."mime-2.3.1"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."min-document-2.19.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mirror-folder-3.0.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."ms-2.0.0"
+ sources."multi-random-access-2.1.1"
+ sources."multicast-dns-7.0.1"
+ sources."multicb-1.2.2"
+ sources."multistream-2.1.1"
+ sources."mute-stream-0.0.7"
+ sources."mutexify-1.2.0"
+ sources."nan-2.11.0"
+ sources."nanoassert-1.1.0"
+ sources."nanobus-4.3.3"
+ sources."nanoscheduler-1.0.3"
+ sources."nanotiming-7.3.1"
+ sources."ncp-1.0.1"
+ sources."neat-input-1.8.0"
+ sources."neat-log-3.1.0"
+ sources."neat-spinner-1.0.0"
+ sources."neat-tasks-1.1.1"
+ sources."nets-3.2.0"
+ sources."network-address-1.1.2"
+ sources."node-gyp-build-3.4.0"
+ sources."normalize-path-2.1.1"
+ sources."npm-run-path-2.0.2"
+ sources."oauth-sign-0.9.0"
+ sources."object.omit-2.0.1"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."p-finally-1.0.0"
+ sources."package-json-4.0.1"
+ sources."parse-glob-3.0.4"
+ sources."parse-headers-2.0.1"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."performance-now-2.1.0"
+ sources."pify-3.0.0"
+ sources."pkginfo-0.4.1"
+ sources."prepend-http-1.0.4"
+ 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-2.0.0"
+ sources."progress-string-1.2.2"
+ sources."prompt-1.0.0"
+ (sources."protocol-buffers-encodings-1.1.0" // {
+ dependencies = [
+ sources."varint-5.0.0"
+ ];
+ })
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.29"
+ sources."pump-3.0.0"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."random-access-file-2.0.1"
+ sources."random-access-memory-3.0.0"
+ sources."random-access-storage-1.3.0"
+ (sources."randomatic-3.1.0" // {
+ dependencies = [
+ sources."is-number-4.0.0"
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."randombytes-2.0.6"
+ sources."range-parser-1.2.0"
+ sources."rc-1.2.8"
+ sources."read-1.0.7"
+ sources."readable-stream-2.3.6"
+ sources."recursive-watch-1.1.4"
+ sources."regex-cache-0.4.4"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."remove-array-items-1.0.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."request-2.88.0"
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."rusha-0.8.13"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ 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."signed-varint-2.0.1" // {
+ dependencies = [
+ sources."varint-5.0.0"
+ ];
+ })
+ sources."simple-sha1-2.1.1"
+ sources."siphash24-1.1.1"
+ sources."slice-ansi-1.0.0"
+ sources."sodium-javascript-0.5.5"
+ sources."sodium-native-2.2.1"
+ sources."sodium-universal-2.0.0"
+ sources."sorted-array-functions-1.2.0"
+ sources."sorted-indexof-1.0.0"
+ sources."sparse-bitfield-3.0.3"
+ sources."speedometer-1.1.0"
+ sources."sshpk-1.14.2"
+ sources."stack-trace-0.0.10"
+ sources."stream-collector-1.0.1"
+ sources."stream-each-1.2.3"
+ (sources."stream-parser-0.3.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."stream-shift-1.0.0"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ (sources."subcommand-2.1.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."supports-color-5.5.0"
+ sources."term-size-1.2.0"
+ sources."throttle-1.0.3"
+ sources."thunky-1.0.2"
+ sources."timed-out-4.0.1"
+ sources."to-buffer-1.1.1"
+ (sources."toiletdb-1.4.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."tough-cookie-2.4.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.2"
+ sources."unique-string-1.0.0"
+ sources."unixify-1.0.0"
+ sources."unordered-array-remove-1.0.2"
+ sources."unordered-set-1.1.0"
+ sources."untildify-3.0.3"
+ sources."unzip-response-2.0.1"
+ sources."update-notifier-2.5.0"
+ sources."url-parse-lax-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."utile-0.3.0"
+ sources."utp-native-1.7.3"
+ sources."uuid-3.3.2"
+ sources."varint-3.0.1"
+ sources."verror-1.10.0"
+ sources."which-1.3.1"
+ sources."widest-line-2.0.0"
+ (sources."winston-2.1.1" // {
+ dependencies = [
+ sources."async-1.0.0"
+ sources."colors-1.0.3"
+ sources."pkginfo-0.3.1"
+ ];
+ })
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
+ sources."xhr-2.5.0"
+ sources."xsalsa20-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Dat is the package manager for data. Easily share and version control data.";
+ homepage = https://datproject.org/;
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ dhcp = nodeEnv.buildNodePackage {
+ name = "dhcp";
+ packageName = "dhcp";
+ version = "0.2.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dhcp/-/dhcp-0.2.16.tgz";
+ sha512 = "OEqRYUN/9WskTRRvOJyP3mTPa0HQecfUk+c9YgH1MUkGSDdArnIvoJcUvALBlgrezZvqyO2weQwFSBfORAU8Pw==";
+ };
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A DHCP server written in JavaScript";
+ homepage = https://github.com/infusion/node-dhcp;
+ license = "MIT OR GPL-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ dnschain = nodeEnv.buildNodePackage {
+ name = "dnschain";
+ packageName = "dnschain";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dnschain/-/dnschain-0.5.3.tgz";
+ 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"
+ 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.13"
+ 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"
+ sources."lodash-2.4.2"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimist-0.0.10"
+ sources."ms-0.7.0"
+ sources."nan-2.11.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-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."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."parseurl-1.3.2"
+ sources."path-to-regexp-0.1.3"
+ sources."pause-stream-0.0.11"
+ sources."pkginfo-0.3.1"
+ 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."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."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" // {
+ dependencies = [
+ sources."mime-db-1.12.0"
+ sources."mime-types-2.0.14"
+ ];
+ })
+ 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 = {
+ description = "A blockchain-based DNS + HTTPS server that fixes HTTPS security, and more!";
+ homepage = https://github.com/okTurtles/dnschain;
+ license = "MPL-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ docker-registry-server = nodeEnv.buildNodePackage {
+ name = "docker-registry-server";
+ packageName = "docker-registry-server";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/docker-registry-server/-/docker-registry-server-2.2.0.tgz";
+ sha1 = "5b98836cd7f0348f7f472f7f5a42dd3cab231731";
+ };
+ dependencies = [
+ sources."JSONStream-0.8.4"
+ (sources."abstract-leveldown-0.12.4" // {
+ dependencies = [
+ sources."xtend-3.0.0"
+ ];
+ })
+ sources."basic-auth-1.1.0"
+ sources."bindings-1.2.1"
+ (sources."bl-0.8.2" // {
+ dependencies = [
+ sources."readable-stream-1.0.34"
+ ];
+ })
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-fill-1.0.0"
+ 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."duplexify-3.6.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."end-of-stream-1.4.1"
+ (sources."errno-0.1.7" // {
+ dependencies = [
+ sources."prr-1.0.1"
+ ];
+ })
+ sources."from2-1.3.0"
+ sources."fs-blob-store-5.2.1"
+ sources."fs-constants-1.0.0"
+ 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.7"
+ (sources."level-sublevel-6.6.5" // {
+ dependencies = [
+ (sources."levelup-0.19.1" // {
+ dependencies = [
+ sources."xtend-3.0.0"
+ ];
+ })
+ sources."readable-stream-1.0.34"
+ ];
+ })
+ sources."leveldown-0.10.6"
+ (sources."levelup-0.18.6" // {
+ dependencies = [
+ sources."readable-stream-1.0.34"
+ sources."semver-2.3.2"
+ sources."xtend-3.0.0"
+ ];
+ })
+ 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"
+ ];
+ })
+ sources."minimist-0.2.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."murl-0.4.1"
+ sources."nan-2.1.0"
+ (sources."ndjson-1.5.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."minimist-1.2.0"
+ sources."readable-stream-2.3.6"
+ sources."split2-2.2.0"
+ sources."string_decoder-1.1.1"
+ 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-2.0.0"
+ sources."protein-0.5.0"
+ sources."prr-0.0.0"
+ sources."pull-cat-1.1.11"
+ sources."pull-defer-0.2.3"
+ sources."pull-level-2.0.4"
+ sources."pull-live-1.0.1"
+ sources."pull-pushable-2.2.0"
+ sources."pull-stream-3.6.9"
+ sources."pull-window-2.1.4"
+ sources."pump-1.0.3"
+ (sources."pumpify-1.5.1" // {
+ 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.2"
+ 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" // {
+ dependencies = [
+ sources."looper-3.0.0"
+ ];
+ })
+ sources."string_decoder-0.10.31"
+ (sources."tar-stream-1.6.1" // {
+ dependencies = [
+ sources."bl-1.2.2"
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."through-2.3.8"
+ (sources."through2-0.6.5" // {
+ dependencies = [
+ sources."readable-stream-1.0.34"
+ ];
+ })
+ sources."thunky-0.1.0"
+ sources."to-buffer-1.1.1"
+ sources."typewise-1.0.3"
+ sources."typewise-core-1.2.0"
+ 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 = {
+ description = "docker registry server implemented in node";
+ homepage = https://github.com/mafintosh/docker-registry-server;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ elasticdump = nodeEnv.buildNodePackage {
+ name = "elasticdump";
+ packageName = "elasticdump";
+ version = "3.3.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/elasticdump/-/elasticdump-3.3.19.tgz";
+ sha512 = "vGWC/duKn+EgF3wQMQa2x21w1L1KTqKNydAvw0e2kShD1n/iNVekeF1e8juND/ttZW4yDvHLp4y10ZfoZ4st/Q==";
+ };
+ dependencies = [
+ sources."JSONStream-1.3.4"
+ sources."ajv-5.5.2"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."async-2.6.1"
+ sources."asynckit-0.4.0"
+ sources."aws-sdk-2.303.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."base64-js-1.3.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."buffer-4.9.1"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.6"
+ sources."core-util-is-1.0.2"
+ sources."dashdash-1.14.1"
+ sources."decimal.js-10.0.1"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."events-1.1.1"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."getpass-0.1.7"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.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.10"
+ sources."lossless-json-1.0.3"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimist-0.0.10"
+ sources."oauth-sign-0.9.0"
+ sources."optimist-0.6.1"
+ sources."performance-now-2.1.0"
+ sources."psl-1.1.29"
+ sources."punycode-1.3.2"
+ sources."qs-6.5.2"
+ sources."querystring-0.2.0"
+ (sources."request-2.88.0" // {
+ dependencies = [
+ sources."uuid-3.3.2"
+ ];
+ })
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.1"
+ sources."sshpk-1.14.2"
+ sources."through-2.3.8"
+ (sources."tough-cookie-2.4.3" // {
+ dependencies = [
+ sources."punycode-1.4.1"
+ ];
+ })
+ 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.19"
+ sources."xmlbuilder-9.0.7"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "import and export tools for elasticsearch";
+ homepage = "https://github.com/taskrabbit/elasticsearch-dump#readme";
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ elm-oracle = nodeEnv.buildNodePackage {
+ name = "elm-oracle";
+ packageName = "elm-oracle";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/elm-oracle/-/elm-oracle-1.1.1.tgz";
+ sha1 = "61f6d783221b4ad08e7d101d678b9d5a67d3961c";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Query for information about values in elm source files.";
+ homepage = "https://github.com/ElmCast/elm-oracle#readme";
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ elm-test = nodeEnv.buildNodePackage {
+ name = "elm-test";
+ packageName = "elm-test";
+ version = "0.18.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/elm-test/-/elm-test-0.18.12.tgz";
+ sha512 = "5n1uNviCRxXIx5ciaFuzJd3fshcyicbYvTwyGh/L5t05bfBeq/3FZ5a3mLTz+zRZhp18dul2Oz8WoZmcn8PHcg==";
+ };
+ 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.4"
+ 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.8.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."binary-extensions-1.11.0"
+ sources."binstall-1.2.0"
+ sources."block-stream-0.0.9"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.11"
+ sources."braces-1.8.5"
+ sources."caseless-0.11.0"
+ (sources."chalk-2.1.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ ];
+ })
+ sources."chokidar-1.6.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ 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" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
+ sources."extend-3.0.2"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.4"
+ (sources."find-elm-dependencies-1.0.2" // {
+ dependencies = [
+ sources."firstline-1.2.0"
+ sources."lodash-4.14.2"
+ ];
+ })
+ sources."find-parent-dir-0.3.0"
+ sources."firstline-1.2.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."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.2.0"
+ sources."generate-object-property-1.2.0"
+ (sources."getpass-0.1.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."glob-7.1.3"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
+ (sources."har-validator-2.0.6" // {
+ dependencies = [
+ sources."chalk-1.1.3"
+ sources."supports-color-2.0.0"
+ ];
+ })
+ sources."has-ansi-2.0.0"
+ sources."has-flag-2.0.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-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-ip-valid-1.0.0"
+ sources."is-my-json-valid-2.19.0"
+ 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."kind-of-3.2.2"
+ sources."klaw-1.3.1"
+ sources."lodash-4.13.1"
+ sources."lru-cache-4.1.3"
+ sources."math-random-1.0.1"
+ sources."micromatch-2.3.11"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."murmur-hash-js-1.0.0"
+ sources."nan-2.11.0"
+ (sources."node-elm-compiler-4.3.3" // {
+ dependencies = [
+ sources."lodash-4.14.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-tmpdir-1.0.2"
+ sources."parse-glob-3.0.4"
+ sources."path-is-absolute-1.0.1"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."preserve-0.2.0"
+ sources."process-nextick-args-2.0.0"
+ sources."pseudomap-1.0.2"
+ sources."punycode-1.4.1"
+ sources."qs-6.3.2"
+ (sources."randomatic-3.1.0" // {
+ dependencies = [
+ sources."is-number-4.0.0"
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."request-2.79.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."set-immediate-shim-1.0.1"
+ sources."sntp-1.0.9"
+ sources."split-1.0.1"
+ (sources."sshpk-1.14.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."string_decoder-1.1.1"
+ sources."stringstream-0.0.6"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-4.2.0"
+ sources."tar-2.2.1"
+ (sources."temp-0.8.3" // {
+ dependencies = [
+ sources."rimraf-2.2.8"
+ ];
+ })
+ sources."through-2.3.8"
+ sources."tough-cookie-2.3.4"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."which-1.3.1"
+ sources."wrappy-1.0.2"
+ sources."xmlbuilder-8.2.2"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Run elm-test suites.";
+ homepage = "https://github.com/rtfeldman/node-test-runner#readme";
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ emoj = nodeEnv.buildNodePackage {
+ name = "emoj";
+ packageName = "emoj";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/emoj/-/emoj-2.0.0.tgz";
+ sha512 = "f+jc5ZC+EAqRK84plziuC4sfKspUcnnxwZzxLFSFsH0MZn9VbU0iQh5qTONewYXsoRaacNioMOLxYV637MLBDQ==";
+ };
+ dependencies = [
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-2.2.1"
+ sources."arch-2.1.1"
+ sources."array-find-index-1.0.2"
+ sources."arrify-1.0.1"
+ sources."auto-bind-1.2.1"
+ sources."babel-code-frame-6.26.0"
+ sources."babel-core-6.26.3"
+ sources."babel-generator-6.26.1"
+ 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."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."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."builtin-modules-1.1.1"
+ sources."caller-callsite-2.0.0"
+ sources."caller-path-2.0.0"
+ sources."callsites-2.0.0"
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
+ (sources."chalk-1.1.3" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."has-ansi-2.0.0"
+ ];
+ })
+ sources."cli-cursor-2.1.0"
+ sources."clipboardy-1.2.3"
+ sources."color-convert-1.9.3"
+ 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.7"
+ 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."env-paths-1.0.0"
+ sources."error-ex-1.3.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."esutils-2.0.2"
+ sources."execa-0.8.0"
+ 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-3.0.0"
+ sources."has-symbol-support-x-1.4.2"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."home-or-tmp-2.0.0"
+ sources."hosted-git-info-2.7.1"
+ sources."import-jsx-1.3.0"
+ sources."imurmurhash-0.1.4"
+ sources."indent-string-3.2.0"
+ (sources."ink-0.3.1" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."ink-text-input-1.1.1"
+ sources."invariant-2.2.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-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."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" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.10"
+ 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."loose-envify-1.4.0"
+ sources."loud-rejection-1.6.0"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.3"
+ sources."make-dir-1.3.0"
+ sources."map-obj-1.0.1"
+ sources."mem-1.1.0"
+ (sources."meow-3.7.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."mimic-fn-1.2.0"
+ sources."mimic-response-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ 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.3.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" // {
+ dependencies = [
+ sources."pify-2.3.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."prop-types-15.6.2"
+ sources."pseudomap-1.0.2"
+ sources."read-pkg-1.1.0"
+ (sources."read-pkg-up-1.0.1" // {
+ dependencies = [
+ sources."find-up-1.1.2"
+ sources."path-exists-2.1.0"
+ ];
+ })
+ (sources."redent-1.0.0" // {
+ dependencies = [
+ sources."indent-string-2.1.0"
+ ];
+ })
+ 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.2"
+ sources."semver-5.5.1"
+ 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-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ (sources."strip-ansi-3.0.1" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
+ sources."strip-bom-2.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-indent-1.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."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.4"
+ sources."which-1.3.1"
+ (sources."wrap-ansi-3.0.1" // {
+ dependencies = [
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."write-file-atomic-2.3.0"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Find relevant emoji from text on the command-line";
+ homepage = "https://github.com/sindresorhus/emoj#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ eslint = nodeEnv.buildNodePackage {
+ name = "eslint";
+ packageName = "eslint";
+ version = "5.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint/-/eslint-5.4.0.tgz";
+ sha512 = "UIpL91XGex3qtL6qwyCQJar2j3osKxK9e3ano3OcGEIRM4oWIpCkDg9x95AXEC2wMs7PnxzOkPZ2gq+tsMS9yg==";
+ };
+ dependencies = [
+ sources."acorn-5.7.2"
+ sources."acorn-jsx-4.1.1"
+ sources."ajv-6.5.3"
+ sources."ajv-keywords-3.2.0"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."argparse-1.0.10"
+ 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.11"
+ sources."caller-path-0.1.0"
+ sources."callsites-0.2.0"
+ (sources."chalk-2.4.1" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."supports-color-5.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."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."concat-map-0.0.1"
+ sources."cross-spawn-6.0.5"
+ sources."debug-3.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-scope-4.0.0"
+ sources."eslint-utils-1.3.1"
+ sources."eslint-visitor-keys-1.0.0"
+ sources."espree-4.0.0"
+ sources."esprima-4.0.1"
+ sources."esquery-1.0.1"
+ sources."esrecurse-4.2.1"
+ sources."estraverse-4.2.0"
+ sources."esutils-2.0.2"
+ sources."external-editor-2.2.0"
+ sources."fast-deep-equal-2.0.1"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."figures-2.0.0"
+ sources."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.3"
+ sources."globals-11.7.0"
+ sources."globby-5.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."iconv-lite-0.4.24"
+ sources."ignore-4.0.6"
+ sources."imurmurhash-0.1.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."inquirer-5.2.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-path-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-promise-2.1.0"
+ sources."is-resolvable-1.1.0"
+ sources."isexe-2.0.0"
+ sources."js-tokens-3.0.2"
+ sources."js-yaml-3.12.0"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stable-stringify-without-jsonify-1.0.1"
+ sources."levn-0.3.0"
+ sources."lodash-4.17.10"
+ sources."mimic-fn-1.2.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."nice-try-1.0.5"
+ 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-key-2.0.1"
+ 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."progress-2.0.0"
+ sources."punycode-2.1.1"
+ sources."regexpp-2.0.0"
+ sources."require-uncached-1.0.3"
+ sources."resolve-from-1.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rxjs-5.5.11"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ 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."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."symbol-observable-1.0.1"
+ sources."table-4.0.3"
+ sources."text-table-0.2.0"
+ sources."through-2.3.8"
+ sources."tmp-0.0.33"
+ sources."type-check-0.3.2"
+ sources."uri-js-4.2.2"
+ sources."which-1.3.1"
+ sources."wordwrap-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."write-0.2.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "An AST-based pattern checker for JavaScript.";
+ homepage = https://eslint.org/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ eslint_d = nodeEnv.buildNodePackage {
+ name = "eslint_d";
+ packageName = "eslint_d";
+ version = "7.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint_d/-/eslint_d-7.1.0.tgz";
+ sha512 = "NjFiFcKPEjDlleLlngMyVcD6oLu6L8BctLJ3saPZfC4yLD+AJteII5E8meGqTislKxiVMMWHWXed61siXz3mCA==";
+ };
+ dependencies = [
+ sources."acorn-5.7.2"
+ sources."acorn-jsx-4.1.1"
+ sources."ajv-6.5.3"
+ sources."ajv-keywords-3.2.0"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."argparse-1.0.10"
+ 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."supports-color-2.0.0"
+ ];
+ })
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."caller-path-0.1.0"
+ sources."callsites-0.2.0"
+ (sources."chalk-2.4.1" // {
+ dependencies = [
+ sources."ansi-styles-3.2.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."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."concat-map-0.0.1"
+ sources."cross-spawn-6.0.5"
+ sources."debug-3.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-5.4.0"
+ sources."eslint-scope-4.0.0"
+ sources."eslint-utils-1.3.1"
+ sources."eslint-visitor-keys-1.0.0"
+ sources."espree-4.0.0"
+ sources."esprima-4.0.1"
+ sources."esquery-1.0.1"
+ sources."esrecurse-4.2.1"
+ sources."estraverse-4.2.0"
+ sources."esutils-2.0.2"
+ sources."external-editor-2.2.0"
+ sources."fast-deep-equal-2.0.1"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."figures-2.0.0"
+ sources."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.3"
+ sources."globals-11.7.0"
+ sources."globby-5.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."iconv-lite-0.4.24"
+ sources."ignore-4.0.6"
+ sources."imurmurhash-0.1.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."inquirer-5.2.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-path-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-promise-2.1.0"
+ sources."is-resolvable-1.1.0"
+ sources."isexe-2.0.0"
+ sources."js-tokens-3.0.2"
+ sources."js-yaml-3.12.0"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stable-stringify-without-jsonify-1.0.1"
+ sources."levn-0.3.0"
+ sources."lodash-4.17.10"
+ sources."mimic-fn-1.2.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."nanolru-1.0.0"
+ sources."natural-compare-1.4.0"
+ sources."nice-try-1.0.5"
+ 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-key-2.0.1"
+ sources."path-parse-1.0.6"
+ 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."progress-2.0.0"
+ sources."punycode-2.1.1"
+ sources."regexpp-2.0.0"
+ sources."require-uncached-1.0.3"
+ sources."resolve-1.8.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."rxjs-5.5.11"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ 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."strip-ansi-4.0.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ ];
+ })
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-5.5.0"
+ sources."symbol-observable-1.0.1"
+ sources."table-4.0.3"
+ sources."text-table-0.2.0"
+ sources."through-2.3.8"
+ sources."tmp-0.0.33"
+ sources."type-check-0.3.2"
+ sources."uri-js-4.2.2"
+ sources."which-1.3.1"
+ sources."wordwrap-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."write-0.2.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Makes eslint the fastest linter on the planet";
+ homepage = https://github.com/mantoni/eslint_d.js;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ emojione = nodeEnv.buildNodePackage {
+ name = "emojione";
+ packageName = "emojione";
+ version = "3.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/emojione/-/emojione-3.1.7.tgz";
+ sha1 = "2d3c725c696f179c9dde3acb655c621ee9429b1e";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "EmojiOne is a complete set of emojis designed for the web. It includes libraries to easily convert unicode characters to shortnames (:smile:) and shortnames to our custom emoji images. PNG formats provided for the emoji images.";
+ homepage = http://www.emojione.com/;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ "fast-cli-1.x" = nodeEnv.buildNodePackage {
+ name = "fast-cli";
+ packageName = "fast-cli";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-cli/-/fast-cli-1.0.0.tgz";
+ sha1 = "81f5f98043cc2517053f96ba5d61ef5db430c010";
+ };
+ dependencies = [
+ sources."ajv-5.5.2"
+ sources."ansi-escapes-1.4.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."array-find-index-1.0.2"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."buffer-from-1.1.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.3.1"
+ sources."co-4.6.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."concat-stream-1.6.2"
+ sources."core-util-is-1.0.2"
+ sources."currently-unhandled-0.4.1"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."error-ex-1.3.2"
+ sources."es6-promise-4.2.4"
+ sources."escape-string-regexp-1.0.5"
+ sources."exit-hook-1.1.1"
+ sources."extend-3.0.2"
+ sources."extract-zip-1.6.7"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.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.2"
+ 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.1.0"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."hasha-2.2.0"
+ sources."hosted-git-info-2.7.1"
+ 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-2.2.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."minimist-1.2.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."mkpath-1.0.0"
+ sources."ms-2.0.0"
+ sources."node-phantom-simple-2.2.4"
+ sources."normalize-package-data-2.4.0"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ sources."onetime-1.1.0"
+ (sources."ora-1.4.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."cli-cursor-2.1.0"
+ sources."onetime-2.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."supports-color-5.5.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"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."process-nextick-args-2.0.0"
+ sources."progress-1.1.8"
+ sources."promise-phantom-3.1.6"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-2.3.6"
+ sources."redent-1.0.0"
+ sources."repeating-2.0.1"
+ sources."request-2.88.0"
+ sources."request-progress-2.0.1"
+ sources."restore-cursor-1.0.1"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ sources."signal-exit-3.0.2"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."sshpk-1.14.2"
+ sources."string_decoder-1.1.1"
+ 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.4.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.3.2"
+ sources."validate-npm-package-license-3.0.4"
+ sources."verror-1.10.0"
+ sources."which-1.3.1"
+ sources."yauzl-2.4.1"
+ sources."zen-observable-0.5.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Test your download speed using fast.com";
+ homepage = "https://github.com/sindresorhus/fast-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ fetch-bower = nodeEnv.buildNodePackage {
+ name = "fetch-bower";
+ packageName = "fetch-bower";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fetch-bower/-/fetch-bower-2.0.0.tgz";
+ sha1 = "c027feb75a512001d1287bbfb3ffaafba67eb92f";
+ };
+ dependencies = [
+ sources."bower-1.8.4"
+ sources."bower-endpoint-parser-0.2.1"
+ sources."bower-logger-0.2.1"
+ sources."glob-3.2.11"
+ sources."inherits-2.0.3"
+ sources."lru-cache-2.7.3"
+ sources."minimatch-0.3.0"
+ sources."sigmund-1.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Companion to bower2nix to be used in the fetchBower fixed-output derivation";
+ homepage = https://bitbucket.org/shlevy/fetch-bower;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ forever = nodeEnv.buildNodePackage {
+ name = "forever";
+ packageName = "forever";
+ version = "0.15.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forever/-/forever-0.15.3.tgz";
+ 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.11"
+ sources."braces-1.8.5"
+ (sources."broadway-0.3.6" // {
+ dependencies = [
+ sources."cliff-0.1.9"
+ sources."winston-0.8.0"
+ ];
+ })
+ sources."caller-0.0.1"
+ sources."chokidar-1.7.0"
+ (sources."cliff-0.1.10" // {
+ dependencies = [
+ sources."colors-1.0.3"
+ ];
+ })
+ sources."clone-1.0.4"
+ 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" // {
+ dependencies = [
+ sources."optimist-0.2.8"
+ ];
+ })
+ 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.4"
+ (sources."flatiron-0.4.3" // {
+ dependencies = [
+ sources."optimist-0.6.0"
+ ];
+ })
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."forever-monitor-1.7.1"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.2.4"
+ sources."glob-7.1.3"
+ 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."math-random-1.0.1"
+ sources."micromatch-2.3.11"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.10"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."mute-stream-0.0.7"
+ sources."nan-2.11.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.3.2"
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."process-nextick-args-2.0.0"
+ sources."prompt-0.2.14"
+ sources."ps-tree-0.0.3"
+ (sources."randomatic-3.1.0" // {
+ dependencies = [
+ sources."is-number-4.0.0"
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."read-1.0.7"
+ sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."resumer-0.0.0"
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."set-immediate-shim-1.0.1"
+ sources."shush-1.0.0"
+ sources."stack-trace-0.0.10"
+ sources."string_decoder-1.1.1"
+ 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"
+ sources."winston-0.8.3"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)";
+ homepage = "https://github.com/foreverjs/forever#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ git-run = nodeEnv.buildNodePackage {
+ name = "git-run";
+ packageName = "git-run";
+ version = "0.5.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-run/-/git-run-0.5.5.tgz";
+ sha512 = "76zCOpXUl/85CMk9aJwWbBy2vGYv+Yn17PcUMhksTtMJLAUujje3eP8v7FufC2pN9SbQx88Gtr4ARXGeVWwAJA==";
+ };
+ dependencies = [
+ sources."async-2.6.1"
+ sources."debug-3.1.0"
+ sources."lodash-4.17.10"
+ 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.96.0"
+ sources."tabtab-git+https://github.com/mixu/node-tabtab.git"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A tool for managing multiple git repositories";
+ homepage = "https://github.com/mixu/gr#readme";
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ git-standup = nodeEnv.buildNodePackage {
+ name = "git-standup";
+ packageName = "git-standup";
+ version = "2.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-standup/-/git-standup-2.1.9.tgz";
+ sha512 = "+XT110zb/S1XzG+amg5gKGWcD6dW58mnstS4GkuiO63aA8qGvpgNB9Cq89qxhFSIQ2smeB/00QGsVLn4CL1V+A==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Recall what you did on the last working day. Psst! or be nosy and find what someone else in your team did ;-)";
+ homepage = "https://github.com/kamranahmedse/git-standup#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ graphql-cli = nodeEnv.buildNodePackage {
+ name = "graphql-cli";
+ packageName = "graphql-cli";
+ version = "2.16.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql-cli/-/graphql-cli-2.16.5.tgz";
+ sha512 = "a2QYKmjc6H/39ZGpcKGNQIGAtz84BIVYw9LyYy3Iv1cxJ46zeRgyLBdl8vk+f1aYjQ80TAGHL2+qlIKBD7mDfg==";
+ };
+ dependencies = [
+ sources."@babel/generator-7.0.0-beta.38"
+ sources."@babel/types-7.0.0-beta.38"
+ (sources."@kbrandwijk/swagger-to-graphql-2.4.3" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."cliui-3.2.0"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ sources."yargs-8.0.2"
+ sources."yargs-parser-7.0.0"
+ ];
+ })
+ sources."accepts-1.3.5"
+ sources."adm-zip-0.4.7"
+ sources."agent-base-4.2.1"
+ sources."ajv-5.5.2"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ (sources."apollo-codegen-0.19.1" // {
+ dependencies = [
+ (sources."graphql-config-1.2.1" // {
+ dependencies = [
+ sources."graphql-0.12.3"
+ ];
+ })
+ sources."node-fetch-1.7.3"
+ sources."yargs-10.1.2"
+ ];
+ })
+ sources."argparse-1.0.10"
+ sources."array-flatten-1.1.1"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."async-2.6.1"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."babel-runtime-6.26.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bluebird-3.5.1"
+ (sources."body-parser-1.18.2" // {
+ dependencies = [
+ sources."iconv-lite-0.4.19"
+ ];
+ })
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-equal-constant-time-1.0.1"
+ sources."buffer-from-1.1.1"
+ sources."builtin-modules-1.1.1"
+ sources."bytes-3.0.0"
+ sources."call-me-maybe-1.0.1"
+ sources."camel-case-3.0.0"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
+ sources."chalk-2.4.1"
+ sources."change-case-3.0.2"
+ sources."chardet-0.4.2"
+ sources."ci-info-1.4.0"
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-spinners-1.3.1"
+ sources."cli-width-2.2.0"
+ sources."cliui-4.1.0"
+ sources."clone-1.0.4"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ (sources."columnify-1.5.4" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."combined-stream-1.0.6"
+ sources."command-exists-1.2.7"
+ sources."commander-2.17.1"
+ sources."common-tags-1.8.0"
+ sources."concat-map-0.0.1"
+ sources."configstore-3.1.2"
+ sources."constant-case-2.0.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."core-js-2.5.7"
+ sources."core-util-is-1.0.2"
+ (sources."cosmiconfig-3.1.0" // {
+ dependencies = [
+ sources."parse-json-3.0.0"
+ ];
+ })
+ sources."create-error-class-3.0.2"
+ (sources."cross-fetch-2.2.2" // {
+ dependencies = [
+ sources."node-fetch-2.1.2"
+ ];
+ })
+ sources."cross-spawn-6.0.5"
+ sources."crypto-random-string-1.0.0"
+ (sources."cucumber-html-reporter-3.0.4" // {
+ dependencies = [
+ sources."fs-extra-3.0.1"
+ sources."jsonfile-3.0.1"
+ ];
+ })
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."deep-extend-0.6.0"
+ sources."defaults-1.0.3"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."diff-1.4.0"
+ (sources."disparity-2.0.0" // {
+ dependencies = [
+ sources."ansi-styles-2.2.1"
+ ];
+ })
+ sources."dot-case-2.1.1"
+ sources."dot-prop-4.2.0"
+ sources."dotenv-5.0.1"
+ sources."duplexer3-0.1.4"
+ sources."ecc-jsbn-0.1.2"
+ sources."ecdsa-sig-formatter-1.0.10"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."encoding-0.1.12"
+ sources."errno-0.1.7"
+ sources."error-ex-1.3.2"
+ sources."es6-promise-4.2.4"
+ sources."es6-promisify-5.0.0"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.1"
+ sources."esutils-2.0.2"
+ sources."etag-1.8.1"
+ (sources."execa-0.7.0" // {
+ dependencies = [
+ sources."cross-spawn-5.1.0"
+ ];
+ })
+ sources."expand-tilde-2.0.2"
+ sources."express-4.16.3"
+ (sources."express-request-proxy-2.2.0" // {
+ dependencies = [
+ (sources."body-parser-1.18.3" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."debug-3.1.0"
+ sources."iconv-lite-0.4.23"
+ sources."path-to-regexp-1.7.0"
+ sources."qs-6.5.2"
+ sources."raw-body-2.3.3"
+ ];
+ })
+ sources."extend-3.0.2"
+ sources."external-editor-2.2.0"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."figures-2.0.0"
+ sources."finalhandler-1.1.1"
+ sources."find-0.2.9"
+ sources."find-up-2.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."format-util-1.0.3"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fs-extra-5.0.0"
+ sources."fs.realpath-1.0.0"
+ sources."get-caller-file-1.0.3"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.3"
+ sources."global-dirs-0.1.1"
+ sources."global-modules-1.0.0"
+ sources."global-prefix-1.0.2"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."graphcool-json-schema-1.2.1"
+ (sources."graphcool-yml-0.4.15" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."dotenv-4.0.0"
+ sources."fs-extra-4.0.3"
+ ];
+ })
+ (sources."graphql-0.13.2" // {
+ dependencies = [
+ sources."iterall-1.2.2"
+ ];
+ })
+ (sources."graphql-cli-prepare-1.4.19" // {
+ dependencies = [
+ sources."chalk-2.3.1"
+ sources."lodash-4.17.5"
+ ];
+ })
+ sources."graphql-config-2.0.1"
+ sources."graphql-config-extension-graphcool-1.0.8"
+ sources."graphql-config-extension-openapi-1.0.6"
+ sources."graphql-config-extension-prisma-0.0.11"
+ sources."graphql-import-0.4.5"
+ (sources."graphql-playground-html-1.5.5" // {
+ dependencies = [
+ sources."graphql-config-2.0.0"
+ ];
+ })
+ sources."graphql-playground-middleware-express-1.6.2"
+ sources."graphql-request-1.8.2"
+ sources."graphql-schema-linter-0.1.1"
+ sources."graphql-static-binding-0.9.3"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."has-flag-3.0.0"
+ sources."header-case-1.0.1"
+ sources."homedir-polyfill-1.0.1"
+ sources."hosted-git-info-2.7.1"
+ sources."http-errors-1.6.3"
+ (sources."http-proxy-agent-2.1.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ (sources."https-proxy-agent-2.2.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."iconv-lite-0.4.24"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."inflected-2.0.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."inquirer-5.1.0"
+ sources."invert-kv-1.0.0"
+ sources."ip-regex-1.0.3"
+ sources."ipaddr.js-1.8.0"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-ci-1.2.0"
+ sources."is-directory-0.3.1"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-installed-globally-0.1.0"
+ sources."is-lower-case-1.1.3"
+ 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."is-upper-case-1.1.2"
+ sources."is-url-superb-2.0.0"
+ sources."is-windows-1.0.2"
+ sources."is-wsl-1.1.0"
+ sources."isarray-0.0.1"
+ sources."isexe-2.0.0"
+ (sources."isomorphic-fetch-2.2.1" // {
+ dependencies = [
+ sources."node-fetch-1.7.3"
+ ];
+ })
+ sources."isstream-0.1.2"
+ sources."iterall-1.1.3"
+ sources."js-base64-2.4.9"
+ sources."js-yaml-3.12.0"
+ sources."jsbn-0.1.1"
+ sources."jsesc-2.5.1"
+ sources."json-schema-0.2.3"
+ (sources."json-schema-ref-parser-3.3.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stable-stringify-1.0.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-4.0.0"
+ sources."jsonify-0.0.0"
+ (sources."jsonwebtoken-8.3.0" // {
+ dependencies = [
+ sources."ms-2.1.1"
+ ];
+ })
+ sources."jsprim-1.4.1"
+ sources."jwa-1.1.6"
+ sources."jws-3.1.5"
+ sources."latest-version-3.1.0"
+ sources."lcid-1.0.0"
+ sources."load-json-file-2.0.0"
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.10"
+ sources."lodash.get-4.4.2"
+ sources."lodash.includes-4.3.0"
+ sources."lodash.isboolean-3.0.3"
+ sources."lodash.isequal-4.5.0"
+ sources."lodash.isinteger-4.0.4"
+ sources."lodash.isnumber-3.0.3"
+ sources."lodash.isplainobject-4.0.6"
+ sources."lodash.isstring-4.0.1"
+ sources."lodash.once-4.1.1"
+ sources."log-symbols-2.2.0"
+ sources."lower-case-1.1.4"
+ sources."lower-case-first-1.0.2"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.3"
+ (sources."make-dir-1.3.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."media-typer-0.3.0"
+ sources."mem-1.1.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."mime-1.4.1"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.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."negotiator-0.6.1"
+ sources."nice-try-1.0.5"
+ sources."no-case-2.3.2"
+ sources."node-fetch-2.2.0"
+ sources."node-request-by-swagger-1.1.3"
+ sources."normalize-package-data-2.4.0"
+ sources."npm-path-2.0.4"
+ sources."npm-paths-1.0.0"
+ (sources."npm-run-4.1.2" // {
+ dependencies = [
+ sources."cross-spawn-5.1.0"
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."npm-run-path-2.0.2"
+ sources."npm-which-3.0.1"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."on-finished-2.3.0"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."ono-4.0.6"
+ sources."open-0.0.5"
+ sources."opn-5.3.0"
+ sources."ora-1.4.0"
+ sources."os-locale-2.1.0"
+ sources."os-tmpdir-1.0.2"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."package-json-4.0.1"
+ sources."param-case-2.1.1"
+ sources."parse-github-url-1.0.2"
+ sources."parse-json-2.2.0"
+ sources."parse-passwd-1.0.0"
+ sources."parseurl-1.3.2"
+ sources."pascal-case-2.0.1"
+ sources."path-case-2.1.1"
+ 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-to-regexp-0.1.7"
+ sources."path-type-2.0.0"
+ sources."performance-now-2.1.0"
+ sources."pify-2.3.0"
+ sources."prepend-http-1.0.4"
+ sources."prisma-json-schema-0.0.4"
+ (sources."prisma-yml-1.0.50" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."dotenv-4.0.0"
+ ];
+ })
+ sources."process-nextick-args-2.0.0"
+ sources."protochain-1.0.5"
+ sources."proxy-addr-2.0.4"
+ sources."prr-1.0.1"
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."range-parser-1.2.0"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ sources."iconv-lite-0.4.19"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."read-pkg-2.0.0"
+ sources."read-pkg-up-2.0.0"
+ (sources."readable-stream-2.3.6" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ ];
+ })
+ sources."regenerator-runtime-0.11.1"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."replaceall-0.1.6"
+ (sources."request-2.88.0" // {
+ dependencies = [
+ sources."qs-6.5.2"
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."request-promise-4.2.2"
+ sources."request-promise-core-1.1.1"
+ sources."require-directory-2.1.1"
+ sources."require-from-string-2.0.2"
+ sources."require-main-filename-1.0.1"
+ sources."resolve-dir-1.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rxjs-5.5.11"
+ sources."safe-buffer-5.1.1"
+ sources."safer-buffer-2.1.2"
+ sources."scuid-1.1.0"
+ sources."semver-5.5.1"
+ sources."semver-diff-2.1.0"
+ sources."send-0.16.2"
+ sources."sentence-case-2.1.1"
+ sources."serializerr-1.0.3"
+ sources."serve-static-1.13.2"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.1.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."simple-errors-1.0.1"
+ sources."snake-case-2.1.0"
+ sources."source-map-0.5.7"
+ (sources."source-map-support-0.5.9" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
+ sources."statuses-1.4.0"
+ sources."stealthy-require-1.1.1"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-2.0.0"
+ ];
+ })
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."strip-bom-3.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-5.5.0"
+ sources."swap-case-1.1.2"
+ sources."symbol-observable-1.0.1"
+ sources."sync-exec-0.6.2"
+ sources."term-size-1.2.0"
+ sources."through-2.3.8"
+ sources."through2-2.0.3"
+ sources."timed-out-4.0.1"
+ sources."title-case-2.1.1"
+ sources."tmp-0.0.33"
+ sources."to-fast-properties-2.0.0"
+ sources."tough-cookie-2.4.3"
+ sources."traverse-chain-0.1.0"
+ sources."trim-right-1.0.1"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ sources."unique-string-1.0.0"
+ sources."universalify-0.1.2"
+ sources."unpipe-1.0.0"
+ sources."unzip-response-2.0.1"
+ sources."update-notifier-2.5.0"
+ sources."upper-case-1.1.3"
+ sources."upper-case-first-1.1.2"
+ sources."url-join-4.0.0"
+ sources."url-parse-lax-1.0.0"
+ sources."url-regex-3.2.0"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.3.2"
+ sources."validate-npm-package-license-3.0.4"
+ sources."validator-10.7.0"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."wcwidth-1.0.1"
+ sources."whatwg-fetch-2.0.4"
+ sources."which-1.3.1"
+ sources."which-module-2.0.0"
+ sources."widest-line-2.0.0"
+ (sources."wrap-ansi-2.1.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
+ sources."xtend-4.0.1"
+ sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ sources."yaml-ast-parser-0.0.40"
+ (sources."yargs-11.0.0" // {
+ dependencies = [
+ sources."yargs-parser-9.0.2"
+ ];
+ })
+ sources."yargs-parser-8.1.0"
+ sources."z-schema-3.23.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "GraphQL CLI";
+ homepage = "https://github.com/graphql-cli/graphql-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ grunt-cli = nodeEnv.buildNodePackage {
+ name = "grunt-cli";
+ packageName = "grunt-cli";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.1.tgz";
+ sha512 = "UwBRu/QpAjDc53DRLEkyilFdL0zenpxu+fddTIlsF/KJqdNcHaQmvyu1W3cDesZ9rqqZdKK5A8+QDIyLUEWoZQ==";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-each-1.0.1"
+ sources."array-slice-1.1.0"
+ sources."array-unique-0.3.2"
+ sources."assign-symbols-1.0.0"
+ sources."atob-2.1.2"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."cache-base-1.0.1"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."collection-visit-1.0.0"
+ sources."component-emitter-1.2.1"
+ sources."copy-descriptor-0.1.1"
+ sources."debug-2.6.9"
+ sources."decode-uri-component-0.2.0"
+ sources."define-property-2.0.2"
+ sources."detect-file-1.0.0"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."expand-tilde-2.0.2"
+ sources."extend-3.0.2"
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."findup-sync-2.0.0"
+ sources."fined-1.1.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."get-value-2.0.6"
+ sources."global-modules-1.0.0"
+ sources."global-prefix-1.0.2"
+ sources."grunt-known-options-1.1.1"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."homedir-polyfill-1.0.1"
+ sources."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-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-3.1.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-plain-object-2.0.4"
+ sources."is-relative-1.0.0"
+ sources."is-unc-path-1.0.0"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."kind-of-6.0.2"
+ sources."liftoff-2.5.0"
+ sources."make-iterator-1.0.1"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ sources."micromatch-3.1.10"
+ (sources."mixin-deep-1.3.1" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."ms-2.0.0"
+ sources."nanomatch-1.2.13"
+ sources."nopt-4.0.1"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-visit-1.0.1"
+ sources."object.defaults-1.1.0"
+ sources."object.map-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."parse-filepath-1.0.2"
+ sources."parse-passwd-1.0.0"
+ sources."pascalcase-0.1.1"
+ sources."path-parse-1.0.6"
+ sources."path-root-0.1.1"
+ sources."path-root-regex-0.1.2"
+ sources."posix-character-classes-0.1.1"
+ sources."rechoir-0.6.2"
+ sources."regex-not-1.0.2"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."resolve-1.8.1"
+ sources."resolve-dir-1.0.1"
+ sources."resolve-url-0.2.1"
+ sources."ret-0.1.15"
+ sources."safe-regex-1.1.0"
+ (sources."set-value-2.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."split-string-3.1.0"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."unc-path-regex-0.1.2"
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."set-value-0.4.3"
+ ];
+ })
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
+ sources."urix-0.1.0"
+ sources."use-3.1.1"
+ sources."v8flags-3.0.2"
+ sources."which-1.3.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "The grunt command line interface";
+ homepage = "https://github.com/gruntjs/grunt-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ "guifi-earth-https://github.com/jmendeth/guifi-earth/tarball/f3ee96835fd4fb0e3e12fadbd2cb782770d64854 " = nodeEnv.buildNodePackage {
+ name = "guifi-earth";
+ packageName = "guifi-earth";
+ version = "0.2.1";
+ src = fetchurl {
+ name = "guifi-earth-0.2.1.tar.gz";
+ url = https://codeload.github.com/jmendeth/guifi-earth/legacy.tar.gz/f3ee96835fd4fb0e3e12fadbd2cb782770d64854;
+ sha256 = "a51a5beef55c14c68630275d51cf66c44a4462d1b20c0f08aef6d88a62ca077c";
+ };
+ dependencies = [
+ sources."acorn-2.7.0"
+ sources."acorn-globals-1.0.9"
+ 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" // {
+ dependencies = [
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ 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"
+ 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.11.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."is-promise-1.0.1"
+ sources."promise-2.0.0"
+ sources."source-map-0.1.43"
+ sources."uglify-js-2.2.5"
+ ];
+ })
+ (sources."uglify-js-2.8.29" // {
+ dependencies = [
+ sources."source-map-0.5.7"
+ ];
+ })
+ sources."uglify-to-browserify-1.0.2"
+ sources."void-elements-2.0.1"
+ sources."weak-map-1.0.5"
+ sources."window-size-0.1.0"
+ (sources."with-4.0.3" // {
+ dependencies = [
+ sources."acorn-1.2.2"
+ ];
+ })
+ sources."wordwrap-0.0.3"
+ sources."xml2js-0.4.19"
+ sources."xmlbuilder-9.0.7"
+ sources."yargs-3.10.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "See a representation of the Guifi.net network in Google Earth.";
+ homepage = https://github.com/jmendeth/guifi-earth;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ gulp = nodeEnv.buildNodePackage {
+ name = "gulp";
+ packageName = "gulp";
+ version = "3.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz";
+ 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."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.1.2"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."beeper-1.1.1"
+ sources."brace-expansion-1.1.11"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."cache-base-1.0.1"
+ sources."chalk-1.1.3"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."clone-1.0.4"
+ 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-2.0.2"
+ sources."deprecated-0.0.1"
+ sources."detect-file-1.0.0"
+ sources."duplexer2-0.0.2"
+ sources."end-of-stream-0.1.5"
+ sources."escape-string-regexp-1.0.5"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."expand-tilde-2.0.2"
+ sources."extend-3.0.2"
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."fancy-log-1.3.2"
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."find-index-0.1.1"
+ sources."findup-sync-2.0.0"
+ sources."fined-1.1.0"
+ sources."first-chunk-stream-1.0.0"
+ sources."flagged-respawn-1.0.0"
+ sources."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" // {
+ dependencies = [
+ sources."readable-stream-1.0.34"
+ sources."through2-0.6.5"
+ ];
+ })
+ sources."glob-watcher-0.0.6"
+ sources."glob2base-0.0.12"
+ sources."global-modules-1.0.0"
+ sources."global-prefix-1.0.2"
+ (sources."globule-0.1.0" // {
+ dependencies = [
+ sources."glob-3.1.21"
+ sources."graceful-fs-1.2.3"
+ sources."inherits-1.0.2"
+ sources."minimatch-0.2.14"
+ ];
+ })
+ sources."glogg-1.0.1"
+ sources."graceful-fs-3.0.11"
+ sources."gulp-util-3.0.8"
+ sources."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" // {
+ dependencies = [
+ sources."kind-of-4.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-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-3.1.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."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.2"
+ sources."isarray-0.0.1"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."kind-of-6.0.2"
+ sources."liftoff-2.5.0"
+ sources."lodash-1.0.2"
+ sources."lodash._basecopy-3.0.1"
+ sources."lodash._basetostring-3.0.1"
+ sources."lodash._basevalues-3.0.0"
+ sources."lodash._getnative-3.9.1"
+ sources."lodash._isiterateecall-3.0.9"
+ sources."lodash._reescape-3.0.0"
+ sources."lodash._reevaluate-3.0.0"
+ sources."lodash._reinterpolate-3.0.0"
+ sources."lodash._root-3.0.1"
+ sources."lodash.escape-3.2.0"
+ sources."lodash.isarguments-3.1.0"
+ sources."lodash.isarray-3.0.4"
+ sources."lodash.keys-3.1.2"
+ sources."lodash.restparam-3.6.1"
+ sources."lodash.template-3.6.2"
+ sources."lodash.templatesettings-3.1.1"
+ sources."lru-cache-2.7.3"
+ sources."make-iterator-1.0.1"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ sources."micromatch-3.1.10"
+ sources."minimatch-2.0.10"
+ sources."minimist-1.2.0"
+ (sources."mixin-deep-1.3.1" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."ms-2.0.0"
+ sources."multipipe-0.1.2"
+ sources."nanomatch-1.2.13"
+ sources."natives-1.1.4"
+ sources."object-assign-3.0.0"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-visit-1.0.1"
+ sources."object.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.6"
+ 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-2.0.0"
+ sources."readable-stream-1.1.14"
+ sources."rechoir-0.6.2"
+ sources."regex-not-1.0.2"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."replace-ext-0.0.1"
+ sources."resolve-1.8.1"
+ sources."resolve-dir-1.0.1"
+ sources."resolve-url-0.2.1"
+ sources."ret-0.1.15"
+ sources."safe-buffer-5.1.2"
+ sources."safe-regex-1.1.0"
+ sources."semver-4.3.6"
+ sources."sequencify-0.0.7"
+ (sources."set-value-2.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."sigmund-1.0.1"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."sparkles-1.0.1"
+ sources."split-string-3.1.0"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."stream-consume-0.1.1"
+ 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" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."tildify-1.2.0"
+ sources."time-stamp-1.1.0"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."unc-path-regex-0.1.2"
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."set-value-0.4.3"
+ ];
+ })
+ sources."unique-stream-1.0.0"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ sources."isarray-1.0.0"
+ ];
+ })
+ sources."urix-0.1.0"
+ sources."use-3.1.1"
+ sources."user-home-1.1.1"
+ sources."util-deprecate-1.0.2"
+ sources."v8flags-2.1.1"
+ sources."vinyl-0.5.3"
+ (sources."vinyl-fs-0.3.14" // {
+ dependencies = [
+ sources."clone-0.2.0"
+ sources."readable-stream-1.0.34"
+ sources."through2-0.6.5"
+ sources."vinyl-0.4.6"
+ ];
+ })
+ sources."which-1.3.1"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "The streaming build system";
+ homepage = http://gulpjs.com/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ hipache = nodeEnv.buildNodePackage {
+ name = "hipache";
+ packageName = "hipache";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hipache/-/hipache-0.3.1.tgz";
+ sha1 = "e21764eafe6429ec8dc9377b55e1ca86799704d5";
+ };
+ dependencies = [
+ sources."eventemitter3-3.1.0"
+ sources."http-proxy-1.0.2"
+ sources."lru-cache-2.5.2"
+ sources."minimist-0.0.8"
+ sources."redis-0.10.3"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Complete high-scaled reverse-proxy solution";
+ homepage = https://github.com/dotcloud/hipache;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ htmlhint = nodeEnv.buildNodePackage {
+ name = "htmlhint";
+ packageName = "htmlhint";
+ version = "0.9.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/htmlhint/-/htmlhint-0.9.13.tgz";
+ sha1 = "08163cb1e6aa505048ebb0b41063a7ca07dc6c88";
+ };
+ dependencies = [
+ sources."async-1.4.2"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ (sources."cli-0.6.6" // {
+ dependencies = [
+ sources."glob-3.2.11"
+ 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."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."entities-1.1.1"
+ ];
+ })
+ sources."domelementtype-1.3.0"
+ sources."domhandler-2.3.0"
+ sources."domutils-1.5.1"
+ sources."entities-1.0.0"
+ 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."isarray-0.0.1"
+ (sources."jshint-2.8.0" // {
+ dependencies = [
+ 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 = {
+ description = "A Static Code Analysis Tool for HTML";
+ homepage = "https://github.com/yaniswang/HTMLHint#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ html-minifier = nodeEnv.buildNodePackage {
+ name = "html-minifier";
+ packageName = "html-minifier";
+ version = "3.5.20";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.20.tgz";
+ sha512 = "ZmgNLaTp54+HFKkONyLFEfs5dd/ZOtlquKaTnqIWFmx3Av5zG6ZPcV2d0o9XM2fXOTxxIf6eDcwzFFotke/5zA==";
+ };
+ dependencies = [
+ sources."camel-case-3.0.0"
+ sources."clean-css-4.2.1"
+ sources."commander-2.17.1"
+ sources."he-1.1.1"
+ sources."lower-case-1.1.4"
+ sources."no-case-2.3.2"
+ sources."param-case-2.1.1"
+ sources."relateurl-0.2.7"
+ sources."source-map-0.6.1"
+ sources."uglify-js-3.4.8"
+ sources."upper-case-1.1.3"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Highly configurable, well-tested, JavaScript-based HTML minifier.";
+ homepage = https://kangax.github.io/html-minifier/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ ionic = nodeEnv.buildNodePackage {
+ name = "ionic";
+ packageName = "ionic";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ionic/-/ionic-4.1.1.tgz";
+ sha512 = "KIBfTmB2d1ZWs9xuaZomqp7LnpkCsyUh5ywP2q109zDE8SNviP0Qs/NeRbX7MMr3ujZozddCZ1BcFtyIRrgKEA==";
+ };
+ dependencies = [
+ sources."@ionic/cli-framework-1.0.6"
+ sources."@ionic/cli-utils-2.2.0"
+ sources."@ionic/discover-1.0.4"
+ sources."@types/cross-spawn-6.0.0"
+ sources."@types/debug-0.0.30"
+ sources."@types/events-1.2.0"
+ sources."@types/glob-5.0.35"
+ sources."@types/inquirer-0.0.43"
+ sources."@types/klaw-2.1.1"
+ sources."@types/lodash-4.14.116"
+ sources."@types/make-dir-1.0.3"
+ sources."@types/minimatch-3.0.3"
+ sources."@types/minimist-1.2.0"
+ sources."@types/ncp-2.0.1"
+ sources."@types/node-6.0.116"
+ sources."@types/rimraf-2.0.2"
+ sources."@types/rx-4.1.1"
+ sources."@types/rx-core-4.0.3"
+ sources."@types/rx-core-binding-4.0.4"
+ sources."@types/rx-lite-4.0.5"
+ sources."@types/rx-lite-aggregates-4.0.3"
+ sources."@types/rx-lite-async-4.0.2"
+ sources."@types/rx-lite-backpressure-4.0.3"
+ sources."@types/rx-lite-coincidence-4.0.3"
+ sources."@types/rx-lite-experimental-4.0.1"
+ sources."@types/rx-lite-joinpatterns-4.0.1"
+ sources."@types/rx-lite-testing-4.0.1"
+ sources."@types/rx-lite-time-4.0.3"
+ sources."@types/rx-lite-virtualtime-4.0.3"
+ sources."@types/string-width-2.0.0"
+ sources."@types/strip-ansi-3.0.0"
+ sources."@types/through-0.0.29"
+ sources."@types/untildify-3.0.0"
+ sources."@types/wrap-ansi-3.0.0"
+ sources."@types/write-file-atomic-2.1.1"
+ sources."agent-base-4.2.1"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."ast-types-0.11.5"
+ sources."async-limiter-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."balanced-match-1.0.0"
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.11"
+ sources."bytes-3.0.0"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."chalk-2.4.1"
+ sources."chardet-0.5.0"
+ sources."chownr-1.0.1"
+ sources."ci-info-1.4.0"
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ sources."co-4.6.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."component-emitter-1.2.1"
+ sources."concat-map-0.0.1"
+ sources."configstore-3.1.2"
+ sources."cookiejar-2.1.2"
+ 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."data-uri-to-buffer-1.2.0"
+ sources."debug-3.1.0"
+ sources."deep-extend-0.6.0"
+ sources."deep-is-0.1.3"
+ sources."degenerator-1.0.4"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."diff-3.5.0"
+ sources."dot-prop-4.2.0"
+ sources."duplexer2-0.1.4"
+ sources."duplexer3-0.1.4"
+ sources."elementtree-0.1.7"
+ sources."es6-promise-4.2.4"
+ sources."es6-promisify-5.0.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."escodegen-1.11.0"
+ sources."esprima-3.1.3"
+ sources."estraverse-4.2.0"
+ sources."esutils-2.0.2"
+ sources."execa-0.7.0"
+ sources."extend-3.0.2"
+ sources."external-editor-3.0.1"
+ sources."fast-levenshtein-2.0.6"
+ sources."figures-2.0.0"
+ sources."file-uri-to-path-1.0.0"
+ sources."form-data-2.3.2"
+ sources."formidable-1.2.1"
+ sources."fs-minipass-1.2.5"
+ sources."fs.realpath-1.0.0"
+ (sources."ftp-0.3.10" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."get-stream-3.0.0"
+ (sources."get-uri-2.0.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."glob-7.1.3"
+ sources."global-dirs-0.1.1"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."has-flag-3.0.0"
+ sources."http-errors-1.6.3"
+ sources."http-proxy-agent-2.1.0"
+ sources."https-proxy-agent-2.2.1"
+ sources."iconv-lite-0.4.24"
+ 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-6.2.0"
+ sources."ip-1.1.5"
+ sources."is-ci-1.2.0"
+ 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-wsl-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."klaw-3.0.0"
+ sources."latest-version-3.1.0"
+ (sources."leek-0.0.24" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."levn-0.3.0"
+ sources."lodash-4.17.10"
+ 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."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.3"
+ sources."macos-release-1.1.0"
+ sources."make-dir-1.3.0"
+ sources."methods-1.1.2"
+ sources."mime-1.6.0"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ (sources."minipass-2.3.4" // {
+ dependencies = [
+ sources."yallist-3.0.2"
+ ];
+ })
+ sources."minizlib-1.1.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."ncp-2.0.0"
+ sources."netmask-1.0.6"
+ sources."npm-run-path-2.0.2"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."opn-5.3.0"
+ sources."optionator-0.8.2"
+ sources."os-name-2.0.1"
+ sources."os-tmpdir-1.0.2"
+ sources."p-finally-1.0.0"
+ sources."pac-proxy-agent-2.0.2"
+ sources."pac-resolver-3.0.0"
+ sources."package-json-4.0.1"
+ 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."prelude-ls-1.1.2"
+ sources."prepend-http-1.0.4"
+ sources."process-nextick-args-2.0.0"
+ sources."proxy-agent-2.3.1"
+ sources."proxy-from-env-1.0.0"
+ sources."pseudomap-1.0.2"
+ sources."qs-6.5.2"
+ (sources."raw-body-2.3.3" // {
+ dependencies = [
+ sources."iconv-lite-0.4.23"
+ ];
+ })
+ sources."rc-1.2.8"
+ sources."readable-stream-2.3.6"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."restore-cursor-2.0.0"
+ sources."rimraf-2.6.2"
+ sources."rsvp-3.6.2"
+ sources."run-async-2.3.0"
+ sources."rxjs-6.2.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.1.4"
+ sources."semver-5.5.1"
+ sources."semver-diff-2.1.0"
+ sources."setprototypeof-1.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."smart-buffer-1.1.15"
+ sources."socks-1.1.10"
+ sources."socks-proxy-agent-3.0.1"
+ sources."source-map-0.6.1"
+ sources."split2-2.2.0"
+ sources."ssh-config-1.1.3"
+ sources."statuses-1.5.0"
+ sources."stream-combiner2-1.1.1"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."superagent-3.8.3"
+ sources."superagent-proxy-1.0.3"
+ sources."supports-color-5.5.0"
+ (sources."tar-4.4.6" // {
+ dependencies = [
+ sources."yallist-3.0.2"
+ ];
+ })
+ sources."term-size-1.2.0"
+ sources."through-2.3.8"
+ sources."through2-2.0.3"
+ sources."thunkify-2.1.2"
+ sources."timed-out-4.0.1"
+ sources."tmp-0.0.33"
+ sources."tree-kill-1.2.0"
+ sources."tslib-1.9.3"
+ sources."type-check-0.3.2"
+ sources."unique-string-1.0.0"
+ sources."unpipe-1.0.0"
+ sources."untildify-3.0.3"
+ sources."unzip-response-2.0.1"
+ sources."update-notifier-2.5.0"
+ sources."url-parse-lax-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ sources."which-1.3.1"
+ sources."widest-line-2.0.0"
+ sources."win-release-1.1.1"
+ sources."wordwrap-1.0.0"
+ sources."wrap-ansi-3.0.1"
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.3.0"
+ sources."ws-6.0.0"
+ sources."xdg-basedir-3.0.0"
+ sources."xregexp-2.0.0"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A tool for creating and developing Ionic Framework mobile apps.";
+ homepage = https://ionicframework.com/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ ios-deploy = nodeEnv.buildNodePackage {
+ name = "ios-deploy";
+ packageName = "ios-deploy";
+ version = "1.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ios-deploy/-/ios-deploy-1.9.3.tgz";
+ sha512 = "i/8DxXzcL2feqqL6DjUfjqUHyWVmHYNkzZFTyf6yoC4glrI3jQ+8Hhg63vzw/5OoFXN7OyXqjkshAj9c1EsVSw==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "launch iOS apps iOS devices from the command line (Xcode 7)";
+ homepage = "https://github.com/ios-control/ios-deploy#readme";
+ license = "GPLv3";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ istanbul = nodeEnv.buildNodePackage {
+ name = "istanbul";
+ packageName = "istanbul";
+ version = "0.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz";
+ sha1 = "65c7d73d4c4da84d4f3ac310b918fb0b8033733b";
+ };
+ dependencies = [
+ sources."abbrev-1.0.9"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."argparse-1.0.10"
+ sources."async-1.5.2"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."camelcase-1.2.1"
+ sources."center-align-0.1.3"
+ (sources."cliui-2.1.0" // {
+ dependencies = [
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ 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 = [
+ sources."source-map-0.4.4"
+ ];
+ })
+ 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.12.0" // {
+ dependencies = [
+ sources."esprima-4.0.1"
+ ];
+ })
+ 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"
+ ];
+ })
+ sources."nopt-3.0.6"
+ sources."once-1.4.0"
+ (sources."optimist-0.6.1" // {
+ dependencies = [
+ sources."wordwrap-0.0.3"
+ ];
+ })
+ 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."uglify-to-browserify-1.0.2"
+ sources."which-1.3.1"
+ sources."window-size-0.1.0"
+ sources."wordwrap-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."yargs-3.10.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests ";
+ homepage = "https://github.com/gotwarlost/istanbul#readme";
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ imapnotify = nodeEnv.buildNodePackage {
+ name = "imapnotify";
+ packageName = "imapnotify";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/imapnotify/-/imapnotify-0.4.1.tgz";
+ sha512 = "GjAGPnMmGEpnyDOmyjE5TGEcUIzz/rTDgw+pV8EOcLOhYBIw5Ol7JLi1vJT/WwlRKFbGRiEvIvjyCibLzaNiHQ==";
+ };
+ dependencies = [
+ sources."async-0.2.10"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."bunyan-1.8.12"
+ sources."colors-0.6.2"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ sources."cycle-1.0.3"
+ sources."dtrace-provider-0.8.7"
+ sources."eyes-0.1.8"
+ sources."glob-6.0.4"
+ sources."imap-0.8.19"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."isarray-0.0.1"
+ sources."isstream-0.1.2"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.10"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."moment-2.22.2"
+ sources."mv-2.1.1"
+ sources."nan-2.11.0"
+ sources."ncp-2.0.0"
+ sources."once-1.4.0"
+ sources."optimist-0.6.1"
+ sources."path-is-absolute-1.0.1"
+ sources."pkginfo-0.3.1"
+ sources."printf-0.2.5"
+ sources."readable-stream-1.1.14"
+ sources."rimraf-2.4.5"
+ sources."safe-json-stringify-1.2.0"
+ sources."semver-5.3.0"
+ sources."stack-trace-0.0.10"
+ sources."string_decoder-0.10.31"
+ sources."utf7-1.0.2"
+ sources."winston-0.8.3"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ sources."xenvar-0.5.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Execute scripts on new messages using IDLE imap command";
+ homepage = "https://github.com/a-sk/node-imapnotify#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ jake = nodeEnv.buildNodePackage {
+ name = "jake";
+ packageName = "jake";
+ version = "8.0.18";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jake/-/jake-8.0.18.tgz";
+ sha512 = "KSF3QH/uNR7pKcWgBuS7U1nYoYdcqitLEB86nvIcYztiiDsePkn2/JoSutiKP77O1MTNlbhTiNHorIrlpyy4sA==";
+ };
+ dependencies = [
+ sources."ansi-styles-1.0.0"
+ sources."async-0.9.2"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."chalk-0.4.0"
+ sources."concat-map-0.0.1"
+ (sources."filelist-0.0.6" // {
+ dependencies = [
+ sources."utilities-0.0.37"
+ ];
+ })
+ sources."has-color-0.1.7"
+ sources."minimatch-3.0.4"
+ sources."strip-ansi-0.1.1"
+ sources."utilities-1.0.5"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "JavaScript build tool, similar to Make or Rake";
+ homepage = "https://github.com/jakejs/jake#readme";
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ javascript-typescript-langserver = nodeEnv.buildNodePackage {
+ name = "javascript-typescript-langserver";
+ packageName = "javascript-typescript-langserver";
+ version = "2.9.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.9.4.tgz";
+ sha512 = "kJTsyRj6KZZ5yVvoFyaxMkBOpiJbQeaFXihDJqWlKIYLwBL1SbkBdFOWPbfY9hf7N7gT6ifsqAhYberaqBZ66A==";
+ };
+ dependencies = [
+ sources."ansi-color-0.2.1"
+ sources."ansi-styles-3.2.1"
+ sources."any-promise-1.3.0"
+ sources."assertion-error-1.1.0"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."bufrw-1.2.1"
+ sources."chai-4.1.2"
+ sources."chai-as-promised-7.1.1"
+ sources."chalk-2.4.1"
+ sources."check-error-1.0.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."commander-2.17.1"
+ 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.3"
+ sources."has-flag-3.0.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."iterare-0.0.8"
+ (sources."jaeger-client-3.12.0" // {
+ dependencies = [
+ sources."opentracing-0.13.0"
+ ];
+ })
+ sources."lodash-4.17.10"
+ sources."lodash.every-4.6.0"
+ sources."lodash.flattendeep-4.4.0"
+ sources."lodash.foreach-4.5.0"
+ sources."lodash.map-4.6.0"
+ sources."lodash.maxby-4.6.0"
+ 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.3.0"
+ sources."once-1.4.0"
+ sources."opentracing-0.14.3"
+ sources."path-is-absolute-1.0.1"
+ sources."pathval-1.1.0"
+ sources."rxjs-5.5.11"
+ sources."semaphore-async-await-1.5.1"
+ sources."string-similarity-1.2.1"
+ sources."string-template-0.2.1"
+ sources."supports-color-5.5.0"
+ sources."symbol-observable-1.0.1"
+ sources."thenify-3.3.0"
+ sources."thenify-all-1.6.0"
+ sources."thriftrw-3.11.2"
+ sources."type-detect-4.0.8"
+ sources."typescript-2.8.3"
+ sources."uuid-3.3.2"
+ sources."vscode-jsonrpc-3.6.2"
+ sources."vscode-languageserver-4.4.2"
+ sources."vscode-languageserver-protocol-3.12.0"
+ sources."vscode-languageserver-types-3.12.0"
+ sources."vscode-uri-1.0.6"
+ sources."wrappy-1.0.2"
+ sources."xorshift-0.2.1"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Implementation of the Language Server Protocol for JavaScript and TypeScript";
+ homepage = https://github.com/sourcegraph/javascript-typescript-langserver;
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ jayschema = nodeEnv.buildNodePackage {
+ name = "jayschema";
+ packageName = "jayschema";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jayschema/-/jayschema-0.3.2.tgz";
+ sha512 = "UHLk2ya7ItaLjmMVJWGE9b5t7jD3DZfmURdmz+rOVSiSYnrCtgcxvNXuQavcK7bhUBlXFmrXwRAPXkCMDxxANg==";
+ };
+ dependencies = [
+ sources."when-3.4.6"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A comprehensive JSON Schema validator for Node.js";
+ homepage = https://github.com/natesilva/jayschema;
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ jsdoc = nodeEnv.buildNodePackage {
+ name = "jsdoc";
+ packageName = "jsdoc";
+ version = "3.5.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.5.5.tgz";
+ sha512 = "6PxB65TAU4WO0Wzyr/4/YhlGovXl0EVYfpKbpSroSj0qBxT4/xod/l40Opkm38dRHRdQgdeY836M0uVnJQG7kg==";
+ };
+ dependencies = [
+ sources."babylon-7.0.0-beta.19"
+ sources."bluebird-3.5.1"
+ sources."catharsis-0.8.9"
+ 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.19"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ (sources."requizzle-0.2.1" // {
+ dependencies = [
+ sources."underscore-1.6.0"
+ ];
+ })
+ sources."strip-json-comments-2.0.1"
+ sources."taffydb-2.6.2"
+ sources."underscore-1.8.3"
+ (sources."underscore-contrib-0.3.0" // {
+ dependencies = [
+ sources."underscore-1.6.0"
+ ];
+ })
+ sources."xmlcreate-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "An API documentation generator for JavaScript.";
+ homepage = "https://github.com/jsdoc3/jsdoc#readme";
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ jshint = nodeEnv.buildNodePackage {
+ name = "jshint";
+ packageName = "jshint";
+ version = "2.9.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jshint/-/jshint-2.9.6.tgz";
+ sha512 = "KO9SIAKTlJQOM4lE64GQUtGBRpTOuvbrRrSZw3AhUxMNG266nX9hK2cKA4SBhXOj0irJGyNyGSLT62HGOVDEOA==";
+ };
+ dependencies = [
+ sources."ajv-5.5.2"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."async-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.1.1"
+ sources."caseless-0.12.0"
+ sources."cli-1.0.1"
+ sources."co-4.6.0"
+ sources."colors-1.0.3"
+ sources."combined-stream-1.0.6"
+ sources."concat-map-0.0.1"
+ (sources."concat-stream-1.6.2" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."console-browserify-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."date-now-0.1.4"
+ sources."debug-2.6.9"
+ sources."delayed-stream-1.0.0"
+ (sources."dom-serializer-0.1.0" // {
+ dependencies = [
+ sources."domelementtype-1.1.3"
+ sources."entities-1.1.1"
+ ];
+ })
+ sources."domelementtype-1.3.0"
+ sources."domhandler-2.3.0"
+ sources."domutils-1.5.1"
+ sources."ecc-jsbn-0.1.2"
+ sources."entities-1.0.0"
+ sources."es6-promise-4.2.4"
+ sources."exit-0.1.2"
+ sources."extend-3.0.2"
+ sources."extract-zip-1.6.7"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fd-slicer-1.0.1"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."fs-extra-1.0.0"
+ sources."fs.realpath-1.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.3"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."hasha-2.2.0"
+ sources."htmlparser2-3.8.3"
+ sources."http-signature-1.2.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ 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."jsonfile-2.4.0"
+ sources."jsprim-1.4.1"
+ sources."kew-0.7.0"
+ sources."klaw-1.3.1"
+ sources."lodash-4.17.10"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."oauth-sign-0.9.0"
+ sources."once-1.4.0"
+ sources."path-is-absolute-1.0.1"
+ sources."pend-1.2.0"
+ sources."performance-now-2.1.0"
+ sources."phantom-4.0.12"
+ sources."phantomjs-prebuilt-2.1.16"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."process-nextick-args-2.0.0"
+ sources."progress-1.1.8"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."readable-stream-1.1.14"
+ sources."request-2.88.0"
+ sources."request-progress-2.0.1"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."shelljs-0.3.0"
+ sources."split-1.0.1"
+ sources."sshpk-1.14.2"
+ sources."stack-trace-0.0.10"
+ sources."string_decoder-0.10.31"
+ sources."strip-json-comments-1.0.4"
+ sources."throttleit-1.0.0"
+ sources."through-2.3.8"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
+ sources."unicode-5.2.0-0.7.5"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ sources."verror-1.10.0"
+ sources."which-1.3.1"
+ sources."winston-2.4.4"
+ sources."wrappy-1.0.2"
+ sources."yauzl-2.4.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Static analysis tool for JavaScript";
+ homepage = http://jshint.com/;
+ license = "(MIT AND JSON)";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ json = nodeEnv.buildNodePackage {
+ name = "json";
+ packageName = "json";
+ version = "9.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json/-/json-9.0.6.tgz";
+ sha1 = "7972c2a5a48a42678db2730c7c2c4ee6e4e24585";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "a 'json' command for massaging and processing JSON on the command line";
+ homepage = "https://github.com/trentm/json#readme";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ js-beautify = nodeEnv.buildNodePackage {
+ name = "js-beautify";
+ packageName = "js-beautify";
+ version = "1.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.8.1.tgz";
+ sha512 = "e6Ij+fcwlnhxwfEWH148AV240ocW6z6LTZtWc9V7QEOUMu7pe2EINYbO1sM4GPHFwTVWMUWBCXGgsJGRpaQPLQ==";
+ };
+ dependencies = [
+ sources."@types/commander-2.12.2"
+ sources."@types/semver-5.5.0"
+ sources."abbrev-1.1.1"
+ sources."commander-2.17.1"
+ sources."config-chain-1.1.11"
+ sources."editorconfig-0.15.0"
+ sources."ini-1.3.5"
+ sources."lru-cache-4.1.3"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."nopt-4.0.1"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."proto-list-1.2.4"
+ sources."pseudomap-1.0.2"
+ sources."semver-5.5.1"
+ sources."sigmund-1.0.1"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "jsbeautifier.org for node";
+ homepage = http://jsbeautifier.org/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ jsonlint = nodeEnv.buildNodePackage {
+ name = "jsonlint";
+ packageName = "jsonlint";
+ version = "1.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.3.tgz";
+ sha512 = "jMVTMzP+7gU/IyC6hvKyWpUU8tmTkK5b3BPNuMI9U8Sit+YAWLlZwB6Y6YrdCxfg2kNz05p3XY3Bmm4m26Nv3A==";
+ };
+ dependencies = [
+ sources."JSV-4.0.2"
+ sources."ansi-styles-1.0.0"
+ sources."chalk-0.4.0"
+ sources."has-color-0.1.7"
+ sources."nomnom-1.8.1"
+ sources."strip-ansi-0.1.1"
+ sources."underscore-1.6.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Validate JSON";
+ homepage = http://zaach.github.com/jsonlint/;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ jsontool = nodeEnv.buildNodePackage {
+ name = "jsontool";
+ packageName = "jsontool";
+ version = "7.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsontool/-/jsontool-7.0.2.tgz";
+ sha1 = "e29d3d1b0766ba4e179a18a96578b904dca43207";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "a 'json' command for massaging JSON on the command line";
+ homepage = https://github.com/trentm/json;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ json-diff = nodeEnv.buildNodePackage {
+ name = "json-diff";
+ packageName = "json-diff";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-diff/-/json-diff-0.5.2.tgz";
+ sha512 = "N7oapTQdD4rLMUtA7d1HATCPY/BpHuSNL1mhvIuoS0u5NideDvyR+gB/ntXB7ejFz/LM0XzPLNUJQcC68n5sBw==";
+ };
+ dependencies = [
+ sources."cli-color-0.1.7"
+ sources."difflib-0.2.4"
+ sources."dreamopt-0.6.0"
+ sources."es5-ext-0.8.2"
+ sources."heap-0.2.6"
+ sources."wordwrap-1.0.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "JSON diff";
+ homepage = https://github.com/andreyvit/json-diff;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ json-refs = nodeEnv.buildNodePackage {
+ name = "json-refs";
+ packageName = "json-refs";
+ version = "3.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-refs/-/json-refs-3.0.9.tgz";
+ sha512 = "7N8yDNktol+fIQBQmCoaHwAxvga102kgil/awf8TrGHIhQh2o788inzS6QygfY0B++Z7v5NCAAmCddU+qJf6hA==";
+ };
+ dependencies = [
+ sources."argparse-1.0.10"
+ sources."asynckit-0.4.0"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.11.0"
+ sources."component-emitter-1.2.1"
+ sources."cookiejar-2.1.2"
+ sources."core-util-is-1.0.2"
+ sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
+ sources."esprima-4.0.1"
+ sources."extend-3.0.2"
+ sources."form-data-2.3.2"
+ sources."formidable-1.2.1"
+ sources."graphlib-2.1.5"
+ sources."inherits-2.0.3"
+ sources."isarray-1.0.0"
+ sources."js-yaml-3.12.0"
+ sources."lodash-4.17.10"
+ sources."methods-1.1.2"
+ sources."mime-1.6.0"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."ms-2.0.0"
+ sources."native-promise-only-0.8.1"
+ sources."path-loader-1.0.7"
+ sources."process-nextick-args-2.0.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.5.2"
+ sources."readable-stream-2.3.6"
+ sources."safe-buffer-5.1.2"
+ sources."slash-1.0.0"
+ sources."sprintf-js-1.0.3"
+ sources."string_decoder-1.1.1"
+ sources."superagent-3.8.3"
+ sources."uri-js-3.0.2"
+ sources."util-deprecate-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Various utilities for JSON References (http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03).";
+ homepage = https://github.com/whitlockjc/json-refs;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ json-server = nodeEnv.buildNodePackage {
+ name = "json-server";
+ packageName = "json-server";
+ version = "0.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-server/-/json-server-0.14.0.tgz";
+ sha512 = "8RVRAb1TO6LlCny6+8GC+sXDsESYv7gv7fSLdVANklVt866I416/7Z5fdqrtzSru92nyreddgavbEk8pjqcWoA==";
+ };
+ dependencies = [
+ sources."accepts-1.3.5"
+ sources."ajv-5.5.2"
+ sources."ansi-align-2.0.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."array-flatten-1.1.1"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ (sources."basic-auth-2.0.0" // {
+ dependencies = [
+ sources."safe-buffer-5.1.1"
+ ];
+ })
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."body-parser-1.18.3"
+ 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.4.1"
+ sources."ci-info-1.4.0"
+ sources."cli-boxes-1.0.0"
+ sources."cliui-4.1.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."compressible-2.0.14"
+ sources."compression-1.7.3"
+ sources."configstore-3.1.2"
+ 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."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.6.0"
+ 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.2"
+ 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.3" // {
+ dependencies = [
+ sources."body-parser-1.18.2"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ sources."raw-body-2.3.2"
+ sources."safe-buffer-5.1.1"
+ sources."statuses-1.4.0"
+ ];
+ })
+ (sources."express-urlrewrite-1.2.0" // {
+ dependencies = [
+ sources."path-to-regexp-1.7.0"
+ ];
+ })
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ (sources."finalhandler-1.1.1" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."find-up-2.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."get-caller-file-1.0.3"
+ 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.1.0"
+ sources."has-flag-3.0.0"
+ sources."http-errors-1.6.3"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.23"
+ 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.8.0"
+ sources."is-ci-1.2.0"
+ 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.4.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.10"
+ sources."lodash-id-0.14.0"
+ sources."lowdb-0.15.5"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.3"
+ sources."make-dir-1.3.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.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."minimist-1.2.0"
+ sources."morgan-1.9.0"
+ sources."ms-2.0.0"
+ sources."nanoid-1.2.1"
+ sources."negotiator-0.6.1"
+ sources."npm-run-path-2.0.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."os-locale-2.1.0"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."package-json-4.0.1"
+ sources."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.1.1"
+ sources."pluralize-7.0.0"
+ sources."prepend-http-1.0.4"
+ sources."proxy-addr-2.0.4"
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.3"
+ sources."rc-1.2.8"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."request-2.88.0"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ sources."semver-compare-1.0.0"
+ sources."semver-diff-2.1.0"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."serve-static-1.13.2"
+ sources."server-destroy-1.0.1"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.1.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."sshpk-1.14.2"
+ sources."statuses-1.5.0"
+ sources."steno-0.4.4"
+ 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-5.5.0"
+ sources."term-size-1.2.0"
+ sources."timed-out-4.0.1"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ sources."unique-string-1.0.0"
+ sources."unpipe-1.0.0"
+ sources."unzip-response-2.0.1"
+ sources."update-notifier-2.5.0"
+ sources."url-parse-lax-1.0.0"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.3.2"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."which-1.3.1"
+ sources."which-module-2.0.0"
+ sources."widest-line-2.0.0"
+ (sources."wrap-ansi-2.1.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."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"
+ sources."yargs-parser-8.1.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Serves JSON files through REST routes.";
+ homepage = https://github.com/typicode/json-server;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ js-yaml = nodeEnv.buildNodePackage {
+ name = "js-yaml";
+ packageName = "js-yaml";
+ version = "3.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz";
+ sha512 = "PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==";
+ };
+ dependencies = [
+ sources."argparse-1.0.10"
+ sources."esprima-4.0.1"
+ sources."sprintf-js-1.0.3"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "YAML 1.2 parser and serializer";
+ homepage = https://github.com/nodeca/js-yaml;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ karma = nodeEnv.buildNodePackage {
+ name = "karma";
+ packageName = "karma";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/karma/-/karma-3.0.0.tgz";
+ sha512 = "ZTjyuDXVXhXsvJ1E4CnZzbCjSxD6sEdzEsFYogLuZM0yqvg/mgz+O+R1jb0J7uAQeuzdY8kJgx6hSNXLwFuHIQ==";
+ };
+ dependencies = [
+ sources."accepts-1.3.5"
+ sources."after-0.8.2"
+ sources."anymatch-2.0.0"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-slice-0.2.3"
+ sources."array-unique-0.3.2"
+ sources."arraybuffer.slice-0.0.7"
+ sources."assign-symbols-1.0.0"
+ sources."async-each-1.0.1"
+ sources."async-limiter-1.0.0"
+ sources."atob-2.1.2"
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."base64-arraybuffer-0.1.5"
+ sources."base64id-1.0.0"
+ sources."better-assert-1.0.2"
+ sources."binary-extensions-1.11.0"
+ sources."blob-0.0.4"
+ sources."bluebird-3.5.1"
+ sources."body-parser-1.18.3"
+ sources."brace-expansion-1.1.11"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-fill-1.0.0"
+ sources."bytes-3.0.0"
+ sources."cache-base-1.0.1"
+ sources."callsite-1.0.0"
+ sources."chokidar-2.0.4"
+ sources."circular-json-0.5.5"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."collection-visit-1.0.0"
+ sources."colors-1.3.2"
+ sources."combine-lists-1.0.1"
+ 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."connect-3.6.6"
+ sources."content-type-1.0.4"
+ sources."cookie-0.3.1"
+ sources."copy-descriptor-0.1.1"
+ sources."core-js-2.5.7"
+ sources."core-util-is-1.0.2"
+ sources."custom-event-1.0.1"
+ sources."date-format-1.2.0"
+ sources."debug-2.6.9"
+ sources."decode-uri-component-0.2.0"
+ sources."define-property-2.0.2"
+ sources."depd-1.1.2"
+ sources."di-0.0.1"
+ sources."dom-serialize-2.2.1"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ (sources."engine.io-3.2.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."engine.io-client-3.2.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."engine.io-parser-2.1.2"
+ sources."ent-2.2.0"
+ sources."escape-html-1.0.3"
+ sources."eventemitter3-3.1.0"
+ (sources."expand-braces-0.1.2" // {
+ dependencies = [
+ sources."array-unique-0.2.1"
+ sources."braces-0.1.5"
+ ];
+ })
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."expand-range-0.1.1" // {
+ dependencies = [
+ sources."is-number-0.1.1"
+ sources."repeat-string-0.2.2"
+ ];
+ })
+ sources."extend-3.0.2"
+ sources."extend-shallow-3.0.2"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ (sources."finalhandler-1.1.0" // {
+ dependencies = [
+ sources."statuses-1.3.1"
+ ];
+ })
+ (sources."follow-redirects-1.5.7" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."for-in-1.0.2"
+ sources."fragment-cache-0.2.1"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.2.4"
+ sources."get-value-2.0.6"
+ sources."glob-7.1.3"
+ (sources."glob-parent-3.1.0" // {
+ dependencies = [
+ sources."is-glob-3.1.0"
+ ];
+ })
+ sources."graceful-fs-4.1.11"
+ (sources."has-binary2-1.0.3" // {
+ dependencies = [
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."has-cors-1.1.0"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."http-errors-1.6.3"
+ sources."http-proxy-1.17.0"
+ sources."iconv-lite-0.4.23"
+ sources."indexof-0.0.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
+ sources."is-extendable-1.0.1"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-4.0.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-plain-object-2.0.4"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isbinaryfile-3.0.3"
+ sources."isobject-3.0.1"
+ sources."kind-of-6.0.2"
+ sources."lodash-4.17.10"
+ sources."lodash.debounce-4.0.8"
+ (sources."log4js-3.0.5" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."lru-cache-2.2.4"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ sources."media-typer-0.3.0"
+ sources."micromatch-3.1.10"
+ sources."mime-2.3.1"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mixin-deep-1.3.1"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."nan-2.11.0"
+ sources."nanomatch-1.2.13"
+ sources."negotiator-0.6.1"
+ sources."normalize-path-2.1.1"
+ sources."object-component-0.0.3"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."on-finished-2.3.0"
+ sources."once-1.4.0"
+ sources."optimist-0.6.1"
+ sources."os-tmpdir-1.0.2"
+ sources."parseqs-0.0.5"
+ sources."parseuri-0.0.5"
+ sources."parseurl-1.3.2"
+ sources."pascalcase-0.1.1"
+ sources."path-dirname-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."posix-character-classes-0.1.1"
+ sources."process-nextick-args-2.0.0"
+ sources."qjobs-1.2.0"
+ sources."qs-6.5.2"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.3"
+ sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ sources."regex-not-1.0.2"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."requires-port-1.0.0"
+ sources."resolve-url-0.2.1"
+ sources."ret-0.1.15"
+ sources."rfdc-1.1.2"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safe-regex-1.1.0"
+ sources."safer-buffer-2.1.2"
+ sources."set-immediate-shim-1.0.1"
+ (sources."set-value-2.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."setprototypeof-1.1.0"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
+ sources."kind-of-5.1.0"
+ sources."source-map-0.5.7"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."socket.io-2.1.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."socket.io-adapter-1.1.1"
+ (sources."socket.io-client-2.1.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."socket.io-parser-3.2.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."source-map-0.6.1"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."split-string-3.1.0"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."statuses-1.5.0"
+ (sources."streamroller-0.7.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."string_decoder-1.1.1"
+ sources."tmp-0.0.33"
+ sources."to-array-0.1.4"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."type-is-1.6.16"
+ sources."ultron-1.1.1"
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ sources."set-value-0.4.3"
+ ];
+ })
+ sources."unpipe-1.0.0"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
+ sources."upath-1.1.0"
+ sources."urix-0.1.0"
+ sources."use-3.1.1"
+ sources."useragent-2.2.1"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."void-elements-2.0.1"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ sources."ws-3.3.3"
+ sources."xmlhttprequest-ssl-1.5.5"
+ sources."yeast-0.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Spectacular Test Runner for JavaScript.";
+ homepage = http://karma-runner.github.io/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ "kibana-authentication-proxy-git://github.com/fangli/kibana-authentication-proxy.git" = nodeEnv.buildNodePackage {
+ name = "kibana-authentication-proxy";
+ packageName = "kibana-authentication-proxy";
+ version = "1.1.0";
+ src = fetchgit {
+ url = "git://github.com/fangli/kibana-authentication-proxy.git";
+ rev = "0c0173b0cb51b392b7fc04d0cc728ffb64671ef3";
+ sha256 = "a282e834ff67715017f299468ff0d7e496d2bc0f1f7b075b557568b7feb3dba7";
+ };
+ dependencies = [
+ 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.14"
+ sources."compression-1.5.2"
+ sources."connect-2.30.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."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"
+ sources."depd-1.0.1"
+ sources."destroy-1.0.4"
+ sources."ee-first-1.1.1"
+ (sources."errorhandler-1.4.3" // {
+ dependencies = [
+ sources."accepts-1.3.5"
+ sources."escape-html-1.0.3"
+ sources."negotiator-0.6.1"
+ ];
+ })
+ sources."escape-html-1.0.2"
+ sources."etag-1.7.0"
+ sources."express-3.21.2"
+ (sources."express-session-1.11.3" // {
+ dependencies = [
+ sources."uid-safe-2.0.0"
+ ];
+ })
+ sources."finalhandler-0.4.0"
+ 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."ms-2.0.0"
+ sources."vary-1.1.2"
+ ];
+ })
+ sources."methods-1.1.2"
+ sources."mime-1.3.4"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ 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."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."readable-stream-1.1.14"
+ (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."destroy-1.0.3"
+ sources."statuses-1.2.1"
+ ];
+ })
+ (sources."serve-favicon-2.3.2" // {
+ dependencies = [
+ sources."ms-0.7.2"
+ ];
+ })
+ (sources."serve-index-1.7.3" // {
+ dependencies = [
+ sources."escape-html-1.0.3"
+ ];
+ })
+ (sources."serve-static-1.10.3" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ sources."escape-html-1.0.3"
+ sources."send-0.13.2"
+ sources."statuses-1.2.1"
+ ];
+ })
+ sources."statuses-1.5.0"
+ sources."stream-counter-0.2.0"
+ sources."string_decoder-0.10.31"
+ sources."tsscmp-1.0.5"
+ sources."type-is-1.6.16"
+ 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.7"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Hosts the latest kibana3 and elasticsearch behind Google OAuth2, Basic Auth or CAS Authentication";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ lcov-result-merger = nodeEnv.buildNodePackage {
+ name = "lcov-result-merger";
+ packageName = "lcov-result-merger";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-3.1.0.tgz";
+ sha512 = "vGXaMNGZRr4cYvW+xMVg+rg7qd5DX9SbGXl+0S3k85+gRZVK4K7UvxPWzKb/qiMwe+4bx3EOrW2o4mbdb1WnsA==";
+ };
+ dependencies = [
+ sources."append-buffer-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-equal-1.0.0"
+ sources."clone-2.1.2"
+ sources."clone-buffer-1.0.0"
+ sources."clone-stats-1.0.0"
+ sources."cloneable-readable-1.1.2"
+ sources."concat-map-0.0.1"
+ sources."convert-source-map-1.5.1"
+ sources."core-util-is-1.0.2"
+ sources."define-properties-1.1.3"
+ sources."duplexify-3.6.0"
+ sources."end-of-stream-1.4.1"
+ sources."extend-3.0.2"
+ sources."flush-write-stream-1.0.3"
+ sources."fs-mkdirp-stream-1.0.0"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."glob-7.1.3"
+ sources."glob-parent-3.1.0"
+ sources."glob-stream-6.1.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-symbols-1.0.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-absolute-1.0.0"
+ sources."is-buffer-1.1.6"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-3.1.0"
+ sources."is-negated-glob-1.0.0"
+ sources."is-relative-1.0.0"
+ sources."is-unc-path-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."is-valid-glob-1.0.0"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
+ sources."lazystream-1.0.0"
+ sources."lead-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."normalize-path-2.1.1"
+ sources."now-and-later-2.0.0"
+ sources."object-keys-1.0.12"
+ sources."object.assign-4.1.0"
+ sources."once-1.4.0"
+ sources."ordered-read-streams-1.0.1"
+ sources."path-dirname-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."process-nextick-args-2.0.0"
+ sources."pump-2.0.1"
+ sources."pumpify-1.5.1"
+ sources."readable-stream-2.3.6"
+ sources."remove-bom-buffer-3.0.0"
+ sources."remove-bom-stream-1.2.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."replace-ext-1.0.0"
+ sources."resolve-options-1.1.0"
+ sources."safe-buffer-5.1.2"
+ sources."stream-shift-1.0.0"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ sources."through2-filter-2.0.0"
+ sources."to-absolute-glob-2.0.2"
+ sources."to-through-2.0.0"
+ sources."unc-path-regex-0.1.2"
+ sources."unique-stream-2.2.1"
+ sources."util-deprecate-1.0.2"
+ sources."value-or-function-3.0.0"
+ sources."vinyl-2.2.0"
+ sources."vinyl-fs-3.0.3"
+ sources."vinyl-sourcemap-1.1.0"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Merges multiple lcov results into one";
+ homepage = https://github.com/mweibel/lcov-result-merger;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ leetcode-cli = nodeEnv.buildNodePackage {
+ name = "leetcode-cli";
+ packageName = "leetcode-cli";
+ version = "2.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/leetcode-cli/-/leetcode-cli-2.5.2.tgz";
+ sha512 = "KneaqL2/SAfJQpxR1yheLrnB10f8vwJJbVBA4vxtRl6aENbO+JKsJSgE1cZvO/4isD+MPI7C5HPjJbL5+MOmnw==";
+ };
+ dependencies = [
+ sources."abab-1.0.4"
+ sources."acorn-2.7.0"
+ sources."acorn-globals-1.0.9"
+ sources."ajv-5.5.2"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.0"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."async-1.5.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."boolbase-1.0.0"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.11"
+ sources."camelcase-2.1.1"
+ sources."caseless-0.12.0"
+ (sources."chalk-2.4.1" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."cheerio-0.20.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-spinners-1.3.1"
+ sources."cliui-3.2.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colors-1.3.2"
+ sources."combined-stream-1.0.6"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ sources."cross-spawn-5.1.0"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."css-select-1.2.0"
+ sources."css-what-2.1.0"
+ sources."cssom-0.3.4"
+ sources."cssstyle-0.2.37"
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."decamelize-1.2.0"
+ sources."deep-equal-0.2.2"
+ sources."deep-is-0.1.3"
+ sources."delayed-stream-1.0.0"
+ (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"
+ sources."ecc-jsbn-0.1.2"
+ sources."entities-1.1.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."escodegen-1.11.0"
+ sources."esprima-3.1.3"
+ sources."estraverse-4.2.0"
+ sources."esutils-2.0.2"
+ sources."execa-0.7.0"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."find-up-2.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."fs.realpath-1.0.0"
+ sources."get-caller-file-1.0.3"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.3"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-flag-3.0.0"
+ sources."hawk-6.0.2"
+ sources."he-1.1.1"
+ sources."hoek-4.2.1"
+ (sources."htmlparser2-3.8.3" // {
+ dependencies = [
+ sources."entities-1.0.0"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ sources."i-0.3.6"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."invert-kv-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."jsdom-7.2.2"
+ 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."lcid-1.0.0"
+ sources."levn-0.3.0"
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.10"
+ sources."log-symbols-2.2.0"
+ sources."lru-cache-4.1.3"
+ sources."mem-1.1.0"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.22.2"
+ sources."mute-stream-0.0.7"
+ (sources."nconf-0.10.0" // {
+ dependencies = [
+ sources."yargs-3.32.0"
+ ];
+ })
+ sources."ncp-1.0.1"
+ sources."npm-run-path-2.0.2"
+ sources."nth-check-1.0.1"
+ sources."number-is-nan-1.0.1"
+ sources."nwmatcher-1.4.4"
+ sources."oauth-sign-0.8.2"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."optionator-0.8.2"
+ sources."ora-1.4.0"
+ sources."os-locale-1.4.0"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."parse5-1.5.1"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-key-2.0.1"
+ sources."performance-now-2.1.0"
+ sources."pkginfo-0.4.1"
+ sources."prelude-ls-1.1.2"
+ sources."prompt-1.0.0"
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."read-1.0.7"
+ sources."readable-stream-1.1.14"
+ (sources."request-2.83.0" // {
+ dependencies = [
+ sources."tough-cookie-2.3.4"
+ ];
+ })
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."secure-keys-1.0.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."sntp-2.1.0"
+ sources."source-map-0.6.1"
+ sources."sprintf-js-1.1.1"
+ sources."sshpk-1.14.2"
+ sources."stack-trace-0.0.10"
+ sources."string-width-1.0.2"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.6"
+ sources."strip-ansi-3.0.1"
+ sources."strip-eof-1.0.0"
+ (sources."supports-color-5.1.0" // {
+ dependencies = [
+ sources."has-flag-2.0.0"
+ ];
+ })
+ sources."symbol-tree-3.2.2"
+ sources."tough-cookie-2.4.3"
+ sources."tr46-0.0.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-check-0.3.2"
+ sources."underscore-1.8.3"
+ (sources."utile-0.3.0" // {
+ dependencies = [
+ sources."async-0.9.2"
+ ];
+ })
+ sources."uuid-3.3.2"
+ sources."verror-1.10.0"
+ sources."webidl-conversions-2.0.1"
+ sources."whatwg-url-compat-0.6.5"
+ sources."which-1.3.1"
+ sources."which-module-2.0.0"
+ sources."window-size-0.1.4"
+ (sources."winston-2.1.1" // {
+ dependencies = [
+ sources."async-1.0.0"
+ sources."colors-1.0.3"
+ sources."pkginfo-0.3.1"
+ ];
+ })
+ sources."wordwrap-1.0.0"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."xml-name-validator-2.0.1"
+ sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ (sources."yargs-10.0.3" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."os-locale-2.1.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ (sources."yargs-parser-8.1.0" // {
+ dependencies = [
+ sources."camelcase-4.1.0"
+ ];
+ })
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A cli tool to enjoy leetcode!";
+ homepage = "https://github.com/skygragon/leetcode-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ lerna = nodeEnv.buildNodePackage {
+ name = "lerna";
+ packageName = "lerna";
+ version = "3.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lerna/-/lerna-3.1.4.tgz";
+ sha512 = "DetcjFPZmClvHbTOUX3ynBEfzWPLIRhwnoCMw57iNV1lWyW3ERLj6B2Iz6XtWOwW6E+fBrmK5tYV9t0OXuSF6A==";
+ };
+ dependencies = [
+ sources."@lerna/add-3.1.4"
+ sources."@lerna/batch-packages-3.1.2"
+ sources."@lerna/bootstrap-3.1.4"
+ sources."@lerna/changed-3.1.3"
+ sources."@lerna/check-working-tree-3.1.0"
+ sources."@lerna/child-process-3.0.0"
+ sources."@lerna/clean-3.1.3"
+ sources."@lerna/cli-3.1.4"
+ sources."@lerna/collect-updates-3.1.0"
+ sources."@lerna/command-3.1.3"
+ sources."@lerna/conventional-commits-3.0.2"
+ sources."@lerna/create-3.1.3"
+ sources."@lerna/create-symlink-3.0.0"
+ sources."@lerna/describe-ref-3.1.0"
+ sources."@lerna/diff-3.1.3"
+ sources."@lerna/exec-3.1.3"
+ sources."@lerna/filter-options-3.1.2"
+ sources."@lerna/filter-packages-3.0.0"
+ sources."@lerna/get-npm-exec-opts-3.0.0"
+ sources."@lerna/global-options-3.1.3"
+ sources."@lerna/has-npm-version-3.0.4"
+ sources."@lerna/import-3.1.3"
+ sources."@lerna/init-3.1.3"
+ sources."@lerna/link-3.1.4"
+ sources."@lerna/list-3.1.3"
+ sources."@lerna/listable-3.0.0"
+ sources."@lerna/log-packed-3.0.4"
+ sources."@lerna/npm-conf-3.0.0"
+ sources."@lerna/npm-dist-tag-3.0.0"
+ sources."@lerna/npm-install-3.0.0"
+ sources."@lerna/npm-publish-3.0.6"
+ sources."@lerna/npm-run-script-3.0.0"
+ sources."@lerna/output-3.0.0"
+ sources."@lerna/package-3.0.0"
+ sources."@lerna/package-graph-3.1.2"
+ sources."@lerna/project-3.0.0"
+ sources."@lerna/prompt-3.0.0"
+ sources."@lerna/publish-3.1.3"
+ sources."@lerna/resolve-symlink-3.0.0"
+ sources."@lerna/rimraf-dir-3.0.0"
+ sources."@lerna/run-3.1.3"
+ sources."@lerna/run-lifecycle-3.0.0"
+ sources."@lerna/run-parallel-batches-3.0.0"
+ sources."@lerna/symlink-binary-3.1.4"
+ sources."@lerna/symlink-dependencies-3.1.4"
+ sources."@lerna/validation-error-3.0.0"
+ sources."@lerna/version-3.1.3"
+ sources."@lerna/write-log-file-3.0.0"
+ sources."@mrmlnc/readdir-enhanced-2.2.1"
+ sources."@nodelib/fs.stat-1.1.1"
+ sources."JSONStream-1.3.4"
+ sources."abbrev-1.1.1"
+ sources."agent-base-4.2.1"
+ sources."agentkeepalive-3.5.1"
+ sources."ajv-5.5.2"
+ (sources."align-text-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."amdefine-1.0.1"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.5"
+ sources."argparse-1.0.10"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-differ-1.0.0"
+ 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."array-unique-0.3.2"
+ sources."arrify-1.0.1"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."assign-symbols-1.0.0"
+ sources."async-1.5.2"
+ sources."asynckit-0.4.0"
+ sources."atob-2.1.2"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."block-stream-0.0.9"
+ sources."bluebird-3.5.1"
+ sources."brace-expansion-1.1.11"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."buffer-from-1.1.1"
+ sources."builtin-modules-1.1.1"
+ sources."builtins-1.0.3"
+ sources."byline-5.0.0"
+ sources."byte-size-4.0.3"
+ sources."cacache-11.2.0"
+ sources."cache-base-1.0.1"
+ sources."call-me-maybe-1.0.1"
+ sources."camelcase-4.1.0"
+ sources."camelcase-keys-4.2.0"
+ sources."caseless-0.12.0"
+ sources."center-align-0.1.3"
+ sources."chalk-2.4.1"
+ sources."chardet-0.4.2"
+ sources."chownr-1.0.1"
+ sources."ci-info-1.4.0"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ (sources."cliui-2.1.0" // {
+ dependencies = [
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ sources."clone-1.0.4"
+ sources."cmd-shim-2.0.2"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."collection-visit-1.0.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."columnify-1.5.4"
+ sources."combined-stream-1.0.6"
+ (sources."compare-func-1.3.2" // {
+ dependencies = [
+ sources."dot-prop-3.0.0"
+ ];
+ })
+ sources."component-emitter-1.2.1"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ sources."config-chain-1.1.11"
+ sources."console-control-strings-1.1.0"
+ sources."conventional-changelog-angular-1.6.6"
+ (sources."conventional-changelog-core-2.0.11" // {
+ dependencies = [
+ sources."load-json-file-1.1.0"
+ sources."parse-json-2.2.0"
+ sources."path-type-1.1.0"
+ sources."pify-2.3.0"
+ sources."read-pkg-1.1.0"
+ sources."strip-bom-2.0.0"
+ ];
+ })
+ sources."conventional-changelog-preset-loader-1.1.8"
+ sources."conventional-changelog-writer-3.0.9"
+ sources."conventional-commits-filter-1.1.6"
+ sources."conventional-commits-parser-2.1.7"
+ sources."conventional-recommended-bump-2.0.9"
+ sources."copy-concurrently-1.0.5"
+ sources."copy-descriptor-0.1.1"
+ sources."core-util-is-1.0.2"
+ sources."cosmiconfig-5.0.6"
+ sources."cross-spawn-6.0.5"
+ sources."currently-unhandled-0.4.1"
+ sources."cyclist-0.2.2"
+ sources."dargs-4.1.0"
+ sources."dashdash-1.14.1"
+ sources."dateformat-3.0.3"
+ sources."debug-2.6.9"
+ sources."debuglog-1.0.1"
+ sources."decamelize-1.2.0"
+ (sources."decamelize-keys-1.1.0" // {
+ dependencies = [
+ sources."map-obj-1.0.1"
+ ];
+ })
+ sources."decode-uri-component-0.2.0"
+ sources."dedent-0.7.0"
+ sources."defaults-1.0.3"
+ sources."define-property-2.0.2"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."detect-indent-5.0.0"
+ sources."dezalgo-1.0.3"
+ sources."dir-glob-2.0.0"
+ sources."dot-prop-4.2.0"
+ sources."duplexer-0.1.1"
+ sources."duplexify-3.6.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."encoding-0.1.12"
+ sources."end-of-stream-1.4.1"
+ sources."err-code-1.1.2"
+ sources."error-ex-1.3.2"
+ sources."es6-promise-4.2.4"
+ sources."es6-promisify-5.0.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.1"
+ sources."execa-0.10.0"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."extend-3.0.2"
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."external-editor-2.2.0"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ (sources."fast-glob-2.2.2" // {
+ dependencies = [
+ sources."is-glob-4.0.0"
+ ];
+ })
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."figgy-pudding-3.5.1"
+ sources."figures-2.0.0"
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."find-up-2.1.0"
+ sources."flush-write-stream-1.0.3"
+ sources."for-in-1.0.2"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."fragment-cache-0.2.1"
+ sources."from2-2.3.0"
+ sources."fs-extra-6.0.1"
+ sources."fs-minipass-1.2.5"
+ sources."fs-write-stream-atomic-1.0.10"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ (sources."gauge-2.7.4" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."string-width-1.0.2"
+ ];
+ })
+ sources."genfun-4.0.1"
+ sources."get-caller-file-1.0.3"
+ (sources."get-pkg-repo-1.4.0" // {
+ dependencies = [
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
+ sources."indent-string-2.1.0"
+ sources."map-obj-1.0.1"
+ sources."meow-3.7.0"
+ sources."minimist-1.2.0"
+ sources."redent-1.0.0"
+ sources."strip-indent-1.0.1"
+ sources."trim-newlines-1.0.0"
+ ];
+ })
+ sources."get-port-3.2.0"
+ sources."get-stdin-4.0.1"
+ sources."get-stream-3.0.0"
+ sources."get-value-2.0.6"
+ sources."getpass-0.1.7"
+ sources."git-raw-commits-1.3.6"
+ (sources."git-remote-origin-url-2.0.0" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."git-semver-tags-1.3.6"
+ sources."gitconfiglocal-1.0.0"
+ sources."glob-7.1.3"
+ sources."glob-parent-3.1.0"
+ sources."glob-to-regexp-0.3.0"
+ sources."globby-8.0.1"
+ sources."graceful-fs-4.1.11"
+ (sources."handlebars-4.0.11" // {
+ dependencies = [
+ sources."source-map-0.4.4"
+ ];
+ })
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."has-flag-3.0.0"
+ sources."has-unicode-2.0.1"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."hosted-git-info-2.7.1"
+ sources."http-cache-semantics-3.8.1"
+ (sources."http-proxy-agent-2.1.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ (sources."https-proxy-agent-2.2.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."humanize-ms-1.2.1"
+ sources."iconv-lite-0.4.24"
+ sources."iferr-0.1.5"
+ sources."ignore-3.3.10"
+ sources."ignore-walk-3.0.1"
+ sources."import-local-1.0.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."init-package-json-1.10.3"
+ (sources."inquirer-5.2.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."invert-kv-1.0.0"
+ sources."ip-1.1.5"
+ sources."is-accessor-descriptor-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.2.0"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
+ sources."is-directory-0.3.1"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-glob-3.1.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-obj-1.0.1"
+ sources."is-plain-obj-1.1.0"
+ sources."is-plain-object-2.0.4"
+ sources."is-promise-2.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-subset-0.1.1"
+ sources."is-text-path-1.0.1"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."isstream-0.1.2"
+ sources."js-yaml-3.12.0"
+ sources."jsbn-0.1.1"
+ sources."json-parse-better-errors-1.0.2"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-4.0.0"
+ sources."jsonparse-1.3.1"
+ sources."jsprim-1.4.1"
+ sources."kind-of-6.0.2"
+ sources."lazy-cache-1.0.4"
+ sources."lcid-1.0.0"
+ sources."load-json-file-4.0.0"
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.10"
+ sources."lodash._reinterpolate-3.0.0"
+ sources."lodash.sortby-4.7.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."lru-cache-4.1.3"
+ sources."make-dir-1.3.0"
+ sources."make-fetch-happen-4.0.1"
+ sources."map-cache-0.2.2"
+ sources."map-obj-2.0.0"
+ sources."map-visit-1.0.0"
+ sources."mem-1.1.0"
+ (sources."meow-4.0.1" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ sources."read-pkg-up-3.0.0"
+ ];
+ })
+ sources."merge2-1.2.2"
+ sources."micromatch-3.1.10"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.1.0"
+ sources."minimist-options-3.0.2"
+ (sources."minipass-2.3.4" // {
+ dependencies = [
+ sources."yallist-3.0.2"
+ ];
+ })
+ sources."minizlib-1.1.0"
+ sources."mississippi-3.0.0"
+ (sources."mixin-deep-1.3.1" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."modify-values-1.0.1"
+ sources."moment-2.22.2"
+ sources."move-concurrently-1.0.1"
+ sources."ms-2.0.0"
+ sources."multimatch-2.1.0"
+ sources."mute-stream-0.0.7"
+ sources."nanomatch-1.2.13"
+ sources."nice-try-1.0.5"
+ sources."node-fetch-npm-2.0.2"
+ (sources."node-gyp-3.8.0" // {
+ dependencies = [
+ sources."semver-5.3.0"
+ sources."tar-2.2.1"
+ ];
+ })
+ sources."nopt-3.0.6"
+ sources."normalize-package-data-2.4.0"
+ sources."npm-bundled-1.0.5"
+ sources."npm-lifecycle-2.1.0"
+ sources."npm-package-arg-6.1.0"
+ sources."npm-packlist-1.1.11"
+ sources."npm-pick-manifest-2.1.0"
+ sources."npm-registry-fetch-3.8.0"
+ sources."npm-run-path-2.0.2"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ (sources."optimist-0.6.1" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ ];
+ })
+ sources."os-homedir-1.0.2"
+ (sources."os-locale-2.1.0" // {
+ dependencies = [
+ sources."cross-spawn-5.1.0"
+ sources."execa-0.7.0"
+ ];
+ })
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-map-1.2.0"
+ sources."p-map-series-1.0.0"
+ sources."p-reduce-1.0.0"
+ sources."p-try-1.0.0"
+ sources."p-waterfall-1.0.0"
+ sources."pacote-9.1.0"
+ sources."parallel-transform-1.1.0"
+ sources."parse-github-repo-url-1.4.1"
+ sources."parse-json-4.0.0"
+ sources."pascalcase-0.1.1"
+ sources."path-dirname-1.0.2"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-key-2.0.1"
+ sources."path-type-3.0.0"
+ sources."performance-now-2.1.0"
+ sources."pify-3.0.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."pkg-dir-2.0.0"
+ sources."posix-character-classes-0.1.1"
+ sources."process-nextick-args-2.0.0"
+ sources."promise-inflight-1.0.1"
+ sources."promise-retry-1.1.1"
+ sources."promzard-0.3.0"
+ sources."proto-list-1.2.4"
+ sources."protoduck-5.0.0"
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.29"
+ sources."pump-3.0.0"
+ (sources."pumpify-1.5.1" // {
+ dependencies = [
+ sources."pump-2.0.1"
+ ];
+ })
+ sources."punycode-1.4.1"
+ sources."q-1.5.1"
+ sources."qs-6.5.2"
+ sources."quick-lru-1.1.0"
+ sources."read-1.0.7"
+ sources."read-cmd-shim-1.0.1"
+ sources."read-package-json-2.0.13"
+ sources."read-package-tree-5.2.1"
+ sources."read-pkg-3.0.0"
+ (sources."read-pkg-up-1.0.1" // {
+ dependencies = [
+ sources."find-up-1.1.2"
+ sources."load-json-file-1.1.0"
+ sources."parse-json-2.2.0"
+ sources."path-exists-2.1.0"
+ sources."path-type-1.1.0"
+ sources."pify-2.3.0"
+ sources."read-pkg-1.1.0"
+ sources."strip-bom-2.0.0"
+ ];
+ })
+ sources."readable-stream-2.3.6"
+ sources."readdir-scoped-modules-1.0.2"
+ sources."redent-2.0.0"
+ sources."regex-not-1.0.2"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."repeating-2.0.1"
+ sources."request-2.88.0"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ (sources."resolve-cwd-2.0.0" // {
+ dependencies = [
+ sources."resolve-from-3.0.0"
+ ];
+ })
+ sources."resolve-from-4.0.0"
+ sources."resolve-url-0.2.1"
+ sources."restore-cursor-2.0.0"
+ sources."ret-0.1.15"
+ sources."retry-0.10.1"
+ sources."right-align-0.1.3"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."run-queue-1.0.3"
+ sources."rxjs-5.5.11"
+ sources."safe-buffer-5.1.2"
+ sources."safe-regex-1.1.0"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ sources."set-blocking-2.0.0"
+ (sources."set-value-2.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slash-1.0.0"
+ sources."slide-1.1.6"
+ sources."smart-buffer-4.0.1"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."socks-2.2.1"
+ sources."socks-proxy-agent-4.0.1"
+ sources."sort-keys-2.0.0"
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."split-1.0.1"
+ sources."split-string-3.1.0"
+ sources."split2-2.2.0"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
+ sources."ssri-6.0.1"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."stream-each-1.2.3"
+ sources."stream-shift-1.0.0"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-3.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-indent-2.0.0"
+ sources."strong-log-transformer-1.0.6"
+ sources."supports-color-5.5.0"
+ sources."symbol-observable-1.0.1"
+ (sources."tar-4.4.6" // {
+ dependencies = [
+ sources."yallist-3.0.2"
+ ];
+ })
+ sources."temp-dir-1.0.0"
+ sources."temp-write-3.4.0"
+ sources."text-extensions-1.7.0"
+ sources."through-2.3.8"
+ sources."through2-2.0.3"
+ sources."tmp-0.0.33"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."tough-cookie-2.4.3"
+ (sources."tr46-1.0.1" // {
+ dependencies = [
+ sources."punycode-2.1.1"
+ ];
+ })
+ sources."trim-newlines-2.0.0"
+ sources."trim-off-newlines-1.0.1"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
+ (sources."uglify-js-2.8.29" // {
+ dependencies = [
+ sources."camelcase-1.2.1"
+ sources."yargs-3.10.0"
+ ];
+ })
+ sources."uglify-to-browserify-1.0.2"
+ sources."uid-number-0.0.6"
+ sources."umask-1.1.0"
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."set-value-0.4.3"
+ ];
+ })
+ sources."unique-filename-1.1.0"
+ sources."unique-slug-2.0.0"
+ sources."universalify-0.1.2"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
+ sources."urix-0.1.0"
+ sources."use-3.1.1"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ sources."validate-npm-package-license-3.0.4"
+ sources."validate-npm-package-name-3.0.0"
+ sources."verror-1.10.0"
+ sources."wcwidth-1.0.1"
+ sources."webidl-conversions-4.0.2"
+ sources."whatwg-url-6.5.0"
+ sources."which-1.3.1"
+ sources."which-module-2.0.0"
+ sources."wide-align-1.1.3"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.3"
+ (sources."wrap-ansi-2.1.0" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."string-width-1.0.2"
+ ];
+ })
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.3.0"
+ sources."write-json-file-2.3.0"
+ sources."write-pkg-3.2.0"
+ sources."xregexp-4.0.0"
+ sources."xtend-4.0.1"
+ sources."y18n-4.0.0"
+ sources."yallist-2.1.2"
+ (sources."yargs-12.0.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."cliui-4.1.0"
+ sources."decamelize-2.0.0"
+ sources."find-up-3.0.0"
+ sources."locate-path-3.0.0"
+ sources."p-limit-2.0.0"
+ sources."p-locate-3.0.0"
+ sources."p-try-2.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."yargs-parser-10.1.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A tool for managing JavaScript projects with multiple packages.";
+ homepage = https://lernajs.io/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ less = nodeEnv.buildNodePackage {
+ name = "less";
+ packageName = "less";
+ version = "3.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/less/-/less-3.8.1.tgz";
+ sha512 = "8HFGuWmL3FhQR0aH89escFNBQH/nEiYPP2ltDFdQw2chE28Yx2E3lhAIq9Y2saYwLSwa699s4dBVEfCY8Drf7Q==";
+ };
+ dependencies = [
+ sources."ajv-5.5.2"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."caseless-0.12.0"
+ sources."clone-2.1.2"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.6"
+ sources."core-util-is-1.0.2"
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."errno-0.1.7"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."getpass-0.1.7"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."http-signature-1.2.0"
+ 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-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."mime-1.6.0"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."oauth-sign-0.9.0"
+ sources."performance-now-2.1.0"
+ sources."promise-7.3.1"
+ sources."prr-1.0.1"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."request-2.88.0"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."source-map-0.6.1"
+ sources."sshpk-1.14.2"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."uuid-3.3.2"
+ sources."verror-1.10.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Leaner CSS";
+ homepage = http://lesscss.org/;
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ 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 = true;
+ };
+ live-server = nodeEnv.buildNodePackage {
+ name = "live-server";
+ packageName = "live-server";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/live-server/-/live-server-1.2.0.tgz";
+ sha1 = "4498644bbf81a66f18dd8dffdef61c4c1c374ca3";
+ };
+ dependencies = [
+ sources."accepts-1.3.5"
+ 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" // {
+ dependencies = [
+ sources."safe-buffer-5.1.1"
+ ];
+ })
+ sources."batch-0.6.1"
+ sources."bcryptjs-2.4.3"
+ sources."binary-extensions-1.11.0"
+ sources."brace-expansion-1.1.11"
+ sources."braces-1.8.5"
+ sources."chokidar-1.7.0"
+ sources."colors-1.3.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.4"
+ 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.2.4"
+ 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.3" // {
+ dependencies = [
+ sources."statuses-1.5.0"
+ ];
+ })
+ sources."http-parser-js-0.4.13"
+ 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."math-random-1.0.1"
+ sources."micromatch-2.3.11"
+ sources."mime-1.4.1"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ 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.11.0"
+ sources."negotiator-0.6.1"
+ 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."on-headers-1.0.1"
+ sources."opn-5.3.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-2.0.0"
+ sources."proxy-middleware-0.15.0"
+ (sources."randomatic-3.1.0" // {
+ dependencies = [
+ sources."is-number-4.0.0"
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."range-parser-1.2.0"
+ sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."safe-buffer-5.1.2"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ sources."statuses-1.4.0"
+ ];
+ })
+ (sources."serve-index-1.9.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."set-immediate-shim-1.0.1"
+ sources."setprototypeof-1.1.0"
+ sources."split-0.3.3"
+ sources."statuses-1.3.1"
+ sources."stream-combiner-0.0.4"
+ sources."string_decoder-1.1.1"
+ 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.3.2"
+ sources."vary-1.1.2"
+ sources."websocket-driver-0.7.0"
+ sources."websocket-extensions-0.1.3"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "simple development http server with live reload capability";
+ homepage = "https://github.com/tapio/live-server#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ livedown = nodeEnv.buildNodePackage {
+ name = "livedown";
+ packageName = "livedown";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/livedown/-/livedown-2.1.1.tgz";
+ sha512 = "C5x12+bwk7m2Sx3U27VZ7h5KP7vIlKfZGCabMi73nBGp0zPHtCaxQTPXDRoX5479EZUvycYJI0aD4h1d4+ds7w==";
+ };
+ dependencies = [
+ sources."accepts-1.3.5"
+ sources."after-0.8.2"
+ sources."ajv-5.5.2"
+ sources."anymatch-1.3.2"
+ sources."argparse-1.0.10"
+ 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.4"
+ 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.8.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.2"
+ sources."better-assert-1.0.2"
+ sources."binary-extensions-1.11.0"
+ sources."blob-0.0.4"
+ sources."body-parser-1.18.3"
+ sources."brace-expansion-1.1.11"
+ sources."braces-1.8.5"
+ 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.6"
+ 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."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.2"
+ sources."ee-first-1.1.1"
+ sources."emoji-regex-6.1.1"
+ sources."encodeurl-1.0.2"
+ (sources."engine.io-3.2.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."engine.io-client-3.2.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ 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.3" // {
+ dependencies = [
+ sources."body-parser-1.18.2"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ sources."raw-body-2.3.2"
+ sources."safe-buffer-5.1.1"
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."extend-3.0.2"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.4"
+ (sources."finalhandler-1.1.1" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fsevents-1.2.4"
+ 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.1.0"
+ (sources."has-binary2-1.0.3" // {
+ dependencies = [
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."has-cors-1.1.0"
+ sources."html-entities-1.2.1"
+ sources."http-errors-1.6.3"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.23"
+ sources."indexof-0.0.1"
+ sources."inherits-2.0.3"
+ sources."innertext-1.0.3"
+ sources."ipaddr.js-1.8.0"
+ 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.2"
+ sources."markdown-it-emoji-1.4.0"
+ sources."markdown-it-github-headings-1.1.1"
+ sources."markdown-it-task-checkbox-1.0.6"
+ sources."math-random-1.0.1"
+ sources."mdurl-1.0.1"
+ 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.4.1"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."ms-2.0.0"
+ sources."nan-2.11.0"
+ sources."negotiator-0.6.1"
+ sources."normalize-path-2.1.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-component-0.0.3"
+ sources."object.omit-2.0.1"
+ sources."on-finished-2.3.0"
+ sources."opn-5.3.0"
+ sources."parse-glob-3.0.4"
+ 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."process-nextick-args-2.0.0"
+ sources."proxy-addr-2.0.4"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ (sources."randomatic-3.1.0" // {
+ dependencies = [
+ sources."is-number-4.0.0"
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.3"
+ sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."request-2.88.0"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."serve-static-1.13.2"
+ sources."set-immediate-shim-1.0.1"
+ sources."setprototypeof-1.1.0"
+ (sources."socket.io-2.1.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."socket.io-adapter-1.1.1"
+ (sources."socket.io-client-2.1.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."socket.io-parser-3.2.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
+ sources."statuses-1.5.0"
+ sources."string_decoder-1.1.1"
+ sources."to-array-0.1.4"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ sources."uc.micro-1.0.5"
+ 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.3.2"
+ 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"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Live Markdown previews for your favourite editor.";
+ homepage = https://github.com/shime/livedown;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ madoko = nodeEnv.buildNodePackage {
+ name = "madoko";
+ packageName = "madoko";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/madoko/-/madoko-1.1.4.tgz";
+ sha1 = "3a2bec6219a2658fcb955494a21d0db11a9e6fe4";
+ };
+ dependencies = [
+ sources."amdefine-1.0.1"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."requirejs-2.3.6"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Madoko is a fast scholarly Markdown processor written in Koka";
+ homepage = http://madoko.codeplex.com/;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ mathjax = nodeEnv.buildNodePackage {
+ name = "mathjax";
+ packageName = "mathjax";
+ version = "2.7.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mathjax/-/mathjax-2.7.5.tgz";
+ sha512 = "OzsJNitEHAJB3y4IIlPCAvS0yoXwYjlo2Y4kmm9KQzyIBZt2d8yKRalby3uTRNN4fZQiGL2iMXjpdP1u2Rq2DQ==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Beautiful math in all browsers. MathJax is an open-source JavaScript display engine for LaTeX, MathML, and AsciiMath notation that works in all browsers.";
+ homepage = "https://github.com/mathjax/MathJax#readme";
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ meat = nodeEnv.buildNodePackage {
+ name = "meat";
+ packageName = "meat";
+ version = "0.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/meat/-/meat-0.3.4.tgz";
+ sha1 = "e2b6b721014096e30de9c97114e1dd6696135d13";
+ };
+ dependencies = [
+ 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 = {
+ description = "Meeting room kiosk app for displaying meeting room schedules and booking rooms in your organization. Built against Google Apps, but other sources can be defined.";
+ homepage = https://bitbucket.org/aahmed/meat;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ meguca = nodeEnv.buildNodePackage {
+ name = "meguca";
+ packageName = "meguca";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/meguca/-/meguca-1.0.9.tgz";
+ sha512 = "Q2O9s9cqu19UfhsA6+XDnuuYflxFKck5TvvYF2LMhtKWVVmIGuqVZiDAhx1XV3qO22B5A0vjU4gckaeQLALmPQ==";
+ };
+ dependencies = [
+ (sources."@gulp-sourcemaps/identity-map-1.0.2" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."source-map-0.6.1"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ (sources."@gulp-sourcemaps/map-sources-1.0.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ (sources."accord-0.28.0" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ sources."minimatch-3.0.4"
+ sources."semver-5.5.1"
+ sources."uglify-js-2.8.29"
+ ];
+ })
+ sources."acorn-5.7.2"
+ sources."ajv-4.11.8"
+ (sources."align-text-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."almond-0.3.3"
+ sources."amdefine-1.0.1"
+ sources."ansi-colors-1.1.0"
+ sources."ansi-cyan-0.1.1"
+ sources."ansi-gray-0.1.1"
+ sources."ansi-red-0.1.1"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."ansi-wrap-0.1.0"
+ sources."append-buffer-1.0.2"
+ sources."archy-1.0.0"
+ 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."asap-2.0.6"
+ sources."asn1-0.2.4"
+ sources."assert-plus-0.2.0"
+ sources."assign-symbols-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."atob-2.1.2"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."beeper-1.1.1"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.11"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."buffer-equal-1.0.0"
+ sources."cache-base-1.0.1"
+ sources."camelcase-1.2.1"
+ sources."caseless-0.12.0"
+ sources."center-align-0.1.3"
+ sources."chalk-1.1.3"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."clean-css-4.2.1" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."cliui-2.1.0"
+ sources."clone-1.0.4"
+ sources."clone-buffer-1.0.0"
+ sources."clone-stats-0.0.1"
+ (sources."cloneable-readable-1.1.2" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."co-4.6.0"
+ sources."collection-visit-1.0.0"
+ sources."color-support-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."component-emitter-1.2.1"
+ sources."concat-map-0.0.1"
+ sources."convert-source-map-1.5.1"
+ sources."copy-descriptor-0.1.1"
+ sources."core-js-2.5.7"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ (sources."css-2.2.3" // {
+ dependencies = [
+ sources."source-map-0.1.43"
+ ];
+ })
+ sources."d-1.0.0"
+ (sources."dashdash-1.14.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."dateformat-2.2.0"
+ sources."debug-2.6.9"
+ (sources."debug-fabulous-1.1.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."decamelize-1.2.0"
+ sources."decode-uri-component-0.2.0"
+ sources."defaults-1.0.3"
+ sources."define-properties-1.1.3"
+ sources."define-property-2.0.2"
+ sources."delayed-stream-1.0.0"
+ sources."deprecated-0.0.1"
+ sources."detect-file-1.0.0"
+ sources."detect-newline-2.1.0"
+ sources."dom4-2.1.3"
+ (sources."duplexer2-0.0.2" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ ];
+ })
+ (sources."duplexify-3.6.0" // {
+ dependencies = [
+ sources."end-of-stream-1.4.1"
+ sources."once-1.4.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."ecc-jsbn-0.1.2"
+ sources."end-of-stream-0.1.5"
+ sources."errno-0.1.7"
+ sources."es5-ext-0.10.46"
+ sources."es6-iterator-2.0.3"
+ sources."es6-symbol-3.1.1"
+ sources."es6-weak-map-2.0.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."event-emitter-0.3.5"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."expand-tilde-2.0.2"
+ sources."extend-3.0.2"
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."extsprintf-1.3.0"
+ sources."fancy-log-1.3.2"
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."find-index-0.1.1"
+ sources."findup-sync-2.0.0"
+ sources."fined-1.1.0"
+ sources."first-chunk-stream-1.0.0"
+ sources."flagged-respawn-1.0.0"
+ (sources."flush-write-stream-1.0.3" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."for-in-1.0.2"
+ sources."for-own-1.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.1.4"
+ sources."fragment-cache-0.2.1"
+ (sources."fs-mkdirp-stream-1.0.0" // {
+ dependencies = [
+ sources."graceful-fs-4.1.11"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."gaze-0.5.2"
+ sources."get-value-2.0.6"
+ (sources."getpass-0.1.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."glob-4.5.3"
+ sources."glob-parent-3.1.0"
+ sources."glob-stream-3.1.18"
+ sources."glob-watcher-0.0.6"
+ sources."glob2base-0.0.12"
+ sources."global-modules-1.0.0"
+ sources."global-prefix-1.0.2"
+ (sources."globule-0.1.0" // {
+ dependencies = [
+ sources."glob-3.1.21"
+ sources."graceful-fs-1.2.3"
+ sources."inherits-1.0.2"
+ sources."minimatch-0.2.14"
+ ];
+ })
+ sources."glogg-1.0.1"
+ sources."graceful-fs-3.0.11"
+ sources."gulp-3.9.1"
+ (sources."gulp-clean-css-3.10.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ (sources."gulp-less-3.5.0" // {
+ dependencies = [
+ sources."arr-diff-1.1.0"
+ sources."arr-union-2.1.0"
+ sources."array-slice-0.2.3"
+ sources."extend-shallow-1.1.4"
+ sources."kind-of-1.1.0"
+ sources."plugin-error-0.1.2"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ (sources."gulp-sourcemaps-2.6.4" // {
+ dependencies = [
+ sources."graceful-fs-4.1.11"
+ sources."readable-stream-2.3.6"
+ sources."source-map-0.6.1"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ (sources."gulp-typescript-4.0.2" // {
+ dependencies = [
+ sources."arr-diff-1.1.0"
+ sources."arr-union-2.1.0"
+ sources."array-slice-0.2.3"
+ sources."clone-2.1.2"
+ sources."clone-stats-1.0.0"
+ sources."extend-shallow-1.1.4"
+ sources."glob-7.1.3"
+ sources."glob-stream-6.1.0"
+ sources."graceful-fs-4.1.11"
+ sources."kind-of-1.1.0"
+ sources."minimatch-3.0.4"
+ sources."ordered-read-streams-1.0.1"
+ sources."plugin-error-0.1.2"
+ sources."readable-stream-2.3.6"
+ sources."source-map-0.6.1"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ sources."unique-stream-2.2.1"
+ sources."vinyl-2.2.0"
+ sources."vinyl-fs-3.0.3"
+ ];
+ })
+ (sources."gulp-uglify-3.0.1" // {
+ dependencies = [
+ sources."lodash-4.17.10"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ (sources."gulp-util-3.0.8" // {
+ dependencies = [
+ sources."object-assign-3.0.0"
+ sources."readable-stream-2.3.6"
+ sources."replace-ext-0.0.1"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ sources."vinyl-0.5.3"
+ ];
+ })
+ sources."gulplog-1.0.0"
+ sources."har-schema-1.0.5"
+ sources."har-validator-4.2.1"
+ sources."has-ansi-2.0.0"
+ sources."has-gulplog-0.1.0"
+ sources."has-symbols-1.0.0"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."homedir-polyfill-1.0.1"
+ sources."http-signature-1.1.1"
+ sources."image-size-0.5.5"
+ sources."indx-0.2.3"
+ 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-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-3.1.0"
+ sources."is-negated-glob-1.0.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-plain-object-2.0.4"
+ sources."is-promise-2.1.0"
+ 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-valid-glob-1.0.0"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-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."kind-of-6.0.2"
+ sources."lazy-cache-1.0.4"
+ (sources."lazystream-1.0.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."lead-1.0.0"
+ (sources."less-2.7.3" // {
+ dependencies = [
+ sources."graceful-fs-4.1.11"
+ ];
+ })
+ sources."liftoff-2.5.0"
+ sources."lodash-1.0.2"
+ sources."lodash._basecopy-3.0.1"
+ sources."lodash._basetostring-3.0.1"
+ sources."lodash._basevalues-3.0.0"
+ sources."lodash._getnative-3.9.1"
+ sources."lodash._isiterateecall-3.0.9"
+ sources."lodash._reescape-3.0.0"
+ sources."lodash._reevaluate-3.0.0"
+ sources."lodash._reinterpolate-3.0.0"
+ sources."lodash._root-3.0.1"
+ sources."lodash.clone-4.5.0"
+ sources."lodash.defaults-4.2.0"
+ sources."lodash.escape-3.2.0"
+ sources."lodash.flatten-4.4.0"
+ sources."lodash.isarguments-3.1.0"
+ sources."lodash.isarray-3.0.4"
+ sources."lodash.keys-3.1.2"
+ sources."lodash.merge-4.6.1"
+ sources."lodash.partialright-4.2.1"
+ sources."lodash.pick-4.4.0"
+ sources."lodash.restparam-3.6.1"
+ sources."lodash.template-3.6.2"
+ sources."lodash.templatesettings-3.1.1"
+ sources."lodash.uniq-4.5.0"
+ sources."longest-1.0.1"
+ sources."lru-cache-2.7.3"
+ sources."lru-queue-0.1.0"
+ sources."make-error-1.3.4"
+ sources."make-error-cause-1.2.2"
+ sources."make-iterator-1.0.1"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ sources."memoizee-0.4.14"
+ sources."micromatch-3.1.10"
+ sources."mime-1.6.0"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-2.0.10"
+ sources."minimist-1.2.0"
+ (sources."mixin-deep-1.3.1" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."ms-2.0.0"
+ sources."multipipe-0.1.2"
+ sources."nanomatch-1.2.13"
+ sources."natives-1.1.4"
+ sources."next-tick-1.0.0"
+ sources."normalize-path-2.1.1"
+ sources."now-and-later-2.0.0"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-keys-1.0.12"
+ sources."object-visit-1.0.1"
+ sources."object.assign-4.1.0"
+ sources."object.defaults-1.1.0"
+ sources."object.map-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."once-1.3.3"
+ sources."orchestrator-0.3.8"
+ sources."ordered-read-streams-0.1.0"
+ sources."os-homedir-1.0.2"
+ sources."parse-filepath-1.0.2"
+ sources."parse-passwd-1.0.0"
+ sources."pascalcase-0.1.1"
+ sources."path-dirname-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.6"
+ sources."path-root-0.1.1"
+ sources."path-root-regex-0.1.2"
+ sources."performance-now-0.2.0"
+ sources."plugin-error-1.0.1"
+ sources."posix-character-classes-0.1.1"
+ sources."pretty-hrtime-1.0.3"
+ sources."process-nextick-args-2.0.0"
+ sources."promise-7.3.1"
+ sources."prr-1.0.1"
+ (sources."pump-2.0.1" // {
+ dependencies = [
+ (sources."end-of-stream-1.4.1" // {
+ dependencies = [
+ sources."once-1.4.0"
+ ];
+ })
+ ];
+ })
+ sources."pumpify-1.5.1"
+ sources."punycode-1.4.1"
+ sources."qs-6.4.0"
+ (sources."readable-stream-1.0.34" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ ];
+ })
+ sources."rechoir-0.6.2"
+ sources."regex-not-1.0.2"
+ sources."remove-bom-buffer-3.0.0"
+ (sources."remove-bom-stream-1.2.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."replace-ext-1.0.0"
+ sources."request-2.81.0"
+ sources."resolve-1.8.1"
+ sources."resolve-dir-1.0.1"
+ sources."resolve-options-1.1.0"
+ sources."resolve-url-0.2.1"
+ sources."ret-0.1.15"
+ sources."right-align-0.1.3"
+ sources."safe-buffer-5.1.2"
+ sources."safe-regex-1.1.0"
+ sources."safer-buffer-2.1.2"
+ sources."semver-4.3.6"
+ sources."sequencify-0.0.7"
+ (sources."set-value-2.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."sigmund-1.0.1"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."sntp-1.0.9"
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."sparkles-1.0.1"
+ sources."split-string-3.1.0"
+ (sources."sshpk-1.14.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."stream-consume-0.1.1"
+ sources."stream-shift-1.0.0"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.6"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-1.0.0"
+ sources."strip-bom-string-1.0.0"
+ sources."supports-color-2.0.0"
+ sources."through2-0.6.5"
+ (sources."through2-filter-2.0.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ sources."tildify-1.2.0"
+ sources."time-stamp-1.1.0"
+ sources."timers-ext-0.1.5"
+ sources."to-absolute-glob-2.0.2"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ (sources."to-through-2.0.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ ];
+ })
+ sources."tough-cookie-2.3.4"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typescript-2.7.2"
+ (sources."uglify-js-3.4.8" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."uglify-to-browserify-1.0.2"
+ sources."unc-path-regex-0.1.2"
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."set-value-0.4.3"
+ ];
+ })
+ sources."unique-stream-1.0.0"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
+ sources."urix-0.1.0"
+ sources."use-3.1.1"
+ sources."user-home-1.1.1"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ sources."v8flags-2.1.1"
+ sources."value-or-function-3.0.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."vinyl-0.4.6" // {
+ dependencies = [
+ sources."clone-0.2.0"
+ ];
+ })
+ sources."vinyl-fs-0.3.14"
+ (sources."vinyl-sourcemap-1.1.0" // {
+ dependencies = [
+ sources."clone-2.1.2"
+ sources."clone-stats-1.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."vinyl-2.2.0"
+ ];
+ })
+ sources."vinyl-sourcemaps-apply-0.2.1"
+ sources."whatwg-fetch-2.0.4"
+ sources."when-3.7.8"
+ sources."which-1.3.1"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.2"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yargs-3.10.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "[![GoDoc](https://godoc.org/github.com/bakape/meguca?status.svg)](https://godoc.org/github.com/bakape/meguca) [![Build Status](https://travis-ci.org/bakape/meguca.svg)](https://travis-ci.org/bakape/meguca)";
+ homepage = "https://github.com/bakape/meguca#readme";
+ license = "AGPL-3.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ mocha = nodeEnv.buildNodePackage {
+ name = "mocha";
+ packageName = "mocha";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz";
+ sha512 = "2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==";
+ };
+ dependencies = [
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."browser-stdout-1.3.1"
+ sources."commander-2.15.1"
+ sources."concat-map-0.0.1"
+ sources."debug-3.1.0"
+ sources."diff-3.5.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."fs.realpath-1.0.0"
+ sources."glob-7.1.2"
+ sources."growl-1.10.5"
+ sources."has-flag-3.0.0"
+ sources."he-1.1.1"
+ 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-5.4.0"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "simple, flexible, fun test framework";
+ homepage = https://mochajs.org/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ multi-file-swagger = nodeEnv.buildNodePackage {
+ name = "multi-file-swagger";
+ packageName = "multi-file-swagger";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multi-file-swagger/-/multi-file-swagger-2.2.0.tgz";
+ sha1 = "0161a13e2b3378759e36b9e05be34b46a06decd5";
+ };
+ dependencies = [
+ sources."argparse-1.0.10"
+ sources."asynckit-0.4.0"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."component-emitter-1.2.1"
+ sources."cookiejar-2.1.2"
+ sources."core-util-is-1.0.2"
+ sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
+ sources."esprima-4.0.1"
+ sources."extend-3.0.2"
+ sources."form-data-2.3.2"
+ sources."formidable-1.2.1"
+ sources."graphlib-2.1.5"
+ sources."inherits-2.0.3"
+ sources."isarray-1.0.0"
+ sources."js-yaml-3.12.0"
+ sources."json-refs-2.1.7"
+ sources."lodash-4.17.10"
+ sources."methods-1.1.2"
+ sources."mime-1.6.0"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."ms-2.0.0"
+ sources."native-promise-only-0.8.1"
+ sources."path-loader-1.0.7"
+ sources."process-nextick-args-2.0.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.5.2"
+ sources."readable-stream-2.3.6"
+ sources."safe-buffer-5.1.2"
+ sources."slash-1.0.0"
+ sources."sprintf-js-1.0.3"
+ sources."string_decoder-1.1.1"
+ sources."superagent-3.8.3"
+ sources."uri-js-3.0.2"
+ sources."util-deprecate-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Multi-file Swagger example";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ nijs = nodeEnv.buildNodePackage {
+ name = "nijs";
+ packageName = "nijs";
+ version = "0.0.25";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nijs/-/nijs-0.0.25.tgz";
+ sha1 = "04b035cb530d46859d1018839a518c029133f676";
+ };
+ dependencies = [
+ sources."optparse-1.0.5"
+ sources."slasp-0.0.4"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "An internal DSL for the Nix package manager in JavaScript";
+ homepage = "https://github.com/svanderburg/nijs#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ node2nix = nodeEnv.buildNodePackage {
+ name = "node2nix";
+ packageName = "node2nix";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node2nix/-/node2nix-1.6.0.tgz";
+ sha512 = "MJY6SsQH3pN59R9N3nMz/L8BsbQ0DlvSF38mgg1fwfwgnaJ+y600s3Nd0vZ+cnETUH+4OPETc4QohflccjPUYw==";
+ };
+ dependencies = [
+ 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.5"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."base64-js-1.2.3"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."buffer-from-1.1.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.6"
+ sources."concat-stream-1.6.2"
+ sources."config-chain-1.1.11"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.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.2"
+ (sources."fs-extra-0.6.4" // {
+ dependencies = [
+ sources."mkdirp-0.3.5"
+ ];
+ })
+ (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.1.0"
+ sources."has-unicode-2.0.1"
+ sources."hosted-git-info-2.7.1"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimist-0.0.8"
+ sources."minipass-2.3.4"
+ 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-6.1.0"
+ sources."npm-registry-client-8.5.1"
+ (sources."npmconf-2.1.3" // {
+ dependencies = [
+ sources."once-1.3.3"
+ sources."semver-4.3.6"
+ ];
+ })
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."optparse-1.0.5"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-2.0.0"
+ sources."proto-list-1.2.4"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."readable-stream-2.3.6"
+ sources."request-2.88.0"
+ sources."retry-0.10.1"
+ sources."rimraf-2.2.8"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slasp-0.0.4"
+ sources."slide-1.1.6"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."sshpk-1.14.2"
+ sources."ssri-5.3.0"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ sources."tar-3.1.15"
+ sources."temp-0.8.3"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
+ sources."uid-number-0.0.5"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ sources."validate-npm-package-license-3.0.4"
+ sources."validate-npm-package-name-3.0.0"
+ sources."verror-1.10.0"
+ sources."walk-2.3.14"
+ sources."wide-align-1.1.3"
+ sources."wrappy-1.0.2"
+ sources."yallist-3.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Generate Nix expressions to build NPM packages";
+ homepage = https://github.com/svanderburg/node2nix;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ node-gyp = nodeEnv.buildNodePackage {
+ name = "node-gyp";
+ packageName = "node-gyp";
+ version = "3.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz";
+ sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==";
+ };
+ dependencies = [
+ 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.5"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."block-stream-0.0.9"
+ sources."brace-expansion-1.1.11"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.6"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ 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.3"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."has-unicode-2.0.1"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ 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.9.0"
+ 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.5"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-2.0.0"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."readable-stream-2.3.6"
+ sources."request-2.88.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.3.0"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."sshpk-1.14.2"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ sources."tar-2.2.1"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ sources."verror-1.10.0"
+ sources."which-1.3.1"
+ sources."wide-align-1.1.3"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Node.js native addon build tool";
+ homepage = "https://github.com/nodejs/node-gyp#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ node-gyp-build = nodeEnv.buildNodePackage {
+ name = "node-gyp-build";
+ packageName = "node-gyp-build";
+ version = "3.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.4.0.tgz";
+ sha512 = "YoviGBJYGrPdLOKDIQB0sKxuKy/EEsxzooNkOZak4vSTKT/qH0Pa6dj3t1MJjEQGsefih61IyHDmO1WW7xOFfw==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Build tool and bindings loader for node-gyp that supports prebuilds";
+ homepage = https://github.com/mafintosh/node-gyp-build;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ node-inspector = nodeEnv.buildNodePackage {
+ name = "node-inspector";
+ packageName = "node-inspector";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-inspector/-/node-inspector-1.1.2.tgz";
+ sha1 = "690c9ef7e5813da50b7a2746f334e3ff319bccd7";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.5"
+ 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.5"
+ sources."array-find-index-1.0.2"
+ sources."array-flatten-1.1.1"
+ sources."asn1-0.2.4"
+ 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.8.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-0.0.8"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."biased-opener-0.2.8"
+ sources."big-integer-1.6.34"
+ sources."block-stream-0.0.9"
+ sources."body-parser-1.18.2"
+ sources."boom-2.10.1"
+ sources."bplist-parser-0.1.1"
+ sources."brace-expansion-1.1.11"
+ sources."browser-launcher2-0.4.6"
+ 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.6"
+ 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."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."currently-unhandled-0.4.1"
+ (sources."dashdash-1.14.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."deep-extend-0.6.0"
+ 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.2"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."error-ex-1.3.2"
+ sources."escape-html-1.0.3"
+ sources."etag-1.8.1"
+ sources."express-4.16.3"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."finalhandler-1.1.1"
+ sources."find-up-1.1.2"
+ 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."fstream-ignore-1.0.5"
+ sources."gauge-2.7.4"
+ sources."get-stdin-4.0.1"
+ (sources."getpass-0.1.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."glob-5.0.15"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-1.0.5"
+ sources."har-validator-4.2.1"
+ sources."has-unicode-2.0.1"
+ sources."hawk-3.1.3"
+ sources."headless-0.1.7"
+ sources."hoek-2.16.3"
+ sources."hosted-git-info-2.7.1"
+ sources."http-errors-1.6.3"
+ 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.8.0"
+ 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."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.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."ms-2.0.0"
+ sources."nan-2.11.0"
+ sources."negotiator-0.6.1"
+ (sources."node-pre-gyp-0.6.39" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ sources."rimraf-2.6.2"
+ sources."semver-5.5.1"
+ ];
+ })
+ 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.5"
+ 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"
+ sources."process-nextick-args-2.0.0"
+ sources."proxy-addr-2.0.4"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."range-parser-1.2.0"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."rc-1.2.8"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-2.3.6"
+ sources."redent-1.0.0"
+ sources."repeating-2.0.1"
+ (sources."request-2.81.0" // {
+ dependencies = [
+ sources."qs-6.4.0"
+ ];
+ })
+ sources."rimraf-2.2.8"
+ sources."safe-buffer-5.1.1"
+ sources."safer-buffer-2.1.2"
+ sources."semver-4.3.6"
+ sources."send-0.16.2"
+ (sources."serve-favicon-2.5.0" // {
+ dependencies = [
+ sources."ms-2.1.1"
+ ];
+ })
+ sources."serve-static-1.13.2"
+ 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-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ (sources."sshpk-1.14.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."statuses-1.4.0"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.1.1"
+ sources."stringstream-0.0.6"
+ 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.6"
+ sources."tar-2.2.1"
+ (sources."tar-pack-3.4.1" // {
+ dependencies = [
+ sources."glob-7.1.3"
+ sources."rimraf-2.6.2"
+ ];
+ })
+ sources."tough-cookie-2.3.4"
+ sources."trim-newlines-1.0.0"
+ sources."truncate-2.0.1"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ sources."uid-0.0.2"
+ sources."uid-number-0.0.6"
+ sources."ultron-1.0.2"
+ 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.3.2"
+ sources."v8-debug-1.0.1"
+ sources."v8-profiler-5.7.0"
+ sources."validate-npm-package-license-3.0.4"
+ sources."vary-1.1.2"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."which-1.3.1"
+ sources."wide-align-1.1.3"
+ (sources."win-detect-browsers-1.0.2" // {
+ dependencies = [
+ sources."yargs-1.3.3"
+ ];
+ })
+ sources."window-size-0.1.4"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."ws-1.1.5"
+ sources."x-default-browser-0.3.1"
+ (sources."xmlbuilder-4.0.0" // {
+ dependencies = [
+ sources."lodash-3.10.1"
+ ];
+ })
+ sources."xmldom-0.1.27"
+ sources."xtend-4.0.1"
+ sources."y18n-3.2.1"
+ sources."yargs-3.32.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Web Inspector based nodeJS debugger";
+ homepage = http://github.com/node-inspector/node-inspector;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ node-pre-gyp = nodeEnv.buildNodePackage {
+ name = "node-pre-gyp";
+ packageName = "node-pre-gyp";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz";
+ sha512 = "TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q==";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.5"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."chownr-1.0.1"
+ sources."code-point-at-1.1.0"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."debug-2.6.9"
+ sources."deep-extend-0.6.0"
+ sources."delegates-1.0.0"
+ sources."detect-libc-1.0.3"
+ sources."fs-minipass-1.2.5"
+ sources."fs.realpath-1.0.0"
+ sources."gauge-2.7.4"
+ sources."glob-7.1.3"
+ sources."has-unicode-2.0.1"
+ sources."iconv-lite-0.4.24"
+ sources."ignore-walk-3.0.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."isarray-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."minipass-2.3.4"
+ sources."minizlib-1.1.0"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."needle-2.2.2"
+ sources."nopt-4.0.1"
+ sources."npm-bundled-1.0.5"
+ sources."npm-packlist-1.1.11"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ 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.5"
+ sources."path-is-absolute-1.0.1"
+ sources."process-nextick-args-2.0.0"
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."readable-stream-2.3.6"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."semver-5.5.1"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."tar-4.4.6"
+ sources."util-deprecate-1.0.2"
+ sources."wide-align-1.1.3"
+ sources."wrappy-1.0.2"
+ sources."yallist-3.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Node.js native addon binary install tool";
+ homepage = "https://github.com/mapbox/node-pre-gyp#readme";
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ nodemon = nodeEnv.buildNodePackage {
+ name = "nodemon";
+ packageName = "nodemon";
+ version = "1.18.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.3.tgz";
+ sha512 = "XdVfAjGlDKU2nqoGgycxTndkJ5fdwvWJ/tlMGk2vHxMZBrSPVh86OM6z7viAv8BBJWjMgeuYQBofzr6LUoi+7g==";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."ansi-align-2.0.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."anymatch-2.0.0"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-unique-0.3.2"
+ sources."assign-symbols-1.0.0"
+ sources."async-each-1.0.1"
+ sources."atob-2.1.2"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."binary-extensions-1.11.0"
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.11"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."cache-base-1.0.1"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."chalk-2.4.1"
+ sources."chokidar-2.0.4"
+ sources."ci-info-1.4.0"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."cli-boxes-1.0.0"
+ sources."collection-visit-1.0.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."component-emitter-1.2.1"
+ sources."concat-map-0.0.1"
+ sources."configstore-3.1.2"
+ 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.6.0"
+ sources."define-property-2.0.2"
+ 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."debug-2.6.9"
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."extend-shallow-3.0.2"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."for-in-1.0.2"
+ sources."fragment-cache-0.2.1"
+ sources."from-0.1.7"
+ sources."fsevents-1.2.4"
+ 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-3.0.0"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.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-ci-1.2.0"
+ 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-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" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-obj-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-plain-object-2.0.4"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."kind-of-6.0.2"
+ sources."latest-version-3.1.0"
+ sources."lodash.debounce-4.0.8"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.3"
+ sources."make-dir-1.3.0"
+ sources."map-cache-0.2.2"
+ sources."map-stream-0.1.0"
+ sources."map-visit-1.0.0"
+ sources."micromatch-3.1.10"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mixin-deep-1.3.1"
+ sources."ms-2.0.0"
+ sources."nan-2.11.0"
+ sources."nanomatch-1.2.13"
+ sources."nopt-1.0.10"
+ sources."normalize-path-2.1.1"
+ sources."npm-run-path-2.0.2"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."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-2.0.0"
+ sources."ps-tree-1.1.0"
+ sources."pseudomap-1.0.2"
+ sources."pstree.remy-1.1.0"
+ sources."rc-1.2.8"
+ sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ sources."regex-not-1.0.2"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."resolve-url-0.2.1"
+ sources."ret-0.1.15"
+ sources."safe-buffer-5.1.2"
+ sources."safe-regex-1.1.0"
+ sources."semver-5.5.1"
+ sources."semver-diff-2.1.0"
+ sources."set-immediate-shim-1.0.1"
+ (sources."set-value-2.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."split-0.3.3"
+ sources."split-string-3.1.0"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."stream-combiner-0.0.4"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-5.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" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."touch-3.1.0"
+ (sources."undefsafe-2.0.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ 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."has-values-0.1.4"
+ ];
+ })
+ sources."unzip-response-2.0.1"
+ sources."upath-1.1.0"
+ sources."update-notifier-2.5.0"
+ sources."urix-0.1.0"
+ sources."url-parse-lax-1.0.0"
+ sources."use-3.1.1"
+ sources."util-deprecate-1.0.2"
+ sources."which-1.3.1"
+ 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 = {
+ description = "Simple monitor script for use during development of a node.js app.";
+ homepage = http://nodemon.io/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ node-red = nodeEnv.buildNodePackage {
+ name = "node-red";
+ packageName = "node-red";
+ version = "0.19.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red/-/node-red-0.19.2.tgz";
+ sha512 = "788MCJSRjfYhsGsuRDlWL3Q1E2LheTPjnXzvIdX5/94buaczJifGdoqi2lNxQuCjHXPUvWVTeZCF0ot0igdz7Q==";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.5"
+ sources."addressparser-0.3.2"
+ sources."ajv-6.5.3"
+ sources."append-field-0.1.0"
+ sources."argparse-1.0.10"
+ sources."array-flatten-1.1.1"
+ sources."array-indexofobject-0.0.1"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."async-0.1.22"
+ sources."async-limiter-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."basic-auth-2.0.0"
+ sources."bcrypt-2.0.1"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bcryptjs-2.4.3"
+ sources."bl-1.2.2"
+ sources."body-parser-1.18.3"
+ sources."boolbase-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.1.1"
+ (sources."buildmail-2.0.0" // {
+ dependencies = [
+ sources."needle-0.10.0"
+ ];
+ })
+ (sources."busboy-0.2.14" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."bytes-3.0.0"
+ sources."callback-stream-1.1.0"
+ sources."caseless-0.12.0"
+ sources."cheerio-0.22.0"
+ sources."clone-2.1.2"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."commist-1.0.0"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ 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."cors-2.8.4"
+ sources."crc-3.4.4"
+ sources."cron-1.3.0"
+ sources."css-select-1.2.0"
+ sources."css-what-2.1.0"
+ sources."d-1.0.0"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."delayed-stream-1.0.0"
+ sources."denque-1.3.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ (sources."dicer-0.2.5" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ (sources."dom-serializer-0.1.0" // {
+ dependencies = [
+ sources."domelementtype-1.1.3"
+ ];
+ })
+ sources."domelementtype-1.3.0"
+ sources."domhandler-2.4.2"
+ sources."domutils-1.5.1"
+ sources."duplexify-3.6.0"
+ sources."ecc-jsbn-0.1.2"
+ 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."es5-ext-0.10.46"
+ 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."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.1"
+ sources."etag-1.8.1"
+ sources."event-emitter-0.3.5"
+ (sources."express-4.16.3" // {
+ dependencies = [
+ sources."body-parser-1.18.2"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ sources."raw-body-2.3.2"
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."express-session-1.15.6"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-2.0.1"
+ sources."fast-json-stable-stringify-2.0.0"
+ (sources."feedparser-2.2.9" // {
+ dependencies = [
+ sources."addressparser-1.0.1"
+ ];
+ })
+ (sources."finalhandler-1.1.1" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fs-extra-5.0.0"
+ sources."fs.notify-0.0.4"
+ sources."fs.realpath-1.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.3"
+ sources."glob-parent-3.1.0"
+ sources."glob-stream-6.1.0"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ (sources."har-validator-5.1.0" // {
+ dependencies = [
+ sources."ajv-5.5.2"
+ sources."fast-deep-equal-1.1.0"
+ sources."json-schema-traverse-0.3.1"
+ ];
+ })
+ sources."hash-sum-1.0.2"
+ sources."help-me-1.1.0"
+ sources."htmlparser2-3.9.2"
+ sources."http-errors-1.6.3"
+ sources."http-signature-1.2.0"
+ sources."i18next-11.6.0"
+ sources."iconv-lite-0.4.23"
+ (sources."imap-0.8.19" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ipaddr.js-1.8.0"
+ sources."is-absolute-1.0.0"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-3.1.0"
+ sources."is-negated-glob-1.0.0"
+ 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.2"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."js-yaml-3.12.0"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stable-stringify-1.0.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonata-1.5.4"
+ sources."jsonfile-4.0.0"
+ sources."jsonify-0.0.0"
+ sources."jsprim-1.4.1"
+ sources."leven-1.0.2"
+ sources."libbase64-0.1.0"
+ sources."libmime-1.2.0"
+ sources."libqp-1.1.0"
+ sources."lodash.assign-4.2.0"
+ sources."lodash.assignin-4.2.0"
+ sources."lodash.bind-4.2.1"
+ sources."lodash.defaults-4.2.0"
+ sources."lodash.filter-4.6.0"
+ sources."lodash.flatten-4.4.0"
+ sources."lodash.foreach-4.5.0"
+ sources."lodash.get-4.4.2"
+ sources."lodash.has-4.5.2"
+ sources."lodash.map-4.6.0"
+ sources."lodash.merge-4.6.1"
+ sources."lodash.pick-4.4.0"
+ sources."lodash.reduce-4.6.0"
+ sources."lodash.reject-4.6.0"
+ sources."lodash.some-4.6.0"
+ sources."lodash.uniq-4.5.0"
+ sources."lru-cache-4.1.3"
+ sources."mailcomposer-2.1.0"
+ sources."mailparser-0.6.2"
+ sources."media-typer-0.3.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.36.0"
+ sources."mime-types-2.1.20"
+ (sources."mimelib-0.3.1" // {
+ dependencies = [
+ sources."addressparser-1.0.1"
+ ];
+ })
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."moment-2.22.2"
+ sources."moment-timezone-0.5.21"
+ sources."mqtt-2.18.5"
+ sources."mqtt-packet-5.6.0"
+ sources."mri-1.1.1"
+ sources."ms-2.0.0"
+ (sources."multer-1.3.1" // {
+ dependencies = [
+ sources."object-assign-3.0.0"
+ ];
+ })
+ sources."mustache-2.3.1"
+ sources."nan-2.10.0"
+ sources."needle-0.11.0"
+ sources."negotiator-0.6.1"
+ sources."next-tick-1.0.0"
+ sources."node-red-node-email-0.1.29"
+ sources."node-red-node-feedparser-0.1.12"
+ sources."node-red-node-rbe-0.2.3"
+ sources."node-red-node-twitter-1.1.2"
+ sources."nodemailer-1.11.0"
+ sources."nodemailer-direct-transport-1.1.0"
+ (sources."nodemailer-smtp-transport-1.1.0" // {
+ dependencies = [
+ sources."clone-1.0.4"
+ ];
+ })
+ sources."nodemailer-wellknown-0.1.10"
+ sources."nopt-4.0.1"
+ sources."nth-check-1.0.1"
+ sources."oauth-0.9.15"
+ sources."oauth-sign-0.9.0"
+ sources."oauth2orize-1.11.0"
+ sources."object-assign-4.1.1"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."once-1.4.0"
+ (sources."optimist-0.6.1" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ ];
+ })
+ 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."osenv-0.1.5"
+ sources."parseurl-1.3.2"
+ sources."passport-0.4.0"
+ 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."poplib-0.1.7"
+ sources."process-nextick-args-2.0.0"
+ sources."proxy-addr-2.0.4"
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.29"
+ sources."pump-3.0.0"
+ (sources."pumpify-1.5.1" // {
+ dependencies = [
+ sources."pump-2.0.1"
+ ];
+ })
+ sources."punycode-2.1.1"
+ sources."qs-6.5.2"
+ sources."random-bytes-1.0.0"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.3"
+ sources."readable-stream-2.3.6"
+ sources."reinterval-1.1.0"
+ sources."remove-trailing-separator-1.1.0"
+ (sources."request-2.88.0" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."retry-0.6.1"
+ sources."safe-buffer-5.1.1"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."semver-5.5.1"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."sentiment-2.1.0"
+ sources."serve-static-1.13.2"
+ sources."setprototypeof-1.1.0"
+ sources."smtp-connection-1.3.8"
+ sources."source-map-0.6.1"
+ sources."split2-2.2.0"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
+ sources."statuses-1.5.0"
+ sources."stream-shift-1.0.0"
+ sources."streamsearch-0.1.2"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ sources."through2-filter-2.0.0"
+ sources."to-absolute-glob-2.0.2"
+ (sources."tough-cookie-2.4.3" // {
+ dependencies = [
+ sources."punycode-1.4.1"
+ ];
+ })
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."twitter-ng-0.6.2"
+ sources."type-is-1.6.16"
+ sources."typedarray-0.0.6"
+ sources."uglify-js-3.4.8"
+ 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."universalify-0.1.2"
+ sources."unpipe-1.0.0"
+ sources."uri-js-4.2.2"
+ (sources."utf7-1.0.2" // {
+ dependencies = [
+ sources."semver-5.3.0"
+ ];
+ })
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uue-3.1.2"
+ sources."uuid-3.3.2"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ (sources."websocket-stream-5.1.2" // {
+ dependencies = [
+ sources."ws-3.3.3"
+ ];
+ })
+ sources."when-3.7.8"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ (sources."ws-1.1.5" // {
+ dependencies = [
+ sources."ultron-1.0.2"
+ ];
+ })
+ sources."xml2js-0.4.19"
+ sources."xmlbuilder-9.0.7"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A visual tool for wiring the Internet of Things";
+ homepage = http://nodered.org/;
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ "node-uptime-https://github.com/fzaninotto/uptime/tarball/1c65756575f90f563a752e2a22892ba2981c79b7" = nodeEnv.buildNodePackage {
+ name = "node-uptime";
+ packageName = "node-uptime";
+ version = "3.2.0";
+ src = fetchurl {
+ name = "node-uptime-3.2.0.tar.gz";
+ url = https://codeload.github.com/fzaninotto/uptime/legacy.tar.gz/1c65756575f90f563a752e2a22892ba2981c79b7;
+ sha256 = "46424d7f9553ce7313cc09995ab11d237dd02257c29f260cfb38d2799e7c7746";
+ };
+ dependencies = [
+ sources."active-x-obfuscator-0.0.1"
+ sources."addressparser-1.0.1"
+ sources."argparse-0.1.16"
+ sources."async-0.1.22"
+ sources."balanced-match-1.0.0"
+ sources."base64id-0.1.0"
+ sources."brace-expansion-1.1.11"
+ 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."concat-map-0.0.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" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."diff-1.0.8"
+ sources."ejs-0.8.3"
+ sources."esprima-1.0.4"
+ sources."express-3.2.0"
+ sources."express-partials-0.0.6"
+ sources."eyes-0.1.8"
+ sources."formidable-1.0.11"
+ sources."fresh-0.1.0"
+ sources."fs.realpath-1.0.0"
+ sources."glob-7.1.3"
+ sources."hooks-0.2.1"
+ sources."iconv-lite-0.4.15"
+ sources."inflight-1.0.6"
+ 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."mailcomposer-4.0.2"
+ sources."methods-0.0.1"
+ sources."mime-1.2.6"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.10"
+ sources."mkdirp-0.3.5"
+ sources."moment-2.1.0"
+ sources."mongodb-1.2.14"
+ 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."ms-0.1.0"
+ sources."muri-0.3.1"
+ sources."nan-1.0.0"
+ sources."net-ping-1.1.7"
+ 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."path-is-absolute-1.0.1"
+ sources."pause-0.0.1"
+ sources."policyfile-0.0.4"
+ sources."punycode-1.4.1"
+ sources."qs-0.5.1"
+ sources."rai-0.1.12"
+ sources."range-parser-0.0.4"
+ (sources."raw-socket-1.6.2" // {
+ dependencies = [
+ sources."nan-2.10.0"
+ ];
+ })
+ sources."redis-0.7.3"
+ sources."semver-1.1.0"
+ sources."send-0.1.0"
+ sources."simplesmtp-0.3.35"
+ sources."sliced-0.0.3"
+ sources."socket.io-0.9.14"
+ 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.2"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ (sources."ws-0.4.32" // {
+ dependencies = [
+ sources."commander-2.1.0"
+ ];
+ })
+ sources."xmlhttprequest-1.4.2"
+ sources."xoauth2-0.1.8"
+ sources."zeparser-0.0.5"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Remote monitoring for HTTP applications";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ npm = nodeEnv.buildNodePackage {
+ name = "npm";
+ packageName = "npm";
+ version = "6.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm/-/npm-6.4.0.tgz";
+ sha512 = "k0VteQaxRuI1mREBxCtLUksesD2ZmX5gxjXNEjTmTrxQ3SHW22InkCKyX4NzoeGAYtgmDg5MuE7rcXYod7xgug==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "a package manager for JavaScript";
+ homepage = https://docs.npmjs.com/;
+ license = "Artistic-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ "npm2nix-git://github.com/NixOS/npm2nix.git#5.12.0" = nodeEnv.buildNodePackage {
+ name = "npm2nix";
+ packageName = "npm2nix";
+ version = "5.12.0";
+ src = fetchgit {
+ url = "git://github.com/NixOS/npm2nix.git";
+ rev = "0c06be7d278a7f64fc853a5fd42d2031d14496d5";
+ sha256 = "e1b252cd883fd8c5c4618b157d03b3fb869fa6aad4170ef51e34681069d50bf5";
+ };
+ dependencies = [
+ 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.5"
+ sources."argparse-0.1.15"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."block-stream-0.0.9"
+ sources."brace-expansion-1.1.11"
+ 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.6"
+ 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."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.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.2"
+ (sources."fs-extra-0.6.4" // {
+ dependencies = [
+ sources."rimraf-2.2.8"
+ ];
+ })
+ sources."fs.extra-1.3.2"
+ sources."fs.realpath-1.0.0"
+ (sources."fstream-0.1.31" // {
+ dependencies = [
+ sources."graceful-fs-3.0.11"
+ sources."mkdirp-0.5.1"
+ ];
+ })
+ sources."gauge-2.7.4"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.3"
+ sources."graceful-fs-2.0.3"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."has-unicode-2.0.1"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.3.5"
+ sources."natives-1.1.4"
+ sources."ncp-0.4.2"
+ sources."nopt-2.2.1"
+ (sources."npm-registry-client-0.2.27" // {
+ dependencies = [
+ sources."semver-2.0.11"
+ ];
+ })
+ (sources."npmconf-0.1.1" // {
+ dependencies = [
+ sources."inherits-1.0.2"
+ sources."once-1.1.1"
+ sources."semver-2.3.2"
+ ];
+ })
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."osenv-0.0.3"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-2.0.0"
+ sources."proto-list-1.2.4"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."readable-stream-2.3.6"
+ sources."request-2.88.0"
+ sources."retry-0.6.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."semver-4.3.6"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slide-1.1.6"
+ sources."sshpk-1.14.2"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ (sources."tar-0.1.17" // {
+ dependencies = [
+ sources."inherits-1.0.2"
+ ];
+ })
+ (sources."temp-0.6.0" // {
+ dependencies = [
+ sources."graceful-fs-1.2.3"
+ sources."rimraf-2.1.4"
+ ];
+ })
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."underscore-1.4.4"
+ sources."underscore.string-2.3.3"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ sources."verror-1.10.0"
+ sources."walk-2.3.14"
+ sources."wide-align-1.1.3"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Generate nix expressions to build npm packages";
+ homepage = https://github.com/NixOS/npm2nix;
+ };
+ production = true;
+ bypassCache = true;
+ };
+ npm-check-updates = nodeEnv.buildNodePackage {
+ name = "npm-check-updates";
+ packageName = "npm-check-updates";
+ version = "2.14.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-2.14.2.tgz";
+ sha512 = "kyrLnGIImPb4WK/S/4AgsxKZ21ztC9KP+6aNTZN31cGJm4+GyH+aNq7ASvvJQO3iOdg/c60qLdZVtLTOn4l0gQ==";
+ };
+ dependencies = [
+ sources."ansi-align-2.0.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."argparse-1.0.10"
+ sources."bluebird-3.5.1"
+ (sources."boxen-1.3.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."chalk-1.1.3"
+ sources."ci-info-1.4.0"
+ sources."cint-8.2.1"
+ sources."cli-boxes-1.0.0"
+ sources."cli-table-0.3.1"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colors-1.0.3"
+ sources."commander-2.17.1"
+ sources."configstore-3.1.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."deep-extend-0.6.0"
+ sources."dot-prop-4.2.0"
+ sources."duplexer3-0.1.4"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.1"
+ sources."execa-0.7.0"
+ sources."fast-diff-1.1.2"
+ sources."find-up-1.1.2"
+ sources."get-stdin-5.0.1"
+ sources."get-stream-3.0.0"
+ sources."global-dirs-0.1.1"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."ini-1.3.5"
+ sources."is-ci-1.2.0"
+ 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."isexe-2.0.0"
+ sources."jju-1.4.0"
+ sources."js-yaml-3.12.0"
+ sources."json-parse-helpfulerror-1.0.3"
+ sources."json5-1.0.1"
+ sources."latest-version-3.1.0"
+ sources."lodash-4.17.10"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.3"
+ sources."make-dir-1.3.0"
+ sources."minimist-1.2.0"
+ sources."ms-2.0.0"
+ sources."node-alias-1.0.4"
+ sources."npm-3.10.10"
+ sources."npm-run-path-2.0.2"
+ (sources."npmi-2.0.1" // {
+ dependencies = [
+ sources."semver-4.3.6"
+ ];
+ })
+ sources."object-assign-4.1.1"
+ sources."object-keys-1.0.12"
+ sources."p-finally-1.0.0"
+ sources."package-json-4.0.1"
+ sources."path-exists-2.1.0"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."pify-3.0.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."prepend-http-1.0.4"
+ sources."pseudomap-1.0.2"
+ sources."rc-1.2.8"
+ (sources."rc-config-loader-2.0.2" // {
+ dependencies = [
+ sources."path-exists-3.0.0"
+ ];
+ })
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."require-from-string-2.0.2"
+ sources."safe-buffer-5.1.2"
+ sources."semver-5.5.1"
+ sources."semver-diff-2.1.0"
+ sources."semver-utils-1.1.2"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."spawn-please-0.3.0"
+ sources."sprintf-js-1.0.3"
+ (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."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."timed-out-4.0.1"
+ sources."unique-string-1.0.0"
+ sources."unzip-response-2.0.1"
+ (sources."update-notifier-2.5.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."url-parse-lax-1.0.0"
+ sources."which-1.3.1"
+ 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 = {
+ description = "Find newer versions of dependencies than what your package.json or bower.json allows";
+ homepage = https://github.com/tjunnone/npm-check-updates;
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ nsp = nodeEnv.buildNodePackage {
+ name = "nsp";
+ packageName = "nsp";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nsp/-/nsp-3.2.1.tgz";
+ sha512 = "dLmGi7IGixJEHKetErIH460MYiYIzAoxuVsloZFu9e1p9U8K0yULx7YQ1+VzrjZbB+wqq67ES1SfOvKVb/qMDQ==";
+ };
+ dependencies = [
+ sources."agent-base-4.2.1"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.1"
+ sources."boom-5.2.0"
+ sources."builtin-modules-1.1.1"
+ sources."camelcase-4.1.0"
+ sources."chalk-2.4.1"
+ 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"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colors-1.3.2"
+ sources."cross-spawn-5.1.0"
+ sources."cvss-1.0.3"
+ sources."debug-3.1.0"
+ sources."decamelize-1.2.0"
+ sources."error-ex-1.3.2"
+ 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.2.0"
+ sources."figures-2.0.0"
+ sources."find-up-2.1.0"
+ sources."get-caller-file-1.0.3"
+ sources."get-stream-3.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-flag-3.0.0"
+ sources."hoek-4.2.1"
+ sources."hosted-git-info-2.7.1"
+ sources."https-proxy-agent-2.2.1"
+ sources."iconv-lite-0.4.24"
+ (sources."inquirer-3.3.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."lodash-4.17.10"
+ 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.3"
+ sources."mem-1.1.0"
+ sources."mimic-fn-1.2.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.3.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."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ sources."set-blocking-2.0.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ 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-5.5.0"
+ sources."through-2.3.8"
+ sources."tmp-0.0.33"
+ sources."validate-npm-package-license-3.0.4"
+ sources."which-1.3.1"
+ 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 = {
+ description = "The Node Security (nodesecurity.io) command line interface";
+ homepage = "https://github.com/nodesecurity/nsp#readme";
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ ocaml-language-server = nodeEnv.buildNodePackage {
+ name = "ocaml-language-server";
+ packageName = "ocaml-language-server";
+ version = "1.0.35";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.35.tgz";
+ sha512 = "9RS7+KyrmFFL2BZLjIBjLToqbDTKDTAoCGrQDm8eYgKie/ep6UnodGuvZgRaM9HOQ8RDzBh4rE3CfGdNsggD4g==";
+ };
+ dependencies = [
+ sources."async-2.6.0"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."concat-map-0.0.1"
+ sources."deepmerge-2.1.0"
+ 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.5"
+ sources."lokijs-1.5.3"
+ 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.6.0"
+ sources."vscode-languageclient-4.0.1"
+ sources."vscode-languageserver-4.0.0"
+ sources."vscode-languageserver-protocol-3.6.0"
+ sources."vscode-languageserver-types-3.12.0"
+ sources."vscode-uri-1.0.3"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "OCaml language server";
+ homepage = https://github.com/freebroccolo/ocaml-language-server;
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ "parsoid-git://github.com/abbradar/parsoid#stable" = nodeEnv.buildNodePackage {
+ name = "parsoid";
+ packageName = "parsoid";
+ version = "0.8.0";
+ src = fetchgit {
+ url = "git://github.com/abbradar/parsoid";
+ rev = "89958e4f9e5583e0fdc5447103392e3d749d500b";
+ sha256 = "1af850ced5bd8db64e20ad30bf59d99c14624efba3127759ca1c34088a0aadd7";
+ };
+ dependencies = [
+ sources."accepts-1.3.5"
+ 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.10"
+ sources."array-flatten-1.1.1"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.4"
+ 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.8.0"
+ sources."babybird-0.0.1"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ (sources."bl-1.2.2" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."bluebird-3.5.1"
+ (sources."body-parser-1.18.3" // {
+ dependencies = [
+ sources."content-type-1.0.4"
+ ];
+ })
+ sources."brace-expansion-1.1.11"
+ 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" // {
+ dependencies = [
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."colors-1.3.2"
+ sources."combined-stream-1.0.6"
+ sources."compressible-2.0.14"
+ sources."compression-1.7.3"
+ 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#master"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
+ sources."core-js-2.5.7"
+ sources."core-util-is-1.0.2"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."define-properties-1.1.3"
+ 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.1.0"
+ sources."domino-1.0.30"
+ sources."dtrace-provider-0.8.7"
+ sources."ecc-jsbn-0.1.2"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."entities-1.1.1"
+ sources."error-ex-1.3.2"
+ sources."escape-html-1.0.3"
+ sources."esprima-4.0.1"
+ sources."etag-1.8.1"
+ (sources."express-4.16.3" // {
+ dependencies = [
+ sources."body-parser-1.18.2"
+ sources."content-type-1.0.4"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ sources."raw-body-2.3.2"
+ sources."safe-buffer-5.1.1"
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."express-handlebars-3.0.0"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ (sources."finalhandler-1.1.1" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."find-up-1.1.2"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ 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.3"
+ sources."getpass-0.1.7"
+ sources."glob-6.0.4"
+ sources."graceful-fs-4.1.11"
+ (sources."handlebars-4.0.11" // {
+ dependencies = [
+ sources."async-1.5.2"
+ ];
+ })
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."has-symbols-1.0.0"
+ sources."hat-0.0.3"
+ sources."hosted-git-info-2.7.1"
+ sources."hot-shots-4.8.0"
+ sources."http-errors-1.6.3"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.23"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."invert-kv-1.0.0"
+ sources."ipaddr.js-1.8.0"
+ 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.12.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" // {
+ dependencies = [
+ sources."ms-0.7.3"
+ ];
+ })
+ (sources."kad-fs-0.0.4" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."kad-localstorage-0.0.7"
+ (sources."kad-memstore-0.0.1" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ sources."lazy-cache-1.0.4"
+ sources."lcid-1.0.0"
+ (sources."limitation-0.2.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.10"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."moment-2.22.2"
+ sources."ms-2.0.0"
+ (sources."msgpack5-3.6.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."mv-2.1.1"
+ sources."nan-2.11.0"
+ sources."ncp-2.0.0"
+ sources."negotiator-git+https://github.com/arlolra/negotiator#full-parse-access"
+ sources."normalize-package-data-2.4.0"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-keys-1.0.12"
+ 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#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-2.0.0"
+ sources."promise-7.3.1"
+ sources."proxy-addr-2.0.4"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.3"
+ 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.88.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.2"
+ sources."safe-json-stringify-1.2.0"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ (sources."serve-favicon-2.5.0" // {
+ dependencies = [
+ sources."ms-2.1.1"
+ sources."safe-buffer-5.1.1"
+ ];
+ })
+ sources."serve-static-1.13.2"
+ sources."service-runner-2.3.0"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.1.0"
+ sources."simplediff-0.1.1"
+ sources."source-map-0.4.4"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
+ sources."statuses-1.5.0"
+ sources."streamsearch-0.1.2"
+ sources."string-width-1.0.2"
+ sources."string_decoder-0.10.31"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-2.0.0"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ (sources."uglify-js-2.8.29" // {
+ dependencies = [
+ sources."source-map-0.5.7"
+ sources."yargs-3.10.0"
+ ];
+ })
+ 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.3.2"
+ sources."validate-npm-package-license-3.0.4"
+ 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."yargs-parser-5.0.0" // {
+ dependencies = [
+ sources."camelcase-3.0.0"
+ ];
+ })
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Mediawiki parser for the VisualEditor.";
+ license = "GPL-2.0+";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ peerflix = nodeEnv.buildNodePackage {
+ name = "peerflix";
+ packageName = "peerflix";
+ version = "0.39.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/peerflix/-/peerflix-0.39.0.tgz";
+ sha512 = "spB+D+GXdM9JcPeWG8bpnWTxfXr/KwyyZ0OjNlpyw62ffxlCsbNhwaSmhXDpDC3wh4HuQejdYc1DlU+zTXL+WA==";
+ };
+ dependencies = [
+ sources."addr-to-ip-port-1.5.1"
+ sources."airplay-protocol-2.0.2"
+ (sources."airplayer-2.0.0" // {
+ dependencies = [
+ sources."mime-1.6.0"
+ ];
+ })
+ sources."ansi-escapes-3.1.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-2.0.0"
+ sources."big-integer-1.6.34"
+ sources."bitfield-0.1.0"
+ (sources."bittorrent-dht-6.4.2" // {
+ dependencies = [
+ sources."bencode-0.7.0"
+ ];
+ })
+ (sources."bittorrent-tracker-7.7.0" // {
+ dependencies = [
+ sources."bencode-0.8.0"
+ ];
+ })
+ sources."blob-to-buffer-1.2.8"
+ 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.11"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-equal-0.0.1"
+ sources."buffer-equals-1.0.4"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.1"
+ 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."chardet-0.4.2"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ sources."clivas-0.2.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."compact2string-1.4.0"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ 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.6.0"
+ 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.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."external-editor-2.2.0"
+ sources."fifo-0.1.4"
+ sources."figures-2.0.0"
+ sources."find-up-1.1.2"
+ sources."flatten-0.0.1"
+ (sources."fs-chunk-store-1.7.0" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ 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.3"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."hat-0.0.3"
+ sources."hosted-git-info-2.7.1"
+ sources."http-headers-3.0.2"
+ sources."iconv-lite-0.4.24"
+ 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-5.2.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."lodash-4.17.10"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."internal-ip-1.2.0"
+ sources."ip-1.1.5"
+ sources."ip-set-1.0.1"
+ sources."ipaddr.js-1.8.1"
+ 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."k-bucket-2.0.1"
+ ];
+ })
+ sources."k-rpc-socket-1.8.0"
+ 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.2.3"
+ sources."map-obj-1.0.1"
+ sources."meow-3.7.0"
+ sources."mime-2.3.1"
+ sources."mimic-fn-1.2.0"
+ sources."mimic-response-1.0.1"
+ 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.3"
+ sources."multicast-dns-service-types-1.1.0"
+ sources."mute-stream-0.0.7"
+ 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-2.0.6"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."open-0.0.5"
+ (sources."optimist-0.6.1" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ ];
+ })
+ sources."options-0.0.6"
+ sources."os-tmpdir-1.0.2"
+ sources."parse-json-2.2.0"
+ (sources."parse-torrent-5.9.1" // {
+ dependencies = [
+ sources."get-stdin-6.0.0"
+ ];
+ })
+ (sources."parse-torrent-file-2.1.4" // {
+ dependencies = [
+ sources."bencode-0.7.0"
+ ];
+ })
+ 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.1" // {
+ dependencies = [
+ sources."bncode-0.2.3"
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."peer-wire-swarm-0.12.2"
+ 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-2.0.0"
+ sources."pump-2.0.1"
+ (sources."random-access-file-2.0.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ ];
+ })
+ sources."random-access-storage-1.3.0"
+ sources."random-iterate-1.0.1"
+ sources."randombytes-2.0.6"
+ sources."range-parser-1.2.0"
+ sources."rc-1.2.8"
+ sources."re-emitter-1.1.3"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-2.3.6"
+ sources."redent-1.0.0"
+ sources."repeating-2.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."reverse-http-1.3.0"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."run-parallel-1.1.9"
+ sources."run-series-1.1.8"
+ sources."rusha-0.8.13"
+ sources."rxjs-5.5.11"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ sources."server-destroy-1.0.1"
+ sources."signal-exit-3.0.2"
+ sources."simple-concat-1.0.0"
+ sources."simple-get-2.8.1"
+ sources."simple-peer-6.4.4"
+ sources."simple-sha1-2.1.1"
+ (sources."simple-websocket-4.3.1" // {
+ dependencies = [
+ sources."safe-buffer-5.0.1"
+ sources."ws-2.3.1"
+ ];
+ })
+ sources."single-line-log-1.1.2"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."speedometer-0.1.4"
+ sources."stream-buffers-2.2.0"
+ sources."string-width-1.0.2"
+ sources."string2compact-1.3.0"
+ sources."string_decoder-1.1.1"
+ 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."symbol-observable-1.0.1"
+ sources."thirty-two-1.0.2"
+ sources."through-2.3.8"
+ sources."thunky-1.0.2"
+ sources."tmp-0.0.33"
+ sources."torrent-discovery-5.4.0"
+ sources."torrent-piece-1.1.2"
+ (sources."torrent-stream-1.0.4" // {
+ dependencies = [
+ sources."end-of-stream-0.1.5"
+ sources."magnet-uri-4.2.3"
+ sources."once-1.3.3"
+ sources."parse-torrent-4.1.0"
+ sources."thirty-two-0.0.2"
+ ];
+ })
+ sources."trim-newlines-1.0.0"
+ sources."typedarray-0.0.6"
+ sources."ultron-1.1.1"
+ sources."uniq-1.0.1"
+ sources."util-deprecate-1.0.2"
+ sources."utp-0.0.7"
+ sources."validate-npm-package-license-3.0.4"
+ sources."winreg-1.2.4"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ (sources."ws-1.1.5" // {
+ dependencies = [
+ sources."ultron-1.0.2"
+ ];
+ })
+ sources."xmlbuilder-4.0.0"
+ sources."xmldom-0.1.27"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Streaming torrent client for Node.js";
+ homepage = https://github.com/mafintosh/peerflix;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ peerflix-server = nodeEnv.buildNodePackage {
+ name = "peerflix-server";
+ packageName = "peerflix-server";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/peerflix-server/-/peerflix-server-0.4.1.tgz";
+ sha512 = "R69EPwlRGmvk976x3KVBaRclnPgK+wCex/Th4eQWWMSoTq+EzSAANRxe/QnEr0k0SQmiiJYsWWv7L7mBmvnD2A==";
+ };
+ dependencies = [
+ sources."accepts-1.2.13"
+ sources."addr-to-ip-port-1.5.1"
+ sources."after-0.8.2"
+ sources."archiver-3.0.0"
+ sources."archiver-utils-2.0.0"
+ sources."arraybuffer.slice-0.0.6"
+ sources."async-2.6.1"
+ sources."aws-sign-0.2.1"
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."base64-arraybuffer-0.1.5"
+ sources."base64-js-1.3.0"
+ 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" // {
+ dependencies = [
+ sources."bencode-0.8.0"
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."bl-1.2.2"
+ sources."blob-0.0.4"
+ sources."bn.js-4.11.8"
+ sources."bncode-0.5.3"
+ (sources."body-parser-1.13.3" // {
+ dependencies = [
+ sources."qs-4.0.0"
+ ];
+ })
+ sources."boom-0.3.8"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-5.2.0"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-crc32-0.2.13"
+ sources."buffer-equal-0.0.1"
+ sources."buffer-equals-1.0.4"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.1"
+ 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."compress-commons-1.2.2" // {
+ dependencies = [
+ sources."normalize-path-2.1.1"
+ ];
+ })
+ sources."compressible-2.0.14"
+ sources."compression-1.5.2"
+ sources."concat-map-0.0.1"
+ (sources."connect-2.30.2" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."multiparty-3.3.2"
+ sources."qs-4.0.0"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."connect-multiparty-2.1.1"
+ sources."connect-timeout-1.6.2"
+ sources."content-disposition-0.5.0"
+ sources."content-type-1.0.4"
+ 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.8.0"
+ sources."crc32-stream-2.0.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"
+ 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" // {
+ dependencies = [
+ sources."accepts-1.3.3"
+ sources."cookie-0.3.1"
+ sources."debug-2.3.3"
+ sources."ms-0.7.2"
+ sources."negotiator-0.6.1"
+ ];
+ })
+ (sources."engine.io-client-1.8.5" // {
+ dependencies = [
+ sources."debug-2.3.3"
+ sources."ms-0.7.2"
+ ];
+ })
+ sources."engine.io-parser-1.3.2"
+ (sources."errorhandler-1.4.3" // {
+ dependencies = [
+ sources."accepts-1.3.5"
+ sources."escape-html-1.0.3"
+ sources."negotiator-0.6.1"
+ ];
+ })
+ sources."escape-html-1.0.2"
+ sources."etag-1.7.0"
+ (sources."express-3.21.2" // {
+ dependencies = [
+ sources."range-parser-1.0.3"
+ ];
+ })
+ (sources."express-session-1.11.3" // {
+ dependencies = [
+ sources."crc-3.3.0"
+ sources."uid-safe-2.0.0"
+ ];
+ })
+ sources."fd-slicer-1.0.1"
+ sources."fifo-0.1.4"
+ sources."finalhandler-0.4.0"
+ sources."flatten-0.0.1"
+ sources."fluent-ffmpeg-2.1.2"
+ sources."forever-agent-0.2.0"
+ (sources."form-data-0.0.10" // {
+ dependencies = [
+ sources."async-0.2.10"
+ sources."mime-1.2.11"
+ ];
+ })
+ sources."forwarded-0.1.2"
+ sources."fresh-0.3.0"
+ sources."fs-chunk-store-1.7.0"
+ sources."fs-constants-1.0.0"
+ sources."fs.realpath-1.0.0"
+ sources."get-browser-rtc-1.0.2"
+ sources."glob-7.1.3"
+ sources."graceful-fs-4.1.11"
+ (sources."has-binary-0.1.7" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ ];
+ })
+ 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."ieee754-1.1.12"
+ 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-1.0.0"
+ 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."k-bucket-2.0.1"
+ ];
+ })
+ (sources."k-rpc-socket-1.8.0" // {
+ dependencies = [
+ sources."bencode-2.0.0"
+ ];
+ })
+ sources."lazystream-1.0.0"
+ sources."lodash-4.17.10"
+ sources."lodash.assign-4.2.0"
+ sources."lodash.defaults-4.2.0"
+ sources."lodash.difference-4.5.0"
+ sources."lodash.flatten-4.4.0"
+ sources."lodash.isplainobject-4.0.6"
+ sources."lodash.toarray-4.4.0"
+ sources."lodash.union-4.6.0"
+ 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."ms-2.0.0"
+ sources."vary-1.1.2"
+ ];
+ })
+ sources."methods-1.1.2"
+ sources."mime-1.3.4"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-response-1.0.1"
+ 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.4"
+ sources."negotiator-0.5.3"
+ sources."node-uuid-1.4.8"
+ sources."normalize-path-3.0.0"
+ 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."peer-wire-protocol-0.7.1" // {
+ dependencies = [
+ sources."bncode-0.2.3"
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."peer-wire-swarm-0.12.2"
+ sources."pend-1.2.0"
+ sources."process-nextick-args-2.0.0"
+ sources."proxy-addr-1.0.10"
+ sources."pump-1.0.3"
+ sources."qs-6.5.2"
+ sources."random-access-file-2.0.1"
+ sources."random-access-storage-1.3.0"
+ 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."re-emitter-1.1.3"
+ sources."read-torrent-1.3.0"
+ sources."readable-stream-2.3.6"
+ sources."remove-trailing-separator-1.1.0"
+ (sources."request-2.16.6" // {
+ dependencies = [
+ sources."mime-1.2.11"
+ sources."qs-0.5.6"
+ ];
+ })
+ (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.9"
+ sources."run-series-1.1.8"
+ sources."rusha-0.8.13"
+ sources."safe-buffer-5.1.2"
+ (sources."send-0.13.0" // {
+ dependencies = [
+ sources."destroy-1.0.3"
+ sources."range-parser-1.0.3"
+ sources."statuses-1.2.1"
+ ];
+ })
+ (sources."serve-favicon-2.3.2" // {
+ dependencies = [
+ sources."ms-0.7.2"
+ ];
+ })
+ (sources."serve-index-1.7.3" // {
+ dependencies = [
+ sources."escape-html-1.0.3"
+ ];
+ })
+ (sources."serve-static-1.10.3" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ sources."escape-html-1.0.3"
+ sources."range-parser-1.0.3"
+ sources."send-0.13.2"
+ sources."statuses-1.2.1"
+ ];
+ })
+ sources."simple-concat-1.0.0"
+ sources."simple-get-2.8.1"
+ sources."simple-peer-6.4.4"
+ sources."simple-sha1-2.1.1"
+ (sources."simple-websocket-4.3.1" // {
+ dependencies = [
+ sources."safe-buffer-5.0.1"
+ sources."ultron-1.1.1"
+ sources."ws-2.3.1"
+ ];
+ })
+ sources."sntp-0.1.4"
+ (sources."socket.io-1.7.4" // {
+ dependencies = [
+ sources."debug-2.3.3"
+ sources."ms-0.7.2"
+ ];
+ })
+ (sources."socket.io-adapter-0.5.0" // {
+ dependencies = [
+ sources."debug-2.3.3"
+ sources."ms-0.7.2"
+ ];
+ })
+ (sources."socket.io-client-1.7.4" // {
+ dependencies = [
+ sources."debug-2.3.3"
+ sources."ms-0.7.2"
+ ];
+ })
+ (sources."socket.io-parser-2.3.1" // {
+ dependencies = [
+ sources."component-emitter-1.1.2"
+ sources."isarray-0.0.1"
+ ];
+ })
+ sources."speedometer-0.1.4"
+ sources."statuses-1.5.0"
+ (sources."stream-counter-0.2.0" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."string2compact-1.3.0"
+ sources."string_decoder-1.1.1"
+ sources."tar-stream-1.6.1"
+ sources."thirty-two-0.0.2"
+ sources."thunky-1.0.2"
+ sources."to-array-0.1.4"
+ sources."to-buffer-1.1.1"
+ sources."torrent-discovery-5.4.0"
+ sources."torrent-piece-1.1.2"
+ (sources."torrent-stream-1.0.4" // {
+ dependencies = [
+ sources."end-of-stream-0.1.5"
+ sources."mkdirp-0.3.5"
+ sources."once-1.3.3"
+ ];
+ })
+ sources."tsscmp-1.0.5"
+ sources."tunnel-agent-0.2.0"
+ sources."type-is-1.6.16"
+ sources."uid-safe-2.1.4"
+ sources."ultron-1.0.2"
+ sources."uniq-1.0.1"
+ sources."unpipe-1.0.0"
+ sources."util-deprecate-1.0.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.1"
+ 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"
+ sources."zip-stream-2.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Streaming torrent client for node.js with web ui.";
+ homepage = "https://github.com/asapach/peerflix-server#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ phantomjs = nodeEnv.buildNodePackage {
+ name = "phantomjs";
+ packageName = "phantomjs";
+ version = "2.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/phantomjs/-/phantomjs-2.1.7.tgz";
+ sha1 = "c6910f67935c37285b6114329fc2f27d5f3e3134";
+ };
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."asn1-0.2.4"
+ sources."assert-plus-0.2.0"
+ sources."async-2.6.1"
+ sources."aws-sign2-0.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bl-1.0.3"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.11"
+ sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ 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" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."debug-0.7.4"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."extend-3.0.2"
+ 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."fs-extra-0.26.7"
+ sources."fs.realpath-1.0.0"
+ sources."generate-function-2.2.0"
+ sources."generate-object-property-1.2.0"
+ (sources."getpass-0.1.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."glob-7.1.3"
+ 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."is-my-ip-valid-1.0.0"
+ sources."is-my-json-valid-2.19.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."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.10"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ 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."safer-buffer-2.1.2"
+ sources."sntp-1.0.9"
+ (sources."sshpk-1.14.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.6"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ sources."throttleit-1.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" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."which-1.2.14"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yauzl-2.4.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Headless WebKit with JS API";
+ homepage = https://github.com/Medium/phantomjs;
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ pnpm = nodeEnv.buildNodePackage {
+ name = "pnpm";
+ packageName = "pnpm";
+ version = "2.13.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-2.13.6.tgz";
+ sha512 = "X8zmtUzmEIa/QMg0t0eeq6hSd7kmL5Zvneqpj3Tcbyn2g/FEFTPb9kaghR+DW1WdViOE51eo4ECLK7uY9oogkA==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Fast, disk space efficient package manager";
+ homepage = https://pnpm.js.org/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ prettier = nodeEnv.buildNodePackage {
+ name = "prettier";
+ packageName = "prettier";
+ version = "1.14.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prettier/-/prettier-1.14.2.tgz";
+ sha512 = "McHPg0n1pIke+A/4VcaS2en+pTNjy4xF+Uuq86u/5dyDO59/TtFZtQ708QIRkEZ3qwKz3GVkVa6mpxK/CpB8Rg==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Prettier is an opinionated code formatter";
+ homepage = https://prettier.io/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ pulp = nodeEnv.buildNodePackage {
+ name = "pulp";
+ packageName = "pulp";
+ version = "12.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pulp/-/pulp-12.3.0.tgz";
+ sha512 = "Sm1XQg2h2JBVHWK3bxSHnmMdMoM0hEi5cbGfBBLpM6E2qU1vjJhDJsO/8bEkxC2RvNAAEOWROKMI3tTzmVxLbQ==";
+ };
+ dependencies = [
+ sources."JSONStream-1.3.4"
+ sources."acorn-5.7.2"
+ sources."acorn-dynamic-import-3.0.0"
+ sources."acorn-node-1.5.2"
+ sources."anymatch-2.0.0"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-filter-0.0.1"
+ sources."array-map-0.0.0"
+ sources."array-reduce-0.0.0"
+ sources."array-unique-0.3.2"
+ sources."asn1.js-4.10.1"
+ (sources."assert-1.4.1" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ sources."util-0.10.3"
+ ];
+ })
+ sources."assign-symbols-1.0.0"
+ sources."async-1.5.2"
+ sources."async-each-1.0.1"
+ sources."atob-2.1.2"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."base64-js-1.3.0"
+ sources."binary-extensions-1.11.0"
+ sources."bn.js-4.11.8"
+ sources."brace-expansion-1.1.11"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."brorand-1.1.0"
+ sources."browser-pack-6.1.0"
+ (sources."browser-resolve-1.11.3" // {
+ dependencies = [
+ sources."resolve-1.1.7"
+ ];
+ })
+ (sources."browserify-13.3.0" // {
+ dependencies = [
+ (sources."concat-stream-1.5.2" // {
+ dependencies = [
+ sources."readable-stream-2.0.6"
+ ];
+ })
+ ];
+ })
+ sources."browserify-aes-1.2.0"
+ sources."browserify-cache-api-3.0.1"
+ sources."browserify-cipher-1.0.1"
+ sources."browserify-des-1.0.2"
+ (sources."browserify-incremental-3.1.1" // {
+ dependencies = [
+ sources."JSONStream-0.10.0"
+ sources."jsonparse-0.0.5"
+ ];
+ })
+ 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-crc32-0.2.13"
+ sources."buffer-from-1.1.1"
+ sources."buffer-xor-1.0.3"
+ sources."builtin-status-codes-3.0.0"
+ sources."cache-base-1.0.1"
+ sources."cached-path-relative-1.0.1"
+ sources."chokidar-2.0.4"
+ sources."cipher-base-1.0.4"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."collection-visit-1.0.0"
+ sources."colors-1.3.2"
+ sources."combine-source-map-0.8.0"
+ sources."component-emitter-1.2.1"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ sources."console-browserify-1.1.0"
+ sources."constants-browserify-1.0.0"
+ sources."convert-source-map-1.1.3"
+ sources."copy-descriptor-0.1.1"
+ sources."core-util-is-1.0.2"
+ sources."create-ecdh-4.0.3"
+ sources."create-hash-1.2.0"
+ sources."create-hmac-1.1.7"
+ sources."crypto-browserify-3.12.0"
+ sources."date-now-0.1.4"
+ sources."debug-2.6.9"
+ sources."decode-uri-component-0.2.0"
+ sources."define-property-2.0.2"
+ 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.3"
+ sources."domain-browser-1.1.7"
+ sources."duplexer2-0.1.4"
+ sources."elliptic-6.4.1"
+ sources."es6-promise-3.3.1"
+ sources."events-1.1.1"
+ sources."evp_bytestokey-1.0.3"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."extend-shallow-3.0.2"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."for-in-1.0.2"
+ sources."fragment-cache-0.2.1"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.2.4"
+ sources."function-bind-1.1.1"
+ sources."get-assigned-identifiers-1.2.0"
+ sources."get-value-2.0.6"
+ sources."glob-7.1.3"
+ (sources."glob-parent-3.1.0" // {
+ dependencies = [
+ sources."is-glob-3.1.0"
+ ];
+ })
+ sources."graceful-fs-4.1.11"
+ sources."has-1.0.3"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."hash-base-3.0.4"
+ sources."hash.js-1.1.5"
+ sources."hmac-drbg-1.0.1"
+ sources."htmlescape-1.1.1"
+ sources."https-browserify-0.0.1"
+ sources."ieee754-1.1.12"
+ 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.2.0"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
+ sources."is-extendable-1.0.1"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-4.0.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-plain-object-2.0.4"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."json-stable-stringify-0.0.1"
+ sources."jsonify-0.0.0"
+ sources."jsonparse-1.3.1"
+ sources."kind-of-6.0.2"
+ (sources."labeled-stream-splicer-2.0.1" // {
+ dependencies = [
+ sources."isarray-2.0.4"
+ ];
+ })
+ sources."lodash.debounce-4.0.8"
+ sources."lodash.memoize-3.0.4"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ sources."md5.js-1.3.4"
+ sources."micromatch-3.1.10"
+ sources."miller-rabin-4.0.1"
+ sources."mime-1.6.0"
+ sources."minimalistic-assert-1.0.1"
+ sources."minimalistic-crypto-utils-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mixin-deep-1.3.1"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ (sources."module-deps-4.1.1" // {
+ dependencies = [
+ (sources."concat-stream-1.5.2" // {
+ dependencies = [
+ sources."readable-stream-2.0.6"
+ ];
+ })
+ ];
+ })
+ (sources."mold-source-map-0.4.0" // {
+ dependencies = [
+ sources."through-2.2.7"
+ ];
+ })
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."nan-2.11.0"
+ sources."nanomatch-1.2.13"
+ sources."neo-async-2.5.2"
+ sources."node-static-0.7.10"
+ sources."normalize-path-2.1.1"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."once-1.4.0"
+ (sources."optimist-0.6.1" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ sources."wordwrap-0.0.3"
+ ];
+ })
+ 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.1"
+ sources."pascalcase-0.1.1"
+ sources."path-browserify-0.0.1"
+ sources."path-dirname-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.6"
+ sources."path-platform-0.11.15"
+ sources."pbkdf2-3.0.16"
+ sources."posix-character-classes-0.1.1"
+ sources."process-0.11.10"
+ sources."process-nextick-args-1.0.7"
+ sources."public-encrypt-4.0.2"
+ 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.4"
+ sources."read-1.0.7"
+ sources."read-only-stream-2.0.0"
+ (sources."readable-stream-2.3.6" // {
+ dependencies = [
+ sources."process-nextick-args-2.0.0"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."readdirp-2.1.0"
+ sources."regex-not-1.0.2"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."resolve-1.8.1"
+ sources."resolve-url-0.2.1"
+ sources."ret-0.1.15"
+ sources."rimraf-2.6.2"
+ sources."ripemd160-2.0.2"
+ sources."safe-buffer-5.1.2"
+ sources."safe-regex-1.1.0"
+ sources."sander-0.5.1"
+ sources."set-immediate-shim-1.0.1"
+ (sources."set-value-2.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."sha.js-2.4.11"
+ sources."shasum-1.0.2"
+ sources."shell-quote-1.6.1"
+ sources."simple-concat-1.0.0"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."sorcery-0.10.0"
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."sourcemap-codec-1.4.1"
+ sources."split-string-3.1.0"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."stream-browserify-2.0.1"
+ sources."stream-combiner2-1.1.1"
+ sources."stream-http-2.8.3"
+ 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.4.0"
+ (sources."temp-0.8.3" // {
+ dependencies = [
+ sources."rimraf-2.2.8"
+ ];
+ })
+ sources."through-2.3.8"
+ sources."through2-2.0.3"
+ sources."timers-browserify-1.4.2"
+ sources."to-arraybuffer-1.0.1"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."tree-kill-1.2.0"
+ sources."tty-browserify-0.0.1"
+ sources."typedarray-0.0.6"
+ sources."umd-3.0.3"
+ sources."undeclared-identifiers-1.1.2"
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ sources."set-value-0.4.3"
+ ];
+ })
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
+ sources."upath-1.1.0"
+ sources."urix-0.1.0"
+ (sources."url-0.11.0" // {
+ dependencies = [
+ sources."punycode-1.3.2"
+ ];
+ })
+ sources."use-3.1.1"
+ sources."util-0.10.4"
+ sources."util-deprecate-1.0.2"
+ sources."vm-browserify-0.0.4"
+ sources."watchpack-1.6.0"
+ sources."which-1.3.1"
+ sources."wordwrap-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A build system for PureScript projects";
+ homepage = https://github.com/bodil/pulp;
+ license = "LGPL-3.0+";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ quassel-webserver = nodeEnv.buildNodePackage {
+ name = "quassel-webserver";
+ packageName = "quassel-webserver";
+ version = "2.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/quassel-webserver/-/quassel-webserver-2.2.8.tgz";
+ sha1 = "195a2a5b6dd76e4a244a807002678b037d70eeaa";
+ };
+ dependencies = [
+ sources."@types/babel-types-7.0.4"
+ sources."@types/babylon-6.16.3"
+ sources."accepts-1.3.5"
+ 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."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.5"
+ sources."array-flatten-1.1.1"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.4"
+ sources."assert-plus-0.2.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.8.0"
+ sources."babel-runtime-6.26.0"
+ sources."babel-types-6.26.0"
+ sources."babylon-6.18.0"
+ sources."basic-auth-2.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bindings-1.2.1"
+ sources."bl-1.2.2"
+ sources."body-parser-1.18.3"
+ sources."boom-2.10.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-fill-1.0.0"
+ 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-4.2.1" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."cliui-2.1.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."console-control-strings-1.1.0"
+ sources."constantinople-3.1.2"
+ 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-js-2.5.7"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ (sources."dashdash-1.14.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."deep-extend-0.6.0"
+ 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.2"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."end-of-stream-1.4.1"
+ sources."errno-0.1.7"
+ sources."escape-html-1.0.3"
+ sources."esutils-2.0.2"
+ sources."etag-1.8.1"
+ sources."eventemitter2-3.0.2"
+ sources."expand-template-1.1.1"
+ (sources."express-4.16.3" // {
+ dependencies = [
+ sources."body-parser-1.18.2"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ sources."raw-body-2.3.2"
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ (sources."finalhandler-1.1.1" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.1.4"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fs-constants-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."gauge-2.7.4"
+ (sources."getpass-0.1.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."github-from-package-0.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-1.0.5"
+ sources."har-validator-4.2.1"
+ sources."has-1.0.3"
+ sources."has-unicode-2.0.1"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-errors-1.6.3"
+ sources."http-signature-1.1.1"
+ sources."httpolyglot-0.1.2"
+ sources."iconv-lite-0.4.23"
+ 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.8.0"
+ sources."is-3.2.1"
+ sources."is-buffer-1.1.6"
+ (sources."is-expression-3.0.0" // {
+ dependencies = [
+ sources."acorn-4.0.13"
+ ];
+ })
+ 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"
+ sources."less-middleware-2.2.1"
+ sources."libquassel-2.1.9"
+ sources."lodash-4.17.10"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ 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"
+ sources."node-abi-2.4.3"
+ sources."node.extend-2.0.0"
+ sources."noop-logger-0.1.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."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."parseurl-1.3.2"
+ sources."path-parse-1.0.6"
+ sources."path-to-regexp-0.1.7"
+ sources."performance-now-0.2.0"
+ (sources."prebuild-install-2.1.2" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ sources."tunnel-agent-0.4.3"
+ ];
+ })
+ sources."process-nextick-args-2.0.0"
+ sources."promise-7.3.1"
+ sources."proxy-addr-2.0.4"
+ sources."prr-1.0.1"
+ sources."pug-2.0.3"
+ sources."pug-attrs-2.0.3"
+ sources."pug-code-gen-2.0.1"
+ sources."pug-error-1.3.2"
+ sources."pug-filters-3.1.0"
+ sources."pug-lexer-4.0.0"
+ sources."pug-linker-3.0.5"
+ sources."pug-load-2.0.11"
+ sources."pug-parser-5.0.0"
+ sources."pug-runtime-2.0.4"
+ sources."pug-strip-comments-1.0.3"
+ sources."pug-walk-1.1.7"
+ sources."pump-1.0.3"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."qtdatastream-0.7.1"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.3"
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."readable-stream-2.3.6"
+ sources."regenerator-runtime-0.11.1"
+ sources."repeat-string-1.6.1"
+ (sources."request-2.81.0" // {
+ dependencies = [
+ sources."qs-6.4.0"
+ ];
+ })
+ sources."resolve-1.8.1"
+ sources."right-align-0.1.3"
+ sources."safe-buffer-5.1.1"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ (sources."serve-favicon-2.3.2" // {
+ dependencies = [
+ sources."etag-1.7.0"
+ sources."fresh-0.3.0"
+ sources."ms-0.7.2"
+ ];
+ })
+ sources."serve-static-1.13.2"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.1.0"
+ 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.14.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."statuses-1.5.0"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.1.1"
+ sources."stringstream-0.0.6"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."tar-fs-1.16.3"
+ sources."tar-stream-1.6.1"
+ sources."to-buffer-1.1.1"
+ sources."to-fast-properties-1.0.3"
+ sources."token-stream-0.0.1"
+ sources."tough-cookie-2.3.4"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ 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.3.2"
+ sources."vary-1.1.2"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."void-elements-2.0.1"
+ sources."wide-align-1.1.3"
+ 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" // {
+ dependencies = [
+ sources."safe-buffer-5.0.1"
+ ];
+ })
+ sources."xtend-4.0.1"
+ sources."yargs-3.10.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Quassel web interface";
+ homepage = https://github.com/magne4000/quassel-webserver;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ react-tools = nodeEnv.buildNodePackage {
+ name = "react-tools";
+ packageName = "react-tools";
+ version = "0.13.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-tools/-/react-tools-0.13.3.tgz";
+ sha1 = "da6ac7d4d7777a59a5e951cf46e72fd4b6b40a2c";
+ };
+ dependencies = [
+ sources."acorn-5.7.2"
+ 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.11"
+ sources."commander-2.17.1"
+ 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.24"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ (sources."jstransform-10.1.0" // {
+ dependencies = [
+ sources."source-map-0.1.31"
+ ];
+ })
+ 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."safer-buffer-2.1.2"
+ sources."source-map-0.5.7"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A set of complementary tools to React, including the JSX transformer.";
+ homepage = https://facebook.github.io/react;
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ 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.11"
+ 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.3"
+ 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" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ 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"
+ sources."read-1.0.7"
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."semver-5.5.1"
+ 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 = true;
+ };
+ s3http = nodeEnv.buildNodePackage {
+ name = "s3http";
+ packageName = "s3http";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/s3http/-/s3http-0.0.5.tgz";
+ sha1 = "c8fa1fffb8258ce68adf75df73f90fbb6f23d198";
+ };
+ dependencies = [
+ sources."ajv-5.5.2"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sdk-1.18.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ 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."combined-stream-1.0.6"
+ sources."commander-2.0.0"
+ (sources."connect-2.11.0" // {
+ dependencies = [
+ sources."methods-0.0.1"
+ ];
+ })
+ sources."cookie-0.1.0"
+ sources."cookie-signature-1.0.1"
+ sources."core-util-is-1.0.2"
+ sources."crc-0.2.0"
+ sources."crypto-0.0.3"
+ sources."dashdash-1.14.1"
+ sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ 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.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ 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.1.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.36.0"
+ sources."mime-types-2.1.20"
+ 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.9.0"
+ (sources."openid-2.0.6" // {
+ dependencies = [
+ sources."qs-6.5.2"
+ sources."request-2.88.0"
+ ];
+ })
+ sources."pause-0.0.1"
+ sources."performance-now-2.1.0"
+ sources."psl-1.1.29"
+ 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.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."send-0.1.4"
+ sources."sshpk-1.14.2"
+ sources."stream-counter-0.2.0"
+ sources."string-1.6.1"
+ sources."string_decoder-0.10.31"
+ sources."tough-cookie-2.4.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.3.2"
+ sources."verror-1.10.0"
+ sources."xml2js-0.2.4"
+ sources."xmlbuilder-0.4.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ };
+ production = true;
+ bypassCache = true;
+ };
+ semver = nodeEnv.buildNodePackage {
+ name = "semver";
+ packageName = "semver";
+ version = "5.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz";
+ sha512 = "PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "The semantic version parser used by npm.";
+ homepage = "https://github.com/npm/node-semver#readme";
+ license = "ISC";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ serve = nodeEnv.buildNodePackage {
+ name = "serve";
+ packageName = "serve";
+ version = "10.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve/-/serve-10.0.0.tgz";
+ sha512 = "S9q9cIVeaT78DVk70/JWubco89P5KXIR5IEuVz83YUfvUaqQ7cpVw62eGZsA/ftaTZNmAkQnqn2mBMx+NDLN3A==";
+ };
+ dependencies = [
+ sources."@zeit/schemas-2.1.1"
+ sources."ajv-6.5.3"
+ sources."ansi-align-2.0.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."arch-2.1.1"
+ sources."arg-2.0.0"
+ sources."balanced-match-1.0.0"
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.11"
+ sources."bytes-3.0.0"
+ sources."camelcase-4.1.0"
+ sources."chalk-2.4.1"
+ sources."cli-boxes-1.0.0"
+ (sources."clipboardy-1.2.3" // {
+ dependencies = [
+ sources."execa-0.8.0"
+ ];
+ })
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."concat-map-0.0.1"
+ sources."content-disposition-0.5.2"
+ sources."cross-spawn-5.1.0"
+ sources."deep-extend-0.6.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."execa-0.7.0"
+ sources."fast-deep-equal-2.0.1"
+ sources."fast-json-stable-stringify-2.0.0"
+ (sources."fast-url-parser-1.1.3" // {
+ dependencies = [
+ sources."punycode-1.4.1"
+ ];
+ })
+ sources."get-stream-3.0.0"
+ sources."glob-slash-1.0.0"
+ sources."has-flag-3.0.0"
+ sources."ini-1.3.5"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-stream-1.1.0"
+ sources."isexe-2.0.0"
+ sources."json-schema-traverse-0.4.1"
+ sources."lru-cache-4.1.3"
+ sources."mime-db-1.33.0"
+ sources."mime-types-2.1.18"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."npm-run-path-2.0.2"
+ sources."p-finally-1.0.0"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."path-to-regexp-2.2.1"
+ sources."pseudomap-1.0.2"
+ sources."punycode-2.1.1"
+ sources."range-parser-1.2.0"
+ sources."rc-1.2.8"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."safe-buffer-5.1.2"
+ sources."serve-handler-5.0.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ 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-5.5.0"
+ sources."term-size-1.2.0"
+ sources."update-check-1.5.2"
+ sources."uri-js-4.2.2"
+ sources."which-1.3.1"
+ sources."widest-line-2.0.0"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Static file serving and directory listing";
+ homepage = "https://github.com/zeit/serve#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ shout = nodeEnv.buildNodePackage {
+ name = "shout";
+ packageName = "shout";
+ version = "0.53.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shout/-/shout-0.53.0.tgz";
+ sha1 = "13ebfcb3b741759d2475db96107776c81d308ae8";
+ };
+ dependencies = [
+ sources."CSSselect-0.4.1"
+ sources."CSSwhat-0.4.7"
+ sources."accepts-1.3.5"
+ 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.4"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."base64-arraybuffer-0.1.2"
+ sources."base64id-0.1.0"
+ sources."bcrypt-nodejs-0.0.3"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."better-assert-1.0.2"
+ sources."blob-0.0.2"
+ sources."body-parser-1.18.2"
+ sources."bytes-3.0.0"
+ sources."callsite-1.0.0"
+ sources."caseless-0.12.0"
+ sources."cheerio-0.17.0"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ 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."core-util-is-1.0.2"
+ 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.0.1" // {
+ dependencies = [
+ sources."domelementtype-1.1.3"
+ ];
+ })
+ 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.2"
+ 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."engine.io-client-1.3.1" // {
+ dependencies = [
+ sources."debug-0.7.4"
+ ];
+ })
+ 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.3"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."finalhandler-1.1.1"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ 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.1.0"
+ sources."has-binary-data-0.1.1"
+ sources."has-cors-1.0.3"
+ (sources."htmlparser2-3.7.3" // {
+ dependencies = [
+ sources."domutils-1.5.1"
+ sources."entities-1.0.0"
+ ];
+ })
+ sources."http-errors-1.6.3"
+ 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.8.0"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ 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.9.0"
+ 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.4"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."range-parser-1.2.0"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."read-1.0.7"
+ sources."readable-stream-1.1.14"
+ (sources."request-2.88.0" // {
+ dependencies = [
+ sources."qs-6.5.2"
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."safe-buffer-5.1.1"
+ sources."safer-buffer-2.1.2"
+ sources."send-0.16.2"
+ sources."serve-static-1.13.2"
+ 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."socket.io-1.0.6" // {
+ dependencies = [
+ sources."debug-0.7.4"
+ ];
+ })
+ (sources."socket.io-adapter-0.2.0" // {
+ dependencies = [
+ sources."debug-0.7.4"
+ sources."emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz"
+ sources."socket.io-parser-2.1.2"
+ ];
+ })
+ (sources."socket.io-client-1.0.6" // {
+ dependencies = [
+ sources."debug-0.7.4"
+ ];
+ })
+ (sources."socket.io-parser-2.2.0" // {
+ dependencies = [
+ sources."debug-0.7.4"
+ ];
+ })
+ sources."split-0.3.3"
+ sources."sshpk-1.14.2"
+ sources."statuses-1.4.0"
+ sources."stream-combiner-0.0.4"
+ sources."string_decoder-0.10.31"
+ sources."through-2.3.8"
+ sources."tinycolor-0.0.1"
+ sources."to-array-0.1.3"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ sources."unpipe-1.0.0"
+ sources."utf8-2.0.0"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.3.2"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ (sources."ws-0.4.31" // {
+ dependencies = [
+ sources."commander-0.6.1"
+ ];
+ })
+ sources."xmlhttprequest-https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "The self-hosted Web IRC client";
+ homepage = "https://github.com/erming/shout#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ sinopia = nodeEnv.buildNodePackage {
+ name = "sinopia";
+ packageName = "sinopia";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sinopia/-/sinopia-1.4.0.tgz";
+ sha1 = "36bf5209356facbf6cef18fa32274d116043ed24";
+ };
+ dependencies = [
+ sources."JSONStream-1.3.4"
+ sources."accepts-1.3.5"
+ sources."ajv-5.5.2"
+ sources."amdefine-1.0.1"
+ sources."ansi-styles-3.2.1"
+ sources."argparse-1.0.10"
+ sources."array-flatten-2.1.1"
+ sources."array-uniq-1.0.3"
+ sources."asn1-0.2.4"
+ 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.8.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ (sources."body-parser-1.18.3" // {
+ dependencies = [
+ sources."bytes-3.0.0"
+ sources."http-errors-1.6.3"
+ sources."iconv-lite-0.4.23"
+ sources."qs-6.5.2"
+ sources."raw-body-2.3.3"
+ sources."setprototypeof-1.1.0"
+ sources."statuses-1.5.0"
+ ];
+ })
+ sources."brace-expansion-1.1.11"
+ sources."bunyan-1.8.12"
+ sources."bytes-1.0.0"
+ sources."caseless-0.12.0"
+ sources."chalk-2.4.1"
+ sources."co-4.6.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."compressible-2.0.14"
+ (sources."compression-1.7.3" // {
+ 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."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.2"
+ sources."domutils-1.7.0"
+ sources."dtrace-provider-0.8.7"
+ sources."ecc-jsbn-0.1.2"
+ 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.1"
+ sources."etag-1.8.1"
+ sources."express-5.0.0-alpha.6"
+ sources."express-json5-0.1.0"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.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.2"
+ 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" // {
+ dependencies = [
+ sources."minimatch-3.0.4"
+ ];
+ })
+ sources."handlebars-2.0.0"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."has-flag-3.0.0"
+ sources."highlight.js-8.9.1"
+ (sources."htmlparser2-3.9.2" // {
+ dependencies = [
+ sources."readable-stream-2.3.6"
+ ];
+ })
+ (sources."http-errors-1.7.0" // {
+ dependencies = [
+ sources."setprototypeof-1.1.0"
+ sources."statuses-1.5.0"
+ ];
+ })
+ 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.4.0"
+ sources."js-yaml-3.12.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.isplainobject-4.0.6"
+ sources."lodash.isstring-4.0.1"
+ sources."lodash.mergewith-4.6.1"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-1.0.0"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.22.2"
+ sources."ms-2.0.0"
+ sources."mv-2.1.1"
+ sources."nan-2.11.0"
+ sources."ncp-2.0.0"
+ sources."negotiator-0.6.1"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ 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.23" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."process-nextick-args-2.0.0"
+ sources."proxy-addr-1.1.5"
+ sources."psl-1.1.29"
+ 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."render-readme-1.3.1"
+ (sources."request-2.88.0" // {
+ dependencies = [
+ sources."qs-6.5.2"
+ ];
+ })
+ sources."rimraf-2.4.5"
+ (sources."router-1.3.3" // {
+ dependencies = [
+ sources."setprototypeof-1.1.0"
+ sources."utils-merge-1.0.1"
+ ];
+ })
+ sources."safe-buffer-5.1.2"
+ sources."safe-json-stringify-1.2.0"
+ sources."safer-buffer-2.1.2"
+ sources."sanitize-html-1.18.4"
+ sources."semver-4.3.6"
+ (sources."send-0.15.6" // {
+ dependencies = [
+ (sources."http-errors-1.6.3" // {
+ dependencies = [
+ sources."statuses-1.5.0"
+ ];
+ })
+ sources."setprototypeof-1.1.0"
+ ];
+ })
+ sources."serve-static-1.12.6"
+ sources."setprototypeof-1.0.3"
+ sources."sigmund-1.0.1"
+ sources."sinopia-htpasswd-0.4.5"
+ sources."source-map-0.1.43"
+ sources."sprintf-js-1.0.3"
+ sources."srcset-1.0.0"
+ sources."sshpk-1.14.2"
+ sources."statuses-1.3.1"
+ sources."string_decoder-1.1.1"
+ sources."supports-color-5.5.0"
+ sources."through-2.3.8"
+ sources."toidentifier-1.0.0"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ sources."uc.micro-1.0.5"
+ (sources."uglify-js-2.3.6" // {
+ dependencies = [
+ sources."async-0.2.10"
+ ];
+ })
+ sources."unpipe-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.0"
+ sources."uuid-3.3.2"
+ 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 = {
+ description = "Private npm repository server";
+ homepage = https://github.com/rlidwka/sinopia;
+ license = {
+ type = "WTFPL";
+ url = "http://www.wtfpl.net/txt/copying/";
+ };
+ };
+ production = true;
+ bypassCache = true;
+ };
+ sloc = nodeEnv.buildNodePackage {
+ name = "sloc";
+ packageName = "sloc";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sloc/-/sloc-0.2.0.tgz";
+ sha1 = "b42d3da1a442a489f454c32c628e8ebf0007875c";
+ };
+ dependencies = [
+ sources."async-2.1.5"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ 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.10"
+ sources."minimatch-3.0.4"
+ sources."process-nextick-args-2.0.0"
+ sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ sources."safe-buffer-5.1.2"
+ sources."set-immediate-shim-1.0.1"
+ sources."string_decoder-1.1.1"
+ sources."util-deprecate-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "sloc is a simple tool to count SLOC (source lines of code)";
+ homepage = "https://github.com/flosse/sloc#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ smartdc = nodeEnv.buildNodePackage {
+ name = "smartdc";
+ packageName = "smartdc";
+ version = "8.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/smartdc/-/smartdc-8.1.0.tgz";
+ 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.11"
+ 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.2.0"
+ sources."escape-regexp-component-1.0.2"
+ sources."extsprintf-1.2.0"
+ sources."formidable-1.2.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" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ sources."extsprintf-1.3.0"
+ ];
+ })
+ 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.11.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-2.0.0"
+ sources."qs-3.1.0"
+ sources."readable-stream-2.3.6"
+ (sources."restify-4.0.3" // {
+ dependencies = [
+ sources."lru-cache-2.7.3"
+ (sources."vasync-1.6.3" // {
+ dependencies = [
+ sources."verror-1.6.0"
+ ];
+ })
+ ];
+ })
+ sources."rimraf-2.4.5"
+ sources."safe-buffer-5.1.2"
+ sources."safe-json-stringify-1.2.0"
+ sources."safer-buffer-2.1.2"
+ sources."semver-4.3.6"
+ (sources."smartdc-auth-2.3.1" // {
+ dependencies = [
+ sources."assert-plus-0.1.2"
+ sources."clone-0.1.5"
+ sources."dashdash-1.10.1"
+ sources."extsprintf-1.0.0"
+ (sources."http-signature-1.2.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."json-schema-0.2.2"
+ sources."once-1.3.0"
+ (sources."vasync-1.4.3" // {
+ dependencies = [
+ (sources."jsprim-0.3.0" // {
+ dependencies = [
+ sources."verror-1.3.3"
+ ];
+ })
+ ];
+ })
+ sources."verror-1.1.0"
+ ];
+ })
+ sources."spdy-1.32.5"
+ (sources."sshpk-1.7.1" // {
+ dependencies = [
+ sources."asn1-0.2.4"
+ sources."assert-plus-0.2.0"
+ (sources."dashdash-1.14.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ ];
+ })
+ sources."sshpk-agent-1.2.1"
+ sources."stream-transform-0.1.2"
+ sources."string_decoder-1.1.1"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ 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 = {
+ description = "Client SDK and CLI for the Joyent SmartDataCenter API";
+ homepage = "https://github.com/joyent/node-smartdc#readme";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ "socket.io" = nodeEnv.buildNodePackage {
+ name = "socket.io";
+ packageName = "socket.io";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz";
+ sha512 = "rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==";
+ };
+ dependencies = [
+ sources."accepts-1.3.5"
+ sources."after-0.8.2"
+ sources."arraybuffer.slice-0.0.7"
+ sources."async-limiter-1.0.0"
+ 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-3.1.0"
+ sources."engine.io-3.2.0"
+ sources."engine.io-client-3.2.1"
+ sources."engine.io-parser-2.1.2"
+ sources."has-binary2-1.0.3"
+ sources."has-cors-1.1.0"
+ sources."indexof-0.0.1"
+ sources."isarray-2.0.1"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ 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.2"
+ sources."socket.io-adapter-1.1.1"
+ sources."socket.io-client-2.1.1"
+ sources."socket.io-parser-3.2.0"
+ sources."to-array-0.1.4"
+ sources."ultron-1.1.1"
+ sources."ws-3.3.3"
+ sources."xmlhttprequest-ssl-1.5.5"
+ sources."yeast-0.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "node.js realtime framework server";
+ homepage = "https://github.com/socketio/socket.io#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ stackdriver-statsd-backend = nodeEnv.buildNodePackage {
+ name = "stackdriver-statsd-backend";
+ packageName = "stackdriver-statsd-backend";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stackdriver-statsd-backend/-/stackdriver-statsd-backend-0.2.3.tgz";
+ sha1 = "6ffead71e5655d4d787c39da8d1c9eaaa59c91d7";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Send metric data from statsd to Stackdriver";
+ homepage = https://www.stackdriver.com/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ statsd = nodeEnv.buildNodePackage {
+ name = "statsd";
+ packageName = "statsd";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statsd/-/statsd-0.8.0.tgz";
+ sha1 = "92041479e174a214df7147f2fab1348af0839052";
+ };
+ dependencies = [
+ 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.11.0"
+ sources."sequence-2.2.1"
+ sources."simple-lru-cache-0.0.2"
+ sources."winser-0.1.6"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Network daemon for the collection and aggregation of realtime application metrics";
+ homepage = https://github.com/etsy/statsd;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ statsd-influxdb-backend = nodeEnv.buildNodePackage {
+ name = "statsd-influxdb-backend";
+ packageName = "statsd-influxdb-backend";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statsd-influxdb-backend/-/statsd-influxdb-backend-0.6.0.tgz";
+ sha1 = "25fb83cf0b3af923dfc7d506eb1208def8790d78";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "InfluxDB backend for StatsD";
+ homepage = https://github.com/bernd/statsd-influxdb-backend;
+ license = "BSD";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ statsd-librato-backend = nodeEnv.buildNodePackage {
+ name = "statsd-librato-backend";
+ packageName = "statsd-librato-backend";
+ version = "2.0.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statsd-librato-backend/-/statsd-librato-backend-2.0.16.tgz";
+ sha1 = "6c6a0d14684f0341e5ba013eed30302545532bc6";
+ };
+ dependencies = [
+ sources."extend-3.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A StatsD backend for Librato Metrics";
+ homepage = https://github.com/librato/statsd-librato-backend;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ stylus = nodeEnv.buildNodePackage {
+ name = "stylus";
+ packageName = "stylus";
+ version = "0.54.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stylus/-/stylus-0.54.5.tgz";
+ sha1 = "42b9560931ca7090ce8515a798ba9e6aa3d6dc79";
+ };
+ dependencies = [
+ sources."amdefine-1.0.1"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."concat-map-0.0.1"
+ sources."css-parse-1.7.0"
+ sources."debug-3.1.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"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Robust, expressive, and feature-rich CSS superset";
+ homepage = https://github.com/stylus/stylus;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ svgo = nodeEnv.buildNodePackage {
+ name = "svgo";
+ packageName = "svgo";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/svgo/-/svgo-1.0.5.tgz";
+ sha512 = "nYrifviB77aNKDNKKyuay3M9aYiK6Hv5gJVDdjj2ZXTQmI8WZc8+UPLR5IpVlktJfSu3co/4XcWgrgI6seGBPg==";
+ };
+ dependencies = [
+ sources."argparse-1.0.10"
+ sources."boolbase-1.0.0"
+ sources."coa-2.0.1"
+ sources."colors-1.1.2"
+ sources."css-select-1.3.0-rc0"
+ sources."css-select-base-adapter-0.1.0"
+ sources."css-tree-1.0.0-alpha25"
+ sources."css-url-regex-1.1.0"
+ sources."css-what-2.1.0"
+ (sources."csso-3.5.1" // {
+ dependencies = [
+ sources."css-tree-1.0.0-alpha.29"
+ sources."mdn-data-1.1.4"
+ ];
+ })
+ sources."define-properties-1.1.3"
+ (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."es-abstract-1.12.0"
+ sources."es-to-primitive-1.1.1"
+ sources."esprima-4.0.1"
+ sources."function-bind-1.1.1"
+ sources."has-1.0.3"
+ sources."is-callable-1.1.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.2.0"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."nth-check-1.0.1"
+ sources."object-keys-1.0.12"
+ 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.8"
+ sources."unquote-1.1.1"
+ sources."util.promisify-1.0.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Nodejs-based tool for optimizing SVG vector graphics files";
+ homepage = https://github.com/svg/svgo;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ swagger = nodeEnv.buildNodePackage {
+ name = "swagger";
+ packageName = "swagger";
+ version = "0.7.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/swagger/-/swagger-0.7.5.tgz";
+ sha1 = "3be6ee3d392c3b006fc7a9b5b2d60c7e834860fd";
+ };
+ dependencies = [
+ sources."URIjs-1.16.1"
+ sources."abbrev-1.1.1"
+ (sources."align-text-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."amdefine-1.0.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."anymatch-2.0.0"
+ sources."append-field-0.1.0"
+ sources."argparse-1.0.10"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-unique-0.3.2"
+ sources."assign-symbols-1.0.0"
+ sources."async-1.5.2"
+ sources."async-each-1.0.1"
+ sources."asynckit-0.4.0"
+ sources."atob-2.1.2"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."binary-extensions-1.11.0"
+ (sources."body-parser-1.12.4" // {
+ dependencies = [
+ sources."debug-2.2.0"
+ sources."depd-1.0.1"
+ sources."ee-first-1.1.0"
+ sources."ms-0.7.1"
+ sources."on-finished-2.2.1"
+ sources."qs-2.4.2"
+ ];
+ })
+ (sources."boxen-1.3.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."brace-expansion-1.1.11"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."buffer-from-1.1.1"
+ (sources."busboy-0.2.14" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."bytes-1.0.0"
+ sources."cache-base-1.0.1"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."center-align-0.1.3"
+ sources."chalk-1.1.3"
+ sources."charenc-0.0.2"
+ sources."chokidar-2.0.4"
+ sources."ci-info-1.4.0"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-1.0.2"
+ sources."cli-width-1.1.1"
+ (sources."cliui-2.1.0" // {
+ dependencies = [
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ sources."clone-2.0.0"
+ sources."code-point-at-1.1.0"
+ sources."collection-visit-1.0.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."component-emitter-1.2.1"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ sources."configstore-3.1.2"
+ sources."connect-3.6.6"
+ sources."content-type-1.0.4"
+ sources."cookiejar-2.1.2"
+ 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" // {
+ dependencies = [
+ sources."lru-cache-4.1.3"
+ ];
+ })
+ sources."crypt-0.0.2"
+ sources."crypto-random-string-1.0.0"
+ sources."dag-map-1.0.2"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."decode-uri-component-0.2.0"
+ sources."deep-extend-0.6.0"
+ sources."define-property-2.0.2"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ (sources."dicer-0.2.5" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."diff-1.4.0"
+ sources."dot-prop-4.2.0"
+ sources."duplexer-0.1.1"
+ 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."esprima-4.0.1"
+ sources."etag-1.8.1"
+ sources."event-stream-3.3.4"
+ sources."execa-0.7.0"
+ sources."exit-hook-1.1.1"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."extend-3.0.2"
+ sources."extend-shallow-3.0.2"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."figures-1.7.0"
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."finalhandler-1.1.0"
+ sources."for-in-1.0.2"
+ sources."form-data-2.3.2"
+ sources."formidable-1.2.1"
+ sources."fragment-cache-0.2.1"
+ sources."fresh-0.5.2"
+ sources."from-0.1.7"
+ sources."fs-extra-0.24.0"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.2.4"
+ sources."get-stream-3.0.0"
+ sources."get-value-2.0.6"
+ sources."glob-7.1.3"
+ (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."graphlib-2.1.5" // {
+ dependencies = [
+ sources."lodash-4.17.10"
+ ];
+ })
+ sources."growl-1.9.2"
+ (sources."handlebars-4.0.11" // {
+ dependencies = [
+ sources."source-map-0.4.4"
+ ];
+ })
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.0.0"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ (sources."http-errors-1.6.3" // {
+ dependencies = [
+ sources."statuses-1.5.0"
+ ];
+ })
+ sources."iconv-lite-0.4.8"
+ sources."ignore-by-default-1.0.1"
+ 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-0.10.1"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-ci-1.2.0"
+ 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-fullwidth-code-point-1.0.0"
+ sources."is-glob-4.0.0"
+ sources."is-installed-globally-0.1.0"
+ (sources."is-invalid-path-0.1.0" // {
+ dependencies = [
+ sources."is-extglob-1.0.0"
+ sources."is-glob-2.0.1"
+ ];
+ })
+ sources."is-npm-1.0.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-obj-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-plain-object-2.0.4"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-valid-path-0.1.1"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ (sources."jade-0.26.3" // {
+ dependencies = [
+ sources."commander-0.6.1"
+ sources."mkdirp-0.3.0"
+ ];
+ })
+ sources."js-yaml-3.12.0"
+ sources."json-refs-2.1.7"
+ (sources."json-schema-deref-sync-0.3.4" // {
+ dependencies = [
+ sources."lodash-4.17.10"
+ ];
+ })
+ sources."jsonfile-2.4.0"
+ sources."kind-of-6.0.2"
+ sources."latest-version-3.1.0"
+ sources."lazy-cache-1.0.4"
+ sources."lodash-3.10.1"
+ sources."lodash-compat-3.10.2"
+ sources."lodash._arraypool-2.4.1"
+ sources."lodash._basebind-2.4.1"
+ sources."lodash._baseclone-2.4.1"
+ sources."lodash._basecreate-2.4.1"
+ sources."lodash._basecreatecallback-2.4.1"
+ sources."lodash._basecreatewrapper-2.4.1"
+ sources."lodash._createwrapper-2.4.1"
+ sources."lodash._getarray-2.4.1"
+ sources."lodash._isnative-2.4.1"
+ sources."lodash._maxpoolsize-2.4.1"
+ sources."lodash._objecttypes-2.4.1"
+ sources."lodash._releasearray-2.4.1"
+ sources."lodash._setbinddata-2.4.1"
+ sources."lodash._shimkeys-2.4.1"
+ sources."lodash._slice-2.4.1"
+ sources."lodash.assign-2.4.1"
+ sources."lodash.bind-2.4.1"
+ sources."lodash.clonedeep-2.4.1"
+ sources."lodash.debounce-4.0.8"
+ sources."lodash.foreach-2.4.1"
+ sources."lodash.forown-2.4.1"
+ sources."lodash.get-4.4.2"
+ sources."lodash.identity-2.4.1"
+ sources."lodash.isarray-2.4.1"
+ sources."lodash.isequal-4.5.0"
+ sources."lodash.isfunction-2.4.1"
+ sources."lodash.isobject-2.4.1"
+ sources."lodash.keys-2.4.1"
+ sources."lodash.noop-2.4.1"
+ sources."lodash.support-2.4.1"
+ sources."longest-1.0.1"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-2.7.3"
+ sources."make-dir-1.3.0"
+ sources."map-cache-0.2.2"
+ sources."map-stream-0.1.0"
+ sources."map-visit-1.0.0"
+ sources."md5-2.2.1"
+ sources."media-typer-0.3.0"
+ sources."memory-cache-0.1.6"
+ sources."methods-1.1.2"
+ sources."micromatch-3.1.10"
+ sources."mime-1.4.1"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mixin-deep-1.3.1"
+ sources."mkdirp-0.5.1"
+ (sources."mocha-2.5.3" // {
+ dependencies = [
+ sources."commander-2.3.0"
+ sources."debug-2.2.0"
+ sources."escape-string-regexp-1.0.2"
+ sources."glob-3.2.11"
+ sources."minimatch-0.3.0"
+ sources."ms-0.7.1"
+ sources."supports-color-1.2.0"
+ ];
+ })
+ sources."mpath-0.2.1"
+ sources."ms-2.0.0"
+ (sources."multer-1.3.1" // {
+ dependencies = [
+ sources."object-assign-3.0.0"
+ ];
+ })
+ sources."mute-stream-0.0.5"
+ sources."nan-2.11.0"
+ sources."nanomatch-1.2.13"
+ sources."native-promise-only-0.8.1"
+ (sources."nodemon-1.18.3" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."nopt-1.0.10"
+ sources."normalize-path-2.1.1"
+ sources."npm-run-path-2.0.2"
+ sources."number-is-nan-1.0.1"
+ sources."object-assign-4.1.1"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."on-finished-2.3.0"
+ sources."once-1.4.0"
+ sources."onetime-1.1.0"
+ sources."optimist-0.6.1"
+ sources."p-finally-1.0.0"
+ sources."package-json-4.0.1"
+ sources."parseurl-1.3.2"
+ 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."path-loader-1.0.7" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."qs-6.5.2"
+ sources."superagent-3.8.3"
+ ];
+ })
+ (sources."path-to-regexp-1.7.0" // {
+ dependencies = [
+ sources."isarray-0.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-2.0.0"
+ sources."ps-tree-1.1.0"
+ sources."pseudomap-1.0.2"
+ sources."pstree.remy-1.1.0"
+ sources."punycode-2.1.1"
+ sources."qs-4.0.0"
+ sources."range-parser-1.2.0"
+ (sources."raw-body-2.0.2" // {
+ dependencies = [
+ sources."bytes-2.1.0"
+ ];
+ })
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ sources."readline2-1.0.1"
+ sources."reduce-component-1.0.1"
+ sources."regex-not-1.0.2"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."resolve-url-0.2.1"
+ sources."restore-cursor-1.0.1"
+ sources."ret-0.1.15"
+ sources."right-align-0.1.3"
+ sources."rimraf-2.6.2"
+ sources."run-async-0.1.0"
+ sources."rx-lite-3.1.2"
+ sources."safe-buffer-5.1.2"
+ sources."safe-regex-1.1.0"
+ sources."sanitize-filename-1.6.1"
+ sources."semver-5.5.1"
+ sources."semver-diff-2.1.0"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."serve-static-1.13.2"
+ sources."set-immediate-shim-1.0.1"
+ (sources."set-value-2.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ ];
+ })
+ sources."setprototypeof-1.1.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."sigmund-1.0.1"
+ sources."signal-exit-3.0.2"
+ sources."slash-1.0.0"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."spark-md5-1.0.1"
+ sources."split-0.3.3"
+ sources."split-string-3.1.0"
+ sources."sprintf-js-1.0.3"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."statuses-1.3.1"
+ sources."stream-combiner-0.0.4"
+ sources."streamsearch-0.1.2"
+ sources."string-3.3.3"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-3.0.1"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ (sources."superagent-1.8.5" // {
+ dependencies = [
+ sources."cookiejar-2.0.6"
+ sources."extend-3.0.0"
+ sources."form-data-1.0.0-rc3"
+ sources."formidable-1.0.17"
+ sources."isarray-0.0.1"
+ sources."mime-1.3.4"
+ sources."qs-2.3.3"
+ sources."readable-stream-1.0.27-1"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."supports-color-2.0.0"
+ sources."swagger-converter-0.2.0"
+ sources."swagger-editor-2.10.5"
+ sources."swagger-test-templates-1.5.0"
+ (sources."swagger-tools-0.9.16" // {
+ dependencies = [
+ sources."swagger-converter-0.1.7"
+ ];
+ })
+ sources."term-size-1.2.0"
+ sources."through-2.3.8"
+ sources."timed-out-4.0.1"
+ sources."to-iso-string-0.0.2"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."touch-3.1.0"
+ sources."traverse-0.6.6"
+ sources."truncate-utf8-bytes-1.0.2"
+ sources."type-is-1.6.16"
+ sources."typedarray-0.0.6"
+ sources."uglify-js-2.8.29"
+ sources."uglify-to-browserify-1.0.2"
+ sources."undefsafe-2.0.2"
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."is-extendable-0.1.1"
+ sources."set-value-0.4.3"
+ ];
+ })
+ sources."unique-string-1.0.0"
+ sources."unpipe-1.0.0"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
+ sources."unzip-response-2.0.1"
+ sources."upath-1.1.0"
+ (sources."update-notifier-2.5.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."uri-js-3.0.2"
+ sources."urix-0.1.0"
+ sources."url-parse-lax-1.0.0"
+ sources."use-3.1.1"
+ sources."utf8-byte-length-1.0.4"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."valid-url-1.0.9"
+ sources."validator-10.7.0"
+ sources."which-1.3.1"
+ sources."widest-line-2.0.0"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.3"
+ 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."yargs-3.10.0" // {
+ dependencies = [
+ sources."camelcase-1.2.1"
+ ];
+ })
+ sources."z-schema-3.23.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "The Swagger command-line. Provides Swagger utilities and project lifecycle support.";
+ homepage = "https://github.com/swagger-api/swagger-node#readme";
+ license = "Apache 2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ tern = nodeEnv.buildNodePackage {
+ name = "tern";
+ packageName = "tern";
+ version = "0.22.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tern/-/tern-0.22.0.tgz";
+ sha512 = "YTb3uVStaPA1Ul0KFmfqBH4xc3kLL/9jUvkt/ZKh+FYUtjUckUWAicRiaAwugpRm4IveKBgFKVCggbaT4uwe/A==";
+ };
+ dependencies = [
+ sources."acorn-5.7.2"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ sources."enhanced-resolve-2.3.0"
+ sources."errno-0.1.7"
+ sources."fs.realpath-1.0.0"
+ sources."glob-7.1.3"
+ sources."graceful-fs-4.1.11"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."isarray-1.0.0"
+ 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-2.0.0"
+ sources."prr-1.0.1"
+ sources."readable-stream-2.3.6"
+ sources."resolve-from-2.0.0"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ sources."tapable-0.2.8"
+ sources."util-deprecate-1.0.2"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A JavaScript code analyzer for deep, cross-editor language support";
+ homepage = "https://github.com/ternjs/tern#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ three = nodeEnv.buildNodePackage {
+ name = "three";
+ packageName = "three";
+ version = "0.95.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/three/-/three-0.95.0.tgz";
+ sha512 = "vy6jMYs7CDwn47CejYHNi+++OdQue7xGIBhbLfekQ/G6MDxKRm0QB0/xWScz46/JvQAvF6pJAS5Q907l0i5iQA==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "JavaScript 3D library";
+ homepage = https://threejs.org/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ tiddlywiki = nodeEnv.buildNodePackage {
+ name = "tiddlywiki";
+ packageName = "tiddlywiki";
+ version = "5.1.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tiddlywiki/-/tiddlywiki-5.1.17.tgz";
+ sha1 = "bd3311146ba67fb4beee9933dd2e6d55e92665ed";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "a non-linear personal web notebook";
+ homepage = "https://github.com/Jermolene/TiddlyWiki5#readme";
+ license = "BSD";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ titanium = nodeEnv.buildNodePackage {
+ name = "titanium";
+ packageName = "titanium";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/titanium/-/titanium-5.2.0.tgz";
+ sha512 = "kB3n4rOfcUznvAA+8yXjuExczfq2ILEp6tUlY2H3YVYRcV5W5tsVsvRJLHeB3sZzijxZY+5DTBuV3txiWevSHA==";
+ };
+ dependencies = [
+ sources."adm-zip-0.4.11"
+ sources."ajv-5.5.2"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."async-2.6.1"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."buffer-from-1.1.1"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."colors-1.3.0"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."core-util-is-1.0.2"
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."diff-3.5.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ (sources."fields-0.1.24" // {
+ dependencies = [
+ sources."colors-0.6.2"
+ ];
+ })
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."fs-extra-7.0.0"
+ sources."getpass-0.1.7"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."http-signature-1.2.0"
+ sources."humanize-0.0.9"
+ sources."is-typedarray-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-4.0.0"
+ sources."jsprim-1.4.1"
+ sources."keypress-0.2.1"
+ sources."lodash-4.17.10"
+ sources."longjohn-0.2.12"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimist-0.0.10"
+ sources."moment-2.22.2"
+ (sources."node-appc-0.2.48" // {
+ dependencies = [
+ sources."fs-extra-6.0.1"
+ ];
+ })
+ sources."oauth-sign-0.8.2"
+ sources."optimist-0.6.1"
+ sources."os-tmpdir-1.0.2"
+ sources."performance-now-2.1.0"
+ sources."pkginfo-0.3.1"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."request-2.87.0"
+ sources."rimraf-2.2.8"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.5.0"
+ sources."source-map-0.6.1"
+ sources."source-map-support-0.5.9"
+ sources."sprintf-0.1.5"
+ sources."sshpk-1.14.2"
+ sources."stack-trace-0.0.10"
+ sources."temp-0.8.3"
+ sources."tough-cookie-2.3.4"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."uglify-js-3.4.8"
+ sources."universalify-0.1.2"
+ sources."uuid-3.3.2"
+ sources."verror-1.10.0"
+ (sources."winston-1.1.2" // {
+ dependencies = [
+ sources."async-1.0.0"
+ sources."colors-1.0.3"
+ ];
+ })
+ sources."wordwrap-0.0.3"
+ sources."xmldom-0.1.27"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Appcelerator Titanium Command line";
+ homepage = "https://github.com/appcelerator/titanium#readme";
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ triton = nodeEnv.buildNodePackage {
+ name = "triton";
+ packageName = "triton";
+ version = "6.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/triton/-/triton-6.1.2.tgz";
+ sha1 = "1f4376383ea07de8bffbfd00b445719d57a5f474";
+ };
+ dependencies = [
+ sources."asn1-0.2.4"
+ sources."assert-plus-0.2.0"
+ sources."backoff-2.4.1"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bigspinner-3.1.0"
+ sources."brace-expansion-1.1.11"
+ sources."bunyan-1.8.12"
+ sources."clone-0.1.5"
+ (sources."cmdln-4.1.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ sources."extsprintf-1.4.0"
+ ];
+ })
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ (sources."dashdash-1.14.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."dtrace-provider-0.8.7"
+ sources."ecc-jsbn-0.1.2"
+ sources."extsprintf-1.0.2"
+ sources."fast-safe-stringify-1.2.3"
+ sources."fuzzyset.js-0.0.1"
+ (sources."getpass-0.1.6" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."glob-5.0.15"
+ (sources."http-signature-1.2.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-absolute-0.1.7"
+ sources."is-relative-0.1.3"
+ sources."isarray-1.0.0"
+ sources."isexe-1.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ sources."verror-1.3.6"
+ ];
+ })
+ sources."keep-alive-agent-0.0.1"
+ sources."lodash-4.17.10"
+ (sources."lomstream-1.1.0" // {
+ dependencies = [
+ sources."assert-plus-0.1.5"
+ sources."extsprintf-1.3.0"
+ ];
+ })
+ sources."lru-cache-4.1.3"
+ sources."lstream-0.0.4"
+ sources."mime-1.6.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.22.2"
+ sources."mooremachine-2.2.1"
+ sources."mute-stream-0.0.7"
+ sources."mv-2.1.1"
+ sources."nan-2.11.0"
+ sources."ncp-2.0.0"
+ sources."once-1.3.2"
+ sources."path-is-absolute-1.0.1"
+ sources."precond-0.2.3"
+ sources."process-nextick-args-2.0.0"
+ sources."pseudomap-1.0.2"
+ sources."read-1.0.7"
+ sources."readable-stream-2.3.6"
+ (sources."restify-clients-1.5.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ (sources."restify-errors-3.1.0" // {
+ dependencies = [
+ sources."assert-plus-0.2.0"
+ sources."lodash-3.10.1"
+ ];
+ })
+ ];
+ })
+ (sources."restify-errors-3.0.0" // {
+ dependencies = [
+ sources."assert-plus-0.1.5"
+ sources."lodash-3.10.1"
+ ];
+ })
+ sources."rimraf-2.4.4"
+ sources."safe-buffer-5.1.2"
+ sources."safe-json-stringify-1.2.0"
+ sources."safer-buffer-2.1.2"
+ sources."semver-5.1.0"
+ (sources."smartdc-auth-2.5.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ (sources."dashdash-1.10.1" // {
+ dependencies = [
+ sources."assert-plus-0.1.5"
+ ];
+ })
+ sources."extsprintf-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"
+ sources."verror-1.1.0"
+ ];
+ })
+ (sources."sshpk-1.14.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-agent-1.7.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."string_decoder-1.1.1"
+ sources."strsplit-1.0.0"
+ (sources."tabula-1.10.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ (sources."vasync-1.6.3" // {
+ dependencies = [
+ sources."extsprintf-1.2.0"
+ sources."verror-1.6.0"
+ ];
+ })
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ sources."extsprintf-1.4.0"
+ ];
+ })
+ (sources."vstream-0.1.0" // {
+ dependencies = [
+ sources."assert-plus-0.1.5"
+ sources."extsprintf-1.2.0"
+ ];
+ })
+ sources."which-1.2.4"
+ sources."wordwrap-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."yallist-2.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Joyent Triton CLI and client (https://www.joyent.com/triton)";
+ homepage = https://github.com/joyent/node-triton;
+ license = "MPL-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ typescript = nodeEnv.buildNodePackage {
+ name = "typescript";
+ packageName = "typescript";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-3.0.1.tgz";
+ sha512 = "zQIMOmC+372pC/CCVLqnQ0zSBiY7HHodU7mpQdjiZddek4GMj31I3dUJ7gAs9o65X7mnRma6OokOkc6f9jjfBg==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "TypeScript is a language for application scale JavaScript development";
+ homepage = http://typescriptlang.org/;
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ typings = nodeEnv.buildNodePackage {
+ name = "typings";
+ packageName = "typings";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typings/-/typings-2.1.1.tgz";
+ 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" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.1.1"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."chalk-1.1.3"
+ sources."ci-info-1.4.0"
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-1.0.2"
+ sources."cli-truncate-1.1.0"
+ sources."clone-1.0.4"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."columnify-1.5.4"
+ sources."combined-stream-1.0.6"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ sources."configstore-3.1.2"
+ 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.6.0"
+ 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.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."execa-0.7.0"
+ sources."exit-hook-1.1.1"
+ sources."extend-3.0.2"
+ sources."form-data-2.3.2"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."get-stream-3.0.0"
+ sources."glob-7.1.3"
+ sources."global-dirs-0.1.1"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."has-1.0.3"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-3.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.4"
+ sources."is-absolute-0.2.6"
+ sources."is-arrayish-0.2.1"
+ sources."is-ci-1.2.0"
+ 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-4.0.0"
+ sources."jspm-config-0.3.4"
+ sources."latest-version-3.1.0"
+ sources."listify-1.0.0"
+ sources."lockfile-1.0.4"
+ sources."log-update-1.0.2"
+ sources."loose-envify-1.4.0"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.3"
+ sources."make-dir-1.3.0"
+ sources."make-error-1.3.4"
+ sources."make-error-cause-1.2.2"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ 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" // {
+ dependencies = [
+ sources."semver-5.5.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."prepend-http-1.0.4"
+ sources."process-nextick-args-2.0.0"
+ sources."promise-finally-3.0.0"
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."rc-1.2.8"
+ sources."readable-stream-2.3.6"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."restore-cursor-1.0.1"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ 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" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."string_decoder-1.1.1"
+ 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.4.3"
+ sources."typedarray-0.0.6"
+ sources."typescript-2.9.2"
+ sources."typings-core-2.3.3"
+ sources."unc-path-regex-0.1.2"
+ sources."unique-string-1.0.0"
+ sources."unzip-response-2.0.1"
+ (sources."update-notifier-2.5.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."url-parse-lax-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."wcwidth-1.0.1"
+ sources."which-1.3.1"
+ 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 = {
+ description = "The TypeScript Definition Manager";
+ homepage = https://github.com/typings/typings;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ uglify-js = nodeEnv.buildNodePackage {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.4.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.8.tgz";
+ sha512 = "WatYTD84gP/867bELqI2F/2xC9PQBETn/L+7RGq9MQOA/7yFBNvY1UwXqvtILeE6n0ITwBXxp34M0/o70dzj6A==";
+ };
+ dependencies = [
+ sources."commander-2.17.1"
+ sources."source-map-0.6.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "JavaScript parser, mangler/compressor and beautifier toolkit";
+ homepage = "https://github.com/mishoo/UglifyJS2#readme";
+ license = "BSD-2-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ ungit = nodeEnv.buildNodePackage {
+ name = "ungit";
+ packageName = "ungit";
+ version = "1.4.32";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ungit/-/ungit-1.4.32.tgz";
+ sha512 = "qPsvjAYgdeO2Zrx5KvW8oxI8Vof3iK+x/0SfHxKbs+CJjbY5nzpaGI2wCoyiS8nWykcxAmy3RjZKpzOpzBnW0A==";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.5"
+ 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.5" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."array-flatten-1.1.1"
+ sources."arraybuffer.slice-0.0.7"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."async-0.9.2"
+ sources."async-limiter-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.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.2"
+ 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.3"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-from-1.1.1"
+ 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.1.0" // {
+ 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."clone-2.1.2"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."color-3.0.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."color-string-1.5.3"
+ 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.2" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.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-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."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-2.0.0"
+ sources."deep-extend-0.6.0"
+ sources."delayed-stream-0.0.5"
+ sources."delegates-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."diff-3.5.0"
+ sources."diff2html-2.3.3"
+ sources."dnd-page-scroll-0.0.4"
+ (sources."eachr-3.2.0" // {
+ dependencies = [
+ sources."editions-1.3.4"
+ ];
+ })
+ sources."ecc-jsbn-0.1.2"
+ sources."editions-2.0.1"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ (sources."engine.io-3.2.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."engine.io-client-3.2.1" // {
+ dependencies = [
+ sources."component-emitter-1.2.1"
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."engine.io-parser-2.1.2"
+ (sources."errlop-1.0.3" // {
+ dependencies = [
+ sources."editions-1.3.4"
+ ];
+ })
+ 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.3" // {
+ dependencies = [
+ sources."body-parser-1.18.2"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ sources."raw-body-2.3.2"
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."express-session-1.15.6"
+ sources."extend-1.2.1"
+ (sources."extract-opts-3.3.1" // {
+ dependencies = [
+ sources."editions-1.3.4"
+ ];
+ })
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ (sources."finalhandler-1.1.1" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."find-up-3.0.0"
+ sources."forever-agent-0.6.1"
+ (sources."form-data-0.1.3" // {
+ dependencies = [
+ sources."mime-1.2.11"
+ ];
+ })
+ 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.3"
+ sources."get-stream-3.0.0"
+ sources."getmac-1.4.5"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.3"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ (sources."has-binary2-1.0.3" // {
+ dependencies = [
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."has-cors-1.1.0"
+ sources."has-unicode-2.0.1"
+ sources."hasher-1.2.0"
+ (sources."hogan.js-3.0.2" // {
+ dependencies = [
+ sources."mkdirp-0.3.0"
+ ];
+ })
+ sources."hosted-git-info-2.7.1"
+ sources."http-errors-1.6.3"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.23"
+ sources."ignore-3.3.10"
+ 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.8.0"
+ sources."is-arrayish-0.3.2"
+ 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."is-wsl-1.1.0"
+ sources."isarray-0.0.1"
+ sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jquery-3.3.1"
+ sources."jquery-ui-bundle-1.12.1"
+ 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.5" // {
+ dependencies = [
+ sources."methods-1.0.1"
+ sources."mime-1.2.11"
+ sources."qs-1.2.0"
+ sources."superagent-0.21.0"
+ ];
+ })
+ sources."knockout-3.5.0-rc"
+ sources."lcid-1.0.0"
+ sources."locate-path-3.0.0"
+ sources."locks-0.2.2"
+ sources."lodash-4.17.10"
+ sources."lru-cache-4.1.3"
+ 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.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.22.2"
+ sources."ms-2.0.0"
+ sources."negotiator-0.6.1"
+ sources."node-cache-4.2.0"
+ sources."nopt-1.0.10"
+ sources."normalize-package-data-2.4.0"
+ sources."npm-6.1.0"
+ sources."npm-package-arg-6.1.0"
+ sources."npm-registry-client-8.5.1"
+ 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.9.0"
+ 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."opn-5.3.0"
+ sources."os-homedir-1.0.2"
+ sources."os-locale-2.1.0"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."p-finally-1.0.0"
+ sources."p-limit-2.0.0"
+ sources."p-locate-3.0.0"
+ sources."p-try-2.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."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-2.0.0"
+ sources."proxy-addr-2.0.4"
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."random-bytes-1.0.0"
+ sources."range-parser-1.2.0"
+ sources."raven-js-3.26.4"
+ sources."raw-body-2.3.3"
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."readable-stream-1.0.27-1"
+ sources."reduce-component-1.0.1"
+ (sources."request-2.88.0" // {
+ dependencies = [
+ sources."combined-stream-1.0.6"
+ sources."delayed-stream-1.0.0"
+ sources."extend-3.0.2"
+ sources."form-data-2.3.2"
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ 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."safer-buffer-2.1.2"
+ sources."semver-5.5.1"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."serve-static-1.13.2"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.1.0"
+ 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."socket.io-2.1.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."socket.io-adapter-1.1.1"
+ (sources."socket.io-client-2.1.1" // {
+ dependencies = [
+ sources."component-emitter-1.2.1"
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."socket.io-parser-3.2.0" // {
+ dependencies = [
+ sources."component-emitter-1.2.1"
+ sources."debug-3.1.0"
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."sshpk-1.14.2"
+ sources."ssri-5.3.0"
+ sources."stack-trace-0.0.10"
+ sources."statuses-1.5.0"
+ sources."string-width-1.0.2"
+ sources."string_decoder-0.10.31"
+ sources."strip-ansi-3.0.1"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ (sources."superagent-3.8.3" // {
+ dependencies = [
+ sources."combined-stream-1.0.6"
+ sources."component-emitter-1.2.1"
+ sources."cookiejar-2.1.2"
+ sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
+ sources."extend-3.0.2"
+ sources."form-data-2.3.2"
+ sources."formidable-1.2.1"
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ (sources."temp-0.8.3" // {
+ dependencies = [
+ sources."rimraf-2.2.8"
+ ];
+ })
+ sources."to-array-0.1.4"
+ sources."tough-cookie-2.4.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ (sources."typechecker-4.5.0" // {
+ dependencies = [
+ sources."editions-1.3.4"
+ ];
+ })
+ 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.3.2"
+ sources."validate-npm-package-license-3.0.4"
+ sources."validate-npm-package-name-3.0.0"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."whatwg-fetch-2.0.4"
+ sources."which-1.3.1"
+ sources."which-module-2.0.0"
+ sources."wide-align-1.1.3"
+ (sources."winston-2.4.4" // {
+ dependencies = [
+ sources."async-1.0.0"
+ ];
+ })
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."ws-3.3.3"
+ sources."xmlhttprequest-ssl-1.5.5"
+ sources."xregexp-4.0.0"
+ sources."y18n-4.0.0"
+ sources."yallist-2.1.2"
+ (sources."yargs-12.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-10.1.0"
+ sources."yeast-0.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Git made easy";
+ homepage = "https://github.com/FredrikNoren/ungit#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ vue-cli = nodeEnv.buildNodePackage {
+ name = "vue-cli";
+ packageName = "vue-cli";
+ version = "2.9.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.6.tgz";
+ sha512 = "swQ0bfyJSWfFr42IXr8A774yA1n+YudhzsaHBKhWSkczSqjvgZvSvM8NEnx6QKnfOHBXbdNR5vhahjNUMlftQQ==";
+ };
+ dependencies = [
+ sources."absolute-0.0.1"
+ (sources."ajv-5.5.2" // {
+ dependencies = [
+ sources."co-4.6.0"
+ ];
+ })
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-red-0.1.1"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."ansi-wrap-0.1.0"
+ sources."argparse-1.0.10"
+ sources."array-differ-1.0.0"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."arrify-1.0.1"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."async-2.6.1"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-0.0.8"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bl-1.2.2"
+ sources."bluebird-3.5.1"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-3.6.0"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-crc32-0.2.13"
+ sources."buffer-fill-1.0.0"
+ sources."builtins-1.0.3"
+ sources."camelcase-1.2.1"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
+ sources."caw-2.0.1"
+ sources."center-align-0.1.3"
+ sources."chalk-2.4.1"
+ sources."chardet-0.5.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-spinners-1.3.1"
+ sources."cli-width-2.2.0"
+ (sources."cliui-2.1.0" // {
+ dependencies = [
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ sources."clone-1.0.4"
+ sources."co-3.1.0"
+ sources."co-from-stream-0.0.0"
+ sources."co-fs-extra-1.2.1"
+ sources."co-read-0.0.1"
+ sources."coffee-script-1.12.7"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."concat-map-0.0.1"
+ sources."config-chain-1.1.11"
+ sources."consolidate-0.14.5"
+ sources."core-util-is-1.0.2"
+ sources."create-error-class-3.0.2"
+ sources."dashdash-1.14.1"
+ sources."decamelize-1.2.0"
+ sources."decompress-4.2.0"
+ sources."decompress-tar-4.1.1"
+ (sources."decompress-tarbz2-4.1.1" // {
+ dependencies = [
+ sources."file-type-6.2.0"
+ ];
+ })
+ sources."decompress-targz-4.1.1"
+ (sources."decompress-unzip-4.0.1" // {
+ dependencies = [
+ sources."file-type-3.9.0"
+ sources."get-stream-2.3.1"
+ ];
+ })
+ sources."delayed-stream-1.0.0"
+ sources."download-5.0.3"
+ sources."download-git-repo-1.1.0"
+ sources."duplexer3-0.1.4"
+ sources."ecc-jsbn-0.1.2"
+ sources."enable-1.3.2"
+ sources."end-of-stream-1.4.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.1"
+ sources."extend-3.0.2"
+ sources."extend-shallow-2.0.1"
+ sources."external-editor-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fd-slicer-1.1.0"
+ sources."figures-2.0.0"
+ sources."file-type-5.2.0"
+ sources."filename-reserved-regex-2.0.0"
+ sources."filenamify-2.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."fs-constants-1.0.0"
+ sources."fs-extra-0.26.7"
+ sources."fs.realpath-1.0.0"
+ sources."get-proxy-2.1.0"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."git-clone-0.1.0"
+ sources."glob-7.1.3"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-readlink-1.0.1"
+ sources."gray-matter-2.1.1"
+ (sources."handlebars-4.0.11" // {
+ dependencies = [
+ sources."async-1.5.2"
+ ];
+ })
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ (sources."has-ansi-2.0.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
+ sources."has-flag-3.0.0"
+ sources."has-generators-1.0.1"
+ sources."has-symbol-support-x-1.4.2"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.24"
+ sources."ieee754-1.1.12"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."inquirer-6.2.0"
+ sources."is-3.2.1"
+ sources."is-buffer-1.1.6"
+ sources."is-extendable-0.1.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-natural-number-4.0.1"
+ sources."is-object-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."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."isurl-1.0.0"
+ sources."js-yaml-3.12.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."jsonfile-2.4.0"
+ sources."jsprim-1.4.1"
+ sources."kind-of-3.2.2"
+ sources."klaw-1.3.1"
+ sources."lazy-cache-1.0.4"
+ sources."lodash-4.17.10"
+ sources."log-symbols-2.2.0"
+ sources."longest-1.0.1"
+ sources."lowercase-keys-1.0.1"
+ (sources."make-dir-1.3.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ (sources."metalsmith-2.3.0" // {
+ 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."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."multimatch-2.1.0"
+ sources."mute-stream-0.0.7"
+ (sources."npm-conf-1.1.3" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."optimist-0.6.1"
+ sources."ora-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ 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."prepend-http-1.0.4"
+ sources."process-nextick-args-2.0.0"
+ sources."proto-list-1.2.4"
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."read-metadata-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."recursive-readdir-2.2.2"
+ sources."repeat-string-1.6.1"
+ sources."request-2.88.0"
+ sources."restore-cursor-2.0.0"
+ sources."right-align-0.1.3"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rxjs-6.2.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ (sources."seek-bzip-1.0.5" // {
+ dependencies = [
+ sources."commander-2.8.1"
+ ];
+ })
+ sources."semver-5.5.1"
+ sources."signal-exit-3.0.2"
+ sources."source-map-0.4.4"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
+ sources."stat-mode-0.2.2"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."strip-dirs-2.1.0"
+ sources."strip-outer-1.0.1"
+ sources."supports-color-5.5.0"
+ sources."tar-stream-1.6.1"
+ sources."through-2.3.8"
+ sources."thunkify-2.1.2"
+ sources."thunkify-wrap-1.0.4"
+ sources."tildify-1.2.0"
+ sources."timed-out-4.0.1"
+ sources."tmp-0.0.33"
+ sources."to-buffer-1.1.1"
+ sources."toml-2.3.3"
+ sources."tough-cookie-2.4.3"
+ sources."trim-repeated-1.0.0"
+ sources."tslib-1.9.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ (sources."uglify-js-2.8.29" // {
+ dependencies = [
+ sources."source-map-0.5.7"
+ ];
+ })
+ sources."uglify-to-browserify-1.0.2"
+ sources."uid-0.0.2"
+ sources."unbzip2-stream-1.2.5"
+ sources."unyield-0.0.1"
+ sources."unzip-response-2.0.1"
+ sources."url-parse-lax-1.0.0"
+ sources."url-to-options-1.0.1"
+ sources."user-home-2.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.3.2"
+ sources."validate-npm-package-name-3.0.0"
+ sources."verror-1.10.0"
+ sources."ware-1.3.0"
+ sources."win-fork-1.1.1"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.3"
+ sources."wrap-fn-0.1.5"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yaml-js-0.0.8"
+ sources."yargs-3.10.0"
+ sources."yauzl-2.10.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A simple CLI for scaffolding Vue.js projects.";
+ homepage = "https://github.com/vuejs/vue-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ "@vue/cli" = nodeEnv.buildNodePackage {
+ name = "_at_vue_slash_cli";
+ packageName = "@vue/cli";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@vue/cli/-/cli-3.0.1.tgz";
+ sha512 = "z61IlDhTpgDhM6cjbVynkpZzkfhmRKns8DhuuF/OK8VIEI9mwLLn+9df5lFe6Ij/5S9KURXwNeaTLiA1m2R/Yw==";
+ };
+ dependencies = [
+ sources."@akryum/winattr-3.0.0"
+ sources."@apollographql/apollo-upload-server-5.0.3"
+ sources."@apollographql/graphql-playground-html-1.6.0"
+ sources."@babel/runtime-7.0.0"
+ sources."@babel/runtime-corejs2-7.0.0"
+ sources."@mrmlnc/readdir-enhanced-2.2.1"
+ sources."@nodelib/fs.stat-1.1.1"
+ sources."@protobufjs/aspromise-1.1.2"
+ sources."@protobufjs/base64-1.1.2"
+ sources."@protobufjs/codegen-2.0.4"
+ sources."@protobufjs/eventemitter-1.1.0"
+ sources."@protobufjs/fetch-1.1.0"
+ sources."@protobufjs/float-1.0.2"
+ sources."@protobufjs/inquire-1.1.0"
+ sources."@protobufjs/path-1.1.2"
+ sources."@protobufjs/pool-1.1.0"
+ sources."@protobufjs/utf8-1.1.0"
+ sources."@types/accepts-1.3.5"
+ sources."@types/async-2.0.49"
+ sources."@types/body-parser-1.17.0"
+ sources."@types/connect-3.4.32"
+ sources."@types/cors-2.8.4"
+ sources."@types/events-1.2.0"
+ sources."@types/express-4.16.0"
+ sources."@types/express-serve-static-core-4.16.0"
+ sources."@types/graphql-0.12.6"
+ sources."@types/long-4.0.0"
+ sources."@types/mime-2.0.0"
+ sources."@types/node-10.9.2"
+ sources."@types/range-parser-1.2.2"
+ sources."@types/serve-static-1.13.2"
+ sources."@types/ws-5.1.2"
+ sources."@types/zen-observable-0.8.0"
+ sources."@vue/cli-shared-utils-3.0.1"
+ (sources."@vue/cli-ui-3.0.1" // {
+ dependencies = [
+ sources."clone-2.1.2"
+ ];
+ })
+ sources."@vue/cli-ui-addon-webpack-3.0.1"
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.5"
+ sources."ajv-5.5.2"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."anymatch-2.0.0"
+ sources."apollo-cache-1.1.16"
+ sources."apollo-cache-control-0.2.2"
+ sources."apollo-cache-inmemory-1.2.9"
+ sources."apollo-client-2.4.1"
+ sources."apollo-datasource-0.1.2"
+ sources."apollo-engine-reporting-0.0.2"
+ sources."apollo-engine-reporting-protobuf-0.0.1"
+ sources."apollo-link-1.2.2"
+ sources."apollo-link-context-1.0.8"
+ sources."apollo-link-dedup-1.0.9"
+ sources."apollo-link-http-1.5.4"
+ sources."apollo-link-http-common-0.2.4"
+ sources."apollo-link-persisted-queries-0.2.1"
+ sources."apollo-link-state-0.4.1"
+ sources."apollo-link-ws-1.0.8"
+ sources."apollo-server-caching-0.1.2"
+ sources."apollo-server-core-2.0.4"
+ sources."apollo-server-env-2.0.2"
+ sources."apollo-server-errors-2.0.2"
+ sources."apollo-server-express-2.0.4"
+ sources."apollo-tracing-0.2.2"
+ sources."apollo-upload-client-8.1.0"
+ sources."apollo-utilities-1.0.20"
+ sources."argparse-1.0.10"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-filter-0.0.1"
+ sources."array-flatten-1.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.3.2"
+ sources."arrify-1.0.1"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
+ sources."assign-symbols-1.0.0"
+ sources."ast-types-0.11.5"
+ sources."async-1.5.2"
+ sources."async-each-1.0.1"
+ sources."async-limiter-1.0.0"
+ sources."async-retry-1.2.1"
+ sources."asynckit-0.4.0"
+ sources."atob-2.1.2"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."base64-js-0.0.8"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."binary-extensions-1.11.0"
+ (sources."bl-1.2.2" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ (sources."body-parser-1.18.3" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.11"
+ sources."braces-2.3.2"
+ (sources."buffer-3.6.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ ];
+ })
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-crc32-0.2.13"
+ sources."buffer-fill-1.0.0"
+ sources."builtins-1.0.3"
+ sources."busboy-0.2.14"
+ sources."bytes-3.0.0"
+ sources."cache-base-1.0.1"
+ sources."call-me-maybe-1.0.1"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
+ sources."caw-2.0.1"
+ sources."chalk-2.4.1"
+ sources."chardet-0.5.0"
+ sources."chokidar-2.0.4"
+ sources."ci-info-1.4.0"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-spinners-1.3.1"
+ sources."cli-width-2.2.0"
+ sources."clipboard-2.0.1"
+ sources."clone-1.0.4"
+ sources."cmd-shim-2.0.2"
+ sources."co-4.6.0"
+ sources."collection-visit-1.0.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."component-emitter-1.2.1"
+ sources."concat-map-0.0.1"
+ sources."config-chain-1.1.11"
+ sources."configstore-3.1.2"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
+ sources."copy-descriptor-0.1.1"
+ sources."core-js-2.5.7"
+ 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."crypto-random-string-1.0.0"
+ sources."dashdash-1.14.1"
+ sources."debug-3.1.0"
+ sources."decode-uri-component-0.2.0"
+ (sources."decompress-4.2.0" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."decompress-tar-4.1.1"
+ (sources."decompress-tarbz2-4.1.1" // {
+ dependencies = [
+ sources."file-type-6.2.0"
+ ];
+ })
+ sources."decompress-targz-4.1.1"
+ (sources."decompress-unzip-4.0.1" // {
+ dependencies = [
+ sources."file-type-3.9.0"
+ sources."get-stream-2.3.1"
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."deep-extend-0.6.0"
+ sources."deepmerge-2.1.1"
+ sources."defaults-1.0.3"
+ sources."define-properties-1.1.3"
+ sources."define-property-2.0.2"
+ sources."delayed-stream-1.0.0"
+ sources."delegate-3.2.0"
+ sources."depd-1.1.2"
+ sources."deprecated-decorator-0.1.6"
+ sources."destroy-1.0.4"
+ sources."dicer-0.2.5"
+ sources."dir-glob-2.0.0"
+ sources."dot-prop-4.2.0"
+ (sources."download-5.0.3" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."download-git-repo-1.1.0"
+ sources."duplexer-0.1.1"
+ sources."duplexer3-0.1.4"
+ sources."easy-stack-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."ee-first-1.1.1"
+ sources."ejs-2.6.1"
+ sources."encodeurl-1.0.2"
+ sources."end-of-stream-1.4.1"
+ sources."es-abstract-1.12.0"
+ sources."es-to-primitive-1.1.1"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.1"
+ sources."etag-1.8.1"
+ sources."event-pubsub-4.3.0"
+ sources."event-stream-3.3.4"
+ sources."eventemitter3-3.1.0"
+ sources."exec-sh-0.2.2"
+ (sources."execa-0.10.0" // {
+ dependencies = [
+ sources."cross-spawn-6.0.5"
+ ];
+ })
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."expand-tilde-2.0.2"
+ (sources."express-4.16.3" // {
+ dependencies = [
+ sources."body-parser-1.18.2"
+ sources."debug-2.6.9"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ sources."raw-body-2.3.2"
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."express-history-api-fallback-2.2.1"
+ sources."extend-3.0.2"
+ sources."extend-shallow-2.0.1"
+ sources."external-editor-3.0.1"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."extract-files-3.1.0"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-glob-2.2.2"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fd-slicer-1.1.0"
+ sources."figures-2.0.0"
+ sources."file-type-5.2.0"
+ sources."filename-reserved-regex-2.0.0"
+ sources."filenamify-2.1.0"
+ sources."fill-range-4.0.0"
+ (sources."finalhandler-1.1.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."for-in-1.0.2"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."forwarded-0.1.2"
+ sources."fragment-cache-0.2.1"
+ sources."fresh-0.5.2"
+ sources."from-0.1.7"
+ sources."fs-constants-1.0.0"
+ sources."fs-exists-sync-0.1.0"
+ sources."fs-extra-6.0.1"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.2.4"
+ sources."fswin-2.17.1227"
+ sources."function-bind-1.1.1"
+ sources."get-proxy-2.1.0"
+ sources."get-stream-3.0.0"
+ sources."get-value-2.0.6"
+ sources."getpass-0.1.7"
+ sources."git-clone-0.1.0"
+ sources."git-config-path-1.0.1"
+ sources."glob-7.1.3"
+ (sources."glob-parent-3.1.0" // {
+ dependencies = [
+ sources."is-glob-3.1.0"
+ ];
+ })
+ sources."glob-to-regexp-0.3.0"
+ sources."global-dirs-0.1.1"
+ (sources."globby-8.0.1" // {
+ dependencies = [
+ sources."slash-1.0.0"
+ ];
+ })
+ sources."good-listener-1.2.2"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-readlink-1.0.1"
+ sources."graphql-0.13.2"
+ sources."graphql-anywhere-4.1.18"
+ sources."graphql-extensions-0.1.2"
+ sources."graphql-subscriptions-0.5.8"
+ sources."graphql-tag-2.9.2"
+ sources."graphql-tools-3.1.1"
+ sources."graphql-type-json-0.2.1"
+ sources."growly-1.3.0"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ sources."has-1.0.3"
+ sources."has-flag-3.0.0"
+ sources."has-symbol-support-x-1.4.2"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."hash.js-1.1.5"
+ sources."hoek-5.0.4"
+ sources."homedir-polyfill-1.0.1"
+ sources."http-errors-1.6.3"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.23"
+ sources."ieee754-1.1.12"
+ sources."ignore-3.3.10"
+ sources."ignore-by-default-1.0.1"
+ sources."import-global-0.1.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."inquirer-6.2.0"
+ sources."ipaddr.js-1.8.0"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-callable-1.1.4"
+ sources."is-ci-1.2.0"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-date-object-1.0.1"
+ 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-natural-number-4.0.1"
+ sources."is-npm-1.0.0"
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-obj-1.0.1"
+ sources."is-object-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-regex-1.0.4"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-symbol-1.0.1"
+ sources."is-typedarray-1.0.0"
+ sources."is-windows-1.0.2"
+ sources."is-wsl-1.1.0"
+ sources."isarray-0.0.1"
+ sources."isbinaryfile-3.0.3"
+ sources."isemail-3.1.3"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."isstream-0.1.2"
+ sources."isurl-1.0.0"
+ sources."iterall-1.2.2"
+ sources."javascript-stringify-1.6.0"
+ sources."joi-13.6.0"
+ sources."js-message-1.0.5"
+ sources."js-queue-2.0.0"
+ sources."js-yaml-3.12.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."jsonfile-4.0.0"
+ sources."jsonify-0.0.0"
+ sources."jsprim-1.4.1"
+ sources."kind-of-6.0.2"
+ sources."klaw-sync-4.0.0"
+ sources."latest-version-3.1.0"
+ sources."launch-editor-2.2.1"
+ sources."lodash-4.17.10"
+ sources."lodash.clonedeep-4.5.0"
+ sources."lodash.debounce-4.0.8"
+ sources."lodash.merge-4.6.1"
+ sources."log-symbols-2.2.0"
+ sources."long-4.0.0"
+ sources."lowdb-1.0.0"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.3"
+ sources."make-dir-1.3.0"
+ sources."map-cache-0.2.2"
+ sources."map-stream-0.1.0"
+ sources."map-visit-1.0.0"
+ sources."media-typer-0.3.0"
+ sources."merge-1.2.0"
+ sources."merge-descriptors-1.0.1"
+ sources."merge2-1.2.2"
+ sources."methods-1.1.2"
+ (sources."micromatch-3.1.10" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."mime-1.4.1"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."minimalistic-assert-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ (sources."mixin-deep-1.3.1" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."nan-2.11.0"
+ sources."nanoid-1.2.1"
+ (sources."nanomatch-1.2.13" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."negotiator-0.6.1"
+ sources."nice-try-1.0.5"
+ sources."node-fetch-2.2.0"
+ sources."node-ipc-9.1.1"
+ sources."node-notifier-5.2.1"
+ sources."nodemon-1.18.3"
+ sources."nopt-1.0.10"
+ sources."normalize-path-2.1.1"
+ sources."npm-conf-1.1.3"
+ sources."npm-run-path-2.0.2"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ (sources."object-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."object-keys-1.0.12"
+ sources."object-path-0.11.4"
+ sources."object-visit-1.0.1"
+ sources."object.getownpropertydescriptors-2.0.3"
+ sources."object.pick-1.3.0"
+ sources."on-finished-2.3.0"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."opn-5.3.0"
+ sources."ora-2.1.0"
+ sources."os-tmpdir-1.0.2"
+ sources."p-finally-1.0.0"
+ sources."package-json-4.0.1"
+ sources."parse-git-config-2.0.3"
+ sources."parse-passwd-1.0.0"
+ sources."parseurl-1.3.2"
+ 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."path-parse-1.0.6"
+ sources."path-to-regexp-0.1.7"
+ sources."path-type-3.0.0"
+ sources."pause-stream-0.0.11"
+ sources."pend-1.2.0"
+ sources."performance-now-2.1.0"
+ sources."pify-3.0.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ (sources."portfinder-1.0.17" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."posix-character-classes-0.1.1"
+ sources."prepend-http-1.0.4"
+ sources."prismjs-1.15.0"
+ sources."private-0.1.8"
+ sources."process-nextick-args-2.0.0"
+ sources."proto-list-1.2.4"
+ sources."protobufjs-6.8.8"
+ sources."proxy-addr-2.0.4"
+ sources."ps-tree-1.1.0"
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.29"
+ sources."pstree.remy-1.1.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.5.2"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.3"
+ sources."rc-1.2.8"
+ sources."readable-stream-1.1.14"
+ (sources."readdirp-2.1.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ (sources."recast-0.15.3" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."regenerator-runtime-0.12.1"
+ (sources."regex-not-1.0.2" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ (sources."request-2.88.0" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."request-promise-core-1.1.1"
+ sources."request-promise-native-1.0.5"
+ sources."resolve-1.8.1"
+ sources."resolve-url-0.2.1"
+ sources."restore-cursor-2.0.0"
+ sources."ret-0.1.15"
+ sources."retry-0.10.1"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rxjs-6.2.2"
+ sources."safe-buffer-5.1.1"
+ sources."safe-regex-1.1.0"
+ sources."safer-buffer-2.1.2"
+ (sources."seek-bzip-1.0.5" // {
+ dependencies = [
+ sources."commander-2.8.1"
+ ];
+ })
+ sources."select-1.1.2"
+ sources."semver-5.5.1"
+ sources."semver-diff-2.1.0"
+ (sources."send-0.16.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."serve-static-1.13.2"
+ sources."set-immediate-shim-1.0.1"
+ sources."set-value-2.0.0"
+ sources."setprototypeof-1.1.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."shell-quote-1.6.1"
+ sources."shellwords-0.1.1"
+ sources."shortid-2.2.13"
+ sources."signal-exit-3.0.2"
+ sources."slash-2.0.0"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."split-0.3.3"
+ (sources."split-string-3.1.0" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."statuses-1.5.0"
+ sources."stealthy-require-1.1.1"
+ sources."steno-0.4.4"
+ sources."stream-combiner-0.0.4"
+ sources."streamsearch-0.1.2"
+ sources."string-width-2.1.1"
+ sources."string.prototype.padstart-3.0.0"
+ sources."string_decoder-0.10.31"
+ sources."strip-ansi-4.0.0"
+ sources."strip-dirs-2.1.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."strip-outer-1.0.1"
+ sources."subscriptions-transport-ws-0.9.14"
+ sources."supports-color-5.5.0"
+ sources."symbol-observable-1.2.0"
+ (sources."tar-stream-1.6.1" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.6"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ (sources."term-size-1.2.0" // {
+ dependencies = [
+ sources."execa-0.7.0"
+ ];
+ })
+ sources."terminate-2.1.0"
+ sources."through-2.3.8"
+ sources."timed-out-4.0.1"
+ sources."tiny-emitter-2.0.2"
+ sources."tmp-0.0.33"
+ sources."to-buffer-1.1.1"
+ (sources."to-object-path-0.3.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."to-regex-3.0.2" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."to-regex-range-2.1.1"
+ sources."topo-3.0.0"
+ sources."touch-3.1.0"
+ (sources."tough-cookie-2.4.3" // {
+ dependencies = [
+ sources."punycode-1.4.1"
+ ];
+ })
+ sources."trim-repeated-1.0.0"
+ sources."tslib-1.9.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ sources."unbzip2-stream-1.2.5"
+ (sources."undefsafe-2.0.2" // {
+ 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."universalify-0.1.2"
+ sources."unpipe-1.0.0"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ sources."isarray-1.0.0"
+ ];
+ })
+ sources."unzip-response-2.0.1"
+ sources."upath-1.1.0"
+ sources."update-notifier-2.5.0"
+ sources."urix-0.1.0"
+ sources."url-parse-lax-1.0.0"
+ sources."url-to-options-1.0.1"
+ sources."use-3.1.1"
+ sources."util-deprecate-1.0.2"
+ sources."util.promisify-1.0.0"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.3.2"
+ sources."validate-npm-package-name-3.0.0"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."vue-cli-plugin-apollo-0.14.6"
+ sources."watch-1.0.2"
+ sources."wcwidth-1.0.1"
+ sources."which-1.3.1"
+ sources."widest-line-2.0.0"
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.3.0"
+ sources."ws-5.2.2"
+ sources."xdg-basedir-3.0.0"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
+ (sources."yaml-front-matter-3.4.1" // {
+ dependencies = [
+ sources."commander-1.0.0"
+ ];
+ })
+ sources."yauzl-2.10.0"
+ sources."zen-observable-0.8.9"
+ sources."zen-observable-ts-0.8.9"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Command line interface for rapid Vue.js development";
+ homepage = https://cli.vuejs.org/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ webdrvr = nodeEnv.buildNodePackage {
+ name = "webdrvr";
+ packageName = "webdrvr";
+ version = "2.43.0-1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webdrvr/-/webdrvr-2.43.0-1.tgz";
+ sha1 = "17c442b94c0a6a3a68293d6ea4deb408f8cb9225";
+ };
+ dependencies = [
+ sources."abbrev-1.1.1"
+ sources."adm-zip-0.4.11"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."asn1-0.2.4"
+ sources."assert-plus-0.2.0"
+ sources."async-2.6.1"
+ sources."aws-sign2-0.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bl-1.0.3"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.11"
+ sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
+ sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ 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" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."debug-0.7.4"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."extend-3.0.2"
+ (sources."extract-zip-1.5.0" // {
+ dependencies = [
+ sources."mkdirp-0.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.2.0"
+ sources."generate-object-property-1.2.0"
+ (sources."getpass-0.1.7" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."glob-7.1.3"
+ 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-ip-valid-1.0.0"
+ sources."is-my-json-valid-2.19.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."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.10"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ 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."performance-now-2.1.0"
- sources."process-nextick-args-2.0.0"
- sources."pseudomap-1.0.2"
- sources."qs-6.5.2"
- sources."quicktask-1.1.0"
- sources."raf-3.3.2"
- sources."readable-stream-2.3.6"
- 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."safe-buffer-5.1.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."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."rimraf-2.6.2"
sources."safer-buffer-2.1.2"
- sources."setimmediate-1.0.5"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- sources."snabbdom-0.7.0"
- sources."snabbdom-selector-1.2.1"
- sources."sorted-immutable-list-1.1.0"
- (sources."string-width-2.1.1" // {
+ sources."semver-2.3.2"
+ sources."sntp-1.0.9"
+ (sources."sshpk-1.14.2" // {
dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
+ sources."assert-plus-1.0.0"
];
})
- sources."string_decoder-1.1.1"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.6"
sources."strip-ansi-3.0.1"
- sources."superagent-3.8.2"
sources."supports-color-2.0.0"
- sources."symbol-observable-1.2.0"
- sources."through-2.3.8"
+ sources."throttleit-1.0.0"
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.9.1"
sources."util-deprecate-1.0.2"
- (sources."variable-diff-1.1.0" // {
+ (sources."verror-1.10.0" // {
dependencies = [
- sources."chalk-1.1.3"
+ sources."assert-plus-1.0.0"
];
})
- sources."which-1.3.1"
- sources."xstream-11.7.0"
- sources."yallist-2.1.2"
+ sources."which-1.2.14"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yauzl-2.4.1"
];
buildInputs = globalBuildInputs;
meta = {
- description = "Create Cycle.js with no build configuration.";
- homepage = "https://github.com/cyclejs-community/create-cycle-app#readme";
- license = "ISC";
+ description = "NPM wrapper for Selenium Webdriver including Chromedriver / IEDriver / IOSDriver / Ghostdriver";
+ homepage = https://github.com/uxebu/webdrvr;
+ license = "MIT";
};
production = true;
bypassCache = true;
};
- dat = nodeEnv.buildNodePackage {
- name = "dat";
- packageName = "dat";
- version = "13.11.3";
+ webpack = nodeEnv.buildNodePackage {
+ name = "webpack";
+ packageName = "webpack";
+ version = "4.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dat/-/dat-13.11.3.tgz";
- sha512 = "YOp0II25xNPlD06/RGB5q1x244em2Sh2FdhWECnikZalmOBaujeRRJFfjbd0f5buQfapmebvTT4FVRZTZLB2HQ==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-4.17.1.tgz";
+ sha512 = "vdPYogljzWPhFKDj3Gcp01Vqgu7K3IQlybc3XIdKSQHelK1C3eIQuysEUR7MxKJmdandZlQB/9BG2Jb1leJHaw==";
};
dependencies = [
- sources."abstract-random-access-1.1.2"
- sources."ajv-5.5.2"
- sources."ansi-align-2.0.0"
- sources."ansi-diff-1.1.1"
- sources."ansi-regex-3.0.0"
- sources."ansi-split-1.0.1"
- sources."ansi-styles-3.2.1"
- sources."anymatch-1.3.2"
- sources."ap-0.1.0"
- (sources."append-tree-2.4.4" // {
+ sources."@webassemblyjs/ast-1.5.13"
+ sources."@webassemblyjs/floating-point-hex-parser-1.5.13"
+ sources."@webassemblyjs/helper-api-error-1.5.13"
+ sources."@webassemblyjs/helper-buffer-1.5.13"
+ sources."@webassemblyjs/helper-code-frame-1.5.13"
+ sources."@webassemblyjs/helper-fsm-1.5.13"
+ sources."@webassemblyjs/helper-module-context-1.5.13"
+ sources."@webassemblyjs/helper-wasm-bytecode-1.5.13"
+ sources."@webassemblyjs/helper-wasm-section-1.5.13"
+ sources."@webassemblyjs/ieee754-1.5.13"
+ (sources."@webassemblyjs/leb128-1.5.13" // {
dependencies = [
- sources."process-nextick-args-1.0.7"
- sources."varint-5.0.0"
+ sources."long-4.0.0"
];
})
- sources."arr-diff-2.0.0"
+ sources."@webassemblyjs/utf8-1.5.13"
+ sources."@webassemblyjs/wasm-edit-1.5.13"
+ sources."@webassemblyjs/wasm-gen-1.5.13"
+ sources."@webassemblyjs/wasm-opt-1.5.13"
+ sources."@webassemblyjs/wasm-parser-1.5.13"
+ sources."@webassemblyjs/wast-parser-1.5.13"
+ sources."@webassemblyjs/wast-printer-1.5.13"
+ sources."acorn-5.7.2"
+ sources."acorn-dynamic-import-3.0.0"
+ sources."ajv-6.5.3"
+ sources."ajv-keywords-3.2.0"
+ sources."anymatch-2.0.0"
+ sources."aproba-1.2.0"
+ sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
- sources."array-lru-1.1.1"
- sources."array-unique-0.2.1"
- sources."asn1-0.2.4"
- 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.8.0"
+ sources."arr-union-3.1.0"
+ sources."array-unique-0.3.2"
+ sources."asn1.js-4.10.1"
+ (sources."assert-1.4.1" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ sources."util-0.10.3"
+ ];
+ })
+ sources."assign-symbols-1.0.0"
+ sources."async-each-1.0.1"
+ sources."atob-2.1.2"
sources."balanced-match-1.0.0"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bencode-1.0.0"
- (sources."bitfield-rle-2.1.0" // {
+ (sources."base-0.11.2" // {
dependencies = [
- sources."varint-4.0.1"
+ sources."define-property-1.0.0"
];
})
- sources."bittorrent-dht-7.10.0"
- sources."blake2b-2.1.2"
- sources."blake2b-wasm-1.1.7"
- sources."body-0.1.0"
- sources."boxen-1.3.0"
+ sources."base64-js-1.3.0"
+ sources."big.js-3.2.0"
+ sources."binary-extensions-1.11.0"
+ sources."bluebird-3.5.1"
+ sources."bn.js-4.11.8"
sources."brace-expansion-1.1.11"
- sources."braces-1.8.5"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-equals-1.0.4"
- sources."buffer-fill-1.0.0"
- sources."buffer-from-1.1.1"
- sources."bulk-write-stream-1.1.4"
- sources."bytes-3.0.0"
- sources."call-me-maybe-1.0.1"
- sources."camelcase-4.1.0"
- sources."capture-stack-trace-1.0.0"
- sources."caseless-0.12.0"
- sources."chalk-2.4.1"
- sources."ci-info-1.1.3"
- sources."circular-append-file-1.0.1"
- sources."cli-boxes-1.0.0"
- sources."cli-spinners-1.3.1"
- sources."cli-truncate-1.1.0"
- sources."cliclopts-1.1.1"
- sources."co-4.6.0"
- sources."codecs-1.2.1"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."colors-1.3.1"
- sources."combined-stream-1.0.6"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."configstore-3.1.2"
- sources."connections-1.4.2"
- sources."content-types-0.1.0"
- sources."core-util-is-1.0.2"
- sources."corsify-2.1.0"
- sources."create-error-class-3.0.2"
- sources."cross-spawn-5.1.0"
- sources."crypto-random-string-1.0.0"
- sources."cycle-1.0.3"
- sources."dashdash-1.14.1"
- (sources."dat-dns-3.0.2" // {
+ (sources."braces-2.3.2" // {
dependencies = [
- sources."debug-2.6.9"
+ sources."extend-shallow-2.0.1"
];
})
- sources."dat-doctor-2.0.0"
- sources."dat-encoding-5.0.1"
- sources."dat-ignore-2.1.1"
- (sources."dat-json-1.0.2" // {
+ sources."brorand-1.1.0"
+ sources."browserify-aes-1.2.0"
+ sources."browserify-cipher-1.0.1"
+ sources."browserify-des-1.0.2"
+ 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-from-1.1.1"
+ sources."buffer-xor-1.0.3"
+ sources."builtin-status-codes-3.0.0"
+ sources."cacache-10.0.4"
+ sources."cache-base-1.0.1"
+ sources."chokidar-2.0.4"
+ sources."chownr-1.0.1"
+ sources."chrome-trace-event-1.0.0"
+ sources."cipher-base-1.0.4"
+ (sources."class-utils-0.3.6" // {
dependencies = [
- sources."dat-encoding-4.0.2"
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
];
})
- sources."dat-link-resolve-2.2.0"
- sources."dat-log-1.2.0"
- sources."dat-node-3.5.12"
- sources."dat-registry-4.0.0"
- sources."dat-secret-storage-4.0.1"
- sources."dat-storage-1.0.4"
- sources."dat-swarm-defaults-1.0.1"
+ sources."collection-visit-1.0.0"
+ sources."commander-2.14.1"
+ sources."commondir-1.0.1"
+ sources."component-emitter-1.2.1"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.2"
+ sources."console-browserify-1.1.0"
+ sources."constants-browserify-1.0.0"
+ sources."copy-concurrently-1.0.5"
+ sources."copy-descriptor-0.1.1"
+ sources."core-util-is-1.0.2"
+ sources."create-ecdh-4.0.3"
+ sources."create-hash-1.2.0"
+ sources."create-hmac-1.1.7"
+ sources."crypto-browserify-3.12.0"
+ sources."cyclist-0.2.2"
+ sources."date-now-0.1.4"
sources."debug-3.1.0"
- sources."deep-equal-0.2.2"
- sources."deep-extend-0.6.0"
- sources."delayed-stream-1.0.0"
- sources."diffy-2.0.0"
- sources."directory-index-html-2.1.0"
- (sources."discovery-channel-5.5.1" // {
+ sources."decode-uri-component-0.2.0"
+ sources."define-property-2.0.2"
+ sources."des.js-1.0.0"
+ sources."diffie-hellman-5.0.3"
+ sources."domain-browser-1.2.0"
+ sources."duplexify-3.6.0"
+ sources."elliptic-6.4.1"
+ sources."emojis-list-2.1.0"
+ sources."end-of-stream-1.4.1"
+ sources."enhanced-resolve-4.1.0"
+ sources."errno-0.1.7"
+ sources."eslint-scope-4.0.0"
+ sources."esrecurse-4.2.1"
+ sources."estraverse-4.2.0"
+ sources."events-1.1.1"
+ sources."evp_bytestokey-1.0.3"
+ (sources."expand-brackets-2.1.4" // {
dependencies = [
sources."debug-2.6.9"
- sources."thunky-0.1.0"
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
];
})
- sources."discovery-swarm-5.1.2"
- (sources."dns-discovery-6.1.0" // {
+ (sources."extend-shallow-3.0.2" // {
dependencies = [
- sources."debug-2.6.9"
- sources."lru-2.0.1"
+ sources."is-extendable-1.0.1"
];
})
- sources."dns-packet-4.2.0"
- sources."dns-socket-3.0.0"
- sources."dom-walk-0.1.1"
- sources."dot-prop-4.2.0"
- sources."duplexer3-0.1.4"
- sources."duplexify-3.6.0"
- sources."ecc-jsbn-0.1.2"
- sources."end-of-stream-1.4.1"
- sources."escape-string-regexp-1.0.5"
- sources."execa-0.7.0"
- sources."expand-brackets-0.1.5"
- sources."expand-range-1.8.2"
- sources."extend-3.0.2"
- sources."extglob-0.3.2"
- sources."extsprintf-1.3.0"
- sources."eyes-0.1.8"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."fd-read-stream-1.1.0"
- sources."figures-2.0.0"
- sources."filename-regex-2.0.1"
- sources."fill-range-2.2.4"
- sources."flat-tree-1.6.0"
- sources."for-each-0.3.3"
- sources."for-in-1.0.2"
- sources."for-own-0.1.5"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."from2-2.3.0"
- sources."fs.realpath-1.0.0"
- sources."get-stream-3.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."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-3.0.0"
- sources."http-methods-0.1.0"
- sources."http-signature-1.2.0"
- (sources."hypercore-6.18.1" // {
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."fast-deep-equal-2.0.1"
+ sources."fast-json-stable-stringify-2.0.0"
+ (sources."fill-range-4.0.0" // {
dependencies = [
- sources."process-nextick-args-1.0.7"
- sources."unordered-set-2.0.1"
+ sources."extend-shallow-2.0.1"
];
})
- sources."hypercore-crypto-1.0.0"
- (sources."hypercore-protocol-6.6.4" // {
+ sources."find-cache-dir-1.0.0"
+ sources."find-up-2.1.0"
+ sources."flush-write-stream-1.0.3"
+ sources."for-in-1.0.2"
+ sources."fragment-cache-0.2.1"
+ sources."from2-2.3.0"
+ sources."fs-write-stream-atomic-1.0.10"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.2.4"
+ sources."get-value-2.0.6"
+ sources."glob-7.1.3"
+ (sources."glob-parent-3.1.0" // {
dependencies = [
- sources."varint-5.0.0"
+ sources."is-glob-3.1.0"
];
})
- sources."hyperdrive-9.14.0"
- sources."hyperdrive-http-4.3.3"
- sources."hyperdrive-network-speed-2.1.0"
- sources."i-0.3.6"
- sources."import-lazy-2.1.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."hash-base-3.0.4"
+ sources."hash.js-1.1.5"
+ sources."hmac-drbg-1.0.1"
+ sources."https-browserify-1.0.0"
+ sources."ieee754-1.1.12"
+ sources."iferr-0.1.5"
sources."imurmurhash-0.1.4"
+ sources."indexof-0.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
- sources."ini-1.3.5"
- sources."inspect-custom-symbol-1.1.0"
- sources."ip-1.1.5"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-callable-1.1.4"
- sources."is-ci-1.1.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
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-installed-globally-0.1.0"
- sources."is-npm-1.0.0"
- sources."is-number-2.1.0"
- sources."is-obj-1.0.1"
- sources."is-options-1.0.1"
- sources."is-path-inside-1.0.1"
- sources."is-posix-bracket-0.1.1"
- sources."is-primitive-2.0.0"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."is-stream-1.1.0"
- sources."is-string-1.0.4"
- 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."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.3.1" // {
- dependencies = [
- sources."k-bucket-4.0.1"
- ];
- })
- (sources."k-rpc-socket-1.8.0" // {
+ sources."is-extglob-2.1.1"
+ sources."is-glob-4.0.0"
+ (sources."is-number-3.0.0" // {
dependencies = [
- sources."bencode-2.0.0"
+ sources."kind-of-3.2.2"
];
})
- sources."keypress-0.2.1"
- sources."kind-of-3.2.2"
- sources."last-one-wins-1.0.4"
- sources."latest-version-3.1.0"
- sources."length-prefixed-message-3.0.3"
- sources."lodash.throttle-4.1.1"
- sources."lowercase-keys-1.0.1"
- sources."lru-3.1.0"
+ sources."is-plain-object-2.0.4"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isobject-3.0.1"
+ sources."json-parse-better-errors-1.0.2"
+ sources."json-schema-traverse-0.4.1"
+ sources."json5-0.5.1"
+ sources."kind-of-6.0.2"
+ sources."loader-runner-2.3.0"
+ sources."loader-utils-1.1.0"
+ sources."locate-path-2.0.0"
+ sources."lodash.debounce-4.0.8"
+ sources."long-3.2.0"
sources."lru-cache-4.1.3"
sources."make-dir-1.3.0"
- sources."math-random-1.0.1"
- sources."memory-pager-1.1.0"
- sources."menu-string-1.2.0"
- sources."merkle-tree-stream-3.0.3"
- sources."micromatch-2.3.11"
- sources."mime-2.3.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."min-document-2.19.0"
+ sources."mamacro-0.0.3"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ sources."md5.js-1.3.4"
+ sources."memory-fs-0.4.1"
+ sources."micromatch-3.1.10"
+ sources."miller-rabin-4.0.1"
+ sources."minimalistic-assert-1.0.1"
+ sources."minimalistic-crypto-utils-1.0.1"
sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- sources."mirror-folder-3.0.0"
- (sources."mkdirp-0.5.1" // {
+ sources."minimist-0.0.8"
+ sources."mississippi-2.0.0"
+ (sources."mixin-deep-1.3.1" // {
dependencies = [
- sources."minimist-0.0.8"
+ sources."is-extendable-1.0.1"
];
})
+ sources."mkdirp-0.5.1"
+ sources."move-concurrently-1.0.1"
sources."ms-2.0.0"
- sources."multi-random-access-2.1.1"
- sources."multicast-dns-7.0.0"
- sources."multicb-1.2.2"
- sources."multistream-2.1.1"
- sources."mute-stream-0.0.7"
- sources."mutexify-1.2.0"
- sources."nan-2.10.0"
- sources."nanoassert-1.1.0"
- sources."nanobus-4.3.3"
- sources."nanoscheduler-1.0.3"
- sources."nanotiming-7.3.1"
- sources."ncp-1.0.1"
- sources."neat-input-1.8.0"
- sources."neat-log-2.4.0"
- sources."neat-spinner-1.0.0"
- sources."neat-tasks-1.1.1"
- sources."nets-3.2.0"
- sources."network-address-1.1.2"
- sources."node-gyp-build-3.4.0"
- sources."normalize-path-2.1.1"
- sources."npm-run-path-2.0.2"
- sources."oauth-sign-0.8.2"
- sources."object.omit-2.0.1"
- sources."once-1.4.0"
- sources."os-homedir-1.0.2"
- sources."p-finally-1.0.0"
- sources."package-json-4.0.1"
- sources."parse-glob-3.0.4"
- sources."parse-headers-2.0.1"
- sources."path-is-absolute-1.0.1"
- sources."path-is-inside-1.0.2"
- sources."path-key-2.0.1"
- sources."performance-now-2.1.0"
- sources."pify-3.0.0"
- sources."pkginfo-0.4.1"
- sources."prepend-http-1.0.4"
- 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-2.0.0"
- sources."progress-string-1.2.2"
- sources."prompt-1.0.0"
- (sources."protocol-buffers-encodings-1.1.0" // {
+ sources."nan-2.11.0"
+ sources."nanomatch-1.2.13"
+ sources."neo-async-2.5.2"
+ (sources."node-libs-browser-2.1.0" // {
dependencies = [
- sources."varint-5.0.0"
+ sources."punycode-1.4.1"
];
})
- sources."pseudomap-1.0.2"
- sources."pump-3.0.0"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."random-access-file-2.0.1"
- sources."random-access-memory-3.0.0"
- sources."random-access-storage-1.3.0"
- (sources."randomatic-3.1.0" // {
+ sources."normalize-path-2.1.1"
+ (sources."object-copy-0.1.0" // {
dependencies = [
- sources."is-number-4.0.0"
- sources."kind-of-6.0.2"
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-3.2.2"
];
})
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."once-1.4.0"
+ sources."os-browserify-0.3.0"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."pako-1.0.6"
+ sources."parallel-transform-1.1.0"
+ sources."parse-asn1-5.1.1"
+ sources."pascalcase-0.1.1"
+ sources."path-browserify-0.0.0"
+ sources."path-dirname-1.0.2"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."pbkdf2-3.0.16"
+ sources."pify-3.0.0"
+ sources."pkg-dir-2.0.0"
+ sources."posix-character-classes-0.1.1"
+ sources."process-0.11.10"
+ sources."process-nextick-args-2.0.0"
+ sources."promise-inflight-1.0.1"
+ sources."prr-1.0.1"
+ sources."pseudomap-1.0.2"
+ sources."public-encrypt-4.0.2"
+ sources."pump-2.0.1"
+ sources."pumpify-1.5.1"
+ sources."punycode-2.1.1"
+ sources."querystring-0.2.0"
+ sources."querystring-es3-0.2.1"
sources."randombytes-2.0.6"
- sources."range-parser-1.2.0"
- sources."rc-1.2.8"
- sources."read-1.0.7"
+ sources."randomfill-1.0.4"
sources."readable-stream-2.3.6"
- sources."recursive-watch-1.1.4"
- sources."regex-cache-0.4.4"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
- sources."remove-array-items-1.0.0"
+ sources."readdirp-2.1.0"
+ sources."regex-not-1.0.2"
sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.2"
+ sources."repeat-element-1.1.3"
sources."repeat-string-1.6.1"
- sources."request-2.87.0"
- sources."revalidator-0.1.8"
+ sources."resolve-url-0.2.1"
+ sources."ret-0.1.15"
sources."rimraf-2.6.2"
- sources."rusha-0.8.13"
+ sources."ripemd160-2.0.2"
+ sources."run-queue-1.0.3"
sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."semver-5.5.0"
- 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."signed-varint-2.0.1" // {
+ sources."safe-regex-1.1.0"
+ sources."schema-utils-0.4.7"
+ sources."serialize-javascript-1.5.0"
+ sources."set-immediate-shim-1.0.1"
+ (sources."set-value-2.0.0" // {
dependencies = [
- sources."varint-5.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."setimmediate-1.0.5"
+ sources."sha.js-2.4.11"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ (sources."snapdragon-util-3.0.1" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."source-list-map-2.0.0"
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ sources."source-map-url-0.4.0"
+ sources."split-string-3.1.0"
+ sources."ssri-5.3.0"
+ (sources."static-extend-0.1.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
];
})
- sources."simple-sha1-2.1.1"
- sources."siphash24-1.1.1"
- sources."slice-ansi-1.0.0"
- sources."sodium-javascript-0.5.5"
- sources."sodium-native-2.2.1"
- sources."sodium-universal-2.0.0"
- sources."sorted-array-functions-1.2.0"
- sources."sorted-indexof-1.0.0"
- sources."sparse-bitfield-3.0.3"
- sources."speedometer-1.1.0"
- sources."sshpk-1.14.2"
- sources."stack-trace-0.0.10"
- sources."stream-collector-1.0.1"
+ sources."stream-browserify-2.0.1"
sources."stream-each-1.2.3"
- (sources."stream-parser-0.3.1" // {
+ sources."stream-http-2.8.3"
+ sources."stream-shift-1.0.0"
+ sources."string_decoder-1.1.1"
+ sources."tapable-1.0.0"
+ sources."through2-2.0.3"
+ sources."timers-browserify-2.0.10"
+ sources."to-arraybuffer-1.0.1"
+ (sources."to-object-path-0.3.0" // {
dependencies = [
- sources."debug-2.6.9"
+ sources."kind-of-3.2.2"
];
})
- sources."stream-shift-1.0.0"
- sources."string-width-2.1.1"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-4.0.0"
- sources."strip-eof-1.0.0"
- sources."strip-json-comments-2.0.1"
- (sources."subcommand-2.1.0" // {
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
+ sources."tslib-1.9.3"
+ sources."tty-browserify-0.0.0"
+ sources."typedarray-0.0.6"
+ (sources."uglify-es-3.3.10" // {
dependencies = [
- sources."debug-2.6.9"
+ sources."source-map-0.6.1"
];
})
- sources."supports-color-5.4.0"
- sources."term-size-1.2.0"
- sources."throttle-1.0.3"
- sources."thunky-1.0.2"
- sources."timed-out-4.0.1"
- sources."to-buffer-1.1.1"
- (sources."toiletdb-1.4.1" // {
+ (sources."uglifyjs-webpack-plugin-1.3.0" // {
dependencies = [
- sources."debug-2.6.9"
+ sources."source-map-0.6.1"
];
})
- sources."tough-cookie-2.3.4"
- 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.2"
- sources."unique-string-1.0.0"
- sources."unixify-1.0.0"
- sources."unordered-array-remove-1.0.2"
- sources."unordered-set-1.1.0"
- sources."untildify-3.0.3"
- sources."unzip-response-2.0.1"
- sources."update-notifier-2.5.0"
- sources."url-parse-lax-1.0.0"
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ sources."set-value-0.4.3"
+ ];
+ })
+ sources."unique-filename-1.1.0"
+ sources."unique-slug-2.0.0"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
+ ];
+ })
+ sources."upath-1.1.0"
+ sources."uri-js-4.2.2"
+ sources."urix-0.1.0"
+ (sources."url-0.11.0" // {
+ dependencies = [
+ sources."punycode-1.3.2"
+ ];
+ })
+ sources."use-3.1.1"
+ sources."util-0.10.4"
sources."util-deprecate-1.0.2"
- sources."utile-0.3.0"
- sources."utp-native-1.7.2"
- sources."uuid-3.3.2"
- sources."varint-3.0.1"
- sources."verror-1.10.0"
- sources."which-1.3.1"
- sources."widest-line-2.0.0"
- (sources."winston-2.1.1" // {
+ sources."vm-browserify-0.0.4"
+ sources."watchpack-1.6.0"
+ (sources."webpack-sources-1.1.0" // {
dependencies = [
- sources."async-1.0.0"
- sources."colors-1.0.3"
- sources."pkginfo-0.3.1"
+ sources."source-map-0.6.1"
];
})
+ sources."worker-farm-1.6.0"
sources."wrappy-1.0.2"
- sources."write-file-atomic-2.3.0"
- sources."xdg-basedir-3.0.0"
- sources."xhr-2.5.0"
- sources."xsalsa20-1.0.2"
sources."xtend-4.0.1"
+ sources."y18n-4.0.0"
sources."yallist-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
- description = "Dat is the package manager for data. Easily share and version control data.";
- homepage = https://datproject.org/;
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = true;
- };
- grunt-cli = nodeEnv.buildNodePackage {
- name = "grunt-cli";
- packageName = "grunt-cli";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz";
- sha1 = "562b119ebb069ddb464ace2845501be97b35b6a8";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."concat-map-0.0.1"
- sources."findup-sync-0.3.0"
- 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"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "The grunt command line interface";
- homepage = "https://github.com/gruntjs/grunt-cli#readme";
+ description = "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.";
+ homepage = https://github.com/webpack/webpack;
license = "MIT";
};
production = true;
bypassCache = true;
};
- mocha = nodeEnv.buildNodePackage {
- name = "mocha";
- packageName = "mocha";
- version = "5.2.0";
+ webtorrent-cli = nodeEnv.buildNodePackage {
+ name = "webtorrent-cli";
+ packageName = "webtorrent-cli";
+ version = "1.12.3";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz";
- sha512 = "2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==";
+ url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-1.12.3.tgz";
+ sha512 = "NnBAGkD64CRsl9edM9q0QU+ku6nCX32nM0U+YC8Gs/36c8y+5m9Tya3mWIux3oZKZ54yGiVtnok4tUpqDE5tMA==";
};
dependencies = [
+ sources."addr-to-ip-port-1.5.1"
+ sources."airplay-js-0.3.0"
+ sources."ascli-0.3.0"
+ sources."async-limiter-1.0.0"
sources."balanced-match-1.0.0"
+ sources."bencode-2.0.0"
+ sources."binary-search-1.3.4"
+ sources."bitfield-2.0.0"
+ (sources."bittorrent-dht-8.4.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."bittorrent-peerid-1.3.0"
+ (sources."bittorrent-protocol-3.0.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."bittorrent-tracker-9.10.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."simple-get-3.0.3"
+ ];
+ })
+ sources."blob-to-buffer-1.2.8"
+ sources."block-stream2-1.1.0"
+ sources."bn.js-4.11.8"
sources."brace-expansion-1.1.11"
- sources."browser-stdout-1.3.1"
- sources."commander-2.15.1"
+ sources."browserify-package-json-1.0.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-equals-1.0.4"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.1"
+ sources."buffer-indexof-1.1.1"
+ sources."bufferutil-4.0.0"
+ sources."bufferview-1.0.1"
+ sources."bytebuffer-3.5.5"
+ sources."castv2-0.1.9"
+ sources."castv2-client-1.2.0"
+ (sources."chromecasts-1.9.1" // {
+ dependencies = [
+ sources."mime-1.6.0"
+ ];
+ })
+ sources."chunk-store-stream-3.0.1"
+ sources."clivas-0.2.0"
+ sources."closest-to-2.0.0"
+ sources."colour-0.7.1"
+ sources."compact2string-1.4.0"
sources."concat-map-0.0.1"
- sources."debug-3.1.0"
- sources."diff-3.5.0"
- sources."escape-string-regexp-1.0.5"
+ sources."concat-stream-1.6.2"
+ sources."core-util-is-1.0.2"
+ sources."create-torrent-3.32.1"
+ sources."debug-2.6.9"
+ sources."decompress-response-3.3.0"
+ sources."defined-1.0.0"
+ (sources."dlnacasts-0.1.0" // {
+ dependencies = [
+ sources."mime-1.6.0"
+ ];
+ })
+ sources."dns-packet-1.3.1"
+ sources."dns-txt-2.0.2"
+ (sources."ecstatic-3.2.1" // {
+ dependencies = [
+ sources."mime-1.6.0"
+ ];
+ })
+ sources."elementtree-0.1.7"
+ sources."end-of-stream-1.4.1"
+ sources."executable-4.1.1"
+ sources."filestream-4.1.3"
+ sources."flatten-1.0.2"
+ (sources."fs-chunk-store-1.7.0" // {
+ dependencies = [
+ sources."thunky-1.0.2"
+ ];
+ })
sources."fs.realpath-1.0.0"
- sources."glob-7.1.2"
- sources."growl-1.10.5"
- sources."has-flag-3.0.0"
+ sources."get-browser-rtc-1.0.2"
+ sources."get-stdin-6.0.0"
+ sources."glob-7.1.3"
sources."he-1.1.1"
+ sources."immediate-chunk-store-2.0.0"
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.8.1"
+ sources."is-ascii-1.0.0"
+ sources."is-file-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."junk-2.1.0"
+ sources."k-bucket-4.0.1"
+ sources."k-rpc-5.0.0"
+ sources."k-rpc-socket-1.8.0"
+ sources."last-one-wins-1.0.4"
+ (sources."load-ip-set-2.1.0" // {
+ dependencies = [
+ sources."simple-get-3.0.3"
+ ];
+ })
+ sources."long-2.4.0"
+ sources."lru-3.1.0"
+ sources."magnet-uri-5.2.3"
+ sources."mdns-js-0.5.0"
+ sources."mdns-js-packet-0.2.0"
+ sources."mediasource-2.2.2"
+ sources."memory-chunk-store-1.3.0"
+ sources."mime-2.3.1"
+ sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
+ sources."minimist-1.2.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."moment-2.22.2"
+ sources."mp4-box-encoding-1.3.0"
+ sources."mp4-stream-2.0.3"
sources."ms-2.0.0"
+ (sources."multicast-dns-6.2.3" // {
+ dependencies = [
+ sources."thunky-1.0.2"
+ ];
+ })
+ sources."multistream-2.1.1"
+ sources."netmask-1.0.6"
+ sources."network-address-1.1.2"
+ sources."next-event-1.0.0"
+ sources."node-gyp-build-3.4.0"
+ sources."node-ssdp-2.9.1"
+ sources."nodebmc-0.0.7"
sources."once-1.4.0"
+ sources."open-0.0.5"
+ sources."optjs-3.2.2"
+ sources."package-json-versionify-1.0.4"
+ sources."parse-numeric-range-0.0.2"
+ (sources."parse-torrent-6.1.2" // {
+ dependencies = [
+ sources."simple-get-3.0.3"
+ ];
+ })
sources."path-is-absolute-1.0.1"
- sources."supports-color-5.4.0"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "simple, flexible, fun test framework";
- homepage = https://mochajs.org/;
- license = "MIT";
- };
- production = true;
- bypassCache = true;
- };
- nijs = nodeEnv.buildNodePackage {
- name = "nijs";
- packageName = "nijs";
- version = "0.0.25";
- src = fetchurl {
- url = "https://registry.npmjs.org/nijs/-/nijs-0.0.25.tgz";
- sha1 = "04b035cb530d46859d1018839a518c029133f676";
- };
- dependencies = [
- sources."optparse-1.0.5"
- sources."slasp-0.0.4"
+ sources."piece-length-1.0.0"
+ sources."pify-2.3.0"
+ (sources."plist-with-patches-0.5.1" // {
+ dependencies = [
+ sources."xmlbuilder-0.4.3"
+ ];
+ })
+ sources."prettier-bytes-1.0.4"
+ sources."process-nextick-args-2.0.0"
+ sources."protobufjs-3.8.2"
+ sources."pump-3.0.0"
+ sources."qap-3.3.1"
+ sources."random-access-file-2.0.1"
+ sources."random-access-storage-1.3.0"
+ sources."random-iterate-1.0.1"
+ sources."randombytes-2.0.6"
+ sources."range-parser-1.2.0"
+ sources."range-slice-stream-1.2.0"
+ sources."readable-stream-2.3.6"
+ sources."record-cache-1.1.0"
+ (sources."render-media-3.1.3" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."rimraf-2.6.2"
+ sources."run-parallel-1.1.9"
+ sources."run-parallel-limit-1.0.5"
+ sources."run-series-1.1.8"
+ sources."rusha-0.8.13"
+ sources."safe-buffer-5.1.2"
+ sources."sax-1.1.4"
+ sources."semver-5.1.1"
+ sources."simple-concat-1.0.0"
+ sources."simple-get-2.8.1"
+ (sources."simple-peer-9.1.2" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."simple-sha1-2.1.1"
+ (sources."simple-websocket-7.2.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."speedometer-1.1.0"
+ sources."split-1.0.1"
+ sources."stream-to-blob-1.0.1"
+ sources."stream-to-blob-url-2.1.1"
+ sources."stream-with-known-length-to-buffer-1.0.2"
+ sources."string2compact-1.3.0"
+ sources."string_decoder-1.1.1"
+ sources."thirty-two-1.0.2"
+ sources."through-2.3.8"
+ sources."thunky-0.1.0"
+ sources."to-arraybuffer-1.0.1"
+ (sources."torrent-discovery-9.0.2" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."torrent-piece-2.0.0"
+ sources."typedarray-0.0.6"
+ sources."typedarray-to-buffer-3.1.5"
+ sources."uint64be-2.0.2"
+ sources."uniq-1.0.1"
+ sources."unordered-array-remove-1.0.2"
+ sources."upnp-device-client-1.0.2"
+ sources."upnp-mediarenderer-client-1.2.4"
+ sources."url-join-2.0.5"
+ (sources."ut_metadata-3.2.2" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."ut_pex-1.2.1"
+ sources."utf-8-validate-5.0.1"
+ sources."util-deprecate-1.0.2"
+ sources."videostream-2.5.1"
+ sources."vlc-command-1.1.1"
+ (sources."webtorrent-0.102.2" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."readable-stream-3.0.2"
+ sources."simple-get-3.0.3"
+ ];
+ })
+ sources."winreg-1.2.4"
+ sources."wrappy-1.0.2"
+ sources."ws-6.0.0"
+ sources."xml2js-0.4.19"
+ sources."xmlbuilder-9.0.7"
+ sources."xmldom-0.1.27"
+ sources."xtend-4.0.1"
+ sources."zero-fill-2.2.3"
];
buildInputs = globalBuildInputs;
meta = {
- description = "An internal DSL for the Nix package manager in JavaScript";
- homepage = "https://github.com/svanderburg/nijs#readme";
+ description = "WebTorrent, the streaming torrent client. For the command line.";
+ homepage = https://webtorrent.io/;
license = "MIT";
};
production = true;
bypassCache = true;
};
- node-gyp = nodeEnv.buildNodePackage {
- name = "node-gyp";
- packageName = "node-gyp";
- version = "3.8.0";
+ web-ext = nodeEnv.buildNodePackage {
+ name = "web-ext";
+ packageName = "web-ext";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz";
- sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==";
+ url = "https://registry.npmjs.org/web-ext/-/web-ext-2.8.0.tgz";
+ sha512 = "3JuPYU3yrefysm3pvGwRP5k9plRMPUeLo5KLp2TSnE9g4t7x6SeIWZEWWG3jwVeFsPQuIj3sAuVHEDO5ai9mCw==";
};
dependencies = [
+ sources."@cliqz-oss/firefox-client-0.3.1"
+ sources."@cliqz-oss/node-firefox-connect-1.2.1"
+ sources."@types/node-10.9.2"
+ sources."JSONSelect-0.2.1"
sources."abbrev-1.1.1"
- sources."ajv-5.5.2"
+ sources."acorn-5.7.2"
+ sources."acorn-jsx-4.1.1"
+ sources."adbkit-2.11.0"
+ sources."adbkit-logcat-1.1.0"
+ sources."adbkit-monkey-1.0.1"
+ (sources."addons-linter-1.2.6" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ sources."source-map-support-0.5.6"
+ sources."yargs-12.0.1"
+ ];
+ })
+ sources."adm-zip-0.4.11"
+ sources."agent-base-4.2.1"
+ sources."ajv-6.5.2"
+ sources."ajv-keywords-3.2.0"
+ sources."ajv-merge-patch-4.1.0"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."ansi-styles-2.2.1"
+ sources."ansicolors-0.3.2"
+ sources."any-promise-1.3.0"
+ sources."anymatch-2.0.0"
+ (sources."archiver-2.1.1" // {
+ dependencies = [
+ sources."async-2.6.1"
+ ];
+ })
+ sources."archiver-utils-1.3.0"
+ sources."archy-1.0.0"
+ sources."argparse-1.0.10"
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-differ-1.0.0"
+ sources."array-filter-0.0.1"
+ sources."array-from-2.1.1"
+ sources."array-map-0.0.0"
+ sources."array-reduce-0.0.0"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."array-unique-0.3.2"
+ sources."arrify-1.0.1"
+ sources."asap-2.0.6"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
+ sources."assign-symbols-1.0.0"
+ sources."ast-types-0.11.5"
+ sources."async-0.2.10"
+ sources."async-each-1.0.1"
sources."asynckit-0.4.0"
+ sources."atob-2.1.2"
sources."aws-sign2-0.7.0"
sources."aws4-1.8.0"
+ (sources."babel-code-frame-6.26.0" // {
+ dependencies = [
+ sources."chalk-1.1.3"
+ ];
+ })
+ sources."babel-core-6.26.3"
+ sources."babel-generator-6.26.1"
+ sources."babel-helpers-6.24.1"
+ sources."babel-messages-6.23.0"
+ (sources."babel-polyfill-6.26.0" // {
+ dependencies = [
+ sources."regenerator-runtime-0.10.5"
+ ];
+ })
+ (sources."babel-register-6.26.0" // {
+ dependencies = [
+ sources."source-map-support-0.4.18"
+ ];
+ })
+ 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."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."base64-js-1.3.0"
sources."bcrypt-pbkdf-1.0.2"
- sources."block-stream-0.0.9"
+ sources."binary-extensions-1.11.0"
+ sources."bl-1.2.2"
+ sources."bluebird-2.9.34"
+ sources."boolbase-1.0.0"
+ sources."boxen-1.3.0"
sources."brace-expansion-1.1.11"
+ (sources."braces-2.3.2" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."buffer-5.2.0"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-crc32-0.2.13"
+ sources."buffer-equal-constant-time-1.0.1"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.1"
+ sources."builtin-modules-1.1.1"
+ sources."bunyan-1.8.12"
+ sources."bytes-3.0.0"
+ sources."cache-base-1.0.1"
+ 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."chalk-2.4.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."chardet-0.4.2"
+ sources."cheerio-1.0.0-rc.2"
+ sources."chokidar-2.0.4"
+ sources."circular-json-0.3.3"
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ (sources."cliui-4.1.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."clone-1.0.4"
+ sources."clone-deep-0.3.0"
sources."co-4.6.0"
sources."code-point-at-1.1.0"
+ sources."collection-visit-1.0.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colors-0.5.1"
+ sources."columnify-1.5.4"
sources."combined-stream-1.0.6"
+ sources."commander-2.17.1"
+ sources."common-tags-1.8.0"
+ sources."component-emitter-1.2.1"
+ sources."compress-commons-1.2.2"
sources."concat-map-0.0.1"
- sources."console-control-strings-1.1.0"
+ sources."concat-stream-1.6.2"
+ sources."configstore-3.1.2"
+ sources."convert-source-map-1.5.1"
+ sources."copy-descriptor-0.1.1"
+ sources."core-js-2.5.7"
sources."core-util-is-1.0.2"
+ sources."crc-3.8.0"
+ sources."crc32-stream-2.0.0"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-6.0.5"
+ sources."crx-parser-0.1.2"
+ 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."data-uri-to-buffer-1.2.0"
+ sources."debounce-1.1.0"
+ sources."debug-2.6.9"
+ (sources."decamelize-2.0.0" // {
+ dependencies = [
+ sources."xregexp-4.0.0"
+ ];
+ })
+ sources."decode-uri-component-0.2.0"
+ sources."deep-equal-1.0.1"
+ sources."deep-extend-0.6.0"
+ sources."deep-is-0.1.3"
+ sources."deepcopy-0.6.3"
+ sources."deepmerge-2.1.1"
+ sources."defaults-1.0.3"
+ sources."define-properties-1.1.3"
+ sources."define-property-2.0.2"
+ sources."degenerator-1.0.4"
+ sources."del-2.2.2"
sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
+ sources."depd-1.1.2"
+ sources."detect-indent-4.0.0"
+ (sources."dispensary-0.21.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."async-2.6.1"
+ sources."chalk-2.4.1"
+ sources."pino-4.17.6"
+ sources."source-map-0.6.1"
+ sources."source-map-support-0.5.9"
+ sources."supports-color-5.5.0"
+ sources."yargs-12.0.1"
+ ];
+ })
+ sources."doctrine-2.1.0"
+ (sources."dom-serializer-0.1.0" // {
+ dependencies = [
+ sources."domelementtype-1.1.3"
+ ];
+ })
+ sources."domelementtype-1.3.0"
+ sources."domhandler-2.4.2"
+ sources."domutils-1.5.1"
+ sources."dot-prop-4.2.0"
+ sources."dtrace-provider-0.8.7"
+ sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
+ sources."ecdsa-sig-formatter-1.0.10"
+ sources."email-validator-2.0.4"
+ sources."encoding-0.1.12"
+ sources."end-of-stream-1.4.1"
+ sources."entities-1.1.1"
+ sources."error-ex-1.3.2"
+ sources."es-abstract-1.12.0"
+ sources."es-to-primitive-1.1.1"
+ sources."es5-ext-0.10.46"
+ sources."es6-error-4.1.1"
+ sources."es6-iterator-2.0.3"
+ sources."es6-map-0.1.5"
+ sources."es6-promise-2.3.0"
+ (sources."es6-promisify-5.0.0" // {
+ dependencies = [
+ sources."es6-promise-4.2.4"
+ ];
+ })
+ 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."escodegen-1.11.0" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."escope-3.6.0"
+ (sources."eslint-5.0.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."debug-3.1.0"
+ sources."globals-11.7.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ (sources."eslint-plugin-no-unsafe-innerhtml-1.0.16" // {
+ dependencies = [
+ sources."acorn-3.3.0"
+ sources."acorn-jsx-3.0.1"
+ sources."ajv-4.11.8"
+ sources."ajv-keywords-1.5.1"
+ sources."ansi-escapes-1.4.0"
+ sources."ansi-regex-3.0.0"
+ sources."chalk-1.1.3"
+ sources."cli-cursor-1.0.2"
+ sources."eslint-3.19.0"
+ sources."espree-3.5.4"
+ sources."figures-1.7.0"
+ sources."inquirer-0.12.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."onetime-1.1.0"
+ sources."pluralize-1.2.1"
+ sources."progress-1.1.8"
+ sources."restore-cursor-1.0.1"
+ sources."run-async-0.1.0"
+ sources."shelljs-0.7.8"
+ sources."slice-ansi-0.0.4"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-4.0.0"
+ (sources."table-3.8.3" // {
+ dependencies = [
+ sources."string-width-2.1.1"
+ ];
+ })
+ ];
+ })
+ sources."eslint-scope-4.0.0"
+ sources."eslint-visitor-keys-1.0.0"
+ sources."espree-4.0.0"
+ sources."esprima-3.1.3"
+ sources."esquery-1.0.1"
+ sources."esrecurse-4.2.1"
+ sources."estraverse-4.2.0"
+ sources."esutils-2.0.2"
+ sources."event-emitter-0.3.5"
+ sources."event-to-promise-0.8.0"
+ (sources."execa-0.7.0" // {
+ dependencies = [
+ sources."cross-spawn-5.1.0"
+ ];
+ })
+ sources."exit-hook-1.1.1"
+ (sources."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
sources."extend-3.0.2"
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."external-editor-2.2.0"
+ (sources."extglob-2.0.4" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ sources."extend-shallow-2.0.1"
+ ];
+ })
sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
+ sources."fast-deep-equal-2.0.1"
+ sources."fast-json-parse-1.0.3"
+ sources."fast-json-patch-2.0.6"
sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."fast-redact-1.1.14"
+ sources."fast-safe-stringify-1.2.3"
+ sources."fd-slicer-1.1.0"
+ sources."figures-2.0.0"
+ sources."file-entry-cache-2.0.0"
+ sources."file-uri-to-path-1.0.0"
+ (sources."fill-range-4.0.0" // {
+ dependencies = [
+ sources."extend-shallow-2.0.1"
+ ];
+ })
+ sources."find-up-3.0.0"
+ (sources."firefox-profile-1.1.0" // {
+ dependencies = [
+ sources."async-2.5.0"
+ sources."fs-extra-4.0.3"
+ ];
+ })
+ sources."first-chunk-stream-2.0.0"
+ sources."flat-cache-1.3.0"
+ sources."flatstr-1.0.8"
+ sources."fluent-syntax-0.7.0"
+ sources."for-in-1.0.2"
+ sources."for-own-1.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.3.2"
+ sources."fragment-cache-0.2.1"
+ sources."fs-constants-1.0.0"
+ sources."fs-extra-5.0.0"
sources."fs.realpath-1.0.0"
- sources."fstream-1.0.11"
- sources."gauge-2.7.4"
+ sources."fsevents-1.2.4"
+ (sources."ftp-0.3.10" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."function-bind-1.1.1"
+ sources."functional-red-black-tree-1.0.1"
+ (sources."fx-runner-1.0.9" // {
+ dependencies = [
+ sources."commander-2.9.0"
+ sources."isexe-1.1.2"
+ sources."which-1.2.4"
+ ];
+ })
+ sources."generate-function-2.2.0"
+ sources."generate-object-property-1.2.0"
+ sources."get-caller-file-1.0.3"
+ sources."get-stream-3.0.0"
+ sources."get-uri-2.0.2"
+ sources."get-value-2.0.6"
sources."getpass-0.1.7"
+ sources."gettext-parser-1.1.0"
+ (sources."git-rev-sync-1.9.1" // {
+ dependencies = [
+ sources."shelljs-0.7.7"
+ ];
+ })
sources."glob-7.1.2"
+ (sources."glob-parent-3.1.0" // {
+ dependencies = [
+ sources."is-glob-3.1.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."graphlib-2.1.5"
+ sources."growly-1.3.0"
sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."has-unicode-2.0.1"
+ (sources."har-validator-5.0.3" // {
+ dependencies = [
+ sources."ajv-5.5.2"
+ sources."fast-deep-equal-1.1.0"
+ sources."json-schema-traverse-0.3.1"
+ ];
+ })
+ sources."has-1.0.3"
+ sources."has-ansi-2.0.0"
+ sources."has-color-0.1.7"
+ sources."has-flag-3.0.0"
+ sources."has-symbols-1.0.0"
+ sources."has-value-1.0.0"
+ (sources."has-values-1.0.0" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ (sources."hasbin-1.2.3" // {
+ dependencies = [
+ sources."async-1.5.2"
+ ];
+ })
+ sources."home-or-tmp-2.0.0"
+ sources."hosted-git-info-2.7.1"
+ sources."htmlparser2-3.9.2"
+ sources."http-errors-1.6.3"
+ (sources."http-proxy-agent-2.1.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
sources."http-signature-1.2.0"
+ (sources."https-proxy-agent-2.2.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."iconv-lite-0.4.24"
+ sources."ieee754-1.1.12"
+ sources."ignore-3.3.10"
+ sources."immediate-3.0.6"
+ 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-5.2.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."interpret-1.1.0"
+ sources."invariant-2.2.4"
+ sources."invert-kv-1.0.0"
+ sources."ip-1.1.5"
+ sources."is-absolute-0.1.7"
+ (sources."is-accessor-descriptor-1.0.0" // {
+ dependencies = [
+ sources."kind-of-6.0.2"
+ ];
+ })
+ 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-callable-1.1.4"
+ (sources."is-data-descriptor-1.0.0" // {
+ dependencies = [
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."is-date-object-1.0.1"
+ (sources."is-descriptor-1.0.2" // {
+ dependencies = [
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-finite-1.0.2"
sources."is-fullwidth-code-point-1.0.0"
+ sources."is-glob-4.0.0"
+ sources."is-installed-globally-0.1.0"
+ sources."is-mergeable-object-1.1.0"
+ sources."is-my-ip-valid-1.0.0"
+ sources."is-my-json-valid-2.19.0"
+ sources."is-npm-1.0.0"
+ sources."is-number-3.0.0"
+ sources."is-obj-1.0.1"
+ sources."is-path-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-plain-object-2.0.4"
+ sources."is-promise-2.1.0"
+ sources."is-property-1.0.2"
+ sources."is-redirect-1.0.0"
+ sources."is-regex-1.0.4"
+ sources."is-relative-0.1.3"
+ sources."is-resolvable-1.1.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-symbol-1.0.1"
sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."is-windows-1.0.2"
+ sources."is-wsl-1.1.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
sources."isstream-0.1.2"
+ sources."jed-1.1.1"
+ sources."jetpack-id-1.0.0"
+ sources."js-select-0.6.0"
+ sources."js-tokens-3.0.2"
+ (sources."js-yaml-3.12.0" // {
+ dependencies = [
+ sources."esprima-4.0.1"
+ ];
+ })
sources."jsbn-0.1.1"
+ sources."jsesc-1.3.0"
+ sources."json-merge-patch-0.2.3"
+ sources."json-parse-better-errors-1.0.2"
sources."json-schema-0.2.3"
- sources."json-schema-traverse-0.3.1"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stable-stringify-1.0.1"
+ sources."json-stable-stringify-without-jsonify-1.0.1"
sources."json-stringify-safe-5.0.1"
+ sources."json5-0.5.1"
+ sources."jsonfile-4.0.0"
+ sources."jsonify-0.0.0"
+ sources."jsonpointer-4.0.1"
+ (sources."jsonwebtoken-8.2.1" // {
+ dependencies = [
+ sources."ms-2.1.1"
+ ];
+ })
sources."jsprim-1.4.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- 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.5"
- sources."path-is-absolute-1.0.1"
- sources."performance-now-2.1.0"
- sources."process-nextick-args-2.0.0"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."readable-stream-2.3.6"
- sources."request-2.87.0"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."semver-5.3.0"
- sources."set-blocking-2.0.0"
- sources."signal-exit-3.0.2"
- sources."sshpk-1.14.2"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
- sources."tar-2.2.1"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."util-deprecate-1.0.2"
- sources."uuid-3.3.2"
- sources."verror-1.10.0"
- sources."which-1.3.1"
- sources."wide-align-1.1.3"
- sources."wrappy-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Node.js native addon build tool";
- homepage = "https://github.com/nodejs/node-gyp#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = true;
- };
- node-gyp-build = nodeEnv.buildNodePackage {
- name = "node-gyp-build";
- packageName = "node-gyp-build";
- version = "3.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.4.0.tgz";
- sha512 = "YoviGBJYGrPdLOKDIQB0sKxuKy/EEsxzooNkOZak4vSTKT/qH0Pa6dj3t1MJjEQGsefih61IyHDmO1WW7xOFfw==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "Build tool and bindings loader for node-gyp that supports prebuilds";
- homepage = https://github.com/mafintosh/node-gyp-build;
- license = "MIT";
- };
- production = true;
- bypassCache = true;
- };
- node-pre-gyp = nodeEnv.buildNodePackage {
- name = "node-pre-gyp";
- packageName = "node-pre-gyp";
- version = "0.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz";
- sha512 = "d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A==";
- };
- dependencies = [
- sources."abbrev-1.1.1"
- sources."ansi-regex-2.1.1"
- sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."chownr-1.0.1"
- sources."code-point-at-1.1.0"
- sources."concat-map-0.0.1"
- sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
- sources."debug-2.6.9"
- sources."deep-extend-0.6.0"
- sources."delegates-1.0.0"
- sources."detect-libc-1.0.3"
- sources."fs-minipass-1.2.5"
- sources."fs.realpath-1.0.0"
- sources."gauge-2.7.4"
- sources."glob-7.1.2"
- sources."has-unicode-2.0.1"
- sources."iconv-lite-0.4.23"
- sources."ignore-walk-3.0.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."isarray-1.0.0"
+ (sources."jszip-3.1.5" // {
+ dependencies = [
+ sources."core-js-2.3.0"
+ sources."es6-promise-3.0.2"
+ sources."process-nextick-args-1.0.7"
+ sources."readable-stream-2.0.6"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."jwa-1.1.6"
+ sources."jws-3.1.5"
+ sources."kind-of-3.2.2"
+ sources."latest-version-3.1.0"
+ sources."lazy-cache-0.2.7"
+ sources."lazystream-1.0.0"
+ sources."lcid-1.0.0"
+ sources."levn-0.3.0"
+ sources."lie-3.1.1"
+ (sources."load-json-file-1.1.0" // {
+ dependencies = [
+ sources."parse-json-2.2.0"
+ sources."strip-bom-2.0.0"
+ ];
+ })
+ sources."locate-path-3.0.0"
+ sources."lodash-4.17.10"
+ sources."lodash.assign-4.2.0"
+ sources."lodash.assignin-4.2.0"
+ sources."lodash.clonedeep-4.5.0"
+ sources."lodash.debounce-4.0.8"
+ sources."lodash.flatten-4.4.0"
+ sources."lodash.get-4.4.2"
+ sources."lodash.includes-4.3.0"
+ sources."lodash.isboolean-3.0.3"
+ sources."lodash.isinteger-4.0.4"
+ sources."lodash.isnumber-3.0.3"
+ sources."lodash.isplainobject-4.0.6"
+ sources."lodash.isstring-4.0.1"
+ sources."lodash.once-4.1.1"
+ sources."lodash.set-4.3.2"
+ sources."lodash.sortby-4.7.0"
+ sources."loose-envify-1.4.0"
+ sources."lowercase-keys-1.0.1"
+ sources."lru-cache-4.1.3"
+ sources."macos-release-1.1.0"
+ (sources."make-dir-1.3.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ sources."mem-1.1.0"
+ (sources."micromatch-3.1.10" // {
+ dependencies = [
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."minipass-2.3.3"
- sources."minizlib-1.1.0"
- sources."mkdirp-0.5.1"
+ sources."minimist-1.2.0"
+ (sources."mixin-deep-1.3.1" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ (sources."mixin-object-2.0.1" // {
+ dependencies = [
+ sources."for-in-0.1.8"
+ ];
+ })
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."moment-2.22.2"
sources."ms-2.0.0"
+ sources."multimatch-2.1.0"
+ sources."mute-stream-0.0.7"
+ (sources."mv-2.1.1" // {
+ dependencies = [
+ sources."glob-6.0.4"
+ sources."rimraf-2.4.5"
+ ];
+ })
+ sources."mz-2.7.0"
+ sources."nan-2.11.0"
+ (sources."nanomatch-1.2.13" // {
+ dependencies = [
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."natural-compare-1.4.0"
+ sources."natural-compare-lite-1.4.0"
+ (sources."nconf-0.10.0" // {
+ dependencies = [
+ sources."async-1.5.2"
+ sources."camelcase-2.1.1"
+ sources."cliui-3.2.0"
+ sources."decamelize-1.2.0"
+ sources."os-locale-1.4.0"
+ sources."string-width-1.0.2"
+ sources."y18n-3.2.1"
+ sources."yargs-3.32.0"
+ ];
+ })
+ sources."ncp-2.0.0"
sources."needle-2.2.2"
- sources."nopt-4.0.1"
- sources."npm-bundled-1.0.4"
- sources."npm-packlist-1.1.11"
- sources."npmlog-4.1.2"
+ sources."neo-async-2.5.2"
+ sources."netmask-1.0.6"
+ sources."next-tick-1.0.0"
+ sources."nice-try-1.0.5"
+ sources."node-forge-0.7.6"
+ sources."node-notifier-5.2.1"
+ (sources."nomnom-1.8.1" // {
+ dependencies = [
+ sources."ansi-styles-1.0.0"
+ sources."chalk-0.4.0"
+ sources."strip-ansi-0.1.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-copy-0.1.0" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."is-accessor-descriptor-0.1.6"
+ sources."is-data-descriptor-0.1.4"
+ (sources."is-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ ];
+ })
+ sources."object-keys-1.0.12"
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."opn-5.3.0"
+ sources."optionator-0.8.2"
sources."os-homedir-1.0.2"
+ sources."os-locale-2.1.0"
+ sources."os-name-2.0.1"
+ sources."os-shim-0.1.3"
sources."os-tmpdir-1.0.2"
- sources."osenv-0.1.5"
+ sources."p-finally-1.0.0"
+ sources."p-limit-2.0.0"
+ sources."p-locate-3.0.0"
+ sources."p-try-2.0.0"
+ (sources."pac-proxy-agent-2.0.2" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."pac-resolver-3.0.0"
+ sources."package-json-4.0.1"
+ sources."pako-1.0.6"
+ sources."parse-json-4.0.0"
+ sources."parse5-3.0.3"
+ sources."pascalcase-0.1.1"
+ sources."path-0.12.7"
+ sources."path-dirname-1.0.2"
+ 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.6"
+ 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-5.0.0-rc.4" // {
+ dependencies = [
+ sources."fast-safe-stringify-2.0.6"
+ sources."quick-format-unescaped-3.0.0"
+ ];
+ })
+ sources."pino-std-serializers-2.2.1"
+ sources."pluralize-7.0.0"
+ sources."po2json-0.4.5"
+ sources."posix-character-classes-0.1.1"
+ (sources."postcss-6.0.23" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."source-map-0.6.1"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."prelude-ls-1.1.2"
+ sources."prepend-http-1.0.4"
+ sources."private-0.1.8"
+ sources."probe-image-size-4.0.0"
+ sources."process-0.11.10"
sources."process-nextick-args-2.0.0"
- (sources."rc-1.2.8" // {
+ sources."progress-2.0.0"
+ sources."promise-7.3.1"
+ (sources."proxy-agent-2.3.1" // {
dependencies = [
- sources."minimist-1.2.0"
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."proxy-from-env-1.0.0"
+ sources."pseudomap-1.0.2"
+ sources."pump-3.0.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.5.2"
+ sources."quick-format-unescaped-1.1.2"
+ (sources."raw-body-2.3.3" // {
+ dependencies = [
+ sources."iconv-lite-0.4.23"
+ ];
+ })
+ sources."rc-1.2.8"
+ sources."read-pkg-1.1.0"
+ (sources."read-pkg-up-1.0.1" // {
+ dependencies = [
+ sources."find-up-1.1.2"
+ sources."path-exists-2.1.0"
];
})
sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ (sources."readline2-1.0.1" // {
+ dependencies = [
+ sources."mute-stream-0.0.5"
+ ];
+ })
+ sources."rechoir-0.6.2"
+ sources."recursive-readdir-2.2.2"
+ sources."regenerator-runtime-0.11.1"
+ sources."regex-not-1.0.2"
+ sources."regexp.prototype.flags-1.2.0"
+ sources."regexpp-1.1.0"
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ (sources."relaxed-json-1.0.1" // {
+ dependencies = [
+ sources."chalk-1.1.3"
+ ];
+ })
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.3"
+ sources."repeat-string-1.6.1"
+ sources."repeating-2.0.1"
+ sources."request-2.87.0"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."require-uncached-1.0.3"
+ sources."resolve-1.8.1"
+ sources."resolve-from-1.0.1"
+ sources."resolve-url-0.2.1"
+ sources."restore-cursor-2.0.0"
+ sources."ret-0.1.15"
sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rx-lite-3.1.2"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."rxjs-5.5.11"
sources."safe-buffer-5.1.2"
+ sources."safe-json-stringify-1.2.0"
+ sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
+ sources."secure-keys-1.0.0"
sources."semver-5.5.0"
+ sources."semver-diff-2.1.0"
sources."set-blocking-2.0.0"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
- sources."strip-json-comments-2.0.1"
- sources."tar-4.4.6"
- sources."util-deprecate-1.0.2"
- sources."wide-align-1.1.3"
- sources."wrappy-1.0.2"
- sources."yallist-3.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Node.js native addon binary install tool";
- homepage = "https://github.com/mapbox/node-pre-gyp#readme";
- license = "BSD-3-Clause";
- };
- production = true;
- bypassCache = true;
- };
- pnpm = nodeEnv.buildNodePackage {
- name = "pnpm";
- packageName = "pnpm";
- version = "2.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-2.13.1.tgz";
- sha512 = "xwIluOOA+GV6Rz5jvVS2hcGlrqjEWaaU7/PUECdG8H/Eo9I4xban/XhedQ8jIrqt1P7KLDV0/+ENlmYusdL/Zw==";
- };
- 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.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
- sha512 = "4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "The semantic version parser used by npm.";
- homepage = "https://github.com/npm/node-semver#readme";
- license = "ISC";
- };
- production = true;
- bypassCache = true;
- };
- sloc = nodeEnv.buildNodePackage {
- name = "sloc";
- packageName = "sloc";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sloc/-/sloc-0.2.0.tgz";
- sha1 = "b42d3da1a442a489f454c32c628e8ebf0007875c";
- };
- dependencies = [
- sources."async-2.1.5"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- 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.10"
- sources."minimatch-3.0.4"
- sources."process-nextick-args-2.0.0"
- sources."readable-stream-2.3.6"
- sources."readdirp-2.1.0"
- sources."safe-buffer-5.1.2"
sources."set-immediate-shim-1.0.1"
- sources."string_decoder-1.1.1"
- sources."util-deprecate-1.0.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "sloc is a simple tool to count SLOC (source lines of code)";
- homepage = "https://github.com/flosse/sloc#readme";
- license = "MIT";
- };
- production = true;
- bypassCache = true;
- };
- vue-cli = nodeEnv.buildNodePackage {
- name = "vue-cli";
- packageName = "vue-cli";
- version = "2.9.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.6.tgz";
- sha512 = "swQ0bfyJSWfFr42IXr8A774yA1n+YudhzsaHBKhWSkczSqjvgZvSvM8NEnx6QKnfOHBXbdNR5vhahjNUMlftQQ==";
- };
- dependencies = [
- sources."absolute-0.0.1"
- (sources."ajv-5.5.2" // {
+ (sources."set-value-2.0.0" // {
dependencies = [
- sources."co-4.6.0"
+ sources."extend-shallow-2.0.1"
];
})
- sources."align-text-0.1.4"
- sources."amdefine-1.0.1"
- sources."ansi-escapes-3.1.0"
- sources."ansi-red-0.1.1"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.1"
- sources."ansi-wrap-0.1.0"
- sources."argparse-1.0.10"
- sources."array-differ-1.0.0"
- sources."array-union-1.0.2"
- sources."array-uniq-1.0.3"
- sources."arrify-1.0.1"
- sources."asn1-0.2.4"
- sources."assert-plus-1.0.0"
- sources."async-2.6.1"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.8.0"
- sources."balanced-match-1.0.0"
- sources."base64-js-0.0.8"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bl-1.2.2"
- sources."bluebird-3.5.1"
- sources."brace-expansion-1.1.11"
- sources."buffer-3.6.0"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-crc32-0.2.13"
- sources."buffer-fill-1.0.0"
- sources."builtins-1.0.3"
- sources."camelcase-1.2.1"
- sources."capture-stack-trace-1.0.0"
- sources."caseless-0.12.0"
- sources."caw-2.0.1"
- sources."center-align-0.1.3"
- sources."chalk-2.4.1"
- sources."chardet-0.5.0"
- sources."cli-cursor-2.1.0"
- sources."cli-spinners-1.3.1"
- sources."cli-width-2.2.0"
- (sources."cliui-2.1.0" // {
+ sources."setprototypeof-1.1.0"
+ sources."sha.js-2.4.11"
+ (sources."shallow-clone-0.1.2" // {
+ dependencies = [
+ sources."kind-of-2.0.1"
+ ];
+ })
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."shell-quote-1.6.1"
+ sources."shelljs-0.8.2"
+ sources."shellwords-0.1.1"
+ (sources."sign-addon-0.3.1" // {
+ dependencies = [
+ sources."babel-polyfill-6.16.0"
+ sources."es6-error-4.0.0"
+ sources."mz-2.5.0"
+ sources."regenerator-runtime-0.9.6"
+ sources."source-map-support-0.4.6"
+ ];
+ })
+ sources."signal-exit-3.0.2"
+ sources."slash-1.0.0"
+ (sources."slice-ansi-1.0.0" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-2.0.0"
+ ];
+ })
+ sources."smart-buffer-1.1.15"
+ (sources."snapdragon-0.8.2" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ sources."extend-shallow-2.0.1"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
+ ];
+ })
+ (sources."snapdragon-node-2.1.1" // {
+ dependencies = [
+ sources."define-property-1.0.0"
+ ];
+ })
+ sources."snapdragon-util-3.0.1"
+ (sources."snyk-1.94.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.1"
+ sources."debug-3.1.0"
+ sources."inquirer-3.3.0"
+ sources."rx-lite-4.0.8"
+ sources."strip-ansi-4.0.0"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ (sources."snyk-config-2.2.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."snyk-docker-plugin-1.10.4" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."snyk-go-plugin-1.5.2"
+ sources."snyk-gradle-plugin-1.3.0"
+ (sources."snyk-module-1.8.2" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."snyk-mvn-plugin-1.2.0"
+ (sources."snyk-nodejs-lockfile-parser-1.4.1" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ sources."source-map-support-0.5.9"
+ ];
+ })
+ (sources."snyk-nuget-plugin-1.6.5" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."snyk-php-plugin-1.5.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."snyk-policy-1.12.0" // {
dependencies = [
- sources."wordwrap-0.0.2"
+ sources."debug-3.1.0"
];
})
- sources."clone-1.0.4"
- sources."co-3.1.0"
- sources."co-from-stream-0.0.0"
- sources."co-fs-extra-1.2.1"
- sources."co-read-0.0.1"
- sources."coffee-script-1.12.7"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
- sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
- sources."concat-map-0.0.1"
- sources."config-chain-1.1.11"
- sources."consolidate-0.14.5"
- sources."core-util-is-1.0.2"
- sources."create-error-class-3.0.2"
- sources."dashdash-1.14.1"
- sources."decamelize-1.2.0"
- sources."decompress-4.2.0"
- sources."decompress-tar-4.1.1"
- (sources."decompress-tarbz2-4.1.1" // {
+ sources."snyk-python-plugin-1.8.1"
+ (sources."snyk-resolve-1.0.1" // {
dependencies = [
- sources."file-type-6.2.0"
+ sources."debug-3.1.0"
];
})
- sources."decompress-targz-4.1.1"
- (sources."decompress-unzip-4.0.1" // {
+ (sources."snyk-resolve-deps-3.1.0" // {
dependencies = [
- sources."file-type-3.9.0"
- sources."get-stream-2.3.1"
+ sources."debug-3.1.0"
];
})
- sources."delayed-stream-1.0.0"
- sources."download-5.0.3"
- sources."download-git-repo-1.0.2"
- sources."duplexer3-0.1.4"
- sources."ecc-jsbn-0.1.2"
- sources."enable-1.3.2"
- sources."end-of-stream-1.4.1"
- sources."escape-string-regexp-1.0.5"
- sources."esprima-4.0.1"
- sources."extend-3.0.2"
- sources."extend-shallow-2.0.1"
- sources."external-editor-3.0.1"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."fd-slicer-1.1.0"
- sources."figures-2.0.0"
- sources."file-type-5.2.0"
- sources."filename-reserved-regex-2.0.0"
- sources."filenamify-2.1.0"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."fs-constants-1.0.0"
- sources."fs-extra-0.26.7"
- sources."fs.realpath-1.0.0"
- sources."get-proxy-2.1.0"
- sources."get-stream-3.0.0"
- sources."getpass-0.1.7"
- sources."git-clone-0.1.0"
- sources."glob-7.1.2"
- sources."got-6.7.1"
- sources."graceful-fs-4.1.11"
- sources."graceful-readlink-1.0.1"
- sources."gray-matter-2.1.1"
- (sources."handlebars-4.0.11" // {
+ (sources."snyk-sbt-plugin-1.3.1" // {
dependencies = [
- sources."async-1.5.2"
+ sources."debug-3.1.0"
];
})
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- (sources."has-ansi-2.0.0" // {
+ sources."snyk-tree-1.0.0"
+ (sources."snyk-try-require-1.3.1" // {
dependencies = [
- sources."ansi-regex-2.1.1"
+ sources."debug-3.1.0"
];
})
- sources."has-flag-3.0.0"
- sources."has-generators-1.0.1"
- sources."has-symbol-support-x-1.4.2"
- sources."has-to-string-tag-x-1.4.1"
- sources."http-signature-1.2.0"
- sources."iconv-lite-0.4.23"
- sources."ieee754-1.1.12"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."ini-1.3.5"
- sources."inquirer-6.1.0"
- sources."is-3.2.1"
- sources."is-buffer-1.1.6"
- sources."is-extendable-0.1.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."is-natural-number-4.0.1"
- sources."is-object-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."is-utf8-0.2.1"
- sources."isarray-1.0.0"
- sources."isstream-0.1.2"
- sources."isurl-1.0.0"
- sources."js-yaml-3.12.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."jsonfile-2.4.0"
- sources."jsprim-1.4.1"
- sources."kind-of-3.2.2"
- sources."klaw-1.3.1"
- sources."lazy-cache-1.0.4"
- sources."lodash-4.17.10"
- sources."log-symbols-2.2.0"
- sources."longest-1.0.1"
- sources."lowercase-keys-1.0.1"
- (sources."make-dir-1.3.0" // {
+ sources."socks-1.1.10"
+ sources."socks-proxy-agent-3.0.1"
+ sources."sonic-boom-0.5.0"
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.2"
+ (sources."source-map-support-0.5.3" // {
dependencies = [
- sources."pify-3.0.0"
+ sources."source-map-0.6.1"
];
})
- (sources."metalsmith-2.3.0" // {
+ sources."source-map-url-0.4.0"
+ sources."spawn-sync-1.0.15"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
+ sources."split-0.3.3"
+ sources."split-string-3.1.0"
+ sources."split2-2.2.0"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
+ (sources."static-extend-0.1.2" // {
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."define-property-0.2.5"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."kind-of-5.1.0"
];
})
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
- sources."mimic-fn-1.2.0"
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."multimatch-2.1.0"
- sources."mute-stream-0.0.7"
- (sources."npm-conf-1.1.3" // {
+ sources."statuses-1.5.0"
+ sources."stream-parser-0.3.1"
+ sources."stream-to-array-2.3.0"
+ (sources."stream-to-promise-2.2.0" // {
dependencies = [
- sources."pify-3.0.0"
+ sources."end-of-stream-1.1.0"
+ sources."once-1.3.3"
];
})
- sources."oauth-sign-0.8.2"
- sources."object-assign-4.1.1"
- sources."once-1.4.0"
- sources."onetime-2.0.1"
- sources."optimist-0.6.1"
- sources."ora-1.4.0"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."path-is-absolute-1.0.1"
- 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."prepend-http-1.0.4"
- sources."process-nextick-args-2.0.0"
- sources."proto-list-1.2.4"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- sources."read-metadata-1.0.0"
- sources."readable-stream-2.3.6"
- sources."recursive-readdir-2.2.2"
- sources."repeat-string-1.6.1"
- sources."request-2.87.0"
- sources."restore-cursor-2.0.0"
- sources."right-align-0.1.3"
- sources."rimraf-2.6.2"
- sources."run-async-2.3.0"
- sources."rxjs-6.2.2"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- (sources."seek-bzip-1.0.5" // {
+ (sources."string-width-2.1.1" // {
dependencies = [
- sources."commander-2.8.1"
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."strip-ansi-4.0.0"
];
})
- sources."semver-5.5.0"
- sources."signal-exit-3.0.2"
- sources."source-map-0.4.4"
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.2"
- sources."stat-mode-0.2.2"
- sources."string-width-2.1.1"
+ sources."string.prototype.matchall-2.0.0"
sources."string_decoder-1.1.1"
- sources."strip-ansi-4.0.0"
- sources."strip-dirs-2.1.0"
- sources."strip-outer-1.0.1"
- sources."supports-color-5.4.0"
+ 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."supports-color-2.0.0"
+ sources."symbol-observable-1.0.1"
+ sources."table-4.0.3"
sources."tar-stream-1.6.1"
+ sources."temp-dir-1.0.0"
+ sources."tempfile-2.0.0"
+ sources."term-size-1.2.0"
+ sources."text-table-0.2.0"
+ sources."then-fs-2.0.0"
+ sources."thenify-3.3.0"
+ sources."thenify-all-1.6.0"
sources."through-2.3.8"
+ sources."through2-2.0.3"
sources."thunkify-2.1.2"
- sources."thunkify-wrap-1.0.4"
- sources."tildify-1.2.0"
sources."timed-out-4.0.1"
sources."tmp-0.0.33"
sources."to-buffer-1.1.1"
+ sources."to-fast-properties-1.0.3"
+ sources."to-object-path-0.3.0"
+ sources."to-regex-3.0.2"
+ sources."to-regex-range-2.1.1"
sources."toml-2.3.3"
- sources."tough-cookie-2.3.4"
- sources."trim-repeated-1.0.0"
- sources."tslib-1.9.3"
+ sources."tosource-1.0.0"
+ (sources."tough-cookie-2.3.4" // {
+ dependencies = [
+ sources."punycode-1.4.1"
+ ];
+ })
+ sources."tr46-1.0.1"
+ sources."traverse-0.4.6"
+ sources."trim-right-1.0.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- (sources."uglify-js-2.8.29" // {
+ sources."type-check-0.3.2"
+ sources."typedarray-0.0.6"
+ sources."undefsafe-2.0.2"
+ sources."underscore-1.6.0"
+ (sources."union-value-1.0.0" // {
dependencies = [
- sources."source-map-0.5.7"
+ sources."extend-shallow-2.0.1"
+ sources."set-value-0.4.3"
+ ];
+ })
+ sources."unique-string-1.0.0"
+ sources."universalify-0.1.2"
+ sources."unpipe-1.0.0"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ sources."has-values-0.1.4"
];
})
- sources."uglify-to-browserify-1.0.2"
- sources."uid-0.0.2"
- sources."unbzip2-stream-1.2.5"
- sources."unyield-0.0.1"
sources."unzip-response-2.0.1"
+ sources."upath-1.1.0"
+ sources."update-notifier-2.3.0"
+ sources."uri-js-4.2.2"
+ sources."urix-0.1.0"
sources."url-parse-lax-1.0.0"
- sources."url-to-options-1.0.1"
+ sources."use-3.1.1"
sources."user-home-2.0.0"
+ sources."util-0.10.4"
sources."util-deprecate-1.0.2"
sources."uuid-3.3.2"
- sources."validate-npm-package-name-3.0.0"
+ sources."validate-npm-package-license-3.0.4"
sources."verror-1.10.0"
- sources."ware-1.3.0"
- sources."win-fork-1.1.1"
- sources."window-size-0.1.0"
- sources."wordwrap-0.0.3"
- sources."wrap-fn-0.1.5"
+ sources."watchpack-1.5.0"
+ sources."wcwidth-1.0.1"
+ sources."webidl-conversions-4.0.2"
+ sources."whatwg-url-6.5.0"
+ sources."when-3.7.7"
+ sources."which-1.3.1"
+ sources."which-module-2.0.0"
+ sources."widest-line-2.0.0"
+ sources."win-release-1.1.1"
+ sources."window-size-0.1.4"
+ sources."winreg-0.0.12"
+ sources."wordwrap-1.0.0"
+ (sources."wrap-ansi-2.1.0" // {
+ dependencies = [
+ sources."string-width-1.0.2"
+ ];
+ })
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.7"
+ sources."xmldom-0.1.27"
+ sources."xregexp-2.0.0"
sources."xtend-4.0.1"
- sources."yaml-js-0.0.8"
- sources."yargs-3.10.0"
- sources."yauzl-2.10.0"
+ sources."y18n-4.0.0"
+ sources."yallist-2.1.2"
+ (sources."yargs-6.6.0" // {
+ dependencies = [
+ sources."camelcase-3.0.0"
+ sources."cliui-3.2.0"
+ sources."decamelize-1.2.0"
+ sources."os-locale-1.4.0"
+ sources."string-width-1.0.2"
+ sources."which-module-1.0.0"
+ sources."y18n-3.2.1"
+ sources."yargs-parser-4.2.1"
+ ];
+ })
+ sources."yargs-parser-10.1.0"
+ sources."yauzl-2.9.2"
+ (sources."zip-dir-1.0.2" // {
+ dependencies = [
+ sources."async-1.5.2"
+ sources."jszip-2.6.1"
+ ];
+ })
+ sources."zip-stream-1.2.0"
];
buildInputs = globalBuildInputs;
meta = {
- description = "A simple CLI for scaffolding Vue.js projects.";
- homepage = "https://github.com/vuejs/vue-cli#readme";
+ description = "A command line tool to help build, run, and test web extensions";
+ homepage = https://github.com/mozilla/web-ext;
+ license = "MPL-2.0";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ wring = nodeEnv.buildNodePackage {
+ name = "wring";
+ packageName = "wring";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wring/-/wring-1.0.0.tgz";
+ sha1 = "3d8ebe894545bf0b42946fdc84c61e37ae657ce1";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Extract content from websites using CSS Selectors and XPath";
+ homepage = "https://github.com/osener/wring#readme";
license = "MIT";
};
production = true;
bypassCache = true;
};
- swagger = nodeEnv.buildNodePackage {
- name = "swagger";
- packageName = "swagger";
- version = "0.7.5";
+ yarn = nodeEnv.buildNodePackage {
+ name = "yarn";
+ packageName = "yarn";
+ version = "1.9.4";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger/-/swagger-0.7.5.tgz";
- sha1 = "3be6ee3d392c3b006fc7a9b5b2d60c7e834860fd";
+ url = "https://registry.npmjs.org/yarn/-/yarn-1.9.4.tgz";
+ sha1 = "3b82d8446b652775723900b470d966861976924b";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "📦🐈 Fast, reliable, and secure dependency management.";
+ homepage = "https://github.com/yarnpkg/yarn#readme";
+ license = "BSD-2-Clause";
+ };
+ production = true;
+ bypassCache = true;
+ };
+ yo = nodeEnv.buildNodePackage {
+ name = "yo";
+ packageName = "yo";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yo/-/yo-2.0.5.tgz";
+ sha512 = "PLyTNZSJjHkks/FIln+QE5PxV224MsekCzbROVhZEW0MvLyj/6ghWIVkdBmrwdAbapH8H9q21F1/pQ9Q0Lk9UA==";
};
dependencies = [
- sources."URIjs-1.16.1"
- sources."abbrev-1.1.1"
- (sources."align-text-0.1.4" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- sources."amdefine-1.0.1"
+ sources."@mrmlnc/readdir-enhanced-2.2.1"
+ sources."@nodelib/fs.stat-1.1.1"
+ 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-1.4.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."anymatch-2.0.0"
- sources."append-field-0.1.0"
- sources."argparse-1.0.10"
+ sources."ansi-escapes-3.1.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."are-we-there-yet-1.1.5"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
+ sources."array-find-index-1.0.2"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
sources."array-unique-0.3.2"
+ sources."arrify-1.0.1"
+ sources."asn1-0.2.4"
+ sources."assert-plus-1.0.0"
sources."assign-symbols-1.0.0"
- sources."async-1.5.2"
- sources."async-each-1.0.1"
+ sources."astral-regex-1.0.0"
+ sources."async-2.6.1"
sources."asynckit-0.4.0"
- sources."atob-2.1.1"
+ sources."atob-2.1.2"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.8.0"
sources."balanced-match-1.0.0"
(sources."base-0.11.2" // {
dependencies = [
sources."define-property-1.0.0"
];
})
- sources."binary-extensions-1.11.0"
- (sources."body-parser-1.12.4" // {
+ sources."bcrypt-pbkdf-1.0.2"
+ (sources."bin-version-2.0.0" // {
dependencies = [
- sources."debug-2.2.0"
- sources."depd-1.0.1"
- sources."ee-first-1.1.0"
- sources."ms-0.7.1"
- sources."on-finished-2.2.1"
- sources."qs-2.4.2"
+ sources."execa-0.1.1"
];
})
+ sources."bin-version-check-3.0.0"
(sources."boxen-1.3.0" // {
dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."supports-color-5.4.0"
+ sources."camelcase-4.1.0"
];
})
sources."brace-expansion-1.1.11"
(sources."braces-2.3.2" // {
dependencies = [
sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
];
})
sources."buffer-from-1.1.1"
- (sources."busboy-0.2.14" // {
+ sources."builtin-modules-1.1.1"
+ sources."cache-base-1.0.1"
+ (sources."cacheable-request-2.1.4" // {
dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
+ sources."lowercase-keys-1.0.0"
];
})
- sources."bytes-1.0.0"
- sources."cache-base-1.0.1"
- sources."camelcase-4.1.0"
+ sources."call-me-maybe-1.0.1"
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
sources."capture-stack-trace-1.0.0"
- sources."center-align-0.1.3"
- sources."chalk-1.1.3"
- sources."charenc-0.0.2"
- sources."chokidar-2.0.4"
- sources."ci-info-1.1.3"
+ sources."caseless-0.12.0"
+ sources."chalk-2.4.1"
+ sources."chardet-0.5.0"
+ sources."ci-info-1.4.0"
(sources."class-utils-0.3.6" // {
dependencies = [
sources."define-property-0.2.5"
@@ -8961,66 +54140,68 @@ in
sources."kind-of-5.1.0"
];
})
+ sources."clean-stack-1.3.0"
sources."cli-boxes-1.0.0"
- sources."cli-cursor-1.0.2"
- sources."cli-width-1.1.1"
- (sources."cliui-2.1.0" // {
- dependencies = [
- sources."wordwrap-0.0.2"
- ];
- })
- sources."clone-2.0.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-list-0.2.0"
+ sources."cli-width-2.2.0"
+ sources."clone-1.0.4"
+ sources."clone-regexp-1.0.1"
+ 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."collection-visit-1.0.0"
- sources."color-convert-1.9.2"
- sources."color-name-1.1.1"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
sources."combined-stream-1.0.6"
- sources."commander-2.17.1"
sources."component-emitter-1.2.1"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
+ sources."conf-1.4.0"
+ sources."config-chain-1.1.11"
sources."configstore-3.1.2"
- sources."connect-3.6.6"
- sources."content-type-1.0.4"
- sources."cookiejar-2.1.2"
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" // {
- dependencies = [
- sources."lru-cache-4.1.3"
- ];
- })
- sources."crypt-0.0.2"
+ sources."cross-spawn-6.0.5"
+ sources."cross-spawn-async-2.2.5"
sources."crypto-random-string-1.0.0"
- sources."dag-map-1.0.2"
+ 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.6.0"
+ sources."default-uid-1.0.0"
sources."define-property-2.0.2"
sources."delayed-stream-1.0.0"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
- (sources."dicer-0.2.5" // {
+ sources."delegates-1.0.0"
+ sources."diff-3.5.0"
+ (sources."dir-glob-2.0.0" // {
dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.1.14"
- sources."string_decoder-0.10.31"
+ sources."path-type-3.0.0"
];
})
- sources."diff-1.4.0"
sources."dot-prop-4.2.0"
- sources."duplexer-0.1.1"
+ sources."downgrade-root-1.2.2"
sources."duplexer3-0.1.4"
- sources."ee-first-1.1.1"
- sources."encodeurl-1.0.2"
- sources."escape-html-1.0.3"
+ (sources."each-async-1.1.1" // {
+ dependencies = [
+ sources."onetime-1.1.0"
+ ];
+ })
+ sources."ecc-jsbn-0.1.2"
+ sources."env-paths-1.0.0"
+ sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
- sources."esprima-4.0.1"
- sources."etag-1.8.1"
- sources."event-stream-3.3.4"
- sources."execa-0.7.0"
+ (sources."execa-0.6.3" // {
+ dependencies = [
+ sources."cross-spawn-5.1.0"
+ ];
+ })
+ sources."execall-1.0.0"
sources."exit-hook-1.1.1"
(sources."expand-brackets-2.1.4" // {
dependencies = [
@@ -9037,96 +54218,115 @@ in
];
})
sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
sources."kind-of-5.1.0"
];
})
sources."extend-3.0.2"
- sources."extend-shallow-3.0.2"
+ (sources."extend-shallow-3.0.2" // {
+ dependencies = [
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."external-editor-3.0.1"
(sources."extglob-2.0.4" // {
dependencies = [
sources."define-property-1.0.0"
sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
];
})
- sources."figures-1.7.0"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-glob-2.2.2"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."figures-2.0.0"
(sources."fill-range-4.0.0" // {
dependencies = [
sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
];
})
- sources."finalhandler-1.1.0"
+ sources."filter-obj-1.1.0"
+ sources."find-up-2.1.0"
+ sources."find-versions-2.0.0"
+ sources."first-chunk-stream-2.0.0"
sources."for-in-1.0.2"
+ sources."foreachasync-3.0.0"
+ sources."forever-agent-0.6.1"
sources."form-data-2.3.2"
- sources."formidable-1.2.1"
sources."fragment-cache-0.2.1"
- sources."fresh-0.5.2"
- sources."from-0.1.7"
- sources."fs-extra-0.24.0"
+ sources."from2-2.3.0"
sources."fs.realpath-1.0.0"
- sources."fsevents-1.2.4"
+ sources."fullname-3.3.0"
+ sources."gauge-1.2.7"
+ sources."get-stdin-4.0.1"
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
- sources."glob-7.1.2"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.3"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
];
})
+ sources."glob-to-regexp-0.3.0"
sources."global-dirs-0.1.1"
- sources."got-6.7.1"
+ sources."global-tunnel-ng-2.5.4"
+ sources."globby-8.0.1"
+ sources."got-8.3.2"
sources."graceful-fs-4.1.11"
- (sources."graphlib-2.1.5" // {
- dependencies = [
- sources."lodash-4.17.10"
- ];
- })
- sources."growl-1.9.2"
- (sources."handlebars-4.0.11" // {
+ sources."grouped-queue-0.3.3"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.0"
+ (sources."has-ansi-2.0.0" // {
dependencies = [
- sources."source-map-0.4.4"
+ sources."ansi-regex-2.1.1"
];
})
- sources."has-ansi-2.0.0"
sources."has-flag-3.0.0"
+ sources."has-symbol-support-x-1.4.2"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."has-unicode-2.0.1"
sources."has-value-1.0.0"
(sources."has-values-1.0.0" // {
dependencies = [
sources."kind-of-4.0.0"
];
})
- (sources."http-errors-1.6.3" // {
- dependencies = [
- sources."statuses-1.5.0"
- ];
- })
- sources."iconv-lite-0.4.8"
- sources."ignore-by-default-1.0.1"
+ sources."hosted-git-info-2.7.1"
+ sources."http-cache-semantics-3.8.1"
+ sources."http-signature-1.2.0"
+ sources."humanize-string-1.0.2"
+ sources."iconv-lite-0.4.24"
+ sources."ignore-3.3.10"
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-0.10.1"
+ sources."inquirer-6.2.0"
+ (sources."insight-0.10.1" // {
+ dependencies = [
+ sources."chardet-0.4.2"
+ sources."external-editor-2.2.0"
+ sources."inquirer-5.2.0"
+ sources."rxjs-5.5.11"
+ ];
+ })
+ sources."into-stream-3.1.0"
sources."is-accessor-descriptor-1.0.0"
- sources."is-binary-path-1.0.1"
+ sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-ci-1.1.0"
+ sources."is-builtin-module-1.0.0"
+ sources."is-ci-1.2.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
- sources."is-extendable-1.0.1"
+ sources."is-docker-1.1.0"
+ sources."is-extendable-0.1.1"
sources."is-extglob-2.1.1"
- sources."is-fullwidth-code-point-1.0.0"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.0"
sources."is-installed-globally-0.1.0"
- (sources."is-invalid-path-0.1.0" // {
- dependencies = [
- sources."is-extglob-1.0.0"
- sources."is-glob-2.0.1"
- ];
- })
sources."is-npm-1.0.0"
(sources."is-number-3.0.0" // {
dependencies = [
@@ -9134,116 +54334,112 @@ in
];
})
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-plain-object-2.0.4"
+ 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-valid-path-0.1.1"
+ sources."is-supported-regexp-flag-1.0.1"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
sources."is-windows-1.0.2"
+ sources."is-wsl-1.1.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
- (sources."jade-0.26.3" // {
+ sources."isstream-0.1.2"
+ sources."isurl-1.0.0"
+ sources."jsbn-0.1.1"
+ sources."json-buffer-3.0.0"
+ sources."json-parse-better-errors-1.0.2"
+ 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."kind-of-6.0.2"
+ (sources."latest-version-3.1.0" // {
dependencies = [
- sources."commander-0.6.1"
- sources."mkdirp-0.3.0"
+ sources."got-6.7.1"
+ sources."package-json-4.0.1"
+ sources."prepend-http-1.0.4"
+ sources."url-parse-lax-1.0.0"
];
})
- sources."js-yaml-3.12.0"
- sources."json-refs-2.1.7"
- (sources."json-schema-deref-sync-0.3.4" // {
+ (sources."load-json-file-1.1.0" // {
dependencies = [
- sources."lodash-4.17.10"
+ sources."pify-2.3.0"
];
})
- sources."jsonfile-2.4.0"
- sources."kind-of-6.0.2"
- sources."latest-version-3.1.0"
- sources."lazy-cache-1.0.4"
- sources."lodash-3.10.1"
- sources."lodash-compat-3.10.2"
- sources."lodash._arraypool-2.4.1"
- sources."lodash._basebind-2.4.1"
- sources."lodash._baseclone-2.4.1"
- sources."lodash._basecreate-2.4.1"
- sources."lodash._basecreatecallback-2.4.1"
- sources."lodash._basecreatewrapper-2.4.1"
- sources."lodash._createwrapper-2.4.1"
- sources."lodash._getarray-2.4.1"
- sources."lodash._isnative-2.4.1"
- sources."lodash._maxpoolsize-2.4.1"
- sources."lodash._objecttypes-2.4.1"
- sources."lodash._releasearray-2.4.1"
- sources."lodash._setbinddata-2.4.1"
- sources."lodash._shimkeys-2.4.1"
- sources."lodash._slice-2.4.1"
- sources."lodash.assign-2.4.1"
- sources."lodash.bind-2.4.1"
- sources."lodash.clonedeep-2.4.1"
+ sources."locate-path-2.0.0"
+ sources."locutus-2.0.9"
+ sources."lodash-4.17.10"
sources."lodash.debounce-4.0.8"
- sources."lodash.foreach-2.4.1"
- sources."lodash.forown-2.4.1"
- sources."lodash.get-4.4.2"
- sources."lodash.identity-2.4.1"
- sources."lodash.isarray-2.4.1"
- sources."lodash.isequal-4.5.0"
- sources."lodash.isfunction-2.4.1"
- sources."lodash.isobject-2.4.1"
- sources."lodash.keys-2.4.1"
- sources."lodash.noop-2.4.1"
- sources."lodash.support-2.4.1"
- sources."longest-1.0.1"
+ sources."lodash.pad-4.5.1"
+ sources."lodash.padend-4.6.1"
+ sources."lodash.padstart-4.6.1"
+ sources."log-symbols-2.2.0"
+ sources."loud-rejection-1.6.0"
sources."lowercase-keys-1.0.1"
- sources."lru-cache-2.7.3"
+ sources."lru-cache-4.1.3"
+ sources."macos-release-1.1.0"
sources."make-dir-1.3.0"
sources."map-cache-0.2.2"
- sources."map-stream-0.1.0"
+ sources."map-obj-1.0.1"
sources."map-visit-1.0.0"
- sources."md5-2.2.1"
- sources."media-typer-0.3.0"
- sources."memory-cache-0.1.6"
- sources."methods-1.1.2"
+ sources."mem-1.1.0"
+ sources."mem-fs-1.1.3"
+ (sources."meow-3.7.0" // {
+ dependencies = [
+ sources."find-up-1.1.2"
+ sources."path-exists-2.1.0"
+ sources."read-pkg-up-1.0.1"
+ ];
+ })
+ sources."merge2-1.2.2"
sources."micromatch-3.1.10"
- sources."mime-1.4.1"
- sources."mime-db-1.35.0"
- sources."mime-types-2.1.19"
+ sources."mime-db-1.36.0"
+ sources."mime-types-2.1.20"
+ sources."mimic-fn-1.2.0"
+ sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mixin-deep-1.3.1"
- sources."mkdirp-0.5.1"
- (sources."mocha-2.5.3" // {
+ sources."minimist-1.2.0"
+ (sources."mixin-deep-1.3.1" // {
dependencies = [
- sources."commander-2.3.0"
- sources."debug-2.2.0"
- sources."escape-string-regexp-1.0.2"
- sources."glob-3.2.11"
- sources."minimatch-0.3.0"
- sources."ms-0.7.1"
- sources."supports-color-1.2.0"
+ sources."is-extendable-1.0.1"
];
})
- sources."mpath-0.2.1"
- sources."ms-2.0.0"
- (sources."multer-1.3.1" // {
+ (sources."mkdirp-0.5.1" // {
dependencies = [
- sources."object-assign-3.0.0"
+ sources."minimist-0.0.8"
];
})
- sources."mute-stream-0.0.5"
- sources."nan-2.10.0"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
sources."nanomatch-1.2.13"
- sources."native-promise-only-0.8.1"
- (sources."nodemon-1.18.3" // {
+ sources."nice-try-1.0.5"
+ sources."normalize-package-data-2.4.0"
+ sources."normalize-url-2.0.1"
+ sources."npm-conf-1.1.3"
+ (sources."npm-keyword-5.0.0" // {
dependencies = [
- sources."debug-3.1.0"
- sources."supports-color-5.4.0"
+ sources."got-7.1.0"
+ sources."p-cancelable-0.3.0"
+ sources."p-timeout-1.2.1"
+ sources."prepend-http-1.0.4"
+ sources."url-parse-lax-1.0.0"
];
})
- sources."nopt-1.0.10"
- sources."normalize-path-2.1.1"
sources."npm-run-path-2.0.2"
+ sources."npmlog-2.0.4"
sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
(sources."object-copy-0.1.0" // {
dependencies = [
@@ -9258,92 +54454,116 @@ in
sources."kind-of-3.2.2"
];
})
+ sources."object-values-1.0.0"
sources."object-visit-1.0.1"
sources."object.pick-1.3.0"
- sources."on-finished-2.3.0"
sources."once-1.4.0"
- sources."onetime-1.1.0"
- sources."optimist-0.6.1"
+ sources."onetime-2.0.1"
+ sources."opn-5.3.0"
+ sources."os-homedir-1.0.2"
+ sources."os-name-2.0.1"
+ sources."os-shim-0.1.3"
+ sources."os-tmpdir-1.0.2"
+ sources."p-any-1.1.0"
+ sources."p-cancelable-0.4.1"
sources."p-finally-1.0.0"
- sources."package-json-4.0.1"
- sources."parseurl-1.3.2"
+ sources."p-is-promise-1.1.0"
+ sources."p-limit-1.3.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-5.0.0"
+ sources."pad-component-0.0.1"
+ sources."parse-help-1.0.0"
+ sources."parse-json-2.2.0"
sources."pascalcase-0.1.1"
+ (sources."passwd-user-2.1.0" // {
+ dependencies = [
+ sources."execa-0.4.0"
+ sources."npm-run-path-1.0.0"
+ sources."path-key-1.0.0"
+ sources."pify-2.3.0"
+ ];
+ })
sources."path-dirname-1.0.2"
+ 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-loader-1.0.6" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."qs-6.5.2"
- sources."superagent-3.8.3"
- ];
- })
- (sources."path-to-regexp-1.7.0" // {
+ (sources."path-type-1.1.0" // {
dependencies = [
- sources."isarray-0.0.1"
+ sources."pify-2.3.0"
];
})
- sources."pause-stream-0.0.11"
+ sources."performance-now-2.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."posix-character-classes-0.1.1"
- sources."prepend-http-1.0.4"
+ sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.0"
- sources."ps-tree-1.1.0"
+ sources."proto-list-1.2.4"
sources."pseudomap-1.0.2"
- sources."pstree.remy-1.1.0"
- sources."punycode-2.1.1"
- sources."qs-4.0.0"
- sources."range-parser-1.2.0"
- (sources."raw-body-2.0.2" // {
+ sources."psl-1.1.29"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."query-string-5.1.1"
+ sources."rc-1.2.8"
+ sources."read-pkg-1.1.0"
+ (sources."read-pkg-up-4.0.0" // {
dependencies = [
- sources."bytes-2.1.0"
+ sources."find-up-3.0.0"
+ sources."load-json-file-4.0.0"
+ sources."locate-path-3.0.0"
+ sources."p-limit-2.0.0"
+ sources."p-locate-3.0.0"
+ sources."p-try-2.0.0"
+ sources."parse-json-4.0.0"
+ sources."path-type-3.0.0"
+ sources."read-pkg-3.0.0"
+ sources."strip-bom-3.0.0"
];
})
- (sources."rc-1.2.8" // {
+ sources."readable-stream-2.3.6"
+ (sources."redent-1.0.0" // {
dependencies = [
- sources."minimist-1.2.0"
+ sources."indent-string-2.1.0"
];
})
- sources."readable-stream-2.3.6"
- sources."readdirp-2.1.0"
- sources."readline2-1.0.1"
- sources."reduce-component-1.0.1"
sources."regex-not-1.0.2"
sources."registry-auth-token-3.3.2"
sources."registry-url-3.1.0"
- sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.2"
+ sources."repeat-element-1.1.3"
sources."repeat-string-1.6.1"
+ sources."repeating-2.0.1"
+ sources."replace-ext-0.0.1"
+ sources."request-2.88.0"
sources."resolve-url-0.2.1"
- sources."restore-cursor-1.0.1"
+ sources."responselike-1.0.2"
+ sources."restore-cursor-2.0.0"
sources."ret-0.1.15"
- sources."right-align-0.1.3"
- sources."rimraf-2.6.2"
- sources."run-async-0.1.0"
- sources."rx-lite-3.1.2"
+ sources."root-check-1.0.0"
+ sources."run-async-2.3.0"
+ sources."rx-4.1.0"
+ sources."rxjs-6.2.2"
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
- sources."sanitize-filename-1.6.1"
- sources."semver-5.5.0"
+ sources."safer-buffer-2.1.2"
+ sources."scoped-regex-1.0.0"
+ sources."semver-5.5.1"
sources."semver-diff-2.1.0"
- (sources."send-0.16.2" // {
- dependencies = [
- sources."statuses-1.4.0"
- ];
- })
- sources."serve-static-1.13.2"
+ sources."semver-regex-1.0.0"
+ sources."semver-truncate-1.1.2"
sources."set-immediate-shim-1.0.1"
(sources."set-value-2.0.0" // {
dependencies = [
sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
];
})
- sources."setprototypeof-1.1.0"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
- sources."sigmund-1.0.1"
sources."signal-exit-3.0.2"
sources."slash-1.0.0"
(sources."snapdragon-0.8.2" // {
@@ -9361,7 +54581,6 @@ in
];
})
sources."is-descriptor-0.1.6"
- sources."is-extendable-0.1.1"
sources."kind-of-5.1.0"
];
})
@@ -9375,13 +54594,18 @@ in
sources."kind-of-3.2.2"
];
})
+ sources."sort-keys-2.0.0"
+ sources."sort-on-3.0.0"
sources."source-map-0.5.7"
sources."source-map-resolve-0.5.2"
sources."source-map-url-0.4.0"
- sources."spark-md5-1.0.1"
- sources."split-0.3.3"
+ sources."spawn-sync-1.0.15"
+ sources."spdx-correct-3.0.0"
+ sources."spdx-exceptions-2.1.0"
+ sources."spdx-expression-parse-3.0.0"
+ sources."spdx-license-ids-3.0.0"
sources."split-string-3.1.0"
- sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
(sources."static-extend-0.1.2" // {
dependencies = [
sources."define-property-0.2.5"
@@ -9399,47 +54623,60 @@ in
sources."kind-of-5.1.0"
];
})
- sources."statuses-1.3.1"
- sources."stream-combiner-0.0.4"
- sources."streamsearch-0.1.2"
- sources."string-3.3.3"
- (sources."string-width-2.1.1" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
+ sources."strict-uri-encode-1.1.0"
+ sources."string-length-2.0.0"
+ sources."string-width-2.1.1"
sources."string_decoder-1.1.1"
- sources."strip-ansi-3.0.1"
+ sources."strip-ansi-4.0.0"
+ 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."superagent-1.8.5" // {
+ (sources."sudo-block-1.2.0" // {
dependencies = [
- sources."cookiejar-2.0.6"
- sources."extend-3.0.0"
- sources."form-data-1.0.0-rc3"
- sources."formidable-1.0.17"
- sources."isarray-0.0.1"
- sources."mime-1.3.4"
- sources."qs-2.3.3"
- sources."readable-stream-1.0.27-1"
- sources."string_decoder-0.10.31"
+ 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."supports-color-2.0.0"
- sources."swagger-converter-0.2.0"
- sources."swagger-editor-2.10.5"
- sources."swagger-test-templates-1.5.0"
- (sources."swagger-tools-0.9.16" // {
+ sources."supports-color-5.5.0"
+ sources."symbol-observable-1.0.1"
+ (sources."tabtab-1.3.2" // {
dependencies = [
- sources."swagger-converter-0.1.7"
+ sources."ansi-escapes-1.4.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."cli-cursor-1.0.2"
+ sources."external-editor-1.1.1"
+ sources."figures-1.7.0"
+ sources."inquirer-1.2.3"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."mute-stream-0.0.6"
+ sources."onetime-1.1.0"
+ sources."restore-cursor-1.0.1"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ sources."tmp-0.0.29"
];
})
- sources."term-size-1.2.0"
+ sources."taketalk-1.0.0"
+ (sources."term-size-1.2.0" // {
+ dependencies = [
+ sources."cross-spawn-5.1.0"
+ sources."execa-0.7.0"
+ ];
+ })
+ sources."text-table-0.2.0"
sources."through-2.3.8"
+ sources."through2-2.0.3"
sources."timed-out-4.0.1"
- sources."to-iso-string-0.0.2"
+ sources."titleize-1.0.1"
+ sources."tmp-0.0.33"
(sources."to-object-path-0.3.0" // {
dependencies = [
sources."kind-of-3.2.2"
@@ -9447,23 +54684,21 @@ in
})
sources."to-regex-3.0.2"
sources."to-regex-range-2.1.1"
- sources."touch-3.1.0"
- sources."traverse-0.6.6"
- sources."truncate-utf8-bytes-1.0.2"
- sources."type-is-1.6.16"
+ sources."tough-cookie-2.4.3"
+ sources."trim-newlines-1.0.0"
+ sources."tslib-1.9.3"
+ sources."tunnel-0.0.5"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."twig-1.12.0"
sources."typedarray-0.0.6"
- sources."uglify-js-2.8.29"
- sources."uglify-to-browserify-1.0.2"
- sources."undefsafe-2.0.2"
(sources."union-value-1.0.0" // {
dependencies = [
sources."extend-shallow-2.0.1"
- sources."is-extendable-0.1.1"
sources."set-value-0.4.3"
];
})
sources."unique-string-1.0.0"
- sources."unpipe-1.0.0"
(sources."unset-value-1.0.0" // {
dependencies = [
(sources."has-value-0.3.1" // {
@@ -9474,96 +54709,71 @@ in
sources."has-values-0.1.4"
];
})
+ sources."untildify-3.0.3"
sources."unzip-response-2.0.1"
- sources."upath-1.1.0"
- (sources."update-notifier-2.5.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.1"
- sources."supports-color-5.4.0"
- ];
- })
- sources."uri-js-3.0.2"
+ sources."update-notifier-2.5.0"
sources."urix-0.1.0"
- sources."url-parse-lax-1.0.0"
+ sources."url-parse-lax-3.0.0"
+ sources."url-to-options-1.0.1"
sources."use-3.1.1"
- sources."utf8-byte-length-1.0.4"
+ sources."user-home-2.0.0"
sources."util-deprecate-1.0.2"
- sources."utils-merge-1.0.1"
- sources."valid-url-1.0.9"
- sources."validator-10.5.0"
+ sources."uuid-3.3.2"
+ sources."validate-npm-package-license-3.0.4"
+ sources."verror-1.10.0"
+ sources."vinyl-1.2.0"
+ (sources."vinyl-file-2.0.0" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."walk-2.3.14"
sources."which-1.3.1"
sources."widest-line-2.0.0"
- sources."window-size-0.1.0"
- sources."wordwrap-0.0.3"
+ sources."win-release-1.1.1"
+ (sources."wrap-ansi-2.1.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
sources."wrappy-1.0.2"
sources."write-file-atomic-2.3.0"
sources."xdg-basedir-3.0.0"
sources."xtend-4.0.1"
sources."yallist-2.1.2"
- (sources."yargs-3.10.0" // {
+ (sources."yeoman-character-1.1.0" // {
dependencies = [
- sources."camelcase-1.2.1"
+ sources."has-flag-1.0.0"
+ sources."supports-color-3.2.3"
+ ];
+ })
+ sources."yeoman-doctor-3.0.2"
+ (sources."yeoman-environment-2.3.3" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ (sources."yosay-2.0.2" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ (sources."chalk-1.1.3" // {
+ dependencies = [
+ sources."ansi-styles-2.2.1"
+ ];
+ })
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
];
})
- sources."z-schema-3.22.0"
];
buildInputs = globalBuildInputs;
meta = {
- description = "The Swagger command-line. Provides Swagger utilities and project lifecycle support.";
- homepage = "https://github.com/swagger-api/swagger-node#readme";
- license = "Apache 2.0";
- };
- production = true;
- bypassCache = true;
- };
- npm = nodeEnv.buildNodePackage {
- name = "npm";
- packageName = "npm";
- version = "6.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-6.3.0.tgz";
- sha512 = "oDtLFo3wXue/xe3pU/oks9VHS5501OAWlYrZrApZkFv7l2LXk+9CfPMbjbfZWK7Jqlc1jbNcJMkB6KZC7K/vEA==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "a package manager for JavaScript";
- homepage = https://docs.npmjs.com/;
- license = "Artistic-2.0";
- };
- production = true;
- bypassCache = true;
- };
- three = nodeEnv.buildNodePackage {
- name = "three";
- packageName = "three";
- version = "0.95.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/three/-/three-0.95.0.tgz";
- sha512 = "vy6jMYs7CDwn47CejYHNi+++OdQue7xGIBhbLfekQ/G6MDxKRm0QB0/xWScz46/JvQAvF6pJAS5Q907l0i5iQA==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "JavaScript 3D library";
- homepage = https://threejs.org/;
- license = "MIT";
- };
- production = true;
- bypassCache = true;
- };
- mathjax = nodeEnv.buildNodePackage {
- name = "mathjax";
- packageName = "mathjax";
- version = "2.7.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/mathjax/-/mathjax-2.7.5.tgz";
- sha512 = "OzsJNitEHAJB3y4IIlPCAvS0yoXwYjlo2Y4kmm9KQzyIBZt2d8yKRalby3uTRNN4fZQiGL2iMXjpdP1u2Rq2DQ==";
- };
- buildInputs = globalBuildInputs;
- meta = {
- description = "Beautiful math in all browsers. MathJax is an open-source JavaScript display engine for LaTeX, MathML, and AsciiMath notation that works in all browsers.";
- homepage = "https://github.com/mathjax/MathJax#readme";
- license = "Apache-2.0";
+ description = "CLI tool for running Yeoman generators";
+ homepage = http://yeoman.io/;
+ license = "BSD-2-Clause";
};
production = true;
bypassCache = true;
diff --git a/pkgs/development/ocaml-modules/bin_prot/default.nix b/pkgs/development/ocaml-modules/bin_prot/default.nix
index 1acb17a8f7a34184c7f4e48fd9426f53720ebfae..bc075295cf33b12ed1c6f98b12257c5c3df08642 100644
--- a/pkgs/development/ocaml-modules/bin_prot/default.nix
+++ b/pkgs/development/ocaml-modules/bin_prot/default.nix
@@ -1,4 +1,8 @@
-{stdenv, buildOcaml, fetchurl, type_conv}:
+{ stdenv, buildOcaml, fetchurl, ocaml, type_conv }:
+
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "bin_prot-112.24.00 is not available for OCaml ${ocaml.version}"
+else
buildOcaml rec {
name = "bin_prot";
diff --git a/pkgs/development/ocaml-modules/bolt/default.nix b/pkgs/development/ocaml-modules/bolt/default.nix
index 121f484ce419da5f0eceaa15896f3fff06205205..b5a4f179b17aed2290262f7820a152b4b8edbb61 100644
--- a/pkgs/development/ocaml-modules/bolt/default.nix
+++ b/pkgs/development/ocaml-modules/bolt/default.nix
@@ -5,6 +5,10 @@ let inherit (stdenv.lib) getVersion versionAtLeast; in
assert versionAtLeast (getVersion ocaml) "4.00.0";
assert versionAtLeast (getVersion findlib) "1.3.3";
+if versionAtLeast ocaml.version "4.06"
+then throw "bolt is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation rec {
name = "bolt-1.4";
diff --git a/pkgs/development/ocaml-modules/camlimages/4.1.nix b/pkgs/development/ocaml-modules/camlimages/4.1.nix
index 77a252de52fd41493b54983272c9cb5c73419326..31b4047efc81efe477ea9f2568244654f961e962 100644
--- a/pkgs/development/ocaml-modules/camlimages/4.1.nix
+++ b/pkgs/development/ocaml-modules/camlimages/4.1.nix
@@ -2,6 +2,10 @@
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00";
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "camlimages-4.1.2 is not available for OCaml ${ocaml.version}"
+else
+
let
pname = "camlimages";
version = "4.1.2";
diff --git a/pkgs/development/ocaml-modules/cil/default.nix b/pkgs/development/ocaml-modules/cil/default.nix
index 0394266353ce774983d0838fe24cbde921f84f0d..5fbb141b6ccea4b8c9cc6277e1e29290524e02e4 100644
--- a/pkgs/development/ocaml-modules/cil/default.nix
+++ b/pkgs/development/ocaml-modules/cil/default.nix
@@ -1,4 +1,9 @@
{ stdenv, fetchurl, perl, ocaml, findlib, ocamlbuild }:
+
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "cil is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation {
name = "ocaml-cil-1.7.3";
src = fetchurl {
diff --git a/pkgs/development/ocaml-modules/cryptgps/default.nix b/pkgs/development/ocaml-modules/cryptgps/default.nix
index cb85ebce50163d1243bc7b27f8ccc80ffe8f1286..f8eb80837a3e92c9c68d1a25cec9ce76fcdcd785 100644
--- a/pkgs/development/ocaml-modules/cryptgps/default.nix
+++ b/pkgs/development/ocaml-modules/cryptgps/default.nix
@@ -1,5 +1,9 @@
{stdenv, fetchurl, ocaml, findlib}:
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "cryptgps is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation rec {
name = "ocaml-cryptgps-${version}";
version = "0.2.1";
diff --git a/pkgs/development/ocaml-modules/dypgen/default.nix b/pkgs/development/ocaml-modules/dypgen/default.nix
index 1bdcae521dd8b198b4373fa1064fb9abf543f6ee..1abf387bdd3fe9580e3f6e8b9dedbdf7b0b130cb 100644
--- a/pkgs/development/ocaml-modules/dypgen/default.nix
+++ b/pkgs/development/ocaml-modules/dypgen/default.nix
@@ -4,6 +4,10 @@ let
pname = "dypgen";
in
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "${pname} is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "20120619-1";
diff --git a/pkgs/development/ocaml-modules/enumerate/default.nix b/pkgs/development/ocaml-modules/enumerate/default.nix
index 557f2f88d8d232b0aa58429912631590f30449ad..4f0c182726de9a49ee98d6c52ec9ea5247ceb062 100644
--- a/pkgs/development/ocaml-modules/enumerate/default.nix
+++ b/pkgs/development/ocaml-modules/enumerate/default.nix
@@ -2,6 +2,10 @@
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00";
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "enumerate-111.08.00 is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation {
name = "ocaml-enumerate-111.08.00";
diff --git a/pkgs/development/ocaml-modules/erm_xml/default.nix b/pkgs/development/ocaml-modules/erm_xml/default.nix
index ae264b657d87a96aa93b4cea2f75050be02d3d45..c944752ff6b6a2451a7817dc3db8e8289cfea198 100644
--- a/pkgs/development/ocaml-modules/erm_xml/default.nix
+++ b/pkgs/development/ocaml-modules/erm_xml/default.nix
@@ -1,5 +1,9 @@
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild }:
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "erm_xml is not available for OCaml ${ocaml.version}"
+else
+
let version = "0.3"; in
stdenv.mkDerivation {
diff --git a/pkgs/development/ocaml-modules/faillib/default.nix b/pkgs/development/ocaml-modules/faillib/default.nix
index 98acc8032e3fdb863c0bce95c77f6fb498eac81d..9b80433b6d19f1f17e4c214e22547f24f88881c7 100644
--- a/pkgs/development/ocaml-modules/faillib/default.nix
+++ b/pkgs/development/ocaml-modules/faillib/default.nix
@@ -1,4 +1,8 @@
-{stdenv, buildOcaml, fetchurl, herelib, camlp4}:
+{ stdenv, buildOcaml, fetchurl, ocaml, herelib, camlp4 }:
+
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "faillib-111.17.00 is not available for OCaml ${ocaml.version}"
+else
buildOcaml rec {
minimumSupportedOcamlVersion = "4.00";
diff --git a/pkgs/development/ocaml-modules/fieldslib/default.nix b/pkgs/development/ocaml-modules/fieldslib/default.nix
index 6a8db9e62816e179e30edcfbab6d02ba4b5e1612..36c1342e61fa2a0f143511aca0bf0e113bd58c14 100644
--- a/pkgs/development/ocaml-modules/fieldslib/default.nix
+++ b/pkgs/development/ocaml-modules/fieldslib/default.nix
@@ -2,6 +2,10 @@
assert stdenv.lib.versionOlder "4.00" (stdenv.lib.getVersion ocaml);
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "fieldslib-109.20.03 is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation {
name = "ocaml-fieldslib-109.20.03";
diff --git a/pkgs/development/ocaml-modules/frontc/default.nix b/pkgs/development/ocaml-modules/frontc/default.nix
index ecf1ddc8fbaed08926049b91ee2312e43a9a56de..e5330789e262cf4b291270b44e604b0c3cbc2c78 100644
--- a/pkgs/development/ocaml-modules/frontc/default.nix
+++ b/pkgs/development/ocaml-modules/frontc/default.nix
@@ -1,4 +1,8 @@
-{lib, buildOcaml, fetchurl}:
+{ lib, buildOcaml, fetchurl, ocaml }:
+
+if lib.versionAtLeast ocaml.version "4.06"
+then throw "FrontC is not available for OCaml ${ocaml.version}"
+else
buildOcaml rec {
name = "FrontC";
diff --git a/pkgs/development/ocaml-modules/gtktop/default.nix b/pkgs/development/ocaml-modules/gtktop/default.nix
index de0334c2a183206a71fe933088acfb463dda67a5..07420693005d2a7e0e2475c92e1791f3009b4693 100644
--- a/pkgs/development/ocaml-modules/gtktop/default.nix
+++ b/pkgs/development/ocaml-modules/gtktop/default.nix
@@ -2,6 +2,10 @@
let pname = "gtktop-2.0"; in
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "${pname} is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation {
name = "ocaml-${pname}";
diff --git a/pkgs/development/ocaml-modules/lwt/legacy.nix b/pkgs/development/ocaml-modules/lwt/legacy.nix
index 53ba904f628e828bbf2854975802fe029247239e..cd40a5051be9e00638bfa8955d9f3336b50f051d 100644
--- a/pkgs/development/ocaml-modules/lwt/legacy.nix
+++ b/pkgs/development/ocaml-modules/lwt/legacy.nix
@@ -6,6 +6,7 @@
}:
if !stdenv.lib.versionAtLeast ocaml.version "4"
+ || stdenv.lib.versionAtLeast ocaml.version "4.06"
then throw "lwt is not available for OCaml ${ocaml.version}"
else
diff --git a/pkgs/development/ocaml-modules/magick/default.nix b/pkgs/development/ocaml-modules/magick/default.nix
index 021962154bd0b5a452f16d1b9772ec1d20fd815f..ca6ab458fff24ec097f5ae09924d25bd44c9d97a 100644
--- a/pkgs/development/ocaml-modules/magick/default.nix
+++ b/pkgs/development/ocaml-modules/magick/default.nix
@@ -1,5 +1,9 @@
{ stdenv, fetchurl, which, pkgconfig, ocaml, findlib, imagemagick }:
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "magick is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation {
name = "ocaml-magick-0.34";
src = fetchurl {
diff --git a/pkgs/development/ocaml-modules/ocaml-cairo/default.nix b/pkgs/development/ocaml-modules/ocaml-cairo/default.nix
index e1590bb0c9ae0ad6712780ea122e1b24e5d45ea6..22215b8da0dc4a02e508bc2d3b7aab3625480656 100644
--- a/pkgs/development/ocaml-modules/ocaml-cairo/default.nix
+++ b/pkgs/development/ocaml-modules/ocaml-cairo/default.nix
@@ -4,6 +4,10 @@ let
pname = "ocaml-cairo";
in
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "${pname} is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "1.2.0";
diff --git a/pkgs/development/ocaml-modules/ocamlsdl/default.nix b/pkgs/development/ocaml-modules/ocamlsdl/default.nix
index e8441cf6937c9f5b78c043dbd17c95a5b83bbfa2..8cfe43a5d322d845b981bb1ec7570262a4b242d9 100644
--- a/pkgs/development/ocaml-modules/ocamlsdl/default.nix
+++ b/pkgs/development/ocaml-modules/ocamlsdl/default.nix
@@ -4,6 +4,10 @@ let
pname = "ocamlsdl";
in
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "${pname} is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "0.9.1";
diff --git a/pkgs/development/ocaml-modules/odn/default.nix b/pkgs/development/ocaml-modules/odn/default.nix
index f30fea2c4192a57ee16c8e6e0d90e3a2f5252a02..a56a6140f8ead5a707f61bbcbe454cc701fbe1c9 100644
--- a/pkgs/development/ocaml-modules/odn/default.nix
+++ b/pkgs/development/ocaml-modules/odn/default.nix
@@ -1,5 +1,9 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, type_conv, ounit, camlp4 }:
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "ocaml-data-notation is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation {
name = "ocaml-data-notation-0.0.11";
diff --git a/pkgs/development/ocaml-modules/ojquery/default.nix b/pkgs/development/ocaml-modules/ojquery/default.nix
index 2d697a285fd3e66489726fba83e8a178d78bea29..8cf5819c9002e10e4caac9db9440365c14308684 100644
--- a/pkgs/development/ocaml-modules/ojquery/default.nix
+++ b/pkgs/development/ocaml-modules/ojquery/default.nix
@@ -1,5 +1,9 @@
{ stdenv, fetchgit, ocaml, findlib, ocamlbuild, js_of_ocaml, js_of_ocaml-camlp4, camlp4, lwt3, react }:
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "ojquery is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation rec {
version = "0.1";
name = "ocaml-ojquery-${version}";
diff --git a/pkgs/development/ocaml-modules/pa_ounit/default.nix b/pkgs/development/ocaml-modules/pa_ounit/default.nix
index fa4ecfcc28b2e331b4f73a8d71bab2764172f5bc..2471c855cf54eec86dc484fedc1e06f226727066 100644
--- a/pkgs/development/ocaml-modules/pa_ounit/default.nix
+++ b/pkgs/development/ocaml-modules/pa_ounit/default.nix
@@ -1,4 +1,8 @@
-{stdenv, buildOcaml, fetchurl, ounit}:
+{ stdenv, buildOcaml, ocaml, fetchurl, ounit }:
+
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "pa_ounit is not available for OCaml ${ocaml.version}"
+else
buildOcaml rec {
name = "pa_ounit";
diff --git a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix b/pkgs/development/ocaml-modules/sqlite3EZ/default.nix
index ef9c254aba14dd48e92c51b5fc18efffcf3d67fd..e8f248ee4a1c918b65d081c01ad5280cb2156f62 100644
--- a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix
+++ b/pkgs/development/ocaml-modules/sqlite3EZ/default.nix
@@ -2,6 +2,10 @@
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.12";
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "sqlite3EZ is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation {
name = "ocaml-sqlite3EZ-0.1.0";
diff --git a/pkgs/development/ocaml-modules/ulex/0.8/default.nix b/pkgs/development/ocaml-modules/ulex/0.8/default.nix
index 288e9a6933e7c267fd61d0833c2e2653545df808..6c0cf9214f294e19600cc9f00793f2fcc698a038 100644
--- a/pkgs/development/ocaml-modules/ulex/0.8/default.nix
+++ b/pkgs/development/ocaml-modules/ulex/0.8/default.nix
@@ -4,6 +4,10 @@ let
pname = "ulex";
in
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "ulex-0.8 is not available for OCaml ${ocaml.version}"
+else
+
stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "0.8";
diff --git a/pkgs/development/ocaml-modules/variantslib/default.nix b/pkgs/development/ocaml-modules/variantslib/default.nix
index cb25b844606d0407daeda0c0167fbdbace113c4d..425383a648540d4559d98deb6074e1cf4bef4f62 100644
--- a/pkgs/development/ocaml-modules/variantslib/default.nix
+++ b/pkgs/development/ocaml-modules/variantslib/default.nix
@@ -1,4 +1,8 @@
-{stdenv, buildOcaml, fetchurl, type_conv}:
+{ stdenv, buildOcaml, ocaml, fetchurl, type_conv }:
+
+if stdenv.lib.versionAtLeast ocaml.version "4.06"
+then throw "variantslib-109.15.03 is not available for OCaml ${ocaml.version}"
+else
buildOcaml rec {
name = "variantslib";
diff --git a/pkgs/development/perl-modules/DB_File/default.nix b/pkgs/development/perl-modules/DB_File/default.nix
index b34ea38736609ccc1dde01f3ea6563d1d5a74676..b3ca12421e41bd50796979779e7f00daa7c22aaa 100644
--- a/pkgs/development/perl-modules/DB_File/default.nix
+++ b/pkgs/development/perl-modules/DB_File/default.nix
@@ -1,11 +1,11 @@
{fetchurl, buildPerlPackage, db}:
buildPerlPackage rec {
- name = "DB_File-1.841";
+ name = "DB_File-1.842";
src = fetchurl {
url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz";
- sha256 = "11fks42kgscpia0mxx4lc9krm7q4gv6w7m5h3m2jr3dl7viv36hn";
+ sha256 = "0w2d99vs9qarng2f9fpg3gchfdzy6an13507jhclcl8wv183h5hg";
};
preConfigure = ''
diff --git a/pkgs/development/python-modules/APScheduler/default.nix b/pkgs/development/python-modules/APScheduler/default.nix
index 5e108cd7dcf7f888a8eb0e2fa8cd483bc7ff1cdc..f3c8c57f576606f401007de8b9c5513569ac742d 100644
--- a/pkgs/development/python-modules/APScheduler/default.nix
+++ b/pkgs/development/python-modules/APScheduler/default.nix
@@ -20,11 +20,11 @@
buildPythonPackage rec {
pname = "APScheduler";
- version = "3.5.1";
+ version = "3.5.3";
src = fetchPypi {
inherit pname version;
- sha256 = "952c8f46a11f32b9d5bfbe3e347dac2cdf0680d8b4799590dc9c3a9865b73b65";
+ sha256 = "6599bc78901ee7e9be85cbd073d9cc155c42d2bc867c5cde4d4d1cc339ebfbeb";
};
buildInputs = [
diff --git a/pkgs/development/python-modules/Flask-PyMongo/default.nix b/pkgs/development/python-modules/Flask-PyMongo/default.nix
index 6a14607ad27fbae63dfd700e8c815f64bf75f826..862fd84c492170c1d8ad6fe7a658660ef82854cc 100644
--- a/pkgs/development/python-modules/Flask-PyMongo/default.nix
+++ b/pkgs/development/python-modules/Flask-PyMongo/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "Flask-PyMongo";
- version = "2.0.1";
+ version = "2.1.0";
src = fetchPypi {
inherit pname version;
- sha256 = "6a02add52ac245064720c2bb8b02074b9a5a0d9498279510ea2a537512fd3fa5";
+ sha256 = "0b99dd99985660ebbc4b34bb44550f88a527cbc573faa01febccce3c4ab28347";
};
checkInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/XlsxWriter/default.nix b/pkgs/development/python-modules/XlsxWriter/default.nix
index be5ad2a5c1c57b9073a072173cc85acf31bca152..71229b886e7bc94236f5e5a80316b562ae55fd4b 100644
--- a/pkgs/development/python-modules/XlsxWriter/default.nix
+++ b/pkgs/development/python-modules/XlsxWriter/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "XlsxWriter";
- version = "1.0.5";
+ version = "1.0.9";
src = fetchPypi {
inherit pname version;
- sha256 = "bd4661c04a68621cb2ebc07c38b8b2e98e30bf213a16e1cf3675b61e26ca9bf2";
+ sha256 = "98a94b32d4929d3e34595b4654b8e7f951182f540056b9cb734c88899912f729";
};
meta = {
diff --git a/pkgs/development/python-modules/absl-py/default.nix b/pkgs/development/python-modules/absl-py/default.nix
index 1cb5275a6c326535d9e2c214e451904dd2fd363a..a087eaeca83410120488329f8dda35b9d1731d35 100644
--- a/pkgs/development/python-modules/absl-py/default.nix
+++ b/pkgs/development/python-modules/absl-py/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "absl-py";
- version = "0.2.2";
+ version = "0.4.1";
src = fetchPypi {
inherit pname version;
- sha256 = "e0eb8358b549552b1cc5972350bc3e41dd0a926c15b3ff95ce60f3c78c80824c";
+ sha256 = "1e6e70506fb4d867cf269af7bcc27b744c36bbc4c516f0f8ccf2039956deea72";
};
propagatedBuildInputs = [ six ];
diff --git a/pkgs/development/python-modules/aiofiles/default.nix b/pkgs/development/python-modules/aiofiles/default.nix
index 572c18171d137324fc023296eb0f653adebee703..55d68f93f2c7eaf43b4891c86a253c7d2dfd55b2 100644
--- a/pkgs/development/python-modules/aiofiles/default.nix
+++ b/pkgs/development/python-modules/aiofiles/default.nix
@@ -9,11 +9,11 @@
buildPythonPackage rec {
pname = "aiofiles";
- version = "0.3.2";
+ version = "0.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "852a493a877b73e11823bfd4e8e5ef2610d70d12c9eaed961bcd9124d8de8c10";
+ sha256 = "021ea0ba314a86027c166ecc4b4c07f2d40fc0f4b3a950d1868a0f2571c2bbee";
};
disabled = pythonOlder "3.3";
diff --git a/pkgs/development/python-modules/aiohue/default.nix b/pkgs/development/python-modules/aiohue/default.nix
index 1492a15aadf384448d736d7827b35cc6ec7a0787..d5572bb6d1d643e0c0f27b62e4c6768cdb4bad84 100644
--- a/pkgs/development/python-modules/aiohue/default.nix
+++ b/pkgs/development/python-modules/aiohue/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "aiohue";
- version = "1.6.0";
+ version = "1.7.0";
src = fetchPypi {
inherit pname version;
- sha256 = "87f0f86865e88ea715ab358b1e5f2838b79ee7cdc0bdf762e9ed60aaf4c8bd4a";
+ sha256 = "26989babdc3f38575164b60b9536309271d58db005a03045b6e9cca4fc5201d8";
};
propagatedBuildInputs = [ aiohttp ];
diff --git a/pkgs/development/python-modules/allpairspy/default.nix b/pkgs/development/python-modules/allpairspy/default.nix
index e21b43c60e0db4d366e42e48560c156869381bfd..d1f97d8e7c72887c1b82d0a233d32b25ec024f1a 100644
--- a/pkgs/development/python-modules/allpairspy/default.nix
+++ b/pkgs/development/python-modules/allpairspy/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "allpairspy";
- version = "2.4.0";
+ version = "2.4.1";
src = fetchPypi {
inherit pname version;
- sha256 = "9fb7962ee523bd96c5098cd3c97ac1b8eb73021d3df9314657ee9de00f52e034";
+ sha256 = "e8b35751f91692bf0318091b3f44cdf9bbbe3f37a2ff4786eaffc09dc7114fb3";
};
propagatedBuildInputs = [ six ];
diff --git a/pkgs/development/python-modules/argon2_cffi/default.nix b/pkgs/development/python-modules/argon2_cffi/default.nix
index ce371076256e929a5c4ba726b2dd2b3944848cc2..120928656b4c0829a628fbf70f3342b361efc5e6 100644
--- a/pkgs/development/python-modules/argon2_cffi/default.nix
+++ b/pkgs/development/python-modules/argon2_cffi/default.nix
@@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "argon2_cffi";
- version = "18.1.0";
+ version = "18.3.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "7e4b75611b73f53012117ad21cdde7a17b32d1e99ff6799f22d827eb83a2a59b";
+ sha256 = "003f588de43a817af6ecc1c06103fa0801de63849db3cb0f37576bb2da29043d";
};
propagatedBuildInputs = [ cffi six ];
diff --git a/pkgs/development/python-modules/ase/default.nix b/pkgs/development/python-modules/ase/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..1f7b9419278eb54ca89b710aa0970c225636f765
--- /dev/null
+++ b/pkgs/development/python-modules/ase/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, fetchurl
+, buildPythonPackage
+, numpy
+, scipy
+, matplotlib
+, flask
+, pillow
+, psycopg2
+}:
+
+buildPythonPackage rec {
+ version = "3.16.2";
+ pname = "ase";
+
+ src = fetchurl {
+ url = "https://gitlab.com/${pname}/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
+ sha256 = "171j3f4a261cfnqjq98px5fldxql65i3jgf60wc945xvh0mbc8ds";
+ };
+
+ propagatedBuildInputs = [ numpy scipy matplotlib flask pillow psycopg2 ];
+
+ checkPhase = ''
+ $out/bin/ase test
+ '';
+
+ # tests just hang most likely due to something with subprocesses and cli
+ doCheck = false;
+
+ meta = {
+ description = "Atomic Simulation Environment";
+ homepage = https://wiki.fysik.dtu.dk/ase/;
+ license = lib.licenses.lgpl21Plus;
+ maintainers = with lib.maintainers; [ costrouc ];
+ };
+}
diff --git a/pkgs/development/python-modules/astroid/default.nix b/pkgs/development/python-modules/astroid/default.nix
index ea087ce4f5fbeb3a14ddbb51793959b1c8b42f1e..ccf6f40552695ebbd6a39158f0c090d1caf72607 100644
--- a/pkgs/development/python-modules/astroid/default.nix
+++ b/pkgs/development/python-modules/astroid/default.nix
@@ -5,13 +5,13 @@
buildPythonPackage rec {
pname = "astroid";
- version = "2.0.1";
+ version = "2.0.4";
disabled = pythonOlder "3.4";
src = fetchPypi {
inherit pname version;
- sha256 = "218e36cf8d98a42f16214e8670819ce307fa707d1dcf7f9af84c7aede1febc7f";
+ sha256 = "c7013d119ec95eb626f7a2011f0b63d0c9a095df9ad06d8507b37084eada1a8d";
};
# From astroid/__pkginfo__.py
diff --git a/pkgs/development/python-modules/astropy/default.nix b/pkgs/development/python-modules/astropy/default.nix
index 4901b798955f377741a9c9abd67ac4f3577a5f34..acbd7c2ec65b4d8538502f954659cdfced1a70e2 100644
--- a/pkgs/development/python-modules/astropy/default.nix
+++ b/pkgs/development/python-modules/astropy/default.nix
@@ -7,7 +7,7 @@
buildPythonPackage rec {
pname = "astropy";
- version = "3.0.3";
+ version = "3.0.4";
disabled = !isPy3k; # according to setup.py
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "6af07abe5e263820a3dec93832a6ad74005013071490e125afbc6514411721da";
+ sha256 = "f5d37d20632ba74bd0b12a85179c12f64a9ea037ffc916d8a2de3be4f4656c76";
};
propagatedBuildInputs = [ pytest numpy ]; # yes it really has pytest in install_requires
diff --git a/pkgs/development/python-modules/async_generator/default.nix b/pkgs/development/python-modules/async_generator/default.nix
index 4f46376b62def0b82b7b0767af34ee24500404be..6bf77ecd75e1242ca5101ef7ae7cff1570d126ce 100644
--- a/pkgs/development/python-modules/async_generator/default.nix
+++ b/pkgs/development/python-modules/async_generator/default.nix
@@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "async_generator";
- version = "1.9";
+ version = "1.10";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
- sha256 = "b7d5465c6174fe86dba498ececb175f93a6097ffb7cc91946405e1f05b848371";
+ sha256 = "6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144";
};
checkInputs = [ pytest pytest-asyncio ];
diff --git a/pkgs/development/python-modules/authres/default.nix b/pkgs/development/python-modules/authres/default.nix
index b5aad787dfbf45e839f0ca54906942a5a3cea4c2..a0ec276f22d7d7a1ace74a5923ad3fabeb2706d4 100644
--- a/pkgs/development/python-modules/authres/default.nix
+++ b/pkgs/development/python-modules/authres/default.nix
@@ -21,7 +21,7 @@ buildPythonPackage rec {
Authentication-Results Headers generation and parsing for
Python/Python3.
'';
- homepage = https://launchpad.net/authres;
+ homepage = https://launchpad.net/authentication-results-python;
license = licenses.bsd3;
maintainers = with maintainers; [ leenaars ];
};
diff --git a/pkgs/development/python-modules/autobahn/default.nix b/pkgs/development/python-modules/autobahn/default.nix
index 30479ce8266a12821e909416b5b950eb9069aa2d..04aa9411247eeb1c1ad1eb6ed65bf5ebb0ed1bb4 100644
--- a/pkgs/development/python-modules/autobahn/default.nix
+++ b/pkgs/development/python-modules/autobahn/default.nix
@@ -1,27 +1,29 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, isPy33,
unittest2, mock, pytest, trollius, asyncio,
- pytest-asyncio, futures,
+ pytest-asyncio, futures, cffi,
six, twisted, txaio, zope_interface
}:
buildPythonPackage rec {
pname = "autobahn";
- version = "18.6.1";
+ version = "18.8.1";
src = fetchPypi {
inherit pname version;
- sha256 = "2f41bfc512ec482044fa8cfa74182118dedd87e03b3494472d9ff1b5a1e27d24";
+ sha256 = "b69858e0be4bff8437b0bd82a0db1cbef7405e16bd9354ba587c043d6d5e1ad9";
};
# Upstream claim python2 support, but tests require pytest-asyncio which
# is pythn3 only. Therefore, tests are skipped for python2.
doCheck = isPy3k;
- buildInputs = stdenv.lib.optionals isPy3k [ unittest2 mock pytest pytest-asyncio ];
- propagatedBuildInputs = [ six twisted zope_interface txaio ] ++
+ checkInputs = stdenv.lib.optionals isPy3k [ unittest2 mock pytest pytest-asyncio ];
+ propagatedBuildInputs = [ cffi six twisted zope_interface txaio ] ++
(stdenv.lib.optional isPy33 asyncio) ++
(stdenv.lib.optionals (!isPy3k) [ trollius futures ]);
checkPhase = ''
+ runHook preCheck
USE_TWISTED=true py.test $out
+ runHook postCheck
'';
meta = with stdenv.lib; {
@@ -29,6 +31,5 @@ buildPythonPackage rec {
homepage = "https://crossbar.io/autobahn";
license = licenses.mit;
maintainers = with maintainers; [ nand0p ];
- platforms = platforms.all;
};
}
diff --git a/pkgs/development/python-modules/aws-adfs/default.nix b/pkgs/development/python-modules/aws-adfs/default.nix
index c42ad6f1d6c90c419771d2354a438c3cc3294212..bce64a635e370e82b15c6731f1975863a472774d 100644
--- a/pkgs/development/python-modules/aws-adfs/default.nix
+++ b/pkgs/development/python-modules/aws-adfs/default.nix
@@ -2,12 +2,12 @@
, pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, boto3, requests, click, configparser }:
buildPythonPackage rec {
- version = "0.12.0";
+ version = "0.12.1";
pname = "aws-adfs";
src = fetchPypi {
inherit pname version;
- sha256 = "1cjrm61k6905dmhgrqyc5caxx5hbhj3sr6cx4r6sbdyz453i7pc6";
+ sha256 = "72725d7005252b96ccfa9719fe4beec2b86301bff894d4d97a50fc1d05393fd8";
};
# Relax version constraint
diff --git a/pkgs/development/python-modules/backports_lzma/default.nix b/pkgs/development/python-modules/backports_lzma/default.nix
index c650076d4c0025c58f312f5a3141823883907600..82025df8b9e92df35cb57d8e9f7972096290d3a8 100644
--- a/pkgs/development/python-modules/backports_lzma/default.nix
+++ b/pkgs/development/python-modules/backports_lzma/default.nix
@@ -20,14 +20,16 @@ if !(pythonOlder "3.3") then null else buildPythonPackage rec {
buildInputs = [ lzma ];
- # Needs the compiled module in $out
checkPhase = ''
- PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH ${python.interpreter} -m unittest discover -s test
+ ${python.interpreter} test/test_lzma.py
'';
+ # Relative import does not seem to function.
+ doCheck = false;
+
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/beautifulsoup4/default.nix b/pkgs/development/python-modules/beautifulsoup4/default.nix
index 6ae838265b18c344ab472f4b28e45cbc3f39286d..7cf4f36a2f0f984e8e7420aaaa5c43d072925809 100644
--- a/pkgs/development/python-modules/beautifulsoup4/default.nix
+++ b/pkgs/development/python-modules/beautifulsoup4/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "beautifulsoup4";
- version = "4.6.0";
+ version = "4.6.3";
src = fetchPypi {
inherit pname version;
- sha256 = "12cf0ygpz9srpfh9gx2f9ba0swa1rzypv3sm4r0hmjyw6b4nm2w0";
+ sha256 = "90f8e61121d6ae58362ce3bed8cd997efb00c914eae0ff3d363c32f9a9822d10";
};
buildInputs = [ nose ];
diff --git a/pkgs/development/python-modules/bitmath/default.nix b/pkgs/development/python-modules/bitmath/default.nix
index bb2e60468861c6d3ac759ae70f5e007f37d5d6d0..092ad6c100354c97686cfba42189a6f115d9fb4d 100644
--- a/pkgs/development/python-modules/bitmath/default.nix
+++ b/pkgs/development/python-modules/bitmath/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "bitmath";
- version = "1.3.1.2";
+ version = "1.3.3.1";
src = fetchPypi {
inherit pname version;
- sha256 = "1k8d1wmxqjc8cqzaixpxf45k6dl1kqhblr0g4wyjl0qa18q8wasd";
+ sha256 = "293325f01e65defe966853111df11d39215eb705a967cb115851da8c4cfa3eb8";
};
checkInputs = [ (if isPy3k then progressbar33 else progressbar231) mock ];
diff --git a/pkgs/development/python-modules/bleach/default.nix b/pkgs/development/python-modules/bleach/default.nix
index 786564b92e0163da0b5f666b819cc9ba55db3a5b..3c5f1d441906f49bf63b05c2607fe35c72adc599 100644
--- a/pkgs/development/python-modules/bleach/default.nix
+++ b/pkgs/development/python-modules/bleach/default.nix
@@ -9,11 +9,11 @@
buildPythonPackage rec {
pname = "bleach";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchPypi {
inherit pname version;
- sha256 = "eb7386f632349d10d9ce9d4a838b134d4731571851149f9cc2c05a9a837a9a44";
+ sha256 = "0ee95f6167129859c5dce9b1ca291ebdb5d8cd7e382ca0e237dfd0dad63f63d8";
};
checkInputs = [ pytest pytestrunner ];
diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix
index b320db51e3c0e95ded9238ef59d6c7f11b13c3e0..613be1f7d6b7779647b7fee0cf8a1de9e62a221a 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 = "40.0.0";
+ version = "40.2.0";
format = "wheel";
- sha256 = "d68abee4eed409fbe8c302ac4d8429a1ffef912cd047a903b5701c024048dd49";
+ sha256 = "ea3796a48a207b46ea36a9d26de4d0cc87c953a683a7b314ea65d666930ea8e6";
};
in stdenv.mkDerivation rec {
diff --git a/pkgs/development/python-modules/boto3/default.nix b/pkgs/development/python-modules/boto3/default.nix
index dca7844dec9c582a1660795ca656a72e9f7c5fb3..31f050007a680f6776da30bd15f2fee1a5d40882 100644
--- a/pkgs/development/python-modules/boto3/default.nix
+++ b/pkgs/development/python-modules/boto3/default.nix
@@ -13,13 +13,13 @@
buildPythonPackage rec {
pname = "boto3";
- version = "1.7.57";
+ version = "1.7.84";
src = fetchFromGitHub {
owner = "boto";
repo = "boto3";
rev = version;
- sha256 = "0rp3vclx7mvfl6isa47m7dzlrf33qb9vj53p0gj4cw3mgl14cnbl";
+ sha256 = "0d9kqjqmnn53p1xpmdbbjxcxv2482yx3vjhxw8izp0mpq58i5c14";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
diff --git a/pkgs/development/python-modules/botocore/default.nix b/pkgs/development/python-modules/botocore/default.nix
index f1475aed69314e9fcd80ae91963010178907ff1b..989b6e944dea1cbda72dedd319357d1985b5a40c 100644
--- a/pkgs/development/python-modules/botocore/default.nix
+++ b/pkgs/development/python-modules/botocore/default.nix
@@ -11,11 +11,11 @@
buildPythonPackage rec {
pname = "botocore";
- version = "1.10.65";
+ version = "1.10.84";
src = fetchPypi {
inherit pname version;
- sha256 = "35f626029a6b17bfd503ce3379b121606e3f965edcab2612bc75ce8603fdf08c";
+ sha256 = "d3e4b5a2c903ea30d19d41ea2f65d0e51dce54f4f4c4dfd6ecd7b04f240844a8";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/bottleneck/default.nix b/pkgs/development/python-modules/bottleneck/default.nix
index c9ca8f7ec0473525797ffe17463ad516a252418f..c4db013ea34d3c95a6c1e8109163a14a7639a096 100644
--- a/pkgs/development/python-modules/bottleneck/default.nix
+++ b/pkgs/development/python-modules/bottleneck/default.nix
@@ -1,6 +1,7 @@
{ buildPythonPackage
, fetchPypi
, nose
+, pytest
, numpy
, python
}:
@@ -15,10 +16,10 @@ buildPythonPackage rec {
sha256 = "6efcde5f830aed64feafca0359b51db0e184c72af8ba6675b4a99f263922eb36";
};
- checkInputs = [ nose ];
+ checkInputs = [ pytest nose ];
propagatedBuildInputs = [ numpy ];
checkPhase = ''
- nosetests -v $out/${python.sitePackages}
+ py.test -p no:warnings $out/${python.sitePackages}
'';
postPatch = ''
substituteInPlace setup.py --replace "__builtins__.__NUMPY_SETUP__ = False" ""
diff --git a/pkgs/development/python-modules/breathe/default.nix b/pkgs/development/python-modules/breathe/default.nix
index a76b7b2611bddbb93ff531d1121588193d94d077..645f75eb323643d0186e46d3b405a466e7e3cabe 100644
--- a/pkgs/development/python-modules/breathe/default.nix
+++ b/pkgs/development/python-modules/breathe/default.nix
@@ -1,12 +1,12 @@
{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k }:
buildPythonPackage rec {
- version = "4.9.1";
+ version = "4.10.0";
pname = "breathe";
src = fetchPypi {
inherit pname version;
- sha256 = "76e1f3706efeda2610d9a8e7b421d2877ff0654a3fe6d3190a8686536111a684";
+ sha256 = "e94370b8b607a32d9611ed8246e635f02c21dc6847f04e888a00f66a12694eff";
};
propagatedBuildInputs = [ docutils six sphinx ];
diff --git a/pkgs/development/python-modules/btrees/default.nix b/pkgs/development/python-modules/btrees/default.nix
index c031c872da35c4eb322c933330f22d2b2b933411..c96d305a7f61179c0051019423dcce5369ca6f4d 100644
--- a/pkgs/development/python-modules/btrees/default.nix
+++ b/pkgs/development/python-modules/btrees/default.nix
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "BTrees";
- version = "4.5.0";
+ version = "4.5.1";
buildInputs = [ transaction ];
propagatedBuildInputs = [ persistent zope_interface ];
@@ -17,7 +17,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "46b02cb69b26a5238db771ea1955b503df73ecf254bb8063af4c61999fc75b5c";
+ sha256 = "dcc096c3cf92efd6b9365951f89118fd30bc209c9af83bf050a28151a9992786";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/bugwarrior/default.nix b/pkgs/development/python-modules/bugwarrior/default.nix
index ada8397f97541406a11e0a03b3e9f4163409fe4f..844aebbbb9656e700b13b817425622346c516d1d 100644
--- a/pkgs/development/python-modules/bugwarrior/default.nix
+++ b/pkgs/development/python-modules/bugwarrior/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "bugwarrior";
- version = "1.5.1";
+ version = "1.6.0";
src = fetchPypi {
inherit pname version;
- sha256 = "0kxknjbw5kchd88i577vlzibg8j60r7zzdhbnragj9wg5s3w60xb";
+ sha256 = "cfa4fac19b4f4638928347b8fe192315f72813c3e8ed668867e5891338c7e4ec";
};
buildInputs = [ mock unittest2 nose /* jira megaplan */ ];
diff --git a/pkgs/development/python-modules/buildout/default.nix b/pkgs/development/python-modules/buildout/default.nix
index 9efc53ebe6da924e7ec4ee471d080c3427c799e4..c75b9fdb6ccbc3dabe6b2ca436f1adec5d9e2714 100644
--- a/pkgs/development/python-modules/buildout/default.nix
+++ b/pkgs/development/python-modules/buildout/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "zc.buildout";
- version = "2.2.5";
+ version = "2.12.1";
src = fetchPypi {
inherit pname version;
- sha256 = "fb08f24f9e51e647e29d714f6e9ad51a4ea28673dddeed831315617bb5a805d0";
+ sha256 = "1e180b62fd129a68cb3a9ec8eb0ef457e18921269a93e87ef2cc34519415332d";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/cairocffi/cairocffi-0.8.1-cairo-1.15.12.patch b/pkgs/development/python-modules/cairocffi/cairocffi-0.8.1-cairo-1.15.12.patch
deleted file mode 100644
index 4d142275b9e845da1a82f484befb4ab9341dd5f1..0000000000000000000000000000000000000000
--- a/pkgs/development/python-modules/cairocffi/cairocffi-0.8.1-cairo-1.15.12.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/cairocffi/test_cairo.py b/cairocffi/test_cairo.py
-index 1588349..5452910 100644
---- a/cairocffi/test_cairo.py
-+++ b/cairocffi/test_cairo.py
-@@ -292,7 +292,8 @@ def test_pdf_surface():
- pdf_bytes = file_obj.getvalue()
- assert pdf_bytes.startswith(b'%PDF')
- assert b'/MediaBox [ 0 0 123 432 ]' in pdf_bytes
-- assert pdf_bytes.count(b'/Type /Page\n') == 1
-+ assert pdf_bytes.count(b'/Type /Pages') == 1
-+ assert pdf_bytes.count(b'/Type /Page') == 2
-
- file_obj = io.BytesIO()
- surface = PDFSurface(file_obj, 1, 1)
-@@ -306,7 +307,8 @@ def test_pdf_surface():
- assert b'/MediaBox [ 0 0 1 1 ]' not in pdf_bytes
- assert b'/MediaBox [ 0 0 12 100 ]' in pdf_bytes
- assert b'/MediaBox [ 0 0 42 700 ]' in pdf_bytes
-- assert pdf_bytes.count(b'/Type /Page\n') == 2
-+ assert pdf_bytes.count(b'/Type /Pages') == 1
-+ assert pdf_bytes.count(b'/Type /Page') == 3
-
-
- def test_svg_surface():
diff --git a/pkgs/development/python-modules/cairocffi/default.nix b/pkgs/development/python-modules/cairocffi/default.nix
index 13d00d0529c0b5501dd80784ba61ff10923df66c..bdd11fb3de6f6f4b4f78f34bfdbe9ccfc35356a2 100644
--- a/pkgs/development/python-modules/cairocffi/default.nix
+++ b/pkgs/development/python-modules/cairocffi/default.nix
@@ -17,11 +17,11 @@
buildPythonPackage rec {
pname = "cairocffi";
- version = "0.8.1";
+ version = "0.9.0";
src = fetchPypi {
inherit pname version;
- sha256 = "0y373vafv7q35msg7gqdn7niifr3j4j4n070hflxshahs59irss7";
+ sha256 = "15386c3a9e08823d6826c4491eaccc7b7254b1dc587a3b9ce60c350c3f990337";
};
LC_ALL = "en_US.UTF-8";
@@ -49,7 +49,6 @@ buildPythonPackage rec {
gdk_pixbuf = gdk_pixbuf.out;
})
./fix_test_scaled_font.patch
- ./cairocffi-0.8.1-cairo-1.15.12.patch
];
meta = with lib; {
diff --git a/pkgs/development/python-modules/celery/default.nix b/pkgs/development/python-modules/celery/default.nix
index 71911da08f43b2977aea7b9b83c70939e15b97aa..df260b3adb7dc89d5f01ee869cd2f61c5d8ccceb 100644
--- a/pkgs/development/python-modules/celery/default.nix
+++ b/pkgs/development/python-modules/celery/default.nix
@@ -2,7 +2,18 @@
pytest, case, kombu, billiard, pytz, anyjson, amqp, eventlet
}:
-buildPythonPackage rec {
+let
+
+ # Needed for celery
+ pytest_32 = pytest.overridePythonAttrs( oldAttrs: rec {
+ version = "3.2.5";
+ src = oldAttrs.src.override {
+ inherit version;
+ sha256 = "6d5bd4f7113b444c55a3bbb5c738a3dd80d43563d063fc42dcb0aaefbdd78b81";
+ };
+ });
+
+in buildPythonPackage rec {
pname = "celery";
version = "4.2.0";
@@ -27,7 +38,7 @@ buildPythonPackage rec {
unset NIX_REDIRECTS LD_PRELOAD
'';
- buildInputs = [ pytest case ];
+ checkInputs = [ pytest_32 case ];
propagatedBuildInputs = [ kombu billiard pytz anyjson amqp eventlet ];
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/cement/default.nix b/pkgs/development/python-modules/cement/default.nix
index 9b744957540f8338427464b1f8b98204a33a4c46..16b74913b7b06a6d8f56d56c4dcc66fbfda76267 100644
--- a/pkgs/development/python-modules/cement/default.nix
+++ b/pkgs/development/python-modules/cement/default.nix
@@ -1,18 +1,20 @@
-{ stdenv, buildPythonPackage, fetchPypi }:
+{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "cement";
- version = "2.10.12";
+ version = "3.0.0";
src = fetchPypi {
inherit pname version;
- sha256 = "58efb4eacd9ec977ce797a364a13851de6e42392bbde5287d44294f06c5a2f70";
+ sha256 = "e50e1033d61d18b36787a60d52cad0d3fe20780e7e2f78f0204bde32000645f9";
};
# Disable test tests since they depend on a memcached server running on
# 127.0.0.1:11211.
doCheck = false;
+ disabled = !isPy3k;
+
meta = with stdenv.lib; {
homepage = http://builtoncement.com/;
description = "A CLI Application Framework for Python.";
diff --git a/pkgs/development/python-modules/certifi/default.nix b/pkgs/development/python-modules/certifi/default.nix
index 3bc686121cf050751d5a47638c27d33fd731336a..40b3338fdec18f563eb5344f6824a9a0f0ad3d56 100644
--- a/pkgs/development/python-modules/certifi/default.nix
+++ b/pkgs/development/python-modules/certifi/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "certifi";
- version = "2018.4.16";
+ version = "2018.8.24";
src = fetchPypi {
inherit pname version;
- sha256 = "13e698f54293db9f89122b0581843a782ad0934a4fe0172d2a980ba77fc61bb7";
+ sha256 = "376690d6f16d32f9d1fe8932551d80b23e9d393a8578c5633a2ed39a64861638";
};
meta = {
diff --git a/pkgs/development/python-modules/cftime/default.nix b/pkgs/development/python-modules/cftime/default.nix
index 425a53987caf73585efc457480f72b5477a61822..9190f274a24fb683479f25d4063dfa797d075d7c 100644
--- a/pkgs/development/python-modules/cftime/default.nix
+++ b/pkgs/development/python-modules/cftime/default.nix
@@ -9,11 +9,11 @@
buildPythonPackage rec {
pname = "cftime";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "f62fe79ed2ad38f4211477e59f6f045c91278351f4ce7578e33ddf52fb121ea8";
+ sha256 = "20556931f546838d09be5d589482dfae6164e0d403f0aab2163c006b680d3b92";
};
checkInputs = [ pytest coveralls pytestcov ];
diff --git a/pkgs/development/python-modules/chainer/default.nix b/pkgs/development/python-modules/chainer/default.nix
index d332d99cf809141fbabdb162c9d2a2ee30daf0e6..d0467888a8854a1d3ecf679a8c6ccee7459ea66e 100644
--- a/pkgs/development/python-modules/chainer/default.nix
+++ b/pkgs/development/python-modules/chainer/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "chainer";
- version = "4.3.0";
+ version = "4.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "a83044256edb1946c47cb9ae687d195c2aa0deaef46ab85a8ffc4a01f7001683";
+ sha256 = "9cc4d43e1ea3e0766e211e4e755dbb879f2cf27a805cfa52e32b99fd1e5f24dd";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/channels/default.nix b/pkgs/development/python-modules/channels/default.nix
index c63fe87dedcd083bd2757127ca8f1d71c502a3c4..cdcfc72000d534c9e2d4be9f9931a6688bace802 100644
--- a/pkgs/development/python-modules/channels/default.nix
+++ b/pkgs/development/python-modules/channels/default.nix
@@ -3,11 +3,11 @@
}:
buildPythonPackage rec {
pname = "channels";
- version = "2.1.2";
+ version = "2.1.3";
src = fetchPypi {
inherit pname version;
- sha256 = "173441ccf2ac3a93c3b4f86135db301cbe95be58f5815c1e071f2e7154c192a2";
+ sha256 = "8d503d18b92cef488ba68808a2205e055d29a6a1abae92d277f8f7a9c8752f13";
};
# Files are missing in the distribution
diff --git a/pkgs/development/python-modules/cherrypy/default.nix b/pkgs/development/python-modules/cherrypy/default.nix
index e9ae4bde8cc7370e144661d81dc86fe0bce8c6e7..cb3c48c0882022f2830da09076254174d0776021 100644
--- a/pkgs/development/python-modules/cherrypy/default.nix
+++ b/pkgs/development/python-modules/cherrypy/default.nix
@@ -1,20 +1,20 @@
{ lib, buildPythonPackage, fetchPypi
-, cheroot, portend, routes, six
-, setuptools_scm
+, cheroot, contextlib2, portend, routes, six
+, setuptools_scm, zc_lockfile
, backports_unittest-mock, objgraph, pathpy, pytest, pytestcov
, backports_functools_lru_cache, requests_toolbelt
}:
buildPythonPackage rec {
pname = "CherryPy";
- version = "17.0.0";
+ version = "17.3.0";
src = fetchPypi {
inherit pname version;
- sha256 = "3cdb5fbae183db49ab1f1a90643d521aa060c93f90001cc99c19d8d15b7a3fb7";
+ sha256 = "c3e4d76232ade4c47666b9008f92556465df517b8dca833ece3bed027028ae7d";
};
- propagatedBuildInputs = [ cheroot portend routes six ];
+ propagatedBuildInputs = [ cheroot contextlib2 portend routes six zc_lockfile ];
buildInputs = [ setuptools_scm ];
diff --git a/pkgs/development/python-modules/cloudpickle/default.nix b/pkgs/development/python-modules/cloudpickle/default.nix
index acae5d73b2cf4fc2a09459b0db3d9c0a54d55572..f70ebee411ab60f73077fb070de4238f7705cd78 100644
--- a/pkgs/development/python-modules/cloudpickle/default.nix
+++ b/pkgs/development/python-modules/cloudpickle/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "cloudpickle";
- version = "0.5.3";
+ version = "0.5.5";
src = fetchPypi {
inherit pname version;
- sha256 = "54858c7b7dc763ed894ff91059c1d0b017d593fe23850d3d8d75f47d98398197";
+ sha256 = "6ea4b548f61a4f616b065182716318c7dced8c053517f35ac59cec22802daf3d";
};
buildInputs = [ pytest mock ];
diff --git a/pkgs/development/python-modules/cmd2/default.nix b/pkgs/development/python-modules/cmd2/default.nix
index 1997c2389ab0c8efe0ba603c7d46513e3ce734de..4217d193cfea9ce3368999935200229f6c9d3bfe 100644
--- a/pkgs/development/python-modules/cmd2/default.nix
+++ b/pkgs/development/python-modules/cmd2/default.nix
@@ -1,15 +1,15 @@
{ stdenv, fetchPypi, buildPythonPackage, pythonOlder, isPy3k
, pyperclip, six, pyparsing, vim, wcwidth, colorama
-, contextlib2 ? null
+, contextlib2 ? null, setuptools_scm
, pytest, mock, which, glibcLocales
}:
buildPythonPackage rec {
pname = "cmd2";
- version = "0.9.3";
+ version = "0.9.4";
src = fetchPypi {
inherit pname version;
- sha256 = "cffc94ad46425f80dfb243f53f456b11cea3f45e683504a60b64618a6d28b417";
+ sha256 = "0037dcf92331c63ae43e7e644536e646fff8be2fd5a83da06b3482f910f929c6";
};
LC_ALL="en_US.UTF-8";
@@ -31,6 +31,10 @@ buildPythonPackage rec {
doCheck = !stdenv.isDarwin;
disabled = !isPy3k;
+ buildInputs = [
+ setuptools_scm
+ ];
+
propagatedBuildInputs = [
colorama
pyperclip
diff --git a/pkgs/development/python-modules/coveralls/default.nix b/pkgs/development/python-modules/coveralls/default.nix
index f57e0fe860955d2b4b72429444bce20411bfdefe..d0e26e2e07a437b9f2ee835f68a927b96bef2206 100644
--- a/pkgs/development/python-modules/coveralls/default.nix
+++ b/pkgs/development/python-modules/coveralls/default.nix
@@ -16,12 +16,12 @@
buildPythonPackage rec {
pname = "coveralls";
name = "${pname}-python-${version}";
- version = "1.3.0";
+ version = "1.4.0";
# wanted by tests
src = fetchPypi {
inherit pname version;
- sha256 = "664794748d2e5673e347ec476159a9d87f43e0d2d44950e98ed0e27b98da8346";
+ sha256 = "7ddb2e3114db9604a7cb1fcc68a7dcca32dce346f5ba568c99979b38e166f5a6";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/cozy/default.nix b/pkgs/development/python-modules/cozy/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..0feca2773b37ec8b8db04de540f754be6845d4cc
--- /dev/null
+++ b/pkgs/development/python-modules/cozy/default.nix
@@ -0,0 +1,38 @@
+{ buildPythonPackage, fetchFromGitHub, lib,
+ z3, ply, python-igraph, oset, ordered-set, dictionaries }:
+
+buildPythonPackage {
+ pname = "cozy";
+ version = "2.0a1";
+
+ propagatedBuildInputs = [
+ z3 ply python-igraph oset ordered-set dictionaries
+ ];
+
+ src = fetchFromGitHub {
+ owner = "CozySynthesizer";
+ repo = "cozy";
+ rev = "f553e9b";
+ sha256 = "1jhr5gzihj8dkg0yc5dmi081v2isxharl0ph7v2grqj0bwqzl40j";
+ };
+
+ # Yoink the Z3 dependency name, because our Z3 package doesn't provide it.
+ postPatch = ''
+ sed -i -e '/z3-solver/d' requirements.txt
+ '';
+
+ # Tests are not correctly set up in the source tree.
+ doCheck = false;
+
+ # There is some first-time-run codegen that we will force to happen.
+ postInstall = ''
+ $out/bin/cozy --help
+ '';
+
+ meta = {
+ description = "The collection synthesizer";
+ homepage = https://cozy.uwplse.org/;
+ license = lib.licenses.asl20;
+ maintainers = [ lib.maintainers.MostAwesomeDude ];
+ };
+}
diff --git a/pkgs/development/python-modules/cryptography/default.nix b/pkgs/development/python-modules/cryptography/default.nix
index 52244ae4d961864a547a8b461ae9b42bc8d928e7..2771e74e134049c116eb8fee0d3a4dfea8ddf6db 100644
--- a/pkgs/development/python-modules/cryptography/default.nix
+++ b/pkgs/development/python-modules/cryptography/default.nix
@@ -23,11 +23,11 @@
buildPythonPackage rec {
# also bump cryptography_vectors
pname = "cryptography";
- version = "2.3";
+ version = "2.3.1";
src = fetchPypi {
inherit pname version;
- sha256 = "c132bab45d4bd0fff1d3fe294d92b0a6eb8404e93337b3127bdec9f21de117e6";
+ sha256 = "8d10113ca826a4c29d5b85b2c4e045ffa8bad74fb525ee0eceb1d38d4c70dfd6";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/development/python-modules/cryptography_vectors/default.nix b/pkgs/development/python-modules/cryptography_vectors/default.nix
index ba896d29fc573ffac322ace6d296d4f17eef8a16..bcb60eb0d8dd7181ded80c788b58ab2ae3205950 100644
--- a/pkgs/development/python-modules/cryptography_vectors/default.nix
+++ b/pkgs/development/python-modules/cryptography_vectors/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
# also bump cryptography
pname = "cryptography_vectors";
- version = "2.3";
+ version = "2.3.1";
src = fetchPypi {
inherit pname version;
- sha256 = "356a2ded84ae379e556515eec9b68dd74957651a38465d10605bb9fbae280f15";
+ sha256 = "bf4d9b61dce69c49e830950aa36fad194706463b0b6dfe81425b9e0bc6644d46";
};
# No tests included
diff --git a/pkgs/development/python-modules/cupy/default.nix b/pkgs/development/python-modules/cupy/default.nix
index 5d9ae10b09a97e001690313916943b36a61bccb8..9a836e88752acc823b9185fe0837ce0a17f4bfef 100644
--- a/pkgs/development/python-modules/cupy/default.nix
+++ b/pkgs/development/python-modules/cupy/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "cupy";
- version = "4.3.0";
+ version = "4.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "ea818ff7f36cf6e5b3d3faef5af36a501c8bdeb78805820afa2999789ed698d5";
+ sha256 = "fca0e3d3fdad4c825197ea421bed0d253224b44daf738d82af5cba856c1c0b3e";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/debian/default.nix b/pkgs/development/python-modules/debian/default.nix
index e4cd21bce4a37d078ec642bf5ec5060fc14c51f3..f09195b6dc53171d069b50c7899b332d75b88788 100644
--- a/pkgs/development/python-modules/debian/default.nix
+++ b/pkgs/development/python-modules/debian/default.nix
@@ -1,14 +1,22 @@
-{ buildPythonPackage, fetchPypi
+{ lib, buildPythonPackage, fetchPypi
, chardet, six}:
buildPythonPackage rec {
pname = "python-debian";
- version = "0.1.32";
+ version = "0.1.33";
src = fetchPypi {
inherit pname version;
- sha256 = "143887ac647ad30819f289f5a4ca13b77e56df27b686b84c34669447f7591280";
+ sha256 = "06e91d45019fe5f2e111ba827ea77730d6ce2fea698ada4e5b0b70b5fdbc18c5";
};
propagatedBuildInputs = [ chardet six ];
+
+ # No tests in archive
+ doCheck = false;
+
+ meta = {
+ description = "Debian package related modules";
+ license = lib.licenses.gpl2;
+ };
}
diff --git a/pkgs/development/python-modules/deform/default.nix b/pkgs/development/python-modules/deform/default.nix
index 53286b38722b40aa2e742939c8b6043bc7c7e2b8..3951558cf2707bd28dfb8a48846671ac743b0e79 100644
--- a/pkgs/development/python-modules/deform/default.nix
+++ b/pkgs/development/python-modules/deform/default.nix
@@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "deform";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchPypi {
inherit pname version;
- sha256 = "874d3346a02c500432efdcc73b1a7174aa0ea69cd52a99bb9a812967f54f6f79";
+ sha256 = "bda0b809c8a668e105e30650a6766103207eafdd12c313acd59274ccd2c4d297";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/dependency-injector/default.nix b/pkgs/development/python-modules/dependency-injector/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..6eec8ab91cd2eb3f3b292e89a07542fc80a7486a
--- /dev/null
+++ b/pkgs/development/python-modules/dependency-injector/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildPythonPackage, fetchPypi, six }:
+
+buildPythonPackage rec {
+ pname = "dependency-injector";
+ version = "3.13.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0bmcgdfjavgxdzkb904q968ig1x44arvpj2m4rpm5nc9vhhgq43q";
+ };
+
+ # TODO: Enable tests after upstream merges https://github.com/ets-labs/python-dependency-injector/pull/204
+ doCheck = false;
+
+ propagatedBuildInputs = [ six ];
+
+ meta = with stdenv.lib; {
+ description = "Dependency injection microframework for Python";
+ homepage = https://github.com/ets-labs/python-dependency-injector;
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ gerschtli ];
+ };
+}
diff --git a/pkgs/development/python-modules/detox/default.nix b/pkgs/development/python-modules/detox/default.nix
index 7c3aa87e9b89f190e05baa13624d72c62e67e771..3e2c814292b11ae2b55092ed23878d6613d7a9d0 100644
--- a/pkgs/development/python-modules/detox/default.nix
+++ b/pkgs/development/python-modules/detox/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
pname = "detox";
- version = "0.12";
+ version = "0.13";
src = fetchPypi {
inherit pname version;
- sha256 = "06svvkszg6xlg0fr471smn4rmpfga960d6qqsyhyiwa48k59n4gk";
+ sha256 = "f0c2af9c29f8e200a50b561ccc531df3087c80e7d3de6cfa9828f5fea3c8f56c";
};
buildInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/dftfit/default.nix b/pkgs/development/python-modules/dftfit/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..01bd23c4b6ffe3640d43a1aec109093dc59f340d
--- /dev/null
+++ b/pkgs/development/python-modules/dftfit/default.nix
@@ -0,0 +1,47 @@
+{ lib
+, fetchPypi
+, buildPythonPackage
+, pymatgen
+, marshmallow
+, pyyaml
+, pygmo
+, pandas
+, scipy
+, numpy
+, scikitlearn
+, lammps-cython
+, pymatgen-lammps
+, pytestrunner
+, pytest
+, pytestcov
+, pytest-benchmark
+, isPy3k
+, openssh
+}:
+
+buildPythonPackage rec {
+ pname = "dftfit";
+ version = "0.4.22";
+ disabled = (!isPy3k);
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "06dbdc21cf9ed199bfceae5301172bee2164a3b9ef6f0814a089530c320ebb3a";
+ };
+
+ buildInputs = [ pytestrunner ];
+ checkInputs = [ pytest pytestcov pytest-benchmark openssh ];
+ propagatedBuildInputs = [ pymatgen marshmallow pyyaml pygmo
+ pandas scipy numpy scikitlearn
+ lammps-cython pymatgen-lammps ];
+
+ # tests require git lfs download. and is quite large so skip tests
+ doCheck = false;
+
+ meta = {
+ description = "Ab-Initio Molecular Dynamics Potential Development";
+ homepage = https://gitlab.com/costrouc/dftfit;
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ costrouc ];
+ };
+}
diff --git a/pkgs/development/python-modules/dictionaries/default.nix b/pkgs/development/python-modules/dictionaries/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..0deab276255267f5b20e9de1fb1861e556dd529f
--- /dev/null
+++ b/pkgs/development/python-modules/dictionaries/default.nix
@@ -0,0 +1,19 @@
+{ buildPythonPackage, fetchPypi, lib, six }:
+
+buildPythonPackage rec {
+ pname = "dictionaries";
+ version = "0.0.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1jx2ph509sk4l7spslz16y8l6xn97d13nspn4ds2lxn5ward9ihy";
+ };
+
+ buildInputs = [ six ];
+
+ meta = {
+ description = "Dict implementations with attribute access";
+ license = lib.licenses.mit;
+ maintainers = [ lib.maintainers.MostAwesomeDude ];
+ };
+}
diff --git a/pkgs/development/python-modules/docker-registry-core/default.nix b/pkgs/development/python-modules/docker-registry-core/default.nix
deleted file mode 100644
index ad9968af173ccdce9b24ae3a3f65b4e16ac4f516..0000000000000000000000000000000000000000
--- a/pkgs/development/python-modules/docker-registry-core/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, isPy3k
-, boto, redis, setuptools, simplejson }:
-
-buildPythonPackage rec {
- pname = "docker-registry-core";
- version = "2.0.3";
- disabled = isPy3k;
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "0q036rr0b5734szkj883hkb2kjhgcc5pm3dz4yz8vcim3x7q0zil";
- };
-
- DEPS = "loose";
-
- doCheck = false;
- propagatedBuildInputs = [ boto redis setuptools simplejson ];
-
- patchPhase = "> requirements/main.txt";
-
- meta = with stdenv.lib; {
- description = "Docker registry core package";
- homepage = https://github.com/docker/docker-registry;
- license = licenses.asl20;
- };
-}
diff --git a/pkgs/development/python-modules/docker/default.nix b/pkgs/development/python-modules/docker/default.nix
index dd4aafe1aa90a449bcd46e78722042637d8d9129..85c2a4b02304a9c72af50285499d3cf04cf5e623 100644
--- a/pkgs/development/python-modules/docker/default.nix
+++ b/pkgs/development/python-modules/docker/default.nix
@@ -3,12 +3,12 @@
, ipaddress, backports_ssl_match_hostname, docker_pycreds
}:
buildPythonPackage rec {
- version = "3.4.1";
+ version = "3.5.0";
pname = "docker";
src = fetchPypi {
inherit pname version;
- sha256 = "ad077b49660b711d20f50f344f70cfae014d635ef094bf21b0d7df5f0aeedf99";
+ sha256 = "bc693be5a84b3b9e5aaf156068c5c0a445ee5138c638c3fbc857133bf67ebe07";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/docutils/default.nix b/pkgs/development/python-modules/docutils/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..c31cfceebbaa31601d7e2938fd6ec1063368fb34
--- /dev/null
+++ b/pkgs/development/python-modules/docutils/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, fetchurl
+, buildPythonPackage
+, isPy3k
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "docutils";
+ version = "0.14";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/docutils/${pname}.tar.gz";
+ sha256 = "0x22fs3pdmr42kvz6c654756wja305qv6cx1zbhwlagvxgr4xrji";
+ };
+
+ checkPhase = if isPy3k then ''
+ ${python.interpreter} test3/alltests.py
+ '' else ''
+ ${python.interpreter} test/alltests.py
+ '';
+
+ # Create symlinks lacking a ".py" suffix, many programs depend on these names
+ postFixup = ''
+ (cd $out/bin && for f in *.py; do
+ ln -s $f $(echo $f | sed -e 's/\.py$//')
+ done)
+ '';
+
+ meta = {
+ description = "Docutils -- Python Documentation Utilities";
+ homepage = http://docutils.sourceforge.net/;
+ maintainers = with lib.maintainers; [ garbas AndersonTorres ];
+ };
+}
diff --git a/pkgs/development/python-modules/dogpile.cache/default.nix b/pkgs/development/python-modules/dogpile.cache/default.nix
index 9a840e5112afbd1885aa7e16fe6f36da12cf3387..b830d34589bbbcfd0fb6f66b0cb14da1e8edcf55 100644
--- a/pkgs/development/python-modules/dogpile.cache/default.nix
+++ b/pkgs/development/python-modules/dogpile.cache/default.nix
@@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "dogpile.cache";
- version = "0.6.6";
+ version = "0.6.7";
src = fetchPypi {
inherit pname version;
- sha256 = "044d4ea0a0abc72491044f3d3df8e1fc9e8fa7a436c6e9a0da5850d23a0d16c1";
+ sha256 = "fca7deb7c276b879b01c15c5d39b3c05701dc43b263ec3fef1e52cb851cf88ab";
};
# Disable concurrency tests that often fail,
diff --git a/pkgs/development/python-modules/dulwich/default.nix b/pkgs/development/python-modules/dulwich/default.nix
index 2617249b75a9122e2846240773f823cdef9bb9c5..4713ff0ab2869f37a11fe0fa7db93c5e289570eb 100644
--- a/pkgs/development/python-modules/dulwich/default.nix
+++ b/pkgs/development/python-modules/dulwich/default.nix
@@ -4,12 +4,12 @@
, git, glibcLocales }:
buildPythonPackage rec {
- version = "0.19.5";
+ version = "0.19.6";
pname = "dulwich";
src = fetchPypi {
inherit pname version;
- sha256 = "34f99e575fe1f1e89cca92cec1ddd50b4991199cb00609203b28df9eb83ce259";
+ sha256 = "9a7dc5c5759f3d3b7a9ac0a684aa2c47f099e1722d9caab5b043cef1d73ff4a2";
};
LC_ALL = "en_US.UTF-8";
diff --git a/pkgs/development/python-modules/easydict/default.nix b/pkgs/development/python-modules/easydict/default.nix
index eb98cd18ef29646723b080b2b1bdf510da2110e4..aed91033e979f8d30bff220aec7c9b7ae9af999f 100644
--- a/pkgs/development/python-modules/easydict/default.nix
+++ b/pkgs/development/python-modules/easydict/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "easydict";
- version = "1.7";
+ version = "1.8";
src = fetchPypi {
inherit pname version;
- sha256 = "1xpnwjdw4x5kficjgcajqcal6bxcb0ax8l6hdkww9fp6lrh28x8v";
+ sha256 = "f1ec91110737a62fe28d14970ffa7a7c7b441a32e35a6f3da6a6082ffb7f9432";
};
docheck = false; # No tests in archive
diff --git a/pkgs/development/python-modules/ecpy/default.nix b/pkgs/development/python-modules/ecpy/default.nix
index 97f04828300b8fe7b98f7399086fcc74360d0eab..df843ed7c32e5332d20884e93398742519d71cb5 100644
--- a/pkgs/development/python-modules/ecpy/default.nix
+++ b/pkgs/development/python-modules/ecpy/default.nix
@@ -1,21 +1,20 @@
-{ stdenv, fetchPypi, buildPythonPackage, isPy3k, hidapi
-, pycrypto, pillow, protobuf, future
-}:
+{ lib, fetchPypi, buildPythonPackage, isPy3k, future }:
buildPythonPackage rec {
pname = "ECPy";
- version = "0.9.0";
-
- disabled = !isPy3k;
+ version = "0.9.1";
src = fetchPypi {
inherit pname version;
- sha256 = "ef41346ae24789699f3bc3ddefbfac03ad6b73b7d3d19b998ba9ce47b67c7277";
+ sha256 = "f0df66be67f3de0152dfb3c453f4247bdfa2b4e37aa75b98617a637376032229";
};
- buildInputs = [ hidapi pycrypto pillow protobuf future ];
+ propagatedBuildInputs = lib.optional (!isPy3k) future;
+
+ # No tests implemented
+ doCheck = false;
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "Pure Pyhton Elliptic Curve Library";
homepage = https://github.com/ubinity/ECPy;
license = licenses.asl20;
diff --git a/pkgs/development/python-modules/elasticsearch-curator/default.nix b/pkgs/development/python-modules/elasticsearch-curator/default.nix
index 4b0aba45cd7a64635a88738b273c97519869518e..1ea6e4cabad89513b49f02ddf94ead6da76e3b6a 100644
--- a/pkgs/development/python-modules/elasticsearch-curator/default.nix
+++ b/pkgs/development/python-modules/elasticsearch-curator/default.nix
@@ -1,8 +1,10 @@
{ stdenv
, buildPythonPackage
, fetchPypi
+, boto3
, click
, certifi
+, requests-aws4auth
, voluptuous
, pyyaml
, elasticsearch
@@ -22,17 +24,17 @@ buildPythonPackage rec {
sha256 = "e75abeb7f7be939b1c64c071898760dc10ab5f08307c253fc074abf8a41a76f0";
};
- # The integration tests require a running elasticsearch cluster.
- postUnpackPhase = ''
- rm -r test/integration
- '';
+ # The test hangs so we disable it.
+ doCheck = false;
propagatedBuildInputs = [
click
certifi
+ requests-aws4auth
voluptuous
pyyaml
elasticsearch
+ boto3
];
checkInputs = [
diff --git a/pkgs/development/python-modules/elasticsearch/default.nix b/pkgs/development/python-modules/elasticsearch/default.nix
index 087ca3910c55ada635f8a12b2f5b2d03aaf1a3b0..6c5ab07db1912178e6652295b27eee77394448b2 100644
--- a/pkgs/development/python-modules/elasticsearch/default.nix
+++ b/pkgs/development/python-modules/elasticsearch/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage (rec {
pname = "elasticsearch";
- version = "6.3.0";
+ version = "6.3.1";
src = fetchPypi {
inherit pname version;
- sha256 = "80ff7a1a56920535a9987da333c7e385b2ded27595b6de33860707dab758efbe";
+ sha256 = "aada5cfdc4a543c47098eb3aca6663848ef5d04b4324935ced441debc11ec98b";
};
# Check is disabled because running them destroy the content of the local cluster!
diff --git a/pkgs/development/python-modules/faker/default.nix b/pkgs/development/python-modules/faker/default.nix
index 74ed13da8b46e33e0e8be1b3d51c70a03c6f7547..93337aa8d18d4abc82d3d741c336578e6354c9d0 100644
--- a/pkgs/development/python-modules/faker/default.nix
+++ b/pkgs/development/python-modules/faker/default.nix
@@ -8,11 +8,11 @@ assert pythonOlder "3.3" -> ipaddress != null;
buildPythonPackage rec {
pname = "Faker";
- version = "0.8.17";
+ version = "0.8.18";
src = fetchPypi {
inherit pname version;
- sha256 = "0e9a1227a3a0f3297a485715e72ee6eb77081b17b629367042b586e38c03c867";
+ sha256 = "0184fa252f86214308bb6bed344f96294f2e3528fbffafc727890cf2a86d6027";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/fastrlock/default.nix b/pkgs/development/python-modules/fastrlock/default.nix
index 848f01d6e16b711b866a9f75d278f2a3d10b6c18..9b553e65db64aa6bc4d7c54d2df3720a88efb741 100644
--- a/pkgs/development/python-modules/fastrlock/default.nix
+++ b/pkgs/development/python-modules/fastrlock/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "fastrlock";
- version = "0.3";
+ version = "0.4";
src = fetchPypi {
inherit pname version;
- sha256 = "00mr9b15d539z89ng5nf89s2ryhk90xwx95jal77ma0wslixrk5d";
+ sha256 = "6abdbb35205792e2d2a8c441aaa41a613d43ee2d88b3af4fd9735ae7a5f7db6b";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/filelock/default.nix b/pkgs/development/python-modules/filelock/default.nix
index 46d26e80d563e17c043ad49a779b17b028d94ff6..cfa0e1be74f554233da61c613024cdc2350d6718 100644
--- a/pkgs/development/python-modules/filelock/default.nix
+++ b/pkgs/development/python-modules/filelock/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "filelock";
- version = "3.0.4";
+ version = "3.0.6";
src = fetchPypi {
inherit pname version;
- sha256 = "011327d4ed939693a5b28c0fdf2fd9bda1f68614c1d6d0643a89382ce9843a71";
+ sha256 = "59ccab92fe118da7e5ce5a9fcd95506ade58d9d5f606db4922192524edfac820";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/folium/default.nix b/pkgs/development/python-modules/folium/default.nix
index eeb787ea3c09478fd89aa484067219f3885ba3ab..7ff4a37d6d3894ee4716159a2472ff426236bc74 100644
--- a/pkgs/development/python-modules/folium/default.nix
+++ b/pkgs/development/python-modules/folium/default.nix
@@ -14,15 +14,15 @@
buildPythonPackage rec {
pname = "folium";
- version = "0.5.0";
+ version = "0.6.0";
src = fetchPypi {
inherit pname version;
- sha256 = "748944521146d85c6cd6230acf234e885864cd0f42fea3758d655488517e5e6e";
+ sha256 = "08681be47b1861221bc7cf17b6e368a8d734db81682d716c22a11e839f47cb79";
};
- checkInputs = [ pytest numpy nbconvert pandas mock ];
- propagatedBuildInputs = [ jinja2 branca six requests ];
+ checkInputs = [ pytest nbconvert pandas mock ];
+ propagatedBuildInputs = [ jinja2 branca six requests numpy ];
# No tests in archive
doCheck = false;
diff --git a/pkgs/development/python-modules/fonttools/default.nix b/pkgs/development/python-modules/fonttools/default.nix
index 4874fbba3c6f026fbfa3103068b7d136d45cfc55..4759e9d3c8371a8592617c29a46a9a77c867ba34 100644
--- a/pkgs/development/python-modules/fonttools/default.nix
+++ b/pkgs/development/python-modules/fonttools/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "fonttools";
- version = "3.28.0";
+ version = "3.29.0";
src = fetchPypi {
inherit pname version;
- sha256 = "ebf2ee25a6060e8551880a3b05d6ecadcdcfbd1b32fc272ff7b3acdb22945b6f";
+ sha256 = "aab38c8c131670684321437d4857dcb4de1c775efd152a9ca9c4d81f1cb97fe7";
extension = "zip";
};
diff --git a/pkgs/development/python-modules/gevent/default.nix b/pkgs/development/python-modules/gevent/default.nix
index cd28a4976a9f3ac8b22c47fa708a26d6997eb37c..50953fd7d3fa4dc08b77700ae41ec75ae1a30806 100644
--- a/pkgs/development/python-modules/gevent/default.nix
+++ b/pkgs/development/python-modules/gevent/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "gevent";
- version = "1.3.5";
+ version = "1.3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "7f15861f3cc92f49663ca88c4774d26d8044783a65fbc28071a2bd1c7bf36ff0";
+ sha256 = "7b413c391e8ad6607b7f7540d698a94349abd64e4935184c595f7cdcc69904c6";
};
buildInputs = [ libev ];
diff --git a/pkgs/development/python-modules/google_api_core/default.nix b/pkgs/development/python-modules/google_api_core/default.nix
index 2273b48b5b31dca82669f7ecc687318691efcffa..ded728bdc0d61dab4600bb6cf3a128e2e25f3290 100644
--- a/pkgs/development/python-modules/google_api_core/default.nix
+++ b/pkgs/development/python-modules/google_api_core/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
pname = "google-api-core";
- version = "1.2.1";
+ version = "1.3.0";
src = fetchPypi {
inherit pname version;
- sha256 = "e24e391054ed6e925ff6d03f225d9f66f3da97d0ab6f61e59274fb918fbe3ef1";
+ sha256 = "ac85fc7f6687bb0271f2f70ca298da90f35789f9de1fe3a11e8caeb571332b77";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google_auth/default.nix b/pkgs/development/python-modules/google_auth/default.nix
index d908bb041510cc2a0539371c763811d3e46170a8..fde773e738b4acd8b9655801abb4e3c7ee4a3be0 100644
--- a/pkgs/development/python-modules/google_auth/default.nix
+++ b/pkgs/development/python-modules/google_auth/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
pname = "google-auth";
- version = "1.5.0";
+ version = "1.5.1";
src = fetchPypi {
inherit pname version;
- sha256 = "1745c9066f698eac3da99cef082914495fb71bc09597ba7626efbbb64c4acc57";
+ sha256 = "9ca363facbf2622d9ba828017536ccca2e0f58bd15e659b52f312172f8815530";
};
checkInputs = [ pytest mock oauth2client flask requests urllib3 pytest-localserver ];
diff --git a/pkgs/development/python-modules/gphoto2/default.nix b/pkgs/development/python-modules/gphoto2/default.nix
index 29aa0400ec57d95eb161dfc6fdda901882bacabb..9757cb950dc19be1e5447a0c08c829ed5da50539 100644
--- a/pkgs/development/python-modules/gphoto2/default.nix
+++ b/pkgs/development/python-modules/gphoto2/default.nix
@@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "gphoto2";
- version = "1.8.2";
+ version = "1.8.3";
src = fetchPypi {
inherit pname version;
- sha256 = "1806bdjc18qh0wyayxymgjnqqqlxs2iwvgk594anxw9y69hrxqni";
+ sha256 = "0257f90f0d8342b8bc996ff1b45b2cd3219a29f8123aa21a6da159ee3566e49f";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/python-modules/grpcio-tools/default.nix b/pkgs/development/python-modules/grpcio-tools/default.nix
index 8d4c925acf8742025ab3bb3b518e84e85978a70f..c111e5f75a737c0f66f379c71bebf0bb8b6ebb09 100644
--- a/pkgs/development/python-modules/grpcio-tools/default.nix
+++ b/pkgs/development/python-modules/grpcio-tools/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "grpcio-tools";
- version = "1.13.0";
+ version = "1.14.1";
src = fetchPypi {
inherit pname version;
- sha256 = "1ck6818kb4nb6skm9lqg492brqs7kfk65f4hh2c7h7c8pkbrpcw1";
+ sha256 = "4ce5aa660d7884f23aac1eafa93b97a4c3e2b512edff871e91fdb6ee86ebd5ea";
};
enableParallelBuilding = true;
diff --git a/pkgs/development/python-modules/grpcio/default.nix b/pkgs/development/python-modules/grpcio/default.nix
index 204080fe115e07be48740a7c5318a97e8f61c79c..3d3824cdabe490cbf3bf71b2bd3760158063a654 100644
--- a/pkgs/development/python-modules/grpcio/default.nix
+++ b/pkgs/development/python-modules/grpcio/default.nix
@@ -4,11 +4,11 @@
with stdenv.lib;
buildPythonPackage rec {
pname = "grpcio";
- version = "1.13.0";
+ version = "1.14.1";
src = fetchPypi {
inherit pname version;
- sha256 = "6324581e215157f0fbe335dff2e21a65b4406db98ac7cca05f1e23b4f510b426";
+ sha256 = "4bf23666e763ca7ff6010465864e9f088f4ac7ecc1e11abd6f85b250e66b2c05";
};
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin darwin.cctools;
diff --git a/pkgs/development/python-modules/h5py/default.nix b/pkgs/development/python-modules/h5py/default.nix
index 2b95b1473cb21c049e16ab63f7f029ecf833d765..01c33117849e821b6a2d45ba5fcef4d997fae9a1 100644
--- a/pkgs/development/python-modules/h5py/default.nix
+++ b/pkgs/development/python-modules/h5py/default.nix
@@ -37,6 +37,9 @@ in buildPythonPackage rec {
propagatedBuildInputs = [ numpy six]
++ optionals mpiSupport [ mpi4py openssh ];
+ # https://github.com/h5py/h5py/issues/1088
+ doCheck = false;
+
meta = {
description =
"Pythonic interface to the HDF5 binary data format";
diff --git a/pkgs/development/python-modules/httpsig/default.nix b/pkgs/development/python-modules/httpsig/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..cff72de36077a5d7340874ed3cd9fd8e044170c4
--- /dev/null
+++ b/pkgs/development/python-modules/httpsig/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, setuptools_scm
+, pycryptodome
+, requests
+}:
+
+buildPythonPackage rec {
+ pname = "httpsig";
+ version = "1.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "19ng7y7blp13z081z5a6dxng1p8xlih7g6frmsg3q5ri8lvpybc7";
+ };
+
+ buildInputs = [ setuptools_scm ];
+ propagatedBuildInputs = [ pycryptodome requests ];
+
+ # Jailbreak pycryptodome
+ preBuild = ''
+ substituteInPlace setup.py --replace "==3.4.7" ""
+ '';
+
+ meta = with lib; {
+ description = "Sign HTTP requests with secure signatures";
+ license = licenses.mit;
+ maintainers = with maintainers; [ srhb ];
+ homepage = https://github.com/ahknight/httpsig;
+ };
+}
diff --git a/pkgs/development/python-modules/hvac/default.nix b/pkgs/development/python-modules/hvac/default.nix
index f18d8eadec873ad7791fa2dcf179ab55ac8e395d..310bd91b22bfd3190c093c43d6e06dffb40819b8 100644
--- a/pkgs/development/python-modules/hvac/default.nix
+++ b/pkgs/development/python-modules/hvac/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "hvac";
- version = "0.6.2";
+ version = "0.6.3";
src = fetchPypi {
inherit pname version;
- sha256 = "4bc80744df5f09882b1cc91755b03b7b62b093fc63c8c4abb26fbfb9c9e878dd";
+ sha256 = "54672a93f75453a7de13c7c10c6d8a51630e2559a8e2a563d8e272e9e188443f";
};
propagatedBuildInputs = [ requests ];
diff --git a/pkgs/development/python-modules/ibmquantumexperience/default.nix b/pkgs/development/python-modules/ibmquantumexperience/default.nix
index 0fcb26628013b0eaac3d87df55f3517ab558eab0..82f6cb144ac77ddc99e34489a6745b7cbe7db52b 100644
--- a/pkgs/development/python-modules/ibmquantumexperience/default.nix
+++ b/pkgs/development/python-modules/ibmquantumexperience/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "IBMQuantumExperience";
- version = "1.9.8";
+ version = "2.0.2";
src = fetchPypi {
inherit pname version;
- sha256 = "78a7d9770fa2884d79d3c8b18f374644866e4d22ec151cf703053f7530bb7b7c";
+ sha256 = "f2a5662d7457c297af0751985979e64a88569beb07cfedad0ce1dfa5a7237842";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/inflect/default.nix b/pkgs/development/python-modules/inflect/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..94b0fc801fa9c66012dd51d4cd3de0a4f1e80e12
--- /dev/null
+++ b/pkgs/development/python-modules/inflect/default.nix
@@ -0,0 +1,15 @@
+{ buildPythonPackage, fetchPypi, setuptools_scm, nose, six }:
+
+buildPythonPackage rec {
+ pname = "inflect";
+ version = "1.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0ll34l5b2wsbcw9i2hvkhmq6szxrp7fzc2hjmpz1cvny81bhg3kx";
+ };
+
+ buildInputs = [ setuptools_scm ];
+ checkInputs = [ nose ];
+ propagatedBuildInputs = [ six ];
+}
diff --git a/pkgs/development/python-modules/invoke/default.nix b/pkgs/development/python-modules/invoke/default.nix
index 20d2973ca4f18f7fbaa324bae47ff0eb48088b66..8785f1fa6dbd0726ef5119c522f858a037b9d2de 100644
--- a/pkgs/development/python-modules/invoke/default.nix
+++ b/pkgs/development/python-modules/invoke/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "invoke";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchPypi {
inherit pname version;
- sha256 = "0aiy1xvk1f91246zxd1zqrm679vdvd10h843a2na41cqr3cflpi6";
+ sha256 = "1c2cf54c9b9af973ad9704d8ba81b225117cab612568cacbfb3fc42958cc20a9";
};
# errors with vendored libs
diff --git a/pkgs/development/python-modules/ipython/default.nix b/pkgs/development/python-modules/ipython/default.nix
index 2c0e4aaf4db6cde843165f98ce4983f6a553f06b..efc6933807f585d59a4b4cd4efa2918ce480a947 100644
--- a/pkgs/development/python-modules/ipython/default.nix
+++ b/pkgs/development/python-modules/ipython/default.nix
@@ -23,11 +23,11 @@
buildPythonPackage rec {
pname = "ipython";
- version = "6.4.0";
+ version = "6.5.0";
src = fetchPypi {
inherit pname version;
- sha256 = "eca537aa61592aca2fef4adea12af8e42f5c335004dfa80c78caf80e8b525e5c";
+ sha256 = "b0f2ef9eada4a68ef63ee10b6dde4f35c840035c50fd24265f8052c98947d5a4";
};
prePatch = lib.optionalString stdenv.isDarwin ''
diff --git a/pkgs/development/python-modules/ipywidgets/default.nix b/pkgs/development/python-modules/ipywidgets/default.nix
index 9f15a2fc5c2ed2d62eda0fb913e329a8630cccde..dde041140b945ce8b652e3fed4abf1eb7031f7e7 100644
--- a/pkgs/development/python-modules/ipywidgets/default.nix
+++ b/pkgs/development/python-modules/ipywidgets/default.nix
@@ -14,11 +14,11 @@
buildPythonPackage rec {
pname = "ipywidgets";
- version = "7.3.0";
+ version = "7.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "3ce93db970a94f06f38121da70757cdbcce884ecd14f79a4dd9bc49a47e0f33b";
+ sha256 = "fd24a66d82f2ea49e281da7714a7c656340d3ec24dff376b17590fa59469b817";
};
# Tests are not distributed
diff --git a/pkgs/development/python-modules/irc/default.nix b/pkgs/development/python-modules/irc/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..2df571dde8e66b63ef475717432af272980c5481
--- /dev/null
+++ b/pkgs/development/python-modules/irc/default.nix
@@ -0,0 +1,25 @@
+{ buildPythonPackage, fetchPypi
+, six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools
+, setuptools_scm }:
+
+buildPythonPackage rec {
+ pname = "irc";
+ version = "16.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0l2fh2aqs54w4xihckgyz575qkd6mgzbp3zll4g0z9j6h88ghqf1";
+ };
+
+ doCheck = false;
+
+ buildInputs = [ setuptools_scm ];
+ propagatedBuildInputs = [
+ six
+ jaraco_logging
+ jaraco_text
+ jaraco_stream
+ pytz
+ jaraco_itertools
+ ];
+}
diff --git a/pkgs/development/python-modules/jaraco_classes/default.nix b/pkgs/development/python-modules/jaraco_classes/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..35c70c3c0330319604cf811b9bbfa41a8551923a
--- /dev/null
+++ b/pkgs/development/python-modules/jaraco_classes/default.nix
@@ -0,0 +1,13 @@
+{ buildPythonPackage, fetchPypi, setuptools_scm, six }:
+
+buildPythonPackage rec {
+ pname = "jaraco.classes";
+ version = "1.5";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "002zsifikv6qwigkjlij7jhyvbwv6793m8h9ckbkx2jizmgc80fi";
+ };
+ doCheck = false;
+ buildInputs = [ setuptools_scm ];
+ propagatedBuildInputs = [ six ];
+}
diff --git a/pkgs/development/python-modules/jaraco_collections/default.nix b/pkgs/development/python-modules/jaraco_collections/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..0f2e53715cc33d3dbf569c6858fe2b76246747f6
--- /dev/null
+++ b/pkgs/development/python-modules/jaraco_collections/default.nix
@@ -0,0 +1,20 @@
+{ buildPythonPackage, fetchPypi, setuptools_scm
+, six, jaraco_classes }:
+
+buildPythonPackage rec {
+ pname = "jaraco.collections";
+ version = "1.5.3";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "05cmcq5k39bx73kjr00xfm2yr0npyrv89cxdh41ni6x8pkki1jyr";
+ };
+
+ doCheck = false;
+ buildInputs = [ setuptools_scm ];
+ propagatedBuildInputs = [ six jaraco_classes ];
+
+ # break dependency cycle
+ patchPhase = ''
+ sed -i "/'jaraco.text',/d" setup.py
+ '';
+}
diff --git a/pkgs/development/python-modules/jaraco_itertools/default.nix b/pkgs/development/python-modules/jaraco_itertools/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..c7a66c890407a0d2913eccd3f0e8fdc015c2f1fd
--- /dev/null
+++ b/pkgs/development/python-modules/jaraco_itertools/default.nix
@@ -0,0 +1,14 @@
+{ buildPythonPackage, fetchPypi, setuptools_scm
+, inflect, more-itertools, six }:
+
+buildPythonPackage rec {
+ pname = "jaraco.itertools";
+ version = "2.4";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "18cwjbnnnbwld70s3r24sys3blcss84d9ha9hhxsg2d35f9vywd5";
+ };
+ doCheck = false;
+ buildInputs = [ setuptools_scm ];
+ propagatedBuildInputs = [ inflect more-itertools six ];
+}
diff --git a/pkgs/development/python-modules/jaraco_logging/default.nix b/pkgs/development/python-modules/jaraco_logging/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..2aeb0dc3fa40eff23c7aaa970a2561387e29bbc1
--- /dev/null
+++ b/pkgs/development/python-modules/jaraco_logging/default.nix
@@ -0,0 +1,14 @@
+{ buildPythonPackage, fetchPypi, setuptools_scm
+, tempora, six }:
+
+buildPythonPackage rec {
+ pname = "jaraco.logging";
+ version = "1.5.2";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "199pgwx9ziab3gxg6p0c24z8dp3bjpsvvshnmlph9zjsssq0xc93";
+ };
+ doCheck = false;
+ buildInputs = [ setuptools_scm ];
+ propagatedBuildInputs = [ tempora six ];
+}
diff --git a/pkgs/development/python-modules/jaraco_stream/default.nix b/pkgs/development/python-modules/jaraco_stream/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..5788a52dfff7128d6433d6d4300bb913f851d2c3
--- /dev/null
+++ b/pkgs/development/python-modules/jaraco_stream/default.nix
@@ -0,0 +1,13 @@
+{ buildPythonPackage, fetchPypi, setuptools_scm, six }:
+
+buildPythonPackage rec {
+ pname = "jaraco.stream";
+ version = "1.2";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "06qsjyab56vi0ikr819ghb7f8ymf09n92vla7gcn8j12113m2mib";
+ };
+ doCheck = false;
+ buildInputs = [ setuptools_scm ];
+ propagatedBuildInputs = [ six ];
+}
diff --git a/pkgs/development/python-modules/jaraco_text/default.nix b/pkgs/development/python-modules/jaraco_text/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..01309e0c4d9264c2fcdda01b2540475f929284e8
--- /dev/null
+++ b/pkgs/development/python-modules/jaraco_text/default.nix
@@ -0,0 +1,14 @@
+{ buildPythonPackage, fetchPypi, setuptools_scm
+, jaraco_functools, jaraco_collections }:
+
+buildPythonPackage rec {
+ pname = "jaraco.text";
+ version = "1.10.1";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "07ccc0zc28sb1kyfyviw3n8f581qynrshqvqg1xsp4gkf1m2ibhh";
+ };
+ doCheck = false;
+ buildInputs =[ setuptools_scm ];
+ propagatedBuildInputs = [ jaraco_functools jaraco_collections ];
+}
diff --git a/pkgs/development/python-modules/jdatetime/default.nix b/pkgs/development/python-modules/jdatetime/default.nix
index db79050077f07e6dfa93ff44258bc96bc974243c..a7c362231cabd401dcad0e998c5a40ca974e9301 100644
--- a/pkgs/development/python-modules/jdatetime/default.nix
+++ b/pkgs/development/python-modules/jdatetime/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "jdatetime";
- version = "2.2.1";
+ version = "3.0.0";
src = fetchPypi {
inherit pname version;
- sha256 = "030a47ad3acbde45cb03872e2c6415c675dbb4a82462302971e93076145b5096";
+ sha256 = "07cdb02e8d6610c38e8ae7746b12cbc39068cc5d54fb2baa915579b60d781b5b";
};
propagatedBuildInputs = [ six ];
diff --git a/pkgs/development/python-modules/jinja2/default.nix b/pkgs/development/python-modules/jinja2/default.nix
index 7432b3bb99c54112df8c63427399d3d75c0cf191..b800303c20cb808deb272876acf7c76c730a0667 100644
--- a/pkgs/development/python-modules/jinja2/default.nix
+++ b/pkgs/development/python-modules/jinja2/default.nix
@@ -14,9 +14,12 @@ buildPythonPackage rec {
propagatedBuildInputs = [ markupsafe ];
checkPhase = ''
- pytest -v
+ pytest -v tests
'';
+ # RecursionError: maximum recursion depth exceeded
+ doCheck = false;
+
meta = with stdenv.lib; {
homepage = http://jinja.pocoo.org/;
description = "Stand-alone template engine";
diff --git a/pkgs/development/python-modules/jira/default.nix b/pkgs/development/python-modules/jira/default.nix
index ac4f45f4e9d3ba9310a6e63629e6634a0212e639..b9bc923e7e08e24c1d298757fe8fe15ad7ea13b5 100644
--- a/pkgs/development/python-modules/jira/default.nix
+++ b/pkgs/development/python-modules/jira/default.nix
@@ -6,13 +6,13 @@
buildPythonPackage rec {
pname = "jira";
- version = "1.0.15";
+ version = "2.0.0";
PBR_VERSION = version;
src = fetchPypi {
inherit pname version;
- sha256 = "20108a1d5b0dd058d5d4e0047f2d09ee06aaa413b22ca4d5c249e86167417fe8";
+ sha256 = "e2a94adff98e45b29ded030adc76103eab34fa7d4d57303f211f572bedba0e93";
};
buildInputs = [ glibcLocales pytest pytestcov pytestrunner pbr ];
diff --git a/pkgs/development/python-modules/joblib/default.nix b/pkgs/development/python-modules/joblib/default.nix
index 8b42e6e1ea1db4fcb39976cd60b9512be53addcc..7164fd1197b89be93128da1765ae2a7722b63e2e 100644
--- a/pkgs/development/python-modules/joblib/default.nix
+++ b/pkgs/development/python-modules/joblib/default.nix
@@ -9,10 +9,10 @@
buildPythonPackage rec {
pname = "joblib";
- version = "0.12.1";
+ version = "0.12.3";
src = fetchPypi {
inherit pname version;
- sha256 = "68e6128e4734196616a39e2d48830ec7d61551c7f5748849e4c91478d2444524";
+ sha256 = "333b9bf16ff015d6b56bf80b9831afdd243443cb84c7ff7b6e342f117e354c42";
};
checkInputs = [ sphinx numpydoc pytest ];
diff --git a/pkgs/development/python-modules/jsonrpc-async/default.nix b/pkgs/development/python-modules/jsonrpc-async/default.nix
index 758fc0f1dd59f19d6e49771b99581688ef76e0ba..5b7ce3c12bf5fee66b56c2bfbbc9090d13eeaf0a 100644
--- a/pkgs/development/python-modules/jsonrpc-async/default.nix
+++ b/pkgs/development/python-modules/jsonrpc-async/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
pname = "jsonrpc-async";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "6241a221b52e18265fe6bb59c60633acebb6fb5ef8c04de9a076b757aa133b86";
+ sha256 = "adda3ff6e122b1932b6e20cf583666ea65db4248bc19b04811a4ccc0f0b03d95";
};
propagatedBuildInputs = [ aiohttp jsonrpc-base ];
diff --git a/pkgs/development/python-modules/jsonrpc-base/default.nix b/pkgs/development/python-modules/jsonrpc-base/default.nix
index d68b031d5179a5b39304171d231758f249b51e6c..35244e092da3852ba9fd93580cb338e692674402 100644
--- a/pkgs/development/python-modules/jsonrpc-base/default.nix
+++ b/pkgs/development/python-modules/jsonrpc-base/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "jsonrpc-base";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchPypi {
inherit pname version;
- sha256 = "21f860c915617f6475aa1ac5a1ec11de03cce6b279741f25ad97d8a4c5b76c3c";
+ sha256 = "f9baac32aa51c3052d03b86ff30a9856900b8b4a4eb175f7bf2c8722520b8637";
};
propagatedBuildInputs = [ ];
diff --git a/pkgs/development/python-modules/jsonrpc-websocket/default.nix b/pkgs/development/python-modules/jsonrpc-websocket/default.nix
index c753058b093c87ab0c1b17c01285e2518b45b91a..eff4f41979a2179751c4aafd4ff9fc2114517f43 100644
--- a/pkgs/development/python-modules/jsonrpc-websocket/default.nix
+++ b/pkgs/development/python-modules/jsonrpc-websocket/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
pname = "jsonrpc-websocket";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "40949836996c0a8104e7878997d3f68bda4561e9d3af64e5cd178127ec3c2778";
+ sha256 = "e74e490fefa3b8f33620fca98f7cd9a53fb765b9ed6f78360482a3f364230885";
};
propagatedBuildInputs = [ aiohttp jsonrpc-base ];
diff --git a/pkgs/development/python-modules/junos-eznc/default.nix b/pkgs/development/python-modules/junos-eznc/default.nix
index f72bec57e90b9ef52e154851d54f2ab0b3135386..fb34f4696eeea45c2ca23dc0564a590c420c14a1 100644
--- a/pkgs/development/python-modules/junos-eznc/default.nix
+++ b/pkgs/development/python-modules/junos-eznc/default.nix
@@ -15,11 +15,11 @@
buildPythonPackage rec {
pname = "junos-eznc";
- version = "2.1.8";
+ version = "2.1.9";
src = fetchPypi {
inherit pname version;
- sha256 = "daa62e5abfc66ef12e4fb43a1c264673e662e6f2d937cd10666c1c6dcf2ac6ac";
+ sha256 = "a6729c35efd764e1f22457b72898bba554986466306ad29ad2d0bb071e997093";
};
diff --git a/pkgs/development/python-modules/jupyterlab/default.nix b/pkgs/development/python-modules/jupyterlab/default.nix
index e47fdfa15ba259d4b3be90b2ae8dbe75a1b16bcf..23aaff8a72813a788998fec77543d4b9196a5c63 100644
--- a/pkgs/development/python-modules/jupyterlab/default.nix
+++ b/pkgs/development/python-modules/jupyterlab/default.nix
@@ -1,12 +1,12 @@
{ lib, buildPythonPackage, isPy3k, fetchPypi, ipython_genutils, jupyterlab_launcher, notebook }:
buildPythonPackage rec {
pname = "jupyterlab";
- version = "0.33.7";
+ version = "0.34.6";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "ab9f7bcbc3b4e107897f368aa0527cdc1b4ccf0c370e218ae03ac1d75fac261c";
+ sha256 = "d6e5a3855a0d55e6aa4ab704379da5da3db2e652442e79acfa2e9d14ef50ccb3";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/jupyterlab_launcher/default.nix b/pkgs/development/python-modules/jupyterlab_launcher/default.nix
index 79d22b6b1c99a481a6375de19bc1ef0b773b4069..1831b47ee792f07712bdbf1da46e7d45e1b25c85 100644
--- a/pkgs/development/python-modules/jupyterlab_launcher/default.nix
+++ b/pkgs/development/python-modules/jupyterlab_launcher/default.nix
@@ -1,11 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook }:
buildPythonPackage rec {
pname = "jupyterlab_launcher";
- version = "0.11.2";
+ version = "0.13.1";
src = fetchPypi {
inherit pname version;
- sha256 = "236a647f4c3f8417413643a918a893a5f662fb5d2fdccce2fd101e3cca2e7fd1";
+ sha256 = "f880eada0b8b1f524d5951dc6fcae0d13b169897fc8a247d75fb5beadd69c5f0";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/keras-applications/default.nix b/pkgs/development/python-modules/keras-applications/default.nix
index e06a0b75b5048ad6bdce39d0141321873c1bb4c0..f9617f03d8e434e37c8027dea5e50372e8857488 100644
--- a/pkgs/development/python-modules/keras-applications/default.nix
+++ b/pkgs/development/python-modules/keras-applications/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "Keras_Applications";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchPypi {
inherit pname version;
- sha256 = "8c95300328630ae74fb0828b6fa38269a25c0228a02f1e5181753bfd48961f49";
+ sha256 = "26a7318b9d8d5be80d75ab08a1284aaf4b94125dd8271b18ca89791e16eb2cfc";
};
# Cyclic dependency: keras-applications requires keras, which requires keras-applications
diff --git a/pkgs/development/python-modules/keras-preprocessing/default.nix b/pkgs/development/python-modules/keras-preprocessing/default.nix
index 043e43eb18430b3b6c99eed906f791e88da16e6e..45ce1d7f61d5c3cb2d5c70f5b5eb29ca5ca01ab3 100644
--- a/pkgs/development/python-modules/keras-preprocessing/default.nix
+++ b/pkgs/development/python-modules/keras-preprocessing/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "Keras_Preprocessing";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchPypi {
inherit pname version;
- sha256 = "f5306554d2b454d825b36f35e327744f5477bd2ae21017f1a93b2097bed6757e";
+ sha256 = "02ba0a3b31ed89c4b0c21d55ba7d87529097d56f394e3850b6d3c9e6c63ce7ae";
};
# Cyclic dependency: keras-preprocessing requires keras, which requires keras-preprocessing
diff --git a/pkgs/development/python-modules/keras/default.nix b/pkgs/development/python-modules/keras/default.nix
index ea699c9c04a97415f7cfd92dbdbc428f2b32fb0a..43f3bd935d24977d4e9f6f7404798fbd7454ecf8 100644
--- a/pkgs/development/python-modules/keras/default.nix
+++ b/pkgs/development/python-modules/keras/default.nix
@@ -25,6 +25,14 @@ buildPythonPackage rec {
keras-applications keras-preprocessing
];
+ # Keras 2.2.2 expects older versions of keras_applications
+ # and keras_preprocessing. These substitutions can be removed
+ # for for the next Keras release.
+ postPatch = ''
+ substituteInPlace setup.py --replace "keras_applications==1.0.4" "keras_applications==1.0.5"
+ substituteInPlace setup.py --replace "keras_preprocessing==1.0.2" "keras_preprocessing==1.0.3"
+ '';
+
# Couldn't get tests working
doCheck = false;
diff --git a/pkgs/development/python-modules/keyrings-alt/default.nix b/pkgs/development/python-modules/keyrings-alt/default.nix
index 9f3fc8dc4d369dcd7cd59bbc277a464205eb9262..9564e4f37033cc87e3c75e21fb37e7ba81f4dfdd 100644
--- a/pkgs/development/python-modules/keyrings-alt/default.nix
+++ b/pkgs/development/python-modules/keyrings-alt/default.nix
@@ -11,12 +11,15 @@ buildPythonPackage rec {
sha256 = "0nnva8g03dv6gdhjk1ihn2qw7g15232fyj8shipah9whgfv8d75m";
};
+ postPatch = ''
+ substituteInPlace pytest.ini \
+ --replace "--flake8" ""
+ '';
+
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ six ];
- # Fails with "ImportError: cannot import name mock"
- #doCheck = false;
- checkInputs = [ pytest pytest-flake8 keyring ] ++ stdenv.lib.optional (pythonOlder "3.3") backports_unittest-mock;
+ checkInputs = [ pytest keyring ] ++ stdenv.lib.optional (pythonOlder "3.3") backports_unittest-mock;
checkPhase = ''
py.test
diff --git a/pkgs/development/python-modules/kubernetes/default.nix b/pkgs/development/python-modules/kubernetes/default.nix
index 9d91fdc9679d8baee461baa7292df5d59f026809..030766eb6982b3b16d09d539c33b1f140adcbe68 100644
--- a/pkgs/development/python-modules/kubernetes/default.nix
+++ b/pkgs/development/python-modules/kubernetes/default.nix
@@ -4,7 +4,7 @@
buildPythonPackage rec {
pname = "kubernetes";
- version = "6.0.0";
+ version = "7.0.0";
prePatch = ''
sed -e 's/sphinx>=1.2.1,!=1.3b1,<1.4 # BSD/sphinx/' -i test-requirements.txt
@@ -23,7 +23,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "b370ab4abd925309db69a14a4723487948e9a83de60ca92782ec14992b741c89";
+ sha256 = "84dfb4319afac189e8327b71b9332b5329d2a78074f58958c5f06a870edf32ba";
};
checkInputs = [ isort coverage pytest mock sphinx autopep8 pep8 codecov recommonmark nose ];
diff --git a/pkgs/development/python-modules/lammps-cython/default.nix b/pkgs/development/python-modules/lammps-cython/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..501e4adc21d6334e8c67de08bab3a1db9d1cdb0a
--- /dev/null
+++ b/pkgs/development/python-modules/lammps-cython/default.nix
@@ -0,0 +1,53 @@
+{ lib
+, fetchurl
+, buildPythonPackage
+, lammps-mpi
+, mpi
+, mpi4py
+, numpy
+, cython
+, pymatgen
+, ase
+, pytestrunner
+, pytest
+, pytestcov
+, isPy3k
+, openssh
+}:
+
+buildPythonPackage rec {
+ pname = "lammps-cython";
+ version = "0.5.7";
+ disabled = (!isPy3k);
+
+ src = fetchurl {
+ url = "https://gitlab.com/costrouc/${pname}/-/archive/v${version}/${pname}-v${version}.tar.gz";
+ sha256 = "1wj9scmjdl00af13b5ihfccrjpikrdgkzd88ialam1nkxvxi42bl";
+ };
+
+ buildInputs = [ cython pytestrunner ];
+ checkInputs = [ pytest pytestcov openssh ];
+ propagatedBuildInputs = [ mpi4py pymatgen ase numpy ];
+
+ preBuild = ''
+ echo "Creating lammps.cfg file..."
+ cat << EOF > lammps.cfg
+ [lammps]
+ lammps_include_dir = ${lammps-mpi}/include
+ lammps_library_dir = ${lammps-mpi}/lib
+ lammps_library = lammps_mpi
+
+ [mpi]
+ mpi_include_dir = ${mpi}/include
+ mpi_library_dir = ${mpi}/lib
+ mpi_library = mpi
+ EOF
+ '';
+
+ meta = {
+ description = "Pythonic Wrapper to LAMMPS using cython";
+ homepage = https://gitlab.com/costrouc/lammps-cython;
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ costrouc ];
+ };
+}
diff --git a/pkgs/development/python-modules/ldap3/default.nix b/pkgs/development/python-modules/ldap3/default.nix
index 24690d9d5302afe80e30d9390f7d11972a7e8384..3735cbf58523be392513e007f0ac280bc5c807ac 100644
--- a/pkgs/development/python-modules/ldap3/default.nix
+++ b/pkgs/development/python-modules/ldap3/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchPypi, buildPythonPackage, gssapi, pyasn1 }:
buildPythonPackage rec {
- version = "2.5";
+ version = "2.5.1";
pname = "ldap3";
src = fetchPypi {
inherit pname version;
- sha256 = "55078bbc981f715a8867b4c040402627fdfccf5664e0277a621416559748e384";
+ sha256 = "cc09951809678cfb693a13a6011dd2d48ada60a52bd80cb4bd7dcc55ee7c02fd";
};
buildInputs = [ gssapi ];
diff --git a/pkgs/development/python-modules/libagent/default.nix b/pkgs/development/python-modules/libagent/default.nix
index 20312ed81d3e006ffb35e8e38b10e3bdcc12b66f..950a0dd5ba6fcdd95f3918918bc060c5f5e537c0 100644
--- a/pkgs/development/python-modules/libagent/default.nix
+++ b/pkgs/development/python-modules/libagent/default.nix
@@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "libagent";
- version = "0.11.3";
+ version = "0.12.0";
src = fetchPypi{
inherit pname version;
- sha256 = "cb6199c3572e1223756465e758fb525e7f406a4808e9d7cfdddf089bec710047";
+ sha256 = "55af1ad2a6c95aef1fc5588c2002c9e54edbb14e248776b64d00628235ceda3e";
};
buildInputs = [
diff --git a/pkgs/development/python-modules/libusb1/default.nix b/pkgs/development/python-modules/libusb1/default.nix
index f11930a3a18da8fdcf473b196496f5cc235de528..245ea90038eaa0bc1ea27717c40411f46ee930bb 100644
--- a/pkgs/development/python-modules/libusb1/default.nix
+++ b/pkgs/development/python-modules/libusb1/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "libusb1";
- version = "1.6.5";
+ version = "1.6.6";
src = fetchPypi {
inherit pname version;
- sha256 = "4707f81e933a97fed1c5bf7d4957f07bae1139cb8084bdee1f50201a40e3fd7c";
+ sha256 = "a49917a2262cf7134396f6720c8be011f14aabfc5cdc53f880cc672c0f39d271";
};
postPatch = lib.optionalString stdenv.isLinux ''
diff --git a/pkgs/development/python-modules/lxml/default.nix b/pkgs/development/python-modules/lxml/default.nix
index 8589e47be210566e5921ab335c04ce61a1834de6..3778098922a85d1116c33e8ee2e6786b7613df8d 100644
--- a/pkgs/development/python-modules/lxml/default.nix
+++ b/pkgs/development/python-modules/lxml/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "lxml";
- version = "4.2.3";
+ version = "4.2.4";
src = fetchPypi {
inherit pname version;
- sha256 = "622f7e40faef13d232fb52003661f2764ce6cdef3edb0a59af7c1559e4cc36d1";
+ sha256 = "e2afbe403090f5893e254958d02875e0732975e73c4c0cdd33c1f009a61963ca";
};
buildInputs = [ libxml2 libxslt ];
diff --git a/pkgs/development/python-modules/m2r/default.nix b/pkgs/development/python-modules/m2r/default.nix
index 4cb7744f3d9216b6164cd5742db2f65cd4bb9cca..8b1618515c82fa6982c94bf3f626aecffd37fd2b 100644
--- a/pkgs/development/python-modules/m2r/default.nix
+++ b/pkgs/development/python-modules/m2r/default.nix
@@ -2,11 +2,11 @@
mistune, docutils } :
buildPythonPackage rec {
pname = "m2r";
- version = "0.1.15";
+ version = "0.2.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1c358d8bf21ff70e569968d604a0e3c9b05fe01b5f362389235e97bc7c0cd542";
+ sha256 = "b64ee5ac870311a69967fe787be8607df67b02a329f0fc76c8bf477336a99c78";
};
propagatedBuildInputs = [ mistune docutils ];
diff --git a/pkgs/development/python-modules/marionette-harness/mozdevice.nix b/pkgs/development/python-modules/marionette-harness/mozdevice.nix
index 491069cd87fb9539fbebf3db4983191592131b01..02da75bfd96557cbe7ece82f03450b5c1ef5d5a2 100644
--- a/pkgs/development/python-modules/marionette-harness/mozdevice.nix
+++ b/pkgs/development/python-modules/marionette-harness/mozdevice.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "mozdevice";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "c3c50219127e36c171f84b2427e8fcf3a85457f336559aead9770b2a27fbc4b6";
+ sha256 = "0026241bff3ad10a73fe24eb4f59c1313c94e5950f397b2f6b8cc4e4dfbfdd73";
};
propagatedBuildInputs = [ moznetwork mozprocess ];
diff --git a/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix b/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
index f7efeb725928fe2f8cf69b776152e751867ee525..b2b0e7d4efab2ede4ab4476a7f61f8ffea9f491b 100644
--- a/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
+++ b/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix
@@ -4,7 +4,7 @@
buildPythonPackage rec {
pname = "marshmallow-sqlalchemy";
- version = "0.14.0";
+ version = "0.14.1";
meta = {
homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
@@ -14,7 +14,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "32ff19350a8892b3e8dc954eeeac796576bb89356512f9e1ccd33da63f856930";
+ sha256 = "a42cdbd6b623059fca601e1b572cab28f00d4acf36e2cef38094c88424b3dcf1";
};
propagatedBuildInputs = [ marshmallow sqlalchemy ];
diff --git a/pkgs/development/python-modules/marshmallow/default.nix b/pkgs/development/python-modules/marshmallow/default.nix
index 242244726e52afb9490e9dc72fcbf0b4a004cf15..20543faeb16b394d69348a49ea8ccad9e6b3dab9 100644
--- a/pkgs/development/python-modules/marshmallow/default.nix
+++ b/pkgs/development/python-modules/marshmallow/default.nix
@@ -4,7 +4,7 @@
buildPythonPackage rec {
pname = "marshmallow";
- version = "2.15.3";
+ version = "2.15.4";
meta = {
homepage = "https://github.com/marshmallow-code/marshmallow";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "171f409d48b44786b7df2793cbd7f1a9062f0fe2c14d547da536b5010f671ade";
+ sha256 = "0f3776aa5b5405f6000c9304841abe6d4d708bb08207fc89a5ecd86622ec9e54";
};
propagatedBuildInputs = [ dateutil simplejson ];
diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix
index 794124ef3bfa91f57d7d05a18076c8e551f89319..f9aa8cb2ebea72a9271b0e75c5b38345cb80efdd 100644
--- a/pkgs/development/python-modules/matplotlib/default.nix
+++ b/pkgs/development/python-modules/matplotlib/default.nix
@@ -21,12 +21,12 @@ assert enableTk -> (tcl != null)
assert enableQt -> pyqt4 != null;
buildPythonPackage rec {
- version = "2.2.2";
+ version = "2.2.3";
pname = "matplotlib";
src = fetchPypi {
inherit pname version;
- sha256 = "4dc7ef528aad21f22be85e95725234c5178c0f938e2228ca76640e5e84d8cde8";
+ sha256 = "7355bf757ecacd5f0ac9dd9523c8e1a1103faadf8d33c22664178e17533f8ce5";
};
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
diff --git a/pkgs/development/python-modules/more-itertools/default.nix b/pkgs/development/python-modules/more-itertools/default.nix
index 6a58a6a8a28101b04d586edc00df39718c76d3de..b713190296201e131961aa3c27fd86f1fa4629f4 100644
--- a/pkgs/development/python-modules/more-itertools/default.nix
+++ b/pkgs/development/python-modules/more-itertools/default.nix
@@ -3,24 +3,29 @@
, fetchPypi
, nose
, six
+, stdenv
}:
buildPythonPackage rec {
pname = "more-itertools";
- version = "4.2.0";
+ version = "4.3.0";
src = fetchPypi {
inherit pname version;
- sha256 = "2b6b9893337bfd9166bee6a62c2b0c9fe7735dcf85948b387ec8cba30e85d8e8";
+ sha256 = "c476b5d3a34e12d40130bc2f935028b5f636df8f372dc2c1c01dc19681b2039e";
};
checkInputs = [ nose ];
propagatedBuildInputs = [ six ];
+ # iterable = range(10 ** 10) # Is efficiently reversible
+ # OverflowError: Python int too large to convert to C long
+ doCheck = !stdenv.hostPlatform.is32bit;
+
meta = {
homepage = https://more-itertools.readthedocs.org;
description = "Expansion of the itertools module";
license = lib.licenses.mit;
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/development/python-modules/moto/default.nix b/pkgs/development/python-modules/moto/default.nix
index cfb70724210ef86a80bd1ad4c0ec313449683e92..f9d1fee8973be5515df4ae4f852312071b3b248f 100644
--- a/pkgs/development/python-modules/moto/default.nix
+++ b/pkgs/development/python-modules/moto/default.nix
@@ -1,14 +1,14 @@
{ buildPythonPackage, fetchPypi, jinja2, werkzeug, flask
, requests, pytz, backports_tempfile, cookies, jsondiff, botocore, aws-xray-sdk, docker, responses
-, six, boto, httpretty, xmltodict, nose, sure, boto3, freezegun, dateutil, mock, pyaml }:
+, six, boto, httpretty, xmltodict, nose, sure, boto3, freezegun, dateutil, mock, pyaml, python-jose }:
buildPythonPackage rec {
pname = "moto";
- version = "1.3.3";
+ version = "1.3.5";
src = fetchPypi {
inherit pname version;
- sha256 = "45d14aca2b06b0083d5e82cfd770ebca0ba77b5070aec6928670240939a78681";
+ sha256 = "52426f2567e51ba73fdc7c7d617236b7e7918dca2421caabe13e5290942b53d8";
};
postPatch = ''
@@ -42,6 +42,7 @@ buildPythonPackage rec {
botocore
docker
responses
+ python-jose
];
checkInputs = [ boto3 nose sure freezegun ];
diff --git a/pkgs/development/python-modules/multipledispatch/default.nix b/pkgs/development/python-modules/multipledispatch/default.nix
index f568e53c5730186a8907588a4b55997885ebdf6e..8b2de6c5af196df0f565c3810dd641f49b0bb7b6 100644
--- a/pkgs/development/python-modules/multipledispatch/default.nix
+++ b/pkgs/development/python-modules/multipledispatch/default.nix
@@ -1,20 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
+, six
}:
buildPythonPackage rec {
pname = "multipledispatch";
- version = "0.5.0";
+ version = "0.6.0";
src = fetchPypi {
inherit pname version;
- sha256 = "9e92d63efad2c9b68562175d9148d8cb32d04bf5557991190e643749bf4ed954";
+ sha256 = "a7ab1451fd0bf9b92cab3edbd7b205622fb767aeefb4fb536c2e3de9e0a38bea";
};
# No tests in archive
doCheck = false;
+ propagatedBuildInputs = [ six ];
+
meta = {
homepage = https://github.com/mrocklin/multipledispatch/;
description = "A relatively sane approach to multiple dispatch in Python";
diff --git a/pkgs/development/python-modules/mutagen/default.nix b/pkgs/development/python-modules/mutagen/default.nix
index 054d0247600ab2a6fb917f19565eea49c5995b7e..78271de6f69f158158359030136c4bf6035a37d8 100644
--- a/pkgs/development/python-modules/mutagen/default.nix
+++ b/pkgs/development/python-modules/mutagen/default.nix
@@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "mutagen";
- version = "1.41.0";
+ version = "1.41.1";
src = fetchPypi {
inherit pname version;
- sha256 = "dab6038c7f0e17c1b67fb8f56303e8be21e73ac47760f1a8e716856f1bdf5057";
+ sha256 = "2ea9c900a05fa7f5f4c5bd9fc1475d7d576532e13b2f79b694452b997ff67200";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/natsort/default.nix b/pkgs/development/python-modules/natsort/default.nix
index e952129f15d9c540b29386269424033007ef6efc..561135dda57de6ed06d1e7e82f00a64601a48a5f 100644
--- a/pkgs/development/python-modules/natsort/default.nix
+++ b/pkgs/development/python-modules/natsort/default.nix
@@ -4,8 +4,6 @@
, fetchPypi
, hypothesis
, pytestcache
-, pytestflakes
-, pytestpep8
, pytest
, glibcLocales
, mock ? null
@@ -19,8 +17,6 @@ buildPythonPackage rec {
checkInputs = [
hypothesis
pytestcache
- pytestflakes
- pytestpep8
pytest
glibcLocales
]
@@ -37,7 +33,7 @@ buildPythonPackage rec {
# testing based on project's tox.ini
checkPhase = ''
pytest --doctest-modules natsort
- pytest --flakes --pep8
+ pytest
'';
meta = {
diff --git a/pkgs/development/python-modules/ncclient/default.nix b/pkgs/development/python-modules/ncclient/default.nix
index d8a6499d136d1326e191b38965e2ae7f89b5cf63..9dc7710ff28f31d6065da01eb03d0e52b10563f8 100644
--- a/pkgs/development/python-modules/ncclient/default.nix
+++ b/pkgs/development/python-modules/ncclient/default.nix
@@ -11,11 +11,11 @@
buildPythonPackage rec {
pname = "ncclient";
- version = "0.6.0";
+ version = "0.6.2";
src = fetchPypi {
inherit pname version;
- sha256 = "da7f7dfb8a60711610139e894b41ebcab3cd7103b78439ad5e9e91c2d3cfa423";
+ sha256 = "6616828f9c5d318906dae22378a78342bbfa5983f1775c1af8bfecc779434c38";
};
checkInputs = [ nose rednose ];
diff --git a/pkgs/development/python-modules/netcdf4/default.nix b/pkgs/development/python-modules/netcdf4/default.nix
index 0baa323d53c2978c629dcdc21e925ca84dfa42d1..7e403fb9e563d7b5182b87819d0f1afa61154b37 100644
--- a/pkgs/development/python-modules/netcdf4/default.nix
+++ b/pkgs/development/python-modules/netcdf4/default.nix
@@ -3,13 +3,13 @@
}:
buildPythonPackage rec {
pname = "netCDF4";
- version = "1.4.0";
+ version = "1.4.1";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
- sha256 = "a6c0b46f410f101c09d60b8cc460aafec06732f0130c6cb2730717bcc605b388";
+ sha256 = "d4fc65b98e348c39d082ab6b4b7f6d636b1b4e63bec016e5bca189fee5d46403";
};
checkInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/nipype/default.nix b/pkgs/development/python-modules/nipype/default.nix
index 3785986ad28b348fb45898d00545b4f4fa5b54fa..8b0ee06b349566012a4d875154f25362fba1d29a 100644
--- a/pkgs/development/python-modules/nipype/default.nix
+++ b/pkgs/development/python-modules/nipype/default.nix
@@ -34,11 +34,11 @@ assert !isPy3k -> configparser != null;
buildPythonPackage rec {
pname = "nipype";
- version = "1.1.0";
+ version = "1.1.2";
src = fetchPypi {
inherit pname version;
- sha256 = "2a5ebbc9244a18e3b2d83a9639da09248e92bc0742b81a86550ef1a18c1fccbc";
+ sha256 = "f2fe29bf863cb643bd5c8d2bdeaaf488308c293c9fb9913bc7a9504dc3bf8db6";
};
# see https://github.com/nipy/nipype/issues/2240
diff --git a/pkgs/development/python-modules/numexpr/default.nix b/pkgs/development/python-modules/numexpr/default.nix
index 09f6c6636c1a29a9ad62a51b90d8ff7927d1d57f..6e237b2bd9eddfeef7378471d4121a0c7588fd5e 100644
--- a/pkgs/development/python-modules/numexpr/default.nix
+++ b/pkgs/development/python-modules/numexpr/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "numexpr";
- version = "2.6.6";
+ version = "2.6.8";
src = fetchPypi {
inherit pname version;
- sha256 = "97c1f7fa409439ae933494014cd41d43de84cfe6c98b7f93392f94d54de1b453";
+ sha256 = "ee8bc7201aa2f1962c67d27c326a11eef9df887d7b87b1278a1d4e722bf44375";
};
propagatedBuildInputs = [ numpy ];
@@ -19,20 +19,15 @@ buildPythonPackage rec {
# Run the test suite.
# It requires the build path to be in the python search path.
checkPhase = ''
+ pushd $out
${python}/bin/${python.executable} <= 3 because of module import errors.
+ doCheck = !isPy3k;
+
+ meta = {
+ description = "Amazon Web Services version 4 authentication for the Python Requests library.";
+ homepage = https://github.com/sam-washington/requests-aws4auth;
+ license = licenses.mit;
+ maintainers = [ maintainers.basvandijk ];
+ };
+}
diff --git a/pkgs/development/python-modules/rlp/default.nix b/pkgs/development/python-modules/rlp/default.nix
index 381a784d24af81edfce76e5eaa1372d6c56d0d09..77ada95b30199b521599285642560fdfb498dea9 100644
--- a/pkgs/development/python-modules/rlp/default.nix
+++ b/pkgs/development/python-modules/rlp/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "rlp";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchPypi {
inherit pname version;
- sha256 = "492c11b18e89af42f98e96bca7671ffee4ad4cf5e69ea23b4d2221157d81b512";
+ sha256 = "040fb5172fa23d27953a886c40cac989fc031d0629db934b5a9edcd2fb28df1e";
};
checkInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/rope/default.nix b/pkgs/development/python-modules/rope/default.nix
index db08ad2a5c03c2c8816a2e0a4ae10773c0144768..e5164f27f56ffc98b9648a77b6b0701118fe46ef 100644
--- a/pkgs/development/python-modules/rope/default.nix
+++ b/pkgs/development/python-modules/rope/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "rope";
- version = "0.10.7";
+ version = "0.11.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1lc01pjn0yr6yqcpbf6kk170zg8zhnyzj8kqlsch1mag0g9dz7m0";
+ sha256 = "a108c445e1cd897fe19272ab7877d172e7faf3d4148c80e7d20faba42ea8f7b2";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/s3fs/default.nix b/pkgs/development/python-modules/s3fs/default.nix
index 0053b125bcb1443654f756d8159af5eebb94751c..7a9454734d9e3605d7e7f8c1de7bb3505c76249a 100644
--- a/pkgs/development/python-modules/s3fs/default.nix
+++ b/pkgs/development/python-modules/s3fs/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "s3fs";
- version = "0.1.5";
+ version = "0.1.6";
src = fetchPypi {
inherit pname version;
- sha256 = "4fbab74d72ceeb1a6f249165bde7b1d1c4dd758390339f52c84f0832bc5117a7";
+ sha256 = "38a3dda6800a5dc6ed697bff8e9a47d84f5c28d186dc25d2ff2f91b445f0dae5";
};
buildInputs = [ docutils ];
diff --git a/pkgs/development/python-modules/sarge/default.nix b/pkgs/development/python-modules/sarge/default.nix
index cf9e175490dd238ea406ac9cadda3629c7c2037f..b2eb0668de6ca39f98d5828f7e5d7f2df4ce791a 100644
--- a/pkgs/development/python-modules/sarge/default.nix
+++ b/pkgs/development/python-modules/sarge/default.nix
@@ -9,6 +9,9 @@ buildPythonPackage rec {
sha256 = "da8cc90883f8e5ab4af0d746438f608662f5f2a35da2e858517927edefa134b0";
};
+ # No tests in PyPI tarball
+ doCheck = false;
+
meta = with lib; {
homepage = http://sarge.readthedocs.org/;
description = "A wrapper for subprocess which provides command pipeline functionality";
diff --git a/pkgs/development/python-modules/scipy/default.nix b/pkgs/development/python-modules/scipy/default.nix
index 41878b19d0859a775ab09e073b4da602e989ab61..140e8cc80b4d87313c0f1d0f64a4dfa51db34379 100644
--- a/pkgs/development/python-modules/scipy/default.nix
+++ b/pkgs/development/python-modules/scipy/default.nix
@@ -1,4 +1,4 @@
-{lib, fetchPypi, python, buildPythonPackage, gfortran, nose, pytest, numpy}:
+{lib, fetchPypi, python, buildPythonPackage, gfortran, nose, pytest, numpy, fetchpatch}:
buildPythonPackage rec {
pname = "scipy";
@@ -18,6 +18,10 @@ buildPythonPackage rec {
rm scipy/linalg/tests/test_lapack.py
'';
+ # INTERNALERROR, solved with https://github.com/scipy/scipy/pull/8871
+ # however, it does not apply cleanly.
+ doCheck = false;
+
preConfigure = ''
sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py
export NPY_NUM_BUILD_JOBS=$NIX_BUILD_CORES
diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix
index b10cdfae5c7c276748823d2a658e168895454799..b61af72909ff1b8833b616029da6bbd27e9725cc 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 = "40.0.0";
+ version = "40.2.0";
name = "${python.libPrefix}-${pname}-${version}";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "012adb8e25fbfd64c652e99e7bab58799a3aaf05d39ab38561f69190a909015f";
+ sha256 = "47881d54ede4da9c15273bac65f9340f8929d4f0213193fa7894be384f2dcfa6";
};
nativeBuildInputs = [ unzip wrapPython ];
diff --git a/pkgs/development/python-modules/setuptools_scm/default.nix b/pkgs/development/python-modules/setuptools_scm/default.nix
index 1420428e973664642ab13833fedd6a1f2fb8683a..f6e0daea5adda2d2c33528df77dfbcfebba0ba1e 100644
--- a/pkgs/development/python-modules/setuptools_scm/default.nix
+++ b/pkgs/development/python-modules/setuptools_scm/default.nix
@@ -1,11 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi, pip }:
buildPythonPackage rec {
pname = "setuptools_scm";
- version = "2.1.0";
+ version = "3.1.0";
src = fetchPypi {
inherit pname version;
- sha256 = "a767141fecdab1c0b3c8e4c788ac912d7c94a0d6c452d40777ba84f918316379";
+ sha256 = "1191f2a136b5e86f7ca8ab00a97ef7aef997131f1f6d4971be69a1ef387d8b40";
};
buildInputs = [ pip ];
diff --git a/pkgs/development/python-modules/simpleeval/default.nix b/pkgs/development/python-modules/simpleeval/default.nix
index b3377e75f67b426bebc67ac8b2718190a4907005..831cfede950ab9d4419d1d78d981d53a8d530c83 100644
--- a/pkgs/development/python-modules/simpleeval/default.nix
+++ b/pkgs/development/python-modules/simpleeval/default.nix
@@ -2,10 +2,10 @@
buildPythonPackage rec {
pname = "simpleeval";
- version = "0.9.5";
+ version = "0.9.6";
src = fetchPypi {
inherit pname version;
- sha256 = "0sda13bqg9l4j17iczmfanxbzsg6fm9aw8i3crzsjfxx51rwj1i3";
+ sha256 = "848fdb9ee5f30cf93b9f0d840db6e7562633d20abf7d67c2382a0a2162a79410";
};
meta = {
homepage = https://github.com/danthedeckie/simpleeval;
diff --git a/pkgs/development/python-modules/snakeviz/default.nix b/pkgs/development/python-modules/snakeviz/default.nix
index 9a3afc3fb4b823155b047749a24e16c88ab9e3e7..2b0ff6e443a71907caf53e7e167cf9f3503a41db 100644
--- a/pkgs/development/python-modules/snakeviz/default.nix
+++ b/pkgs/development/python-modules/snakeviz/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "snakeviz";
- version = "0.4.1";
+ version = "1.0.0";
src = fetchPypi {
inherit pname version;
- sha256 = "18vsaw1wmf903fg21zkk6a9b49gj47g52jm5h52g4iygngjhpx79";
+ sha256 = "5fe23667708a4ed04047abfbf209675a8488ea6ea8c038d7de06d8a083fb3531";
};
# Upstream doesn't run tests from setup.py
diff --git a/pkgs/development/python-modules/sockjs-tornado/default.nix b/pkgs/development/python-modules/sockjs-tornado/default.nix
index b8b67f708e6d8cc2adb507f9fc71953e9a27dfe2..32ac94da76150cae1d2c4ff66341cf58ec3ec6ee 100644
--- a/pkgs/development/python-modules/sockjs-tornado/default.nix
+++ b/pkgs/development/python-modules/sockjs-tornado/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "sockjs-tornado";
- version = "1.0.3";
+ version = "1.0.5";
src = fetchPypi {
inherit pname version;
- sha256 = "16cff40nniqsyvda1pb2j3b4zwmrw7y2g1vqq78lp20xpmhnwwkd";
+ sha256 = "4c4bcf33c8a238bbab37d01da769bcf89e74ef6019bfa76ddbcb4d682d47187e";
};
propagatedBuildInputs = [ tornado ];
diff --git a/pkgs/development/python-modules/soco/default.nix b/pkgs/development/python-modules/soco/default.nix
index 152a61bbf1d4dc2c8e914cc57ff125d8e53d723d..d039756eb811945daba3e50b3068f760b472bb1a 100644
--- a/pkgs/development/python-modules/soco/default.nix
+++ b/pkgs/development/python-modules/soco/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "soco";
- version = "0.15";
+ version = "0.16";
src = fetchPypi {
inherit pname version;
- sha256 = "18bxpbd7l9gns0jpvx09z023kbbz7b6i4f99i8silsb1jv682kg0";
+ sha256 = "7bed4475e3f134283af1f520a9b2e6ce2a8e69bdc1b58ee68528b3d093972424";
};
propagatedBuildInputs = [ xmltodict requests ];
diff --git a/pkgs/development/python-modules/spglib/default.nix b/pkgs/development/python-modules/spglib/default.nix
index 9b51c445e7318cc1d1eed41a06524d6415ad9281..7385387eb866f4b3e70e3f01e1b87e4c59a9227f 100644
--- a/pkgs/development/python-modules/spglib/default.nix
+++ b/pkgs/development/python-modules/spglib/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "spglib";
- version = "1.10.4.1";
+ version = "1.10.4.11";
src = fetchPypi {
inherit pname version;
- sha256 = "1a50c48dfea450c431a6d6790aa2ebbb10dc43eef97f2794f5038ed1eeecbd30";
+ sha256 = "13b0a227d2dc4079fe36d5bcce4e672400c7c5dfc5d3cd25ccb9521ef592d93e";
};
propagatedBuildInputs = [ numpy ];
diff --git a/pkgs/development/python-modules/sphinx/default.nix b/pkgs/development/python-modules/sphinx/default.nix
index 97f76be15cbb9d5b42756dbd2ec8a954d1ac33f9..9e71766065c58c110af4b783eeab9133381a2234 100644
--- a/pkgs/development/python-modules/sphinx/default.nix
+++ b/pkgs/development/python-modules/sphinx/default.nix
@@ -26,10 +26,10 @@
buildPythonPackage rec {
pname = "Sphinx";
- version = "1.7.6";
+ version = "1.7.8";
src = fetchPypi {
inherit pname version;
- sha256 = "217ad9ece2156ed9f8af12b5d2c82a499ddf2c70a33c5f81864a08d8c67b9efc";
+ sha256 = "a07050845cc9a2f4026a6035cc8ed795a5ce7be6528bbc82032385c10807dfe7";
};
LC_ALL = "en_US.UTF-8";
diff --git a/pkgs/development/python-modules/sqlalchemy/default.nix b/pkgs/development/python-modules/sqlalchemy/default.nix
index 8c3c6fe2374496021795a0eb34d390830601d3da..2f755869d796d9148bf0d5101f45d83954bb28d0 100644
--- a/pkgs/development/python-modules/sqlalchemy/default.nix
+++ b/pkgs/development/python-modules/sqlalchemy/default.nix
@@ -9,11 +9,11 @@
buildPythonPackage rec {
pname = "SQLAlchemy";
- version = "1.2.10";
+ version = "1.2.11";
src = fetchPypi {
inherit pname version;
- sha256 = "72325e67fb85f6e9ad304c603d83626d1df684fdf0c7ab1f0352e71feeab69d8";
+ sha256 = "ef6569ad403520ee13e180e1bfd6ed71a0254192a934ec1dbd3dbf48f4aa9524";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/sqlmap/default.nix b/pkgs/development/python-modules/sqlmap/default.nix
index 674d1e66f7e963daaf34ea3bff7e8551eef89c1a..5713d7591dc61e8102396515584aeb9bca1a7495 100644
--- a/pkgs/development/python-modules/sqlmap/default.nix
+++ b/pkgs/development/python-modules/sqlmap/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "sqlmap";
- version = "1.2.7";
+ version = "1.2.8";
src = fetchPypi {
inherit pname version;
- sha256 = "9e570fcac05b3231d5e01398e496b88a78601938bba228e381994a1b3fe3bd88";
+ sha256 = "d261d93e7abed20543c261327d30b9f9936f0bed3c1a595f39218eeb66094526";
};
# No tests in archive
diff --git a/pkgs/development/python-modules/statistics/default.nix b/pkgs/development/python-modules/statistics/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..4380e592ff56b5f4dc1dafe6a0a33c670a8efdbd
--- /dev/null
+++ b/pkgs/development/python-modules/statistics/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, fetchPypi
+, buildPythonPackage
+, docutils
+}:
+
+buildPythonPackage rec {
+ pname = "statistics";
+ version = "1.0.3.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "2dc379b80b07bf2ddd5488cad06b2b9531da4dd31edb04dc9ec0dc226486c138";
+ };
+
+ propagatedBuildInputs = [ docutils ];
+
+ # statistics package does not have any tests
+ doCheck = false;
+
+ meta = {
+ description = "A Python 2.* port of 3.4 Statistics Module";
+ homepage = https://github.com/digitalemagine/py-statistics;
+ license = lib.licenses.asl20;
+ maintainers = with lib.maintainers; [ costrouc ];
+ };
+}
diff --git a/pkgs/development/python-modules/stripe/default.nix b/pkgs/development/python-modules/stripe/default.nix
index f2e4b946b5d8650df75473e5fc66616a79b3cd5b..c1ebdec90cc4eec13095219cb17602491be52c55 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 = "2.0.3";
+ version = "2.6.0";
# Tests require network connectivity and there's no easy way to disable
# them. ~ C.
@@ -11,7 +11,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "17a618541c19a48d5591f4011a282cbcbbe2d05c361109f8f5381aeec05eb270";
+ sha256 = "ce8fc8af33e12d3d92b083b86952227e9af6854eaf6a044a7725ac543b0582f8";
};
checkInputs = [ unittest2 mock ];
diff --git a/pkgs/development/python-modules/svg-path/default.nix b/pkgs/development/python-modules/svg-path/default.nix
index 04031fcbc100cf17a10c9468d622cf2d9bc0d701..3a11bf67e13ecc68b441a93cf2660736cddf218d 100644
--- a/pkgs/development/python-modules/svg-path/default.nix
+++ b/pkgs/development/python-modules/svg-path/default.nix
@@ -1,11 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "svg.path";
- version = "2.2";
+ version = "3.0";
src = fetchPypi {
inherit pname version;
- sha256 = "08kp03i4yiqdkz7a7l7d7kzszahmhigrml2502zi1ybndrh7ayxw";
+ sha256 = "7b568f90f67fd25413c8da9f8bc9f9f8ab089425c20fa03330e97e77d13880ee";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/sybil/default.nix b/pkgs/development/python-modules/sybil/default.nix
index 6930cb2a559f071ebd16e1342bac63d0307f07b4..c78016d7296e9e493af9b1b5bcab82003d01f015 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.8";
+ version = "1.0.9";
src = fetchPypi {
inherit pname version;
- sha256 = "1e17e10bac4c56ef5b6752866a7d100f5ae856ff97d805c4d6cac73be80863d3";
+ sha256 = "41d2f1dba8fd1d8ead5e9b1220b590fab8b0d1ca01d43da08555b1fb08d4d8e8";
};
checkInputs = [ pytest nose ];
diff --git a/pkgs/development/python-modules/sympy/default.nix b/pkgs/development/python-modules/sympy/default.nix
index f41f2e7b4fa1f315a3f13c62b707c66ecda30182..fb702e046a48aad66198e56285e8d96f2173ac07 100644
--- a/pkgs/development/python-modules/sympy/default.nix
+++ b/pkgs/development/python-modules/sympy/default.nix
@@ -8,44 +8,36 @@
buildPythonPackage rec {
pname = "sympy";
- version = "1.1.1";
+ version = "1.2"; # Upgrades may break sage. Please test.
src = fetchPypi {
inherit pname version;
- sha256 = "ac5b57691bc43919dcc21167660a57cc51797c28a4301a6144eff07b751216a4";
+ sha256 = "0pr2v7dl51ngch1cfs423qsb472l9ys1m8m7vrhhh99fsxqa0v18";
};
checkInputs = [ glibcLocales ];
propagatedBuildInputs = [ mpmath ];
- # Bunch of failures including transients.
+ # some tests fail: https://github.com/sympy/sympy/issues/15149
doCheck = false;
- preCheck = ''
- export LANG="en_US.UTF-8"
- '';
-
patches = [
- # see https://trac.sagemath.org/ticket/20204 and https://github.com/sympy/sympy/issues/12825
- # There is also an upstream patch for this, included in the next release (PR #128826).
- # However that doesn't quite fix the issue yet. Apparently some changes by sage are required.
- # TODO re-evaluate the change once a new sympy version is released (open a sage trac ticket about
- # it).
+ # to be fixed by https://github.com/sympy/sympy/pull/13476
(fetchpatch {
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/sympy/patches/03_undeffun_sage.patch?id=07d6c37d18811e2b377a9689790a7c5e24da16ba";
sha256 = "1mh2va1rlgizgvx8yzqwgvbf5wvswarn511002b361mc8yy0bnhr";
})
- (fetchpatch {
- url = "https://github.com/sympy/sympy/pull/13276.patch";
- sha256 = "1rz74b5c74vwh3pj9axxgh610i02l3555vvsvr4a15ya7siw7zxh";
- })
];
+ preCheck = ''
+ export LANG="en_US.UTF-8"
+ '';
+
meta = {
description = "A Python library for symbolic mathematics";
homepage = http://www.sympy.org/;
license = lib.licenses.bsd3;
- maintainers = with lib.maintainers; [ lovek323 ];
+ maintainers = with lib.maintainers; [ lovek323 timokau ];
};
}
diff --git a/pkgs/development/python-modules/tox/default.nix b/pkgs/development/python-modules/tox/default.nix
index 7719687f2ea813490e85b3085025fb03028d1215..1cb9770367a9355348504a3f36cb5a71128c2abc 100644
--- a/pkgs/development/python-modules/tox/default.nix
+++ b/pkgs/development/python-modules/tox/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "tox";
- version = "3.1.2";
+ version = "3.2.1";
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ packaging pluggy py six virtualenv ];
@@ -20,7 +20,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "9f0cbcc36e08c2c4ae90d02d3d1f9a62231f974bcbc1df85e8045946d8261059";
+ sha256 = "eb61aa5bcce65325538686f09848f04ef679b5cd9b83cc491272099b28739600";
};
meta = with lib; {
diff --git a/pkgs/development/python-modules/tqdm/default.nix b/pkgs/development/python-modules/tqdm/default.nix
index fd5cd47be383212a880a346a290dd15217e547b8..5b65e156a42a617ffdb2e0a2f11c2923b91461c1 100644
--- a/pkgs/development/python-modules/tqdm/default.nix
+++ b/pkgs/development/python-modules/tqdm/default.nix
@@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "tqdm";
- version = "4.23.4";
+ version = "4.25.0";
src = fetchPypi {
inherit pname version;
- sha256 = "77b8424d41b31e68f437c6dd9cd567aebc9a860507cb42fbd880a5f822d966fe";
+ sha256 = "a3364bd83ce4777320b862e3c8a93d7da91e20a95f06ef79bed7dd71c654cafa";
};
buildInputs = [ nose coverage glibcLocales flake8 ];
diff --git a/pkgs/development/python-modules/trio/default.nix b/pkgs/development/python-modules/trio/default.nix
index c630668386e4a9739e5fc4e7683bbf04f36df6ac..4924fa527c62a16892097a9bc75a965d43e892f0 100644
--- a/pkgs/development/python-modules/trio/default.nix
+++ b/pkgs/development/python-modules/trio/default.nix
@@ -12,12 +12,12 @@
buildPythonPackage rec {
pname = "trio";
- version = "0.5.0";
+ version = "0.6.0";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
- sha256 = "ce0b4f59e2f41af0433247f92ce83116bf356a3c2ab5ca5942cf359a1105b4a8";
+ sha256 = "7a80c10b89068950aa649edd4b09a6f56236642c2c2e648b956289d2301fdb9e";
};
checkInputs = [ pytest pyopenssl trustme ];
diff --git a/pkgs/development/python-modules/txaio/default.nix b/pkgs/development/python-modules/txaio/default.nix
index 5558a7e339ada7427bef9c3cb0ca81d01df4efd3..2bfdbae918a1d1779e65b3552aa1e6412e2ac67f 100644
--- a/pkgs/development/python-modules/txaio/default.nix
+++ b/pkgs/development/python-modules/txaio/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "txaio";
- version = "2.10.0";
+ version = "18.7.1";
src = fetchPypi {
inherit pname version;
- sha256 = "4797f9f6a9866fe887c96abc0110a226dd5744c894dc3630870542597ad30853";
+ sha256 = "701de939e90bb80f7e085357081552437526752199def5541dddfc34c0b0593f";
};
checkInputs = [ pytest mock ];
diff --git a/pkgs/development/python-modules/typeguard/default.nix b/pkgs/development/python-modules/typeguard/default.nix
index a6eb75b53cf75eb49d5043af3370fb76d6729f0d..6ccde34f48a08bde5a933a17034b76a8627b8280 100644
--- a/pkgs/development/python-modules/typeguard/default.nix
+++ b/pkgs/development/python-modules/typeguard/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "typeguard";
- version = "2.2.0";
+ version = "2.2.2";
src = fetchPypi {
inherit pname version;
- sha256 = "e588ff78b7093fc31c3b00c78db09b9b3764157b03b867f25ccd1dd3efd96ffb";
+ sha256 = "b8ddc6e2e60bd64b7003f9a685a09ba387b74adf2f6bea7534a76d61892f573e";
};
buildInputs = [ setuptools_scm ];
diff --git a/pkgs/development/python-modules/typing/default.nix b/pkgs/development/python-modules/typing/default.nix
index d1a9185d5a1494879dcb1347bae3afc8896c9999..e363ca22cf2d7aa1cda98d111d9fe0abbde2e2c5 100644
--- a/pkgs/development/python-modules/typing/default.nix
+++ b/pkgs/development/python-modules/typing/default.nix
@@ -5,11 +5,11 @@ let
in buildPythonPackage rec {
pname = "typing";
- version = "3.6.4";
+ version = "3.6.6";
src = fetchPypi {
inherit pname version;
- sha256 = "d400a9344254803a2368533e4533a4200d21eb7b6b729c173bc38201a74db3f2";
+ sha256 = "4027c5f6127a6267a435201981ba156de91ad0d1d98e9ddc2aa173453453492d";
};
# Error for Python3.6: ImportError: cannot import name 'ann_module'
diff --git a/pkgs/development/python-modules/uproot/default.nix b/pkgs/development/python-modules/uproot/default.nix
index 368f787313b63a35e11124032b1863abceb54b88..e2cc1105f093429e4afb603d845c8a3fbf3bb2f6 100644
--- a/pkgs/development/python-modules/uproot/default.nix
+++ b/pkgs/development/python-modules/uproot/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "uproot";
- version = "2.9.6";
+ version = "2.9.11";
src = fetchPypi {
inherit pname version;
- sha256 = "1fb8dd19bd1f1ed376a96e92b32ff44f7d3688bda55eda9055898111fdac8391";
+ sha256 = "da71e9e239129ec2ae7a62f9d35aebd46456f05e000ef14f32fe2c9fa8ec92c2";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/vega/default.nix b/pkgs/development/python-modules/vega/default.nix
index 1813ae587c1afd651cfd48e53a99d39b6da6706b..09106e3a6d49d034f1bf8f37973330674a01d405 100644
--- a/pkgs/development/python-modules/vega/default.nix
+++ b/pkgs/development/python-modules/vega/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
pname = "vega";
- version = "1.3.0";
+ version = "1.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "2c5561238fbd4a0669aea457decb47c5155e9741b47a41f23cc030387f725edc";
+ sha256 = "cf9701dac0111c09ea009ab06cbb81f27b1d9c23ebf58ebdf08b6994a37f13ac";
};
buildInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/voluptuous/default.nix b/pkgs/development/python-modules/voluptuous/default.nix
index 0d4f250509f0aef76bcf8ab2f52ed54121ab5799..b45a46b3a83978f5daecc1cfdb4ba6662c4ace24 100644
--- a/pkgs/development/python-modules/voluptuous/default.nix
+++ b/pkgs/development/python-modules/voluptuous/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "voluptuous";
- version = "0.11.1";
+ version = "0.11.5";
src = fetchPypi {
inherit pname version;
- sha256 = "af7315c9fa99e0bfd195a21106c82c81619b42f0bd9b6e287b797c6b6b6a9918";
+ sha256 = "567a56286ef82a9d7ae0628c5842f65f516abcb496e74f3f59f1d7b28df314ef";
};
checkInputs = [ nose ];
diff --git a/pkgs/development/python-modules/vowpalwabbit/default.nix b/pkgs/development/python-modules/vowpalwabbit/default.nix
index a8661fd3a9851c1635e69c058e50bbfad29c9115..9bc2bbc270478ee001a30952506f7c1ab0bb830d 100644
--- a/pkgs/development/python-modules/vowpalwabbit/default.nix
+++ b/pkgs/development/python-modules/vowpalwabbit/default.nix
@@ -1,5 +1,5 @@
-{ lib, buildPythonPackage, fetchPypi, python, boost, zlib, clang, ncurses
-, pytest, docutils, pygments, numpy, scipy, scikitlearn }:
+{ stdenv, lib, buildPythonPackage, fetchPypi, python, boost, zlib, clang
+, ncurses, pytest, docutils, pygments, numpy, scipy, scikitlearn }:
buildPythonPackage rec {
pname = "vowpalwabbit";
@@ -9,15 +9,27 @@ buildPythonPackage rec {
inherit pname version;
sha256 = "0b517371fc64f1c728a0af42a31fa93def27306e9b4d25d6e5fd01bcff1b7304";
};
+
+ # Should be fixed in next Python release after 8.5.0:
+ # https://github.com/JohnLangford/vowpal_wabbit/pull/1533
+ patches = [
+ ./vowpal-wabbit-find-boost.diff
+ ];
+
# vw tries to write some explicit things to home
# python installed: The directory '/homeless-shelter/.cache/pip/http'
preInstall = ''
export HOME=$PWD
'';
- buildInputs = [ boost.dev zlib.dev clang ncurses pytest docutils pygments ];
+ buildInputs = [ python.pkgs.boost zlib.dev clang ncurses pytest docutils pygments ];
propagatedBuildInputs = [ numpy scipy scikitlearn ];
+ # Python ctypes.find_library uses DYLD_LIBRARY_PATH.
+ preConfigure = lib.optionalString stdenv.isDarwin ''
+ export DYLD_LIBRARY_PATH="${python.pkgs.boost}/lib"
+ '';
+
checkPhase = ''
# check-manifest requires a git clone, not a tarball
# check-manifest --ignore "Makefile,PACKAGE.rst,*.cc,tox.ini,tests*,examples*,src*"
@@ -28,6 +40,7 @@ buildPythonPackage rec {
description = "Vowpal Wabbit is a fast machine learning library for online learning, and this is the python wrapper for the project.";
homepage = https://github.com/JohnLangford/vowpal_wabbit;
license = licenses.bsd3;
+ broken = stdenv.isAarch64;
maintainers = with maintainers; [ teh ];
};
}
diff --git a/pkgs/development/python-modules/vowpalwabbit/vowpal-wabbit-find-boost.diff b/pkgs/development/python-modules/vowpalwabbit/vowpal-wabbit-find-boost.diff
new file mode 100644
index 0000000000000000000000000000000000000000..645956594bf68a3559ce9d01062fe24471211860
--- /dev/null
+++ b/pkgs/development/python-modules/vowpalwabbit/vowpal-wabbit-find-boost.diff
@@ -0,0 +1,34 @@
+--- vowpalwabbit-8.5.0.orig/setup.py 2018-09-03 20:32:39.000000000 +0200
++++ vowpalwabbit-8.5.0/setup.py 2018-09-03 20:34:09.000000000 +0200
+@@ -23,18 +23,11 @@
+
+ def find_boost():
+ """Find correct boost-python library information """
+- if system == 'Linux':
++ if system == 'Linux' or system == 'Darwin':
+ # use version suffix if present
+- boost_lib = 'boost_python-py{v[0]}{v[1]}'.format(v=sys.version_info)
+- if sys.version_info.major == 3:
+- for candidate in ['-py36', '-py35', '-py34', '3']:
+- boost_lib = 'boost_python{}'.format(candidate)
+- if find_library(boost_lib):
+- exit
++ boost_lib = 'boost_python{v[0]}{v[1]}'.format(v=sys.version_info)
+ if not find_library(boost_lib):
+ boost_lib = "boost_python"
+- elif system == 'Darwin':
+- boost_lib = 'boost_python-mt' if sys.version_info[0] == 2 else 'boost_python3-mt'
+ elif system == 'Cygwin':
+ boost_lib = 'boost_python-mt' if sys.version_info[0] == 2 else 'boost_python3-mt'
+ else:
+--- vowpalwabbit-8.5.0.orig/src/Makefile 2018-09-03 20:32:40.000000000 +0200
++++ vowpalwabbit-8.5.0/src/Makefile 2018-09-03 21:42:30.000000000 +0200
+@@ -37,7 +37,7 @@
+ NPROCS:=$(shell grep -c ^processor /proc/cpuinfo)
+ endif
+ ifeq ($(UNAME), Darwin)
+- LIBS = -lboost_program_options-mt -lboost_serialization-mt -l pthread -l z
++ LIBS = -lboost_program_options -lboost_serialization -l pthread -l z
+ # On Macs, the location isn't always clear
+ # brew uses /usr/local
+ # but /opt/local seems to be preferred by some users
diff --git a/pkgs/development/python-modules/websockets_client/default.nix b/pkgs/development/python-modules/websockets_client/default.nix
index 846e9a2a0f533c348fb17895841cf912c9769070..194f3f126a3650cbb44cf7549ce8c28cce9c3bc9 100644
--- a/pkgs/development/python-modules/websockets_client/default.nix
+++ b/pkgs/development/python-modules/websockets_client/default.nix
@@ -1,11 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "websocket_client";
- version = "0.48.0";
+ version = "0.51.0";
src = fetchPypi {
inherit version pname;
- sha256 = "18f1170e6a1b5463986739d9fd45c4308b0d025c1b2f9b88788d8f69e8a5eb4a";
+ sha256 = "030bbfbf29ac9e315ffb207ed5ed42b6981b5038ea00d1e13b02b872cc95e8f6";
};
prePatch = ''
diff --git a/pkgs/development/python-modules/whitenoise/default.nix b/pkgs/development/python-modules/whitenoise/default.nix
index d2359b2195f01623ca8892e7ef3210ade9ce7a90..007bb9c879b4c7e0fe5796396c3deb8687417d51 100644
--- a/pkgs/development/python-modules/whitenoise/default.nix
+++ b/pkgs/development/python-modules/whitenoise/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "whitenoise";
- version = "4.0b4";
+ version = "4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "0ra2bbsihwfhnf1ibahzzabgfjfghxqcrbfx6r5r50mlil5n8bf4";
+ sha256 = "1e206c5adfb849942ddd057e599ac472ec1a85d56ae78a5ba24f243ea46a89c5";
};
# No tests
diff --git a/pkgs/development/python-modules/widgetsnbextension/default.nix b/pkgs/development/python-modules/widgetsnbextension/default.nix
index 0f102dda106e9362956081c8494f99a05fa53eed..db992c7b932c9cfa5355b8a5ef24a1d7b2b2057f 100644
--- a/pkgs/development/python-modules/widgetsnbextension/default.nix
+++ b/pkgs/development/python-modules/widgetsnbextension/default.nix
@@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "widgetsnbextension";
- version = "3.3.0";
+ version = "3.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "c5280a62d293735cdadc7b8884e2affcfb0488420ee09963577f042359726392";
+ sha256 = "c9d6e426a1d79d132b57b93b368feba2c66eb7b0fd34bdb901716b4b88e94497";
};
propagatedBuildInputs = [ notebook ];
diff --git a/pkgs/development/python-modules/zeep/default.nix b/pkgs/development/python-modules/zeep/default.nix
index b14e0226d732fa885fb208013123f3fbdd314ef9..09beb9d89914fa7819b9f7ee87b3f4436d74c88b 100644
--- a/pkgs/development/python-modules/zeep/default.nix
+++ b/pkgs/development/python-modules/zeep/default.nix
@@ -25,11 +25,11 @@
buildPythonPackage rec {
pname = "zeep";
- version = "3.0.0";
+ version = "3.1.0";
src = fetchPypi {
inherit pname version;
- sha256 = "faab59d57275ce35845f42371cca83b3957982cdca9621228153fb99c770c4fc";
+ sha256 = "b2d96881689c3f29e8ea5c8c6abb2b17fb0f470deee15d0d7bec4e74592850f6";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/zodbpickle/default.nix b/pkgs/development/python-modules/zodbpickle/default.nix
index c3f41d281c66058dc87ff6842b4f3f1870ae4205..746099368fbac484e44e84e0a3aa7e96c3325e2f 100644
--- a/pkgs/development/python-modules/zodbpickle/default.nix
+++ b/pkgs/development/python-modules/zodbpickle/default.nix
@@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "zodbpickle";
- version = "1.0.1";
+ version = "1.0.2";
disabled = isPyPy; # https://github.com/zopefoundation/zodbpickle/issues/10
src = fetchPypi {
inherit pname version;
- sha256 = "5fdfa84f05b25511a4e1190ec98728aa487e2eb6db016a951fdbb79bcc7307e0";
+ sha256 = "f26e6eba6550ff1575ef2f2831fc8bc0b465f17f9757d0b6c7db55fab5702061";
};
# fails..
diff --git a/pkgs/development/ruby-modules/solargraph/Gemfile.lock b/pkgs/development/ruby-modules/solargraph/Gemfile.lock
index 54a27076b7df94625d924ee8c4defc7741c7ba8e..ed670c11c92d55ad4192d78ca20782200ee2f225 100644
--- a/pkgs/development/ruby-modules/solargraph/Gemfile.lock
+++ b/pkgs/development/ruby-modules/solargraph/Gemfile.lock
@@ -25,8 +25,8 @@ GEM
rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.0, >= 1.0.1)
- ruby-progressbar (1.9.0)
- solargraph (0.23.6)
+ ruby-progressbar (1.10.0)
+ solargraph (0.25.1)
coderay (~> 1.1)
eventmachine (~> 1.2, >= 1.2.5)
htmlentities (~> 4.3, >= 4.3.4)
@@ -40,7 +40,7 @@ GEM
thor (0.20.0)
tilt (2.0.8)
unicode-display_width (1.4.0)
- yard (0.9.15)
+ yard (0.9.16)
PLATFORMS
ruby
@@ -49,4 +49,4 @@ DEPENDENCIES
solargraph!
BUNDLED WITH
- 1.16.2
+ 1.16.3
diff --git a/pkgs/development/ruby-modules/solargraph/gemset.nix b/pkgs/development/ruby-modules/solargraph/gemset.nix
index f78f359e1582fc59a3b5d2e81f3c3c76add94613..00395518af46d6e6431a6a6ab789cf773689f92c 100644
--- a/pkgs/development/ruby-modules/solargraph/gemset.nix
+++ b/pkgs/development/ruby-modules/solargraph/gemset.nix
@@ -118,19 +118,19 @@
ruby-progressbar = {
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1igh1xivf5h5g3y5m9b4i4j2mhz2r43kngh4ww3q1r80ch21nbfk";
+ sha256 = "1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk";
type = "gem";
};
- version = "1.9.0";
+ version = "1.10.0";
};
solargraph = {
dependencies = ["coderay" "eventmachine" "htmlentities" "kramdown" "parser" "reverse_markdown" "rubocop" "thor" "tilt" "yard"];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "01lh5vibr277vhhrgk6zl09ivb262c1qpk54ahzhc40zs309842b";
+ sha256 = "1b5dljgskjpkpv2l0jpb6i8j73hidskcbp2v7fhjp7kpx94x6php";
type = "gem";
};
- version = "0.23.6";
+ version = "0.25.1";
};
thor = {
source = {
@@ -159,9 +159,9 @@
yard = {
source = {
remotes = ["https://rubygems.org"];
- sha256 = "145pbc0x95s6x296kh1wp5ykwy6srfcz946dgj83s35g8p52z4q4";
+ sha256 = "0lmmr1839qgbb3zxfa7jf5mzy17yjl1yirwlgzdhws4452gqhn67";
type = "gem";
};
- version = "0.9.15";
+ version = "0.9.16";
};
}
\ No newline at end of file
diff --git a/pkgs/development/ruby-modules/testing/stubs.nix b/pkgs/development/ruby-modules/testing/stubs.nix
index 7e6d1102f666916b9225777e836b419aaa7015ed..aaab2f6896023e3fed15312ba0d5edc41292a637 100644
--- a/pkgs/development/ruby-modules/testing/stubs.nix
+++ b/pkgs/development/ruby-modules/testing/stubs.nix
@@ -6,7 +6,7 @@ let
text = (builtins.toJSON (lib.filterAttrs ( n: v: builtins.any (x: x == n) ["name" "system"]) argSet));
builder = stdenv.shell;
args = [ "-c" "echo $(<$textPath) > $out"];
- system = stdenv.system;
+ system = stdenv.hostPlatform.system;
passAsFile = ["text"];
};
fetchurl = {url?"", urls ? [],...}: "fetchurl:${if urls == [] then url else builtins.head urls}";
diff --git a/pkgs/development/tools/analysis/cov-build/default.nix b/pkgs/development/tools/analysis/cov-build/default.nix
index fef98f1e04aad05000d12cd08ac2a6c605601ae2..bd0a4ee5e40a0739be6ae49484cc655b26ee83f5 100644
--- a/pkgs/development/tools/analysis/cov-build/default.nix
+++ b/pkgs/development/tools/analysis/cov-build/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
version = "7.0.2";
src =
- if stdenv.system == "i686-linux"
+ if stdenv.hostPlatform.system == "i686-linux"
then requireFile {
name = "cov-analysis-linux32-${version}.tar.gz";
sha256 = "0i06wbd7blgx9adh9w09by4i18vwmldfp9ix97a5dph2cjymsviy";
diff --git a/pkgs/development/tools/analysis/kcov/aarch64_nt_prstatus.patch b/pkgs/development/tools/analysis/kcov/aarch64_nt_prstatus.patch
deleted file mode 100644
index d5c3662e9abfef66c51dcdf8197ab40f7a38cedf..0000000000000000000000000000000000000000
--- a/pkgs/development/tools/analysis/kcov/aarch64_nt_prstatus.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/src/engines/ptrace.cc b/src/engines/ptrace.cc
-index 59b615f..e02cddf 100644
---- a/src/engines/ptrace.cc
-+++ b/src/engines/ptrace.cc
-@@ -21,6 +21,7 @@
-
- #if defined(__aarch64__)
- # include
-+# include
- #endif
-
- #include