Merge branch 'master' into staging

Thousands of rebuilds from master :-/

+5510 -3349
+2
lib/maintainers.nix
··· 186 186 ellis = "Ellis Whitehead <nixos@ellisw.net>"; 187 187 eperuffo = "Emanuele Peruffo <info@emanueleperuffo.com>"; 188 188 epitrochoid = "Mabry Cervin <mpcervin@uncg.edu>"; 189 + eqyiel = "Ruben Maher <r@rkm.id.au>"; 189 190 ericbmerritt = "Eric Merritt <eric@afiniate.com>"; 190 191 ericsagnes = "Eric Sagnes <eric.sagnes@gmail.com>"; 191 192 erikryb = "Erik Rybakken <erik.rybakken@math.ntnu.no>"; ··· 663 664 zoomulator = "Kim Simmons <zoomulator@gmail.com>"; 664 665 zraexy = "David Mell <zraexy@gmail.com>"; 665 666 zx2c4 = "Jason A. Donenfeld <Jason@zx2c4.com>"; 667 + zzamboni = "Diego Zamboni <diego@zzamboni.org>"; 666 668 }
+1
nixos/modules/profiles/base.nix
··· 20 20 21 21 # Some networking tools. 22 22 pkgs.fuse 23 + pkgs.fuse3 23 24 pkgs.sshfs-fuse 24 25 pkgs.socat 25 26 pkgs.screen
+10 -2
nixos/modules/security/lock-kernel-modules.nix
··· 17 17 }; 18 18 19 19 config = mkIf config.security.lockKernelModules { 20 + boot.kernelModules = concatMap (x: 21 + if x.device != null 22 + then 23 + if x.fsType == "vfat" 24 + then [ "vfat" "nls-cp437" "nls-iso8859-1" ] 25 + else [ x.fsType ] 26 + else []) config.system.build.fileSystems; 27 + 20 28 systemd.services.disable-kernel-module-loading = rec { 21 29 description = "Disable kernel module loading"; 22 30 23 31 wantedBy = [ config.systemd.defaultUnit ]; 24 - after = [ "systemd-udev-settle.service" "firewall.service" "systemd-modules-load.service" ] ++ wantedBy; 25 32 26 - script = "echo -n 1 > /proc/sys/kernel/modules_disabled"; 33 + after = [ "systemd-udev-settle.service" "firewall.service" "systemd-modules-load.service" ] ++ wantedBy; 27 34 28 35 unitConfig.ConditionPathIsReadWrite = "/proc/sys/kernel"; 29 36 30 37 serviceConfig = { 31 38 Type = "oneshot"; 32 39 RemainAfterExit = true; 40 + ExecStart = "/bin/sh -c 'echo -n 1 >/proc/sys/kernel/modules_disabled'"; 33 41 }; 34 42 }; 35 43 };
+4 -1
nixos/modules/security/wrappers/default.nix
··· 155 155 ###### implementation 156 156 config = { 157 157 158 - security.wrappers.fusermount.source = "${pkgs.fuse}/bin/fusermount"; 158 + security.wrappers = { 159 + fusermount.source = "${pkgs.fuse}/bin/fusermount"; 160 + fusermount3.source = "${pkgs.fuse3}/bin/fusermount3"; 161 + }; 159 162 160 163 boot.specialFileSystems.${parentWrapperDir} = { 161 164 fsType = "tmpfs";
+111 -15
nixos/modules/services/misc/gitolite.nix
··· 49 49 ''; 50 50 }; 51 51 52 + extraGitoliteRc = mkOption { 53 + type = types.lines; 54 + default = ""; 55 + example = literalExample '' 56 + $RC{UMASK} = 0027; 57 + $RC{SITE_INFO} = 'This is our private repository host'; 58 + push( @{$RC{ENABLE}}, 'Kindergarten' ); # enable the command/feature 59 + @{$RC{ENABLE}} = grep { $_ ne 'desc' } @{$RC{ENABLE}}; # disable the command/feature 60 + ''; 61 + description = '' 62 + Extra configuration to append to the default <literal>~/.gitolite.rc</literal>. 63 + 64 + This should be Perl code that modifies the <literal>%RC</literal> 65 + configuration variable. The default <literal>~/.gitolite.rc</literal> 66 + content is generated by invoking <literal>gitolite print-default-rc</literal>, 67 + and extra configuration from this option is appended to it. The result 68 + is placed to Nix store, and the <literal>~/.gitolite.rc</literal> file 69 + becomes a symlink to it. 70 + 71 + If you already have a customized (or otherwise changed) 72 + <literal>~/.gitolite.rc</literal> file, NixOS will refuse to replace 73 + it with a symlink, and the `gitolite-init` initialization service 74 + will fail. In this situation, in order to use this option, you 75 + will need to take any customizations you may have in 76 + <literal>~/.gitolite.rc</literal>, convert them to appropriate Perl 77 + statements, add them to this option, and remove the file. 78 + ''; 79 + }; 80 + 52 81 user = mkOption { 53 82 type = types.str; 54 83 default = "gitolite"; ··· 59 88 }; 60 89 }; 61 90 62 - config = mkIf cfg.enable { 91 + config = mkIf cfg.enable ( 92 + let 93 + manageGitoliteRc = cfg.extraGitoliteRc != ""; 94 + rcDir = pkgs.runCommand "gitolite-rc" { } rcDirScript; 95 + rcDirScript = 96 + '' 97 + mkdir "$out" 98 + export HOME=temp-home 99 + mkdir -p "$HOME/.gitolite/logs" # gitolite can't run without it 100 + '${pkgs.gitolite}'/bin/gitolite print-default-rc >>"$out/gitolite.rc.default" 101 + cat <<END >>"$out/gitolite.rc" 102 + # This file is managed by NixOS. 103 + # Use services.gitolite options to control it. 104 + 105 + END 106 + cat "$out/gitolite.rc.default" >>"$out/gitolite.rc" 107 + '' + 108 + optionalString (cfg.extraGitoliteRc != "") '' 109 + echo -n ${escapeShellArg '' 110 + 111 + # Added by NixOS: 112 + ${removeSuffix "\n" cfg.extraGitoliteRc} 113 + 114 + # per perl rules, this should be the last line in such a file: 115 + 1; 116 + ''} >>"$out/gitolite.rc" 117 + ''; 118 + in { 63 119 users.extraUsers.${cfg.user} = { 64 120 description = "Gitolite user"; 65 121 home = cfg.dataDir; ··· 77 133 serviceConfig.Type = "oneshot"; 78 134 serviceConfig.RemainAfterExit = true; 79 135 80 - path = [ pkgs.gitolite pkgs.git pkgs.perl pkgs.bash config.programs.ssh.package ]; 81 - script = '' 82 - cd ${cfg.dataDir} 83 - mkdir -p .gitolite/logs 84 - if [ ! -d repositories ]; then 85 - gitolite setup -pk ${pubkeyFile} 86 - fi 87 - if [ -n "${hooks}" ]; then 88 - cp ${hooks} .gitolite/hooks/common/ 89 - chmod +x .gitolite/hooks/common/* 90 - fi 91 - gitolite setup # Upgrade if needed 92 - ''; 136 + path = [ pkgs.gitolite pkgs.git pkgs.perl pkgs.bash pkgs.diffutils config.programs.ssh.package ]; 137 + script = 138 + let 139 + rcSetupScriptIfCustomFile = 140 + if manageGitoliteRc then '' 141 + cat <<END 142 + <3>ERROR: NixOS can't apply declarative configuration 143 + <3>to your .gitolite.rc file, because it seems to be 144 + <3>already customized manually. 145 + <3>See the services.gitolite.extraGitoliteRc option 146 + <3>in "man configuration.nix" for more information. 147 + END 148 + # Not sure if the line below addresses the issue directly or just 149 + # adds a delay, but without it our error message often doesn't 150 + # show up in `systemctl status gitolite-init`. 151 + journalctl --flush 152 + exit 1 153 + '' else '' 154 + : 155 + ''; 156 + rcSetupScriptIfDefaultFileOrStoreSymlink = 157 + if manageGitoliteRc then '' 158 + ln -sf "${rcDir}/gitolite.rc" "$GITOLITE_RC" 159 + '' else '' 160 + [[ -L "$GITOLITE_RC" ]] && rm -f "$GITOLITE_RC" 161 + ''; 162 + in 163 + '' 164 + cd ${cfg.dataDir} 165 + mkdir -p .gitolite/logs 166 + 167 + GITOLITE_RC=.gitolite.rc 168 + GITOLITE_RC_DEFAULT=${rcDir}/gitolite.rc.default 169 + if ( [[ ! -e "$GITOLITE_RC" ]] && [[ ! -L "$GITOLITE_RC" ]] ) || 170 + ( [[ -f "$GITOLITE_RC" ]] && diff -q "$GITOLITE_RC" "$GITOLITE_RC_DEFAULT" >/dev/null ) || 171 + ( [[ -L "$GITOLITE_RC" ]] && [[ "$(readlink "$GITOLITE_RC")" =~ ^/nix/store/ ]] ) 172 + then 173 + '' + rcSetupScriptIfDefaultFileOrStoreSymlink + 174 + '' 175 + else 176 + '' + rcSetupScriptIfCustomFile + 177 + '' 178 + fi 179 + 180 + if [ ! -d repositories ]; then 181 + gitolite setup -pk ${pubkeyFile} 182 + fi 183 + if [ -n "${hooks}" ]; then 184 + cp ${hooks} .gitolite/hooks/common/ 185 + chmod +x .gitolite/hooks/common/* 186 + fi 187 + gitolite setup # Upgrade if needed 188 + ''; 93 189 }; 94 190 95 191 environment.systemPackages = [ pkgs.gitolite pkgs.git ]; 96 - }; 192 + }); 97 193 }
+1 -1
nixos/modules/services/monitoring/prometheus/node-exporter.nix
··· 33 33 default = []; 34 34 example = ''[ "systemd" ]''; 35 35 description = '' 36 - Collectors to enable, additionally to the defaults. 36 + Collectors to enable. Only collectors explicitly listed here will be enabled. 37 37 ''; 38 38 }; 39 39
+61
nixos/modules/services/network-filesystems/glusterfs.nix
··· 5 5 let 6 6 inherit (pkgs) glusterfs rsync; 7 7 8 + tlsCmd = if (cfg.tlsSettings != null) then 9 + '' 10 + mkdir -p /var/lib/glusterd 11 + touch /var/lib/glusterd/secure-access 12 + '' 13 + else 14 + '' 15 + rm -f /var/lib/glusterd/secure-access 16 + ''; 17 + 18 + restartTriggers = if (cfg.tlsSettings != null) then [ 19 + config.environment.etc."ssl/glusterfs.pem".source 20 + config.environment.etc."ssl/glusterfs.key".source 21 + config.environment.etc."ssl/glusterfs.ca".source 22 + ] else []; 23 + 8 24 cfg = config.services.glusterfs; 9 25 10 26 in ··· 30 46 description = "Extra flags passed to the GlusterFS daemon"; 31 47 default = []; 32 48 }; 49 + 50 + tlsSettings = mkOption { 51 + description = '' 52 + Make the server communicate via TLS. 53 + This means it will only connect to other gluster 54 + servers having certificates signed by the same CA. 55 + 56 + Enabling this will create a file <filename>/var/lib/glusterd/secure-access</filename>. 57 + Disabling will delete this file again. 58 + 59 + See also: https://gluster.readthedocs.io/en/latest/Administrator%20Guide/SSL/ 60 + ''; 61 + default = null; 62 + type = types.nullOr (types.submodule { 63 + options = { 64 + tlsKeyPath = mkOption { 65 + default = null; 66 + type = types.str; 67 + description = "Path to the private key used for TLS."; 68 + }; 69 + 70 + tlsPem = mkOption { 71 + default = null; 72 + type = types.path; 73 + description = "Path to the certificate used for TLS."; 74 + }; 75 + 76 + caCert = mkOption { 77 + default = null; 78 + type = types.path; 79 + description = "Path certificate authority used to sign the cluster certificates."; 80 + }; 81 + }; 82 + }); 83 + }; 33 84 }; 34 85 }; 35 86 ··· 40 91 41 92 services.rpcbind.enable = true; 42 93 94 + environment.etc = mkIf (cfg.tlsSettings != null) { 95 + "ssl/glusterfs.pem".source = cfg.tlsSettings.tlsPem; 96 + "ssl/glusterfs.key".source = cfg.tlsSettings.tlsKeyPath; 97 + "ssl/glusterfs.ca".source = cfg.tlsSettings.caCert; 98 + }; 99 + 43 100 systemd.services.glusterd = { 101 + inherit restartTriggers; 44 102 45 103 description = "GlusterFS, a clustered file-system server"; 46 104 ··· 57 115 + '' 58 116 mkdir -p /var/lib/glusterd/hooks/ 59 117 ${rsync}/bin/rsync -a ${glusterfs}/var/lib/glusterd/hooks/ /var/lib/glusterd/hooks/ 118 + 119 + ${tlsCmd} 60 120 '' 61 121 # `glusterfind` needs dirs that upstream installs at `make install` phase 62 122 # https://github.com/gluster/glusterfs/blob/v3.10.2/tools/glusterfind/Makefile.am#L16-L17 ··· 75 135 }; 76 136 77 137 systemd.services.glustereventsd = { 138 + inherit restartTriggers; 78 139 79 140 description = "Gluster Events Notifier"; 80 141
+11 -1
nixos/modules/system/boot/luksroot.nix
··· 235 235 ''; 236 236 }; 237 237 238 + boot.initrd.luks.forceLuksSupportInInitrd = mkOption { 239 + type = types.bool; 240 + default = false; 241 + internal = true; 242 + description = '' 243 + Whether to configure luks support in the initrd, when no luks 244 + devices are configured. 245 + ''; 246 + }; 247 + 238 248 boot.initrd.luks.devices = mkOption { 239 249 default = { }; 240 250 example = { "luksroot".device = "/dev/disk/by-uuid/430e9eff-d852-4f68-aa3b-2fa3599ebe08"; }; ··· 417 427 }; 418 428 }; 419 429 420 - config = mkIf (luks.devices != {}) { 430 + config = mkIf (luks.devices != {} || luks.forceLuksSupportInInitrd) { 421 431 422 432 # actually, sbp2 driver is the one enabling the DMA attack, but this needs to be tested 423 433 boot.blacklistedKernelModules = optionals luks.mitigateDMAAttacks
+1
nixos/modules/tasks/encrypted-devices.nix
··· 61 61 devices = 62 62 map (dev: { name = dev.encrypted.label; device = dev.encrypted.blkDev; } ) keylessEncDevs; 63 63 cryptoModules = [ "aes" "sha256" "sha1" "xts" ]; 64 + forceLuksSupportInInitrd = true; 64 65 }; 65 66 postMountCommands = 66 67 concatMapStrings (dev: "cryptsetup luksOpen --key-file ${dev.encrypted.keyFile} ${dev.encrypted.blkDev} ${dev.encrypted.label};\n") keyedEncDevs;
+1 -1
nixos/modules/tasks/filesystems.nix
··· 217 217 # Add the mount helpers to the system path so that `mount' can find them. 218 218 system.fsPackages = [ pkgs.dosfstools ]; 219 219 220 - environment.systemPackages = [ pkgs.fuse ] ++ config.system.fsPackages; 220 + environment.systemPackages = with pkgs; [ fuse3 fuse ] ++ config.system.fsPackages; 221 221 222 222 environment.etc.fstab.text = 223 223 let
+6
nixos/modules/tasks/filesystems/nfs.nix
··· 85 85 enable = mkDefault false; 86 86 }; 87 87 88 + systemd.services.auth-rpcgss-module = 89 + { 90 + unitConfig.ConditionPathExists = [ "" "/etc/krb5.keytab" ]; 91 + }; 92 + 88 93 systemd.services.rpc-gssd = 89 94 { restartTriggers = [ nfsConfFile ]; 95 + unitConfig.ConditionPathExists = [ "" "/etc/krb5.keytab" ]; 90 96 }; 91 97 92 98 systemd.services.rpc-statd =
+19
nixos/tests/hardened.nix
··· 10 10 { users.users.alice = { isNormalUser = true; extraGroups = [ "proc" ]; }; 11 11 users.users.sybil = { isNormalUser = true; group = "wheel"; }; 12 12 imports = [ ../modules/profiles/hardened.nix ]; 13 + virtualisation.emptyDiskImages = [ 4096 ]; 14 + boot.initrd.postDeviceCommands = '' 15 + ${pkgs.dosfstools}/bin/mkfs.vfat -n EFISYS /dev/vdb 16 + ''; 17 + fileSystems = lib.mkVMOverride { 18 + "/efi" = { 19 + device = "/dev/disk/by-label/EFISYS"; 20 + fsType = "vfat"; 21 + options = [ "noauto" ]; 22 + }; 23 + }; 13 24 }; 14 25 15 26 testScript = ··· 41 52 # Test access to kcore 42 53 subtest "kcore", sub { 43 54 $machine->fail("cat /proc/kcore"); 55 + }; 56 + 57 + # Test deferred mount 58 + subtest "mount", sub { 59 + $machine->fail("mountpoint -q /efi"); # was deferred 60 + $machine->execute("mkdir -p /efi"); 61 + $machine->succeed("mount /dev/disk/by-label/EFISYS /efi"); 62 + $machine->succeed("mountpoint -q /efi"); # now mounted 44 63 }; 45 64 ''; 46 65 })
+3 -5
pkgs/applications/altcoins/bitcoin.nix
··· 5 5 with stdenv.lib; 6 6 stdenv.mkDerivation rec{ 7 7 name = "bitcoin" + (toString (optional (!withGui) "d")) + "-" + version; 8 - version = "0.15.0"; 8 + version = "0.15.0.1"; 9 9 10 10 src = fetchurl { 11 - urls = [ "https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz" 12 - "mirror://sourceforge/bitcoin/Bitcoin/bitcoin-${version}/bitcoin-${version}.tar.gz" 13 - ]; 14 - sha256 = "18gj5gdscarv2a1hdgjps50czwi4hrmrrmhssaag55ysh94zbdjl"; 11 + url = "https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"; 12 + sha256 = "16si3skhm6jhw1pkniv2b9y1kkdhjmhj392palphir0qc1srwzmm"; 15 13 }; 16 14 17 15 nativeBuildInputs = [ pkgconfig autoreconfHook ];
+1 -1
pkgs/applications/audio/mp3info/default.nix
··· 39 39 license = stdenv.lib.licenses.gpl2Plus; 40 40 41 41 maintainers = [ ]; 42 - platforms = stdenv.lib.platforms.unix; 42 + platforms = stdenv.lib.platforms.linux; 43 43 }; 44 44 }
+6 -3
pkgs/applications/editors/jetbrains/default.nix
··· 53 53 patchelf --set-interpreter $interp \ 54 54 --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib zlib ]}:$lldbLibPath" \ 55 55 bin/clang/clang-tidy 56 + 57 + wrapProgram $out/bin/clion \ 58 + --set CL_JDK "${jdk}" 56 59 ) 57 60 ''; 58 61 }); ··· 229 232 230 233 datagrip = buildDataGrip rec { 231 234 name = "datagrip-${version}"; 232 - version = "2017.1.5"; /* updated by script */ 235 + version = "2017.2.2"; /* updated by script */ 233 236 description = "Your Swiss Army Knife for Databases and SQL"; 234 237 license = stdenv.lib.licenses.unfree; 235 238 src = fetchurl { 236 239 url = "https://download.jetbrains.com/datagrip/${name}.tar.gz"; 237 - sha256 = "8847c35761fcf6fc7a1d3f2bed0fa3971fbf28721c144f41d21feb473bb212dc"; /* updated by script */ 240 + sha256 = "1l8y65fw9g5ckzwpcgigm2qwy8fhpw2hil576rphsnx6qvnh4swn"; /* updated by script */ 238 241 }; 239 242 wmClass = "jetbrains-datagrip"; 240 - update-channel = "datagrip_2017_1"; 243 + update-channel = "datagrip_2017_2"; 241 244 }; 242 245 243 246 gogland = buildGogland rec {
+39 -24
pkgs/applications/editors/jetbrains/update.pl
··· 27 27 next unless $latest_build; 28 28 29 29 # version as in download url 30 + my ($version) = $latest_build =~ /^<build [^>]*version="([^"]+)"/; 31 + my ($fullNumber) = $latest_build =~ /^<build [^>]*fullNumber="([^"]+)"/; 32 + my $latest_version_full1 = "$version-$fullNumber"; 33 + $latest_version_full1 =~ s/\s*EAP//; 34 + 30 35 my ($latest_version) = $latest_build =~ /^<build [^>]*version="([^"]+)"/; 31 36 ($latest_version) = $latest_build =~ /^<build [^>]*fullNumber="([^"]+)"/ if $latest_version =~ / /; 32 37 33 38 $h{$id} = $latest_version; 39 + $h{"full1_" . $id} = $latest_version_full1; 34 40 } 35 41 return %h; 36 42 } 37 43 38 44 my %latest_versions = get_latest_versions(); 39 - #for my $ch (sort keys %latest_versions) { 45 + # for my $ch (sort keys %latest_versions) { 40 46 # print("$ch $latest_versions{$ch}\n"); 41 - #} 47 + # } 42 48 43 49 sub update_nix_block { 44 50 my ($block) = @_; 45 51 my ($channel) = $block =~ /update-channel\s*=\s*"([^"]+)"/; 46 52 if ($channel) { 47 - die "unknown update-channel $channel" unless $latest_versions{$channel}; 48 - my ($version) = $block =~ /version\s*=\s*"([^"]+)"/; 49 - die "no version in $block" unless $version; 50 - if ($version eq $latest_versions{$channel}) { 51 - print("$channel is up to date at $version\n"); 53 + if ($latest_versions{$channel}) { 54 + my ($version) = $block =~ /version\s*=\s*"([^"]+)"/; 55 + die "no version in $block" unless $version; 56 + if ($version eq $latest_versions{$channel}) { 57 + print("$channel is up to date at $version\n"); 58 + } else { 59 + print("updating $channel: $version -> $latest_versions{$channel}\n"); 60 + my ($url) = $block =~ /url\s*=\s*"([^"]+)"/; 61 + # try to interpret some nix 62 + my ($name) = $block =~ /name\s*=\s*"([^"]+)"/; 63 + $name =~ s/\$\{version\}/$latest_versions{$channel}/; 64 + $url =~ s/\$\{name\}/$name/; 65 + $url =~ s/\$\{version\}/$latest_versions{$channel}/; 66 + die "$url still has some interpolation" if $url =~ /\$/; 67 + my ($sha256) = get("$url.sha256") =~ /^([0-9a-f]{64})/; 68 + my $version_string = $latest_versions{$channel}; 69 + unless ( $sha256 ) { 70 + my $full_version = $latest_versions{"full1_" . $channel}; 71 + $url =~ s/$version_string/$full_version/; 72 + ($sha256) = get("$url.sha256") =~ /^([0-9a-f]{64})/; 73 + $version_string = $full_version; 74 + } 75 + die "invalid sha256 in $url.sha256" unless $sha256; 76 + my ($sha256Base32) = readpipe("nix-hash --type sha256 --to-base32 $sha256"); 77 + chomp $sha256Base32; 78 + print "Jetbrains published SHA256: $sha256\n"; 79 + print "Conversion into base32 yields: $sha256Base32\n"; 80 + $block =~ s#version\s*=\s*"([^"]+)".+$#version = "$version_string"; /* updated by script */#m; 81 + $block =~ s#sha256\s*=\s*"([^"]+)".+$#sha256 = "$sha256Base32"; /* updated by script */#m; 82 + } 52 83 } else { 53 - print("updating $channel: $version -> $latest_versions{$channel}\n"); 54 - my ($url) = $block =~ /url\s*=\s*"([^"]+)"/; 55 - # try to interpret some nix 56 - my ($name) = $block =~ /name\s*=\s*"([^"]+)"/; 57 - $name =~ s/\$\{version\}/$latest_versions{$channel}/; 58 - $url =~ s/\$\{name\}/$name/; 59 - $url =~ s/\$\{version\}/$latest_versions{$channel}/; 60 - die "$url still has some interpolation" if $url =~ /\$/; 61 - 62 - my ($sha256) = get("$url.sha256") =~ /^([0-9a-f]{64})/; 63 - my ($sha256Base32) = readpipe("nix-hash --type sha256 --to-base32 $sha256"); 64 - chomp $sha256Base32; 65 - print "Jetbrains published SHA256: $sha256\n"; 66 - print "Conversion into base32 yeilds: $sha256Base32\n"; 67 - 68 - $block =~ s#version\s*=\s*"([^"]+)".+$#version = "$latest_versions{$channel}"; /* updated by script */#m; 69 - $block =~ s#sha256\s*=\s*"([^"]+)".+$#sha256 = "$sha256Base32"; /* updated by script */#m; 84 + warn "unknown update-channel $channel"; 70 85 } 71 86 } 72 87 return $block;
+1 -1
pkgs/applications/editors/tecoc/default.nix
··· 50 50 ''; 51 51 homepage = https://github.com/blakemcbride/TECOC; 52 52 maintainers = [ maintainers.AndersonTorres ]; 53 - platforms = platforms.unix; 53 + platforms = platforms.linux; 54 54 }; 55 55 } 56 56 # TODO: test in other platforms - especially Darwin
+11 -6
pkgs/applications/graphics/giv/build.patch
··· 2 2 a typedef of size_t that failed at least on x86_64-linux. 3 3 4 4 diff --git a/SConstruct b/SConstruct 5 - index 16eccd9..603e931 100644 5 + index 9e752d6..f93f27f 100644 6 6 --- a/SConstruct 7 7 +++ b/SConstruct 8 - @@ -7,8 +7,7 @@ else: 9 - cppflags = ['-O2'] 10 - variant = 'Release' 8 + @@ -9,13 +9,7 @@ else: 9 + 10 + commit_id = os.popen('git rev-parse HEAD').read().replace('\n','') 11 11 12 12 -env = Environment(LIBPATH=[], 13 - - CPPFLAGS = cppflags) 13 + - CPPFLAGS = cppflags + ['-Wno-deprecated-declarations', 14 + - '-Wno-reorder', 15 + - '-Wno-unused-but-set-variable', 16 + - '-Wno-unused-function'], 17 + - CXXFLAGS=['-std=c++1y'] 18 + - ) 14 19 +env = Environment(ENV = os.environ) 15 20 16 21 env['SBOX'] = False 17 - 22 + env['COMMITIDSHORT'] = commit_id[0:6]
+4 -3
pkgs/applications/graphics/giv/default.nix
··· 2 2 pcre, cfitsio, perl, gob2, vala_0_23, libtiff, json_glib }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "giv-20150811-git"; 5 + name = "giv-${version}"; 6 + version = "0.9.26"; 6 7 7 8 src = fetchFromGitHub { 8 9 owner = "dov"; 9 10 repo = "giv"; 10 - rev = "64648bfbbf10ec4a9adfbc939c96c7d1dbdce57a"; 11 - sha256 = "1sz2n7jbmg3g97bs613xxjpzqbsl5rvpg6v7g3x3ycyd35r8vsfp"; 11 + rev = "v${version}"; 12 + sha256 = "1sfm8j3hvqij6z3h8xz724d7hjqqbzljl2a6pp4yjpnnrxksnic2"; 12 13 }; 13 14 14 15 hardeningDisable = [ "format" ];
+35 -29
pkgs/applications/graphics/paraview/default.nix
··· 1 - { fetchurl, stdenv, cmake, qt4 2 - , hdf5 3 - , mpich2 4 - , python 5 - , libxml2 6 - , mesa, libXt 7 - }: 1 + {stdenv, fetchFromGitHub, cmake 2 + ,full, python, mesa, libXt }: 8 3 9 4 stdenv.mkDerivation rec { 10 - name = "paraview-4.0.1"; 11 - src = fetchurl { 12 - url = "http://paraview.org/files/v4.0/ParaView-v4.0.1-source.tgz"; 13 - sha256 = "1qj8dq8gqpsw75sv4sdc7xm1xcpv0ilsddnrcfhha0zfhp0gq10y"; 5 + name = "paraview-${version}"; 6 + version = "5.4.0"; 7 + 8 + # fetching from GitHub instead of taking an "official" source 9 + # tarball because of missing submodules there 10 + src = fetchFromGitHub { 11 + owner = "Kitware"; 12 + repo = "ParaView"; 13 + rev = "v${version}"; 14 + sha256 = "0h1vkgwm10mc5mnr3djp81lxr5pi0hyj776z77hiib6xm5596q9n"; 15 + fetchSubmodules = true; 14 16 }; 15 17 16 - # [ 5%] Generating vtkGLSLShaderLibrary.h 17 - # ../../../bin/ProcessShader: error while loading shared libraries: libvtksys.so.pv3.10: cannot open shared object file: No such file or directory 18 - preConfigure = '' 19 - export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/paraview-3.98 -rpath ../../../../../../lib -rpath ../../../../../lib -rpath ../../../../lib -rpath ../../../lib -rpath ../../lib -rpath ../lib" 20 - ''; 21 - cmakeFlags = [ 22 - "-DPARAVIEW_USE_SYSTEM_HDF5:BOOL=ON" 23 - "-DVTK_USE_SYSTEM_LIBXML2:BOOL=ON" 24 - "-DPARAVIEW_ENABLE_PYTHON:BOOL=ON" 25 - # use -DPARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES:BOOL=OFF \ to fix make install error: http://www.cmake.org/pipermail/paraview/2011-February/020268.html 26 - "-DPARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES:BOOL=OFF" 27 - "-DCMAKE_SKIP_BUILD_RPATH=ON" 28 - "-DVTK_USE_RPATH:BOOL=ON" 29 - "-DPARAVIEW_INSTALL_DEVELOPMENT=ON" 30 - ]; 18 + cmakeFlags = [ 19 + "-DPARAVIEW_ENABLE_PYTHON=ON" 20 + "-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON" 21 + ]; 31 22 32 - # https://bugzilla.redhat.com/show_bug.cgi?id=1138466 33 - NIX_CFLAGS_COMPILE = "-DGLX_GLXEXT_LEGACY"; 23 + # During build, binaries are called that rely on freshly built 24 + # libraries. These reside in build/lib, and are not found by 25 + # default. 26 + preBuild = '' 27 + export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib 28 + ''; 34 29 35 30 enableParallelBuilding = true; 36 31 37 - buildInputs = [ cmake qt4 hdf5 mpich2 python libxml2 mesa libXt ]; 32 + buildInputs = [ cmake 33 + python 34 + mesa 35 + libXt 36 + 37 + # theoretically the following should be fine, but there is an error 38 + # due to missing libqminimal when not using qt5.full 39 + 40 + # qtbase qtx11extras qttools 41 + full 42 + ]; 43 + 38 44 39 45 meta = { 40 46 homepage = http://www.paraview.org/;
+1 -1
pkgs/applications/graphics/pqiv/default.nix
··· 21 21 homepage = http://www.pberndt.com/Programme/Linux/pqiv; 22 22 license = licenses.gpl3; 23 23 maintainers = [ maintainers.ndowens ]; 24 - platforms = platforms.unix; 24 + platforms = platforms.linux; 25 25 }; 26 26 })
+1
pkgs/applications/kde/default.nix
··· 145 145 okteta = callPackage ./okteta.nix {}; 146 146 okular = callPackage ./okular.nix {}; 147 147 pimcommon = callPackage ./pimcommon.nix {}; 148 + pim-data-exporter = callPackage ./pim-data-exporter.nix {}; 148 149 pim-sieve-editor = callPackage ./pim-sieve-editor.nix {}; 149 150 print-manager = callPackage ./print-manager.nix {}; 150 151 spectacle = callPackage ./spectacle.nix {};
+22
pkgs/applications/kde/pim-data-exporter.nix
··· 1 + { 2 + mkDerivation, lib, kdepimTeam, 3 + extra-cmake-modules, kdoctools, 4 + akonadi, kcmutils, kcrash, kdbusaddons, kidentitymanagement, kldap, 5 + kmailtransport, knewstuff, knotifications, knotifyconfig, kparts, kross, ktexteditor, 6 + kwallet, libkdepim, libkleo, pimcommon, qttools, 7 + karchive, mailcommon, messagelib, pim-data-exporter 8 + }: 9 + 10 + mkDerivation { 11 + name = "pim-data-exporter"; 12 + meta = { 13 + license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; 14 + maintainers = kdepimTeam; 15 + }; 16 + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 17 + buildInputs = [ 18 + akonadi kcmutils kcrash kdbusaddons kidentitymanagement kldap kmailtransport 19 + knewstuff knotifications knotifyconfig kparts kross ktexteditor kwallet libkdepim 20 + libkleo pimcommon qttools karchive mailcommon messagelib 21 + ]; 22 + }
+35
pkgs/applications/misc/topydo/default.nix
··· 1 + { stdenv, python3Packages, fetchFromGitHub, glibcLocales }: 2 + 3 + with python3Packages; 4 + 5 + buildPythonApplication rec { 6 + pname = "topydo"; 7 + version = "0.13"; 8 + name = "${pname}-${version}"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "bram85"; 12 + repo = pname; 13 + rev = version; 14 + sha256 = "0b3dz137lpbvpjvfy42ibqvj3yk526x4bpn819fd11lagn77w69r"; 15 + }; 16 + 17 + propagatedBuildInputs = [ 18 + arrow 19 + icalendar 20 + glibcLocales 21 + prompt_toolkit 22 + urwid 23 + watchdog 24 + ]; 25 + 26 + checkInputs = [ mock freezegun coverage green pylint ]; 27 + 28 + LC_ALL="en_US.UTF-8"; 29 + 30 + meta = with stdenv.lib; { 31 + description = "A cli todo application compatible with the todo.txt format"; 32 + homepage = "https://github.com/bram85/topydo"; 33 + license = licenses.gpl3; 34 + }; 35 + }
+8
pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
··· 44 44 , hicolor_icon_theme 45 45 , shared_mime_info 46 46 47 + # Whether to disable multiprocess support to work around crashing tabs 48 + # TODO: fix the underlying problem instead of this terrible work-around 49 + , disableContentSandbox ? true 50 + 47 51 # Extra preferences 48 52 , extraPrefs ? "" 49 53 }: ··· 209 213 // Defaults to creating $TBB_HOME/TorBrowser/Data/Tor/{socks,control}.socket 210 214 lockPref("extensions.torlauncher.control_port_use_ipc", true); 211 215 lockPref("extensions.torlauncher.socks_port_use_ipc", true); 216 + 217 + // Optionally disable multiprocess support. We always set this to ensure that 218 + // toggling the pref takes effect. 219 + lockPref("browser.tabs.remote.autostart.2", ${if disableContentSandbox then "false" else "true"}); 212 220 213 221 ${optionalString (extraPrefs != "") '' 214 222 ${extraPrefs}
+30
pkgs/applications/networking/gns3/default.nix
··· 1 + { callPackage, stdenv }: 2 + 3 + let 4 + stableVersion = "2.0.3"; 5 + previewVersion = "2.1.0rc1"; 6 + addVersion = args: 7 + let version = if args.stable then stableVersion else previewVersion; 8 + branch = if args.stable then "stable" else "preview"; 9 + in args // { inherit version branch; }; 10 + mkGui = args: callPackage (import ./gui.nix (addVersion args)) { }; 11 + mkServer = args: callPackage (import ./server.nix (addVersion args)) { }; 12 + in { 13 + guiStable = mkGui { 14 + stable = true; 15 + sha256Hash = "10qp6430md8d0h2wamgfaq7pai59mqmcw6sw3i1gvb20m0avvsvb"; 16 + }; 17 + guiPreview = mkGui { 18 + stable = false; 19 + sha256Hash = "0rmvanzc0fjw9giqwnf98yc49cxaz637w8b865dv08lcf1fg9j8l"; 20 + }; 21 + 22 + serverStable = mkServer { 23 + stable = true; 24 + sha256Hash = "1c7mzj1r2zh90a7vs3s17jakfp9s43b8nnj29rpamqxvl3qhbdy7"; 25 + }; 26 + serverPreview = mkServer { 27 + stable = false; 28 + sha256Hash = "181689fpjxq4hy2lyxk4zciqhgnhj5srvb4xsxdlbf68n89fj2zf"; 29 + }; 30 + }
+16 -11
pkgs/applications/networking/gns3/gui.nix
··· 1 - { stdenv, python34Packages, fetchFromGitHub }: 1 + { stable, branch, version, sha256Hash }: 2 + 3 + { stdenv, python3Packages, fetchFromGitHub }: 2 4 3 - # TODO: Python 3.6 was failing 4 - python34Packages.buildPythonPackage rec { 5 + let 6 + pythonPackages = python3Packages; 7 + 8 + in pythonPackages.buildPythonPackage rec { 5 9 name = "${pname}-${version}"; 6 10 pname = "gns3-gui"; 7 - version = "2.0.3"; 8 11 9 12 src = fetchFromGitHub { 10 13 owner = "GNS3"; 11 14 repo = pname; 12 15 rev = "v${version}"; 13 - sha256 = "10qp6430md8d0h2wamgfaq7pai59mqmcw6sw3i1gvb20m0avvsvb"; 16 + sha256 = sha256Hash; 14 17 }; 15 18 16 - propagatedBuildInputs = with python34Packages; [ 19 + propagatedBuildInputs = with pythonPackages; [ 17 20 raven psutil jsonschema # tox for check 18 21 # Runtime dependencies 19 22 sip pyqt5 ··· 22 25 doCheck = false; # Failing 23 26 24 27 meta = with stdenv.lib; { 25 - description = "Graphical Network Simulator"; 26 - #longDescription = '' 27 - # ... 28 - #''; 29 - homepage = "https://www.gns3.com/"; 28 + description = "Graphical Network Simulator 3 GUI (${branch} release)"; 29 + longDescription = '' 30 + Graphical user interface for controlling the GNS3 network simulator. This 31 + requires access to a local or remote GNS3 server (it's recommended to 32 + download the official GNS3 VM). 33 + ''; 34 + homepage = https://www.gns3.com/; 30 35 license = licenses.gpl3Plus; 31 36 platforms = platforms.linux; 32 37 maintainers = with maintainers; [ primeos ];
+51 -11
pkgs/applications/networking/gns3/server.nix
··· 1 - { stdenv, python3Packages, fetchFromGitHub }: 1 + { stable, branch, version, sha256Hash }: 2 + 3 + { stdenv, python3Packages, fetchFromGitHub, fetchurl }: 2 4 3 - python3Packages.buildPythonPackage rec { 5 + let 6 + pythonPackages = python3Packages; 7 + yarl = if (!stable) then pythonPackages.yarl 8 + else (stdenv.lib.overrideDerivation pythonPackages.yarl (oldAttrs: 9 + rec { 10 + pname = "yarl"; 11 + version = "0.9.8"; 12 + name = "${pname}-${version}"; 13 + src = pythonPackages.fetchPypi { 14 + inherit pname version; 15 + sha256 = "1v2dsmr7bqp0yx51pwhbxyvzza8m2f88prsnbd926mi6ah38p0d7"; 16 + }; 17 + })); 18 + aiohttp = if (!stable) then pythonPackages.aiohttp 19 + else (stdenv.lib.overrideDerivation pythonPackages.aiohttp (oldAttrs: 20 + rec { 21 + pname = "aiohttp"; 22 + version = "1.3.5"; 23 + name = "${pname}-${version}"; 24 + src = pythonPackages.fetchPypi { 25 + inherit pname version; 26 + sha256 = "0hpqdiaifgyfqmxkyzwypwvrnvz5rqzgzylzhihfidc5ldfs856d"; 27 + }; 28 + propagatedBuildInputs = [ yarl ] 29 + ++ (with pythonPackages; [ async-timeout chardet multidict ]); 30 + })); 31 + aiohttp-cors = if (!stable) then pythonPackages.aiohttp-cors 32 + else (stdenv.lib.overrideDerivation pythonPackages.aiohttp-cors (oldAttrs: 33 + rec { 34 + pname = "aiohttp-cors"; 35 + version = "0.5.1"; 36 + name = "${pname}-${version}"; 37 + src = pythonPackages.fetchPypi { 38 + inherit pname version; 39 + sha256 = "0szma27ri25fq4nwwvs36myddggw3jz4pyzmq63yz4xpw0jjdxck"; 40 + }; 41 + propagatedBuildInputs = [ aiohttp ]; 42 + })); 43 + in pythonPackages.buildPythonPackage rec { 4 44 name = "${pname}-${version}"; 5 45 pname = "gns3-server"; 6 - version = "2.1.0rc1"; 7 46 8 47 src = fetchFromGitHub { 9 48 owner = "GNS3"; 10 49 repo = pname; 11 50 rev = "v${version}"; 12 - sha256 = "181689fpjxq4hy2lyxk4zciqhgnhj5srvb4xsxdlbf68n89fj2zf"; 51 + sha256 = sha256Hash; 13 52 }; 14 53 15 - propagatedBuildInputs = with python3Packages; [ 16 - aiohttp jinja2 psutil zipstream aiohttp-cors raven jsonschema yarl typing 17 - prompt_toolkit 18 - ]; 54 + propagatedBuildInputs = [ yarl aiohttp aiohttp-cors ] 55 + ++ (with pythonPackages; [ 56 + jinja2 psutil zipstream raven jsonschema typing 57 + prompt_toolkit 58 + ]); 19 59 20 - postPatch = '' 60 + postPatch = stdenv.lib.optionalString (!stable) '' 21 61 sed -i 's/yarl>=0.11,<0.12/yarl/g' requirements.txt 22 62 ''; 23 63 ··· 28 68 rm $out/bin/gns3loopback # For windows only 29 69 ''; 30 70 meta = with stdenv.lib; { 31 - description = "Graphical Network Simulator 3 server"; 71 + description = "Graphical Network Simulator 3 server (${branch} release)"; 32 72 longDescription = '' 33 73 The GNS3 server manages emulators such as Dynamips, VirtualBox or 34 74 Qemu/KVM. Clients like the GNS3 GUI control the server using a HTTP REST 35 75 API. 36 76 ''; 37 - homepage = "https://www.gns3.com/"; 77 + homepage = https://www.gns3.com/; 38 78 license = licenses.gpl3Plus; 39 79 platforms = platforms.linux; 40 80 maintainers = with maintainers; [ primeos ];
+11 -7
pkgs/applications/networking/google-drive-ocamlfuse/default.nix
··· 1 - { stdenv, fetchurl, zlib 1 + { stdenv, fetchFromGitHub, zlib 2 2 , ocaml, ocamlbuild, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "google-drive-ocamlfuse-${version}"; 6 - version = "0.6.17"; 5 + name = "google-drive-ocamlfuse-${version}"; 6 + version = "0.6.21"; 7 7 8 - src = fetchurl { 9 - url = "https://forge.ocamlcore.org/frs/download.php/1674/${name}.tar.gz"; 10 - sha256 = "1ldja7080pnjaibrbdvfqwakp4mac8yw1lkb95f7lgldmy96lxas"; 8 + src = fetchFromGitHub { 9 + owner = "astrada"; 10 + repo = "google-drive-ocamlfuse"; 11 + rev = "v${version}"; 12 + sha256 = "14qvhz18pzxdgxk5vcs024ajbkxccfwc9p3z5r6vfkc9mm851v59"; 11 13 }; 12 14 13 - buildInputs = [ zlib ocaml ocamlbuild ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl]; 15 + nativeBuildInputs = [ ocamlbuild ]; 16 + 17 + buildInputs = [ zlib ocaml ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl ]; 14 18 15 19 configurePhase = "ocaml setup.ml -configure --prefix \"$out\""; 16 20 buildPhase = "ocaml setup.ml -build";
+2 -2
pkgs/applications/networking/instant-messengers/riot/riot-web.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name= "riot-web-${version}"; 5 - version = "0.12.3"; 5 + version = "0.12.5"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz"; 9 - sha256 = "1v9k9rna9rziis5ld4x4lw3rhgm504cnnafiwk175jpjbbd8h4b3"; 9 + sha256 = "1g30gl4b5fk1h13r2v4rspcqic9jg99717lxplk5birg3wi3b2d3"; 10 10 }; 11 11 12 12 installPhase = ''
+5
pkgs/applications/networking/mailreaders/neomutt/default.nix
··· 42 42 "ac_cv_path_SENDMAIL=sendmail" 43 43 ]; 44 44 45 + # Fix missing libidn in mutt; 46 + # this fix is ugly since it links all binaries in mutt against libidn 47 + # like pgpring, pgpewrap, ... 48 + NIX_LDFLAGS = "-lidn"; 49 + 45 50 configureScript = "./prepare"; 46 51 47 52 enableParallelBuilding = true;
+1 -1
pkgs/applications/networking/sniffers/wireshark/default.nix
··· 66 66 experts. It runs on UNIX, macOS and Windows. 67 67 ''; 68 68 69 - platforms = platforms.unix; 69 + platforms = platforms.linux; 70 70 maintainers = with maintainers; [ bjornfor fpletz ]; 71 71 }; 72 72 }
+10 -7
pkgs/applications/science/biology/ants/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 _name = "ANTs"; 5 - _version = "2.1.0"; 5 + _version = "2.2.0"; 6 6 name = "${_name}-${_version}"; 7 7 8 8 src = fetchFromGitHub { 9 - owner = "stnava"; 9 + owner = "ANTsX"; 10 10 repo = "ANTs"; 11 - rev = "4e02aa76621698e3513330dd9e863e22917e14b7"; 12 - sha256 = "0gyys1lf69bl3569cskxc8r5llwcr0dsyzvlby5skhfpsyw0dh8r"; 11 + rev = "37ad4e20be3a5ecd26c2e4e41b49e778a0246c3d"; 12 + sha256 = "1hrdwv3m9xh3yf7l0rm2ggxc2xzckfb8srs88g485ibfszx7i03q"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake makeWrapper ]; 16 16 buildInputs = [ itk vtk ]; 17 17 18 - cmakeFlags = [ "-DANTS_SUPERBUILD=FALSE" "-DUSE_VTK=TRUE" ]; 18 + cmakeFlags = [ "-DANTS_SUPERBUILD=FALSE" "-DUSE_VTK=TRUE" 19 + # as cmake otherwise tries to download test data: 20 + "-DBUILD_TESTING=FALSE" ]; 21 + 22 + enableParallelBuilding = true; 19 23 20 24 checkPhase = "ctest"; 21 - doCheck = false; 22 25 23 26 postInstall = '' 24 27 for file in $out/bin/*; do ··· 27 30 ''; 28 31 29 32 meta = with stdenv.lib; { 30 - homepage = https://github.com/stnava/ANTs; 33 + homepage = https://github.com/ANTxS/ANTs; 31 34 description = "Advanced normalization toolkit for medical image registration and other processing"; 32 35 maintainers = with maintainers; [ bcdarwin ]; 33 36 platforms = platforms.unix;
+2 -2
pkgs/applications/science/logic/abella/default.nix
··· 1 - { stdenv, fetchurl, rsync, ocaml }: 1 + { stdenv, fetchurl, rsync, ocamlPackages }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "abella-${version}"; ··· 9 9 sha256 = "b56d865ebdb198111f1dcd5b6fbcc0d7fc6dd1294f7601903ba4e3c3322c099c"; 10 10 }; 11 11 12 - buildInputs = [ rsync ocaml ]; 12 + buildInputs = [ rsync ] ++ (with ocamlPackages; [ ocaml ocamlbuild ]); 13 13 14 14 installPhase = '' 15 15 mkdir -p $out/bin
+1 -1
pkgs/applications/science/logic/jonprl/default.nix
··· 29 29 homepage = http://www.jonprl.org/; 30 30 license = stdenv.lib.licenses.mit; 31 31 maintainers = with stdenv.lib.maintainers; [ puffnfresh ]; 32 - platforms = stdenv.lib.platforms.unix; 32 + platforms = stdenv.lib.platforms.linux; 33 33 }; 34 34 }
+2 -2
pkgs/applications/science/math/calc/default.nix
··· 12 12 stdenv.mkDerivation rec { 13 13 14 14 name = "calc-${version}"; 15 - version = "2.12.6.1"; 15 + version = "2.12.6.3"; 16 16 17 17 src = fetchurl { 18 18 url = "https://github.com/lcn2/calc/releases/download/${version}/${name}.tar.bz2"; 19 - sha256 = "1vy4jmhmpl3gzgpkpv0kqwjv8hn1cza8cn1g8c69gq3inqvr4fvd"; 19 + sha256 = "01m20s5zs74zyb23x6zg6i13gc30a2ay2iz1rdbkxram01cblzky"; 20 20 }; 21 21 22 22 buildInputs = [ makeWrapper readline ncurses utillinux ];
+1 -1
pkgs/applications/video/ogmtools/default.nix
··· 19 19 ''; 20 20 homepage = http://www.bunkus.org/videotools/ogmtools/; 21 21 license = stdenv.lib.licenses.gpl2; 22 - platforms = stdenv.lib.platforms.all; 22 + platforms = stdenv.lib.platforms.linux; 23 23 }; 24 24 }
+49 -1
pkgs/build-support/docker/default.nix
··· 10 10 lib, 11 11 pkgs, 12 12 pigz, 13 + nixUnstable, 14 + perl, 13 15 runCommand, 14 16 rsync, 15 17 shadow, ··· 27 29 rec { 28 30 29 31 examples = import ./examples.nix { 30 - inherit pkgs buildImage pullImage shadowSetup; 32 + inherit pkgs buildImage pullImage shadowSetup buildImageWithNixDb; 31 33 }; 32 34 33 35 pullImage = ··· 237 239 set -e 238 240 export PATH=${coreutils}/bin:/bin 239 241 ${text} 242 + ''; 243 + 244 + nixRegistration = contents: runCommand "nix-registration" { 245 + buildInputs = [ nixUnstable perl ]; 246 + # For obtaining the closure of `contents'. 247 + exportReferencesGraph = 248 + let contentsList = if builtins.isList contents then contents else [ contents ]; 249 + in map (x: [("closure-" + baseNameOf x) x]) contentsList; 250 + } 251 + '' 252 + mkdir $out 253 + printRegistration=1 perl ${pkgs.pathsFromGraph} closure-* > $out/db.dump 254 + perl ${pkgs.pathsFromGraph} closure-* > $out/storePaths 240 255 ''; 241 256 242 257 # Create a "layer" (set of files). ··· 544 559 545 560 in 546 561 result; 562 + 563 + # Build an image and populate its nix database with the provided 564 + # contents. The main purpose is to be able to use nix commands in 565 + # the container. 566 + # Be careful since this doesn't work well with multilayer. 567 + buildImageWithNixDb = args@{ contents ? null, extraCommands ? "", ... }: 568 + buildImage (args // { 569 + extraCommands = '' 570 + echo "Generating the nix database..." 571 + echo "Warning: only the database of the deepest Nix layer is loaded." 572 + echo " If you want to use nix commands in the container, it would" 573 + echo " be better to only have one layer that contains a nix store." 574 + # This requires Nix 1.12 or higher 575 + export NIX_REMOTE=local?root=$PWD 576 + ${nixUnstable}/bin/nix-store --load-db < ${nixRegistration contents}/db.dump 577 + 578 + # We fill the store in order to run the 'verify' command that 579 + # generates hash and size of output paths. 580 + # Note when Nix 1.12 is be the stable one, the database dump 581 + # generated by the exportReferencesGraph function will 582 + # contains sha and size. See 583 + # https://github.com/NixOS/nix/commit/c2b0d8749f7e77afc1c4b3e8dd36b7ee9720af4a 584 + storePaths=$(cat ${nixRegistration contents}/storePaths) 585 + echo "Copying everything to /nix/store (will take a while)..." 586 + cp -prd $storePaths nix/store/ 587 + ${nixUnstable}/bin/nix-store --verify --check-contents 588 + 589 + mkdir -p nix/var/nix/gcroots/docker/ 590 + for i in ${lib.concatStringsSep " " contents}; do 591 + ln -s $i nix/var/nix/gcroots/docker/$(basename $i) 592 + done; 593 + '' + extraCommands; 594 + }); 547 595 }
+15 -2
pkgs/build-support/docker/examples.nix
··· 7 7 # $ nix-build '<nixpkgs>' -A dockerTools.examples.redis 8 8 # $ docker load < result 9 9 10 - { pkgs, buildImage, pullImage, shadowSetup }: 10 + { pkgs, buildImage, pullImage, shadowSetup, buildImageWithNixDb }: 11 11 12 12 rec { 13 13 # 1. basic example ··· 83 83 }; 84 84 85 85 # 4. example of pulling an image. could be used as a base for other images 86 - nix = pullImage { 86 + nixFromDockerHub = pullImage { 87 87 imageName = "nixos/nix"; 88 88 imageTag = "1.11"; 89 89 # this hash will need change if the tag is updated at docker hub ··· 99 99 pkgs.emacs 100 100 pkgs.vim 101 101 pkgs.nano 102 + ]; 103 + }; 104 + 105 + # 5. nix example to play with the container nix store 106 + # docker run -it --rm nix nix-store -qR $(nix-build '<nixpkgs>' -A nix) 107 + nix = buildImageWithNixDb { 108 + name = "nix"; 109 + contents = [ 110 + # nix-store -qR uses the 'more' program which is not included in 111 + # the pkgs.nix dependencies. We then have to manually get it 112 + # from the 'eject' package:/ 113 + pkgs.eject 114 + pkgs.nix 102 115 ]; 103 116 }; 104 117 }
+1 -1
pkgs/desktops/lxde/core/lxappearance/default.nix
··· 20 20 description = "A lightweight program for configuring the theme and fonts of gtk applications"; 21 21 homepage = http://lxde.org/; 22 22 maintainers = [ stdenv.lib.maintainers.hinton ]; 23 - platforms = stdenv.lib.platforms.all; 23 + platforms = stdenv.lib.platforms.linux; 24 24 license = stdenv.lib.licenses.gpl2; 25 25 }; 26 26 }
+1 -1
pkgs/desktops/mate/libmatemixer/default.nix
··· 27 27 description = "Mixer library for MATE"; 28 28 homepage = https://github.com/mate-desktop/libmatemixer; 29 29 license = with licenses; [ gpl2 lgpl2 ]; 30 - platforms = platforms.unix; 30 + platforms = platforms.linux; 31 31 maintainers = [ maintainers.romildo ]; 32 32 }; 33 33 }
+1 -1
pkgs/desktops/mate/mate-desktop/default.nix
··· 26 26 description = "Library with common API for various MATE modules"; 27 27 homepage = http://mate-desktop.org; 28 28 license = licenses.gpl2; 29 - platforms = platforms.unix; 29 + platforms = platforms.linux; 30 30 maintainers = [ maintainers.romildo ]; 31 31 }; 32 32 }
+18 -12
pkgs/development/compilers/dmd/2.067.1.nix
··· 43 43 # Compile with PIC to prevent colliding modules with binutils 2.28. 44 44 # https://issues.dlang.org/show_bug.cgi?id=17375 45 45 usePIC = "-fPIC"; 46 + ROOT_HOME_DIR = "$(echo ~root)"; 46 47 47 48 postPatch = '' 48 49 # Ugly hack so the dlopen call has a chance to succeed. ··· 67 68 --replace g++ $CXX 68 69 '' 69 70 70 - + stdenv.lib.optionalString stdenv.hostPlatform.isLinux '' 71 - substituteInPlace dmd/src/root/port.c \ 72 - --replace "#include <bits/mathdef.h>" "#include <complex.h>" 73 - '' 71 + + stdenv.lib.optionalString stdenv.hostPlatform.isLinux '' 72 + substituteInPlace dmd/src/root/port.c \ 73 + --replace "#include <bits/mathdef.h>" "#include <complex.h>" 74 74 75 - + stdenv.lib.optionalString stdenv.hostPlatform.isDarwin '' 76 - substituteInPlace dmd/src/posix.mak \ 77 - --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_ 75 + # See https://github.com/NixOS/nixpkgs/issues/29443 76 + substituteInPlace phobos/std/path.d \ 77 + --replace "\"/root" "\"${ROOT_HOME_DIR}" 78 + '' 78 79 79 - # Was not able to compile on darwin due to "__inline_isnanl" 80 - # being undefined. 81 - substituteInPlace dmd/src/root/port.c --replace __inline_isnanl __inline_isnan 82 - ''; 80 + + stdenv.lib.optionalString stdenv.hostPlatform.isDarwin '' 81 + substituteInPlace dmd/src/posix.mak \ 82 + --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_ 83 + 84 + # Was not able to compile on darwin due to "__inline_isnanl" 85 + # being undefined. 86 + substituteInPlace dmd/src/root/port.c --replace __inline_isnanl __inline_isnan 87 + ''; 83 88 84 89 nativeBuildInputs = [ makeWrapper unzip which ]; 85 90 buildInputs = [ curl tzdata ]; ··· 96 101 cd .. 97 102 ''; 98 103 99 - doCheck = true; 104 + # disable check phase because some tests are not working with sandboxing 105 + doCheck = false; 100 106 101 107 checkPhase = '' 102 108 cd dmd
+9 -3
pkgs/development/compilers/dmd/default.nix
··· 1 1 { stdenv, fetchFromGitHub 2 2 , makeWrapper, unzip, which 3 - , curl, tzdata, gdb 3 + , curl, tzdata, gdb, darwin 4 4 # Versions 2.070.2 and up require a working dmd compiler to build: 5 5 , bootstrapDmd }: 6 6 ··· 73 73 --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_ 74 74 ''; 75 75 76 - nativeBuildInputs = [ bootstrapDmd makeWrapper unzip which gdb ]; 76 + nativeBuildInputs = [ bootstrapDmd makeWrapper unzip which gdb ] 77 + 78 + ++ stdenv.lib.optional stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [ 79 + Foundation 80 + ]); 81 + 77 82 buildInputs = [ curl tzdata ]; 78 83 79 84 # Buid and install are based on http://wiki.dlang.org/Building_DMD ··· 92 97 cd .. 93 98 ''; 94 99 95 - doCheck = true; 100 + # disable check phase because some tests are not working with sandboxing 101 + doCheck = false; 96 102 97 103 checkPhase = '' 98 104 cd dmd
+2 -1
pkgs/development/compilers/ldc/default.nix
··· 81 81 82 82 makeFlags = [ "DMD=$DMD" ]; 83 83 84 - doCheck = true; 84 + # disable check phase because some tests are not working with sandboxing 85 + doCheck = false; 85 86 86 87 checkPhase = '' 87 88 ctest -j $NIX_BUILD_CORES -V DMD=$DMD
+16 -12
pkgs/development/compilers/openjdk/8.nix
··· 1 - { stdenv, lib, fetchurl, cpio, pkgconfig, file, which, unzip, zip, cups, freetype 1 + { stdenv, lib, fetchurl, bash, cpio, pkgconfig, file, which, unzip, zip, cups, freetype 2 2 , alsaLib, bootjdk, cacert, perl, liberation_ttf, fontconfig, zlib, lndir 3 3 , libX11, libICE, libXrender, libXext, libXt, libXtst, libXi, libXinerama, libXcursor 4 4 , libjpeg, giflib ··· 75 75 gtk2 gnome_vfs GConf glib 76 76 ]; 77 77 78 + #move the seven other source dirs under the main jdk8u directory, 79 + #with version suffixes removed, as the remainder of the build will expect 78 80 prePatch = '' 79 - ls | grep jdk | grep -v '^jdk8u' | awk -F- '{print $1}' | while read p; do 80 - mv $p-* $(ls | grep '^jdk8u')/$p 81 + mainDir=$(find . -maxdepth 1 -name jdk8u\*); 82 + find . -maxdepth 1 -name \*jdk\* -not -name jdk8u\* | awk -F- '{print $1}' | while read p; do 83 + mv $p-* $mainDir/$p 81 84 done 82 - cd $(ls | grep '^jdk8u') 85 + cd $mainDir 83 86 ''; 84 87 85 88 patches = [ ··· 95 98 96 99 preConfigure = '' 97 100 chmod +x configure 98 - substituteInPlace configure --replace /bin/bash "$shell" 101 + substituteInPlace configure --replace /bin/bash "${bash}/bin/bash" 99 102 substituteInPlace hotspot/make/linux/adlc_updater --replace /bin/sh "$shell" 100 103 substituteInPlace hotspot/make/linux/makefiles/dtrace.make --replace /usr/include/sys/sdt.h "/no-such-path" 101 104 '' ··· 188 191 done 189 192 190 193 # Generate certificates. 191 - pushd $jre/lib/openjdk/jre/lib/security 192 - rm cacerts 193 - perl ${./generate-cacerts.pl} $jre/lib/openjdk/jre/bin/keytool ${cacert}/etc/ssl/certs/ca-bundle.crt 194 - popd 194 + ( 195 + cd $jre/lib/openjdk/jre/lib/security 196 + rm cacerts 197 + perl ${./generate-cacerts.pl} $jre/lib/openjdk/jre/bin/keytool ${cacert}/etc/ssl/certs/ca-bundle.crt 198 + ) 195 199 196 200 ln -s $out/lib/openjdk/bin $out/bin 197 201 ln -s $jre/lib/openjdk/jre/bin $jre/bin ··· 221 225 # Build the set of output library directories to rpath against 222 226 LIBDIRS="" 223 227 for output in $outputs; do 224 - LIBDIRS="$(find $(eval echo \$$output) -name \*.so\* -exec dirname {} \; | sort | uniq | tr '\n' ':'):$LIBDIRS" 228 + LIBDIRS="$(find $(eval echo \$$output) -name \*.so\* -exec dirname {} \+ | sort | uniq | tr '\n' ':'):$LIBDIRS" 225 229 done 226 230 227 231 # Add the local library paths to remove dependencies on the bootstrap 228 232 for output in $outputs; do 229 - OUTPUTDIR="$(eval echo \$$output)" 230 - BINLIBS="$(find $OUTPUTDIR/bin/ -type f; find $OUTPUTDIR -name \*.so\*)" 233 + OUTPUTDIR=$(eval echo \$$output) 234 + BINLIBS=$(find $OUTPUTDIR/bin/ -type f; find $OUTPUTDIR -name \*.so\*) 231 235 echo "$BINLIBS" | while read i; do 232 236 patchelf --set-rpath "$LIBDIRS:$(patchelf --print-rpath "$i")" "$i" || true 233 237 patchelf --shrink-rpath "$i" || true
+262
pkgs/development/compilers/openjdk/9.nix
··· 1 + { stdenv, lib, fetchurl, bash, cpio, pkgconfig, file, which, unzip, zip, cups, freetype 2 + , alsaLib, bootjdk, cacert, perl, liberation_ttf, fontconfig, zlib, lndir 3 + , libX11, libICE, libXrender, libXext, libXt, libXtst, libXi, libXinerama, libXcursor 4 + , libjpeg, giflib 5 + , setJavaClassPath 6 + , minimal ? false 7 + #, enableInfinality ? true # font rendering patch 8 + , enableGnome2 ? true, gtk2, gnome_vfs, glib, GConf 9 + }: 10 + 11 + let 12 + 13 + /** 14 + * The JRE libraries are in directories that depend on the CPU. 15 + */ 16 + architecture = 17 + if stdenv.system == "i686-linux" then 18 + "i386" 19 + else if stdenv.system == "x86_64-linux" then 20 + "amd64" 21 + else 22 + throw "openjdk requires i686-linux or x86_64 linux"; 23 + 24 + update = ""; 25 + build = "181"; 26 + baseurl = "http://hg.openjdk.java.net/jdk9/jdk9"; 27 + repover = "jdk-9${update}+${build}"; 28 + paxflags = if stdenv.isi686 then "msp" else "m"; 29 + jdk9 = fetchurl { 30 + url = "${baseurl}/archive/${repover}.tar.gz"; 31 + sha256 = "0c7jwz4qvl93brs6c2v4dfc2v3lsv6ic0y72lkh04bnxg9343z82"; 32 + }; 33 + langtools = fetchurl { 34 + url = "${baseurl}/langtools/archive/${repover}.tar.gz"; 35 + sha256 = "1wa5rjan6lcs8nnxndbwpw6gkx3qbw013s6zisjjczkcaiq044pp"; 36 + }; 37 + hotspot = fetchurl { 38 + url = "${baseurl}/hotspot/archive/${repover}.tar.gz"; 39 + sha256 = "00jnj19rim1gxpsxrpr8ifx1glwrbma3qjiy1ya7n5f08fb263hs"; 40 + }; 41 + corba = fetchurl { 42 + url = "${baseurl}/corba/archive/${repover}.tar.gz"; 43 + sha256 = "1gvx6dblzj7rb8648iqwdiv36x97ibykgs323dd9044n3vbqihvj"; 44 + }; 45 + jdk = fetchurl { 46 + url = "${baseurl}/jdk/archive/${repover}.tar.gz"; 47 + sha256 = "15pwdw6s03rfyw2gx06xg4f70bjl8j19ycssxiigj39h524xc9aw"; 48 + }; 49 + jaxws = fetchurl { 50 + url = "${baseurl}/jaxws/archive/${repover}.tar.gz"; 51 + sha256 = "0jz32pjbgr77ybb2v1vwr1n9ljdrc3y0d5lrj072g3is1hmn2wbh"; 52 + }; 53 + jaxp = fetchurl { 54 + url = "${baseurl}/jaxp/archive/${repover}.tar.gz"; 55 + sha256 = "1jdxr9hcqx6va56ll5s2x9bx9dnlrs7zyvhjk1zgr5hxg5yfcqzr"; 56 + }; 57 + nashorn = fetchurl { 58 + url = "${baseurl}/nashorn/archive/${repover}.tar.gz"; 59 + sha256 = "12lihmw9ga6yhz0h26fvfablcjkkma0k3idjggmap97xha8zgd6n"; 60 + }; 61 + openjdk9 = stdenv.mkDerivation { 62 + name = "openjdk-9${update}-b${build}"; 63 + 64 + srcs = [ jdk9 langtools hotspot corba jdk jaxws jaxp nashorn ]; 65 + sourceRoot = "."; 66 + 67 + outputs = [ "out" "jre" ]; 68 + 69 + nativeBuildInputs = [ pkgconfig ]; 70 + buildInputs = [ 71 + cpio file which unzip zip perl bootjdk zlib cups freetype alsaLib 72 + libjpeg giflib libX11 libICE libXext libXrender libXtst libXt libXtst 73 + libXi libXinerama libXcursor lndir fontconfig 74 + ] ++ lib.optionals (!minimal && enableGnome2) [ 75 + gtk2 gnome_vfs GConf glib 76 + ]; 77 + 78 + #move the seven other source dirs under the main jdk8u directory, 79 + #with version suffixes removed, as the remainder of the build will expect 80 + prePatch = '' 81 + mainDir=$(find . -maxdepth 1 -name jdk9\*); 82 + find . -maxdepth 1 -name \*jdk\* -not -name jdk9\* | awk -F- '{print $1}' | while read p; do 83 + mv $p-* $mainDir/$p 84 + done 85 + cd $mainDir 86 + ''; 87 + 88 + patches = [ 89 + ./fix-java-home-jdk9.patch 90 + ./read-truststore-from-env-jdk9.patch 91 + ./currency-date-range-jdk8.patch 92 + #] ++ lib.optionals (!minimal && enableInfinality) [ 93 + # ./004_add-fontconfig.patch 94 + # ./005_enable-infinality.patch 95 + ] ++ lib.optionals (!minimal && enableGnome2) [ 96 + ./swing-use-gtk-jdk9.patch 97 + ]; 98 + 99 + preConfigure = '' 100 + chmod +x configure 101 + substituteInPlace configure --replace /bin/bash "${bash}/bin/bash" 102 + 103 + configureFlagsArray=( 104 + "--with-boot-jdk=${bootjdk.home}" 105 + "--with-update-version=${update}" 106 + "--with-build-number=${build}" 107 + "--with-milestone=fcs" 108 + "--enable-unlimited-crypto" 109 + "--disable-debug-symbols" 110 + "--disable-freetype-bundling" 111 + "--with-zlib=system" 112 + "--with-giflib=system" 113 + "--with-stdc++lib=dynamic" 114 + 115 + # glibc 2.24 deprecated readdir_r so we need this 116 + # See https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg49006.html 117 + "--with-extra-cflags=-Wno-error=deprecated-declarations -Wno-error=format-contains-nul -Wno-error=unused-result" 118 + '' 119 + + lib.optionalString minimal "\"--enable-headless-only\"" 120 + + ");" 121 + # https://bugzilla.redhat.com/show_bug.cgi?id=1306558 122 + # https://github.com/JetBrains/jdk8u/commit/eaa5e0711a43d64874111254d74893fa299d5716 123 + + stdenv.lib.optionalString stdenv.cc.isGNU '' 124 + NIX_CFLAGS_COMPILE+=" -fno-lifetime-dse -fno-delete-null-pointer-checks -std=gnu++98 -Wno-error" 125 + ''; 126 + 127 + NIX_LDFLAGS= lib.optionals (!minimal) [ 128 + "-lfontconfig" "-lcups" "-lXinerama" "-lXrandr" "-lmagic" 129 + ] ++ lib.optionals (!minimal && enableGnome2) [ 130 + "-lgtk-x11-2.0" "-lgio-2.0" "-lgnomevfs-2" "-lgconf-2" 131 + ]; 132 + 133 + buildFlags = [ "all" ]; 134 + 135 + installPhase = '' 136 + mkdir -p $out/lib/openjdk $out/share $jre/lib/openjdk 137 + 138 + cp -av build/*/images/jdk/* $out/lib/openjdk 139 + 140 + # Remove some broken manpages. 141 + rm -rf $out/lib/openjdk/man/ja* 142 + 143 + # Mirror some stuff in top-level. 144 + mkdir $out/include $out/share/man 145 + ln -s $out/lib/openjdk/include/* $out/include/ 146 + ln -s $out/lib/openjdk/man/* $out/share/man/ 147 + 148 + # jni.h expects jni_md.h to be in the header search path. 149 + ln -s $out/include/linux/*_md.h $out/include/ 150 + 151 + # Copy the JRE to a separate output and setup fallback fonts 152 + cp -av build/*/images/jre $jre/lib/openjdk/ 153 + mkdir $out/lib/openjdk/jre 154 + ${lib.optionalString (!minimal) '' 155 + mkdir -p $jre/lib/openjdk/jre/lib/fonts/fallback 156 + lndir ${liberation_ttf}/share/fonts/truetype $jre/lib/openjdk/jre/lib/fonts/fallback 157 + ''} 158 + 159 + # Remove crap from the installation. 160 + rm -rf $out/lib/openjdk/demo 161 + ${lib.optionalString minimal '' 162 + for d in $out/lib/openjdk/lib $jre/lib/openjdk/jre/lib; do 163 + rm ''${d}/{libjsound,libjsoundalsa,libawt*,libfontmanager}.so 164 + done 165 + ''} 166 + 167 + lndir $jre/lib/openjdk/jre $out/lib/openjdk/jre 168 + 169 + # Make sure cmm/*.pf are not symlinks: 170 + # https://youtrack.jetbrains.com/issue/IDEA-147272 171 + # in 9, it seems no *.pf files end up in $out ... ? 172 + # rm -rf $out/lib/openjdk/jre/lib/cmm 173 + # ln -s {$jre,$out}/lib/openjdk/jre/lib/cmm 174 + 175 + # Set PaX markings 176 + exes=$(file $out/lib/openjdk/bin/* $jre/lib/openjdk/jre/bin/* 2> /dev/null | grep -E 'ELF.*(executable|shared object)' | sed -e 's/: .*$//') 177 + echo "to mark: *$exes*" 178 + for file in $exes; do 179 + echo "marking *$file*" 180 + paxmark ${paxflags} "$file" 181 + done 182 + 183 + # Remove duplicate binaries. 184 + for i in $(cd $out/lib/openjdk/bin && echo *); do 185 + if [ "$i" = java ]; then continue; fi 186 + if cmp -s $out/lib/openjdk/bin/$i $jre/lib/openjdk/jre/bin/$i; then 187 + ln -sfn $jre/lib/openjdk/jre/bin/$i $out/lib/openjdk/bin/$i 188 + fi 189 + done 190 + 191 + # Generate certificates. 192 + ( 193 + cd $jre/lib/openjdk/jre/lib/security 194 + rm cacerts 195 + perl ${./generate-cacerts.pl} $jre/lib/openjdk/jre/bin/keytool ${cacert}/etc/ssl/certs/ca-bundle.crt 196 + ) 197 + 198 + ln -s $out/lib/openjdk/bin $out/bin 199 + ln -s $jre/lib/openjdk/jre/bin $jre/bin 200 + ln -s $jre/lib/openjdk/jre $out/jre 201 + ''; 202 + 203 + # FIXME: this is unnecessary once the multiple-outputs branch is merged. 204 + preFixup = '' 205 + prefix=$jre stripDirs "$stripDebugList" "''${stripDebugFlags:--S}" 206 + patchELF $jre 207 + propagatedNativeBuildInputs+=" $jre" 208 + 209 + # Propagate the setJavaClassPath setup hook from the JRE so that 210 + # any package that depends on the JRE has $CLASSPATH set up 211 + # properly. 212 + mkdir -p $jre/nix-support 213 + #TODO or printWords? cf https://github.com/NixOS/nixpkgs/pull/27427#issuecomment-317293040 214 + echo -n "${setJavaClassPath}" > $jre/nix-support/propagated-native-build-inputs 215 + 216 + # Set JAVA_HOME automatically. 217 + mkdir -p $out/nix-support 218 + cat <<EOF > $out/nix-support/setup-hook 219 + if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out/lib/openjdk; fi 220 + EOF 221 + ''; 222 + 223 + postFixup = '' 224 + # Build the set of output library directories to rpath against 225 + LIBDIRS="" 226 + for output in $outputs; do 227 + LIBDIRS="$(find $(eval echo \$$output) -name \*.so\* -exec dirname {} \+ | sort | uniq | tr '\n' ':'):$LIBDIRS" 228 + done 229 + 230 + # Add the local library paths to remove dependencies on the bootstrap 231 + for output in $outputs; do 232 + OUTPUTDIR=$(eval echo \$$output) 233 + BINLIBS=$(find $OUTPUTDIR/bin/ -type f; find $OUTPUTDIR -name \*.so\*) 234 + echo "$BINLIBS" | while read i; do 235 + patchelf --set-rpath "$LIBDIRS:$(patchelf --print-rpath "$i")" "$i" || true 236 + patchelf --shrink-rpath "$i" || true 237 + done 238 + done 239 + 240 + # Test to make sure that we don't depend on the bootstrap 241 + for output in $outputs; do 242 + if grep -q -r '${bootjdk}' $(eval echo \$$output); then 243 + echo "Extraneous references to ${bootjdk} detected" 244 + exit 1 245 + fi 246 + done 247 + ''; 248 + 249 + meta = with stdenv.lib; { 250 + homepage = http://openjdk.java.net/; 251 + license = licenses.gpl2; 252 + description = "The open-source Java Development Kit"; 253 + maintainers = with maintainers; [ edwtjo ]; 254 + platforms = platforms.linux; 255 + }; 256 + 257 + passthru = { 258 + inherit architecture; 259 + home = "${openjdk9}/lib/openjdk"; 260 + }; 261 + }; 262 + in openjdk9
+14
pkgs/development/compilers/openjdk/fix-java-home-jdk9.patch
··· 1 + --- a/hotspot/src/os/linux/vm/os_linux.cpp 2017-07-04 23:09:02.533972226 -0400 2 + +++ b/hotspot/src/os/linux/vm/os_linux.cpp 2017-07-04 23:07:52.118338845 -0400 3 + @@ -2318,10 +2318,7 @@ 4 + assert(ret, "cannot locate libjvm"); 5 + char *rp = NULL; 6 + if (ret && dli_fname[0] != '\0') { 7 + - rp = realpath(dli_fname, buf); 8 + - } 9 + - if (rp == NULL) { 10 + - return; 11 + + snprintf(buf, buflen, "%s", dli_fname); 12 + } 13 + 14 + if (Arguments::sun_java_launcher_is_altjvm()) {
+20
pkgs/development/compilers/openjdk/read-truststore-from-env-jdk9.patch
··· 1 + --- a/jdk/src/java.base/share/classes/sun/security/ssl/TrustStoreManager.java 2017-06-26 21:48:25.000000000 -0400 2 + +++ b/jdk/src/java.base/share/classes/sun/security/ssl/TrustStoreManager.java.new 2017-07-05 20:45:57.491295030 -0400 3 + @@ -71,6 +71,7 @@ 4 + * 5 + * The preference of the default trusted KeyStore is: 6 + * javax.net.ssl.trustStore 7 + + * system environment variable JAVAX_NET_SSL_TRUSTSTORE 8 + * jssecacerts 9 + * cacerts 10 + */ 11 + @@ -144,6 +145,9 @@ 12 + String temporaryName = ""; 13 + File temporaryFile = null; 14 + long temporaryTime = 0L; 15 + + if (storePropName == null){ 16 + + storePropName = System.getenv("JAVAX_NET_SSL_TRUSTSTORE"); 17 + + } 18 + if (!"NONE".equals(storePropName)) { 19 + String[] fileNames = 20 + new String[] {storePropName, defaultStore};
+26
pkgs/development/compilers/openjdk/swing-use-gtk-jdk9.patch
··· 1 + diff -ru3 a/jdk/src/share/classes/javax/swing/UIManager.java b/jdk/src/share/classes/javax/swing/UIManager.java 2 + --- a/jdk/src/java.desktop/share/classes/javax/swing/UIManager.java 2016-07-26 00:41:37.000000000 +0300 3 + +++ b/jdk/src/java.desktop/share/classes/javax/swing/UIManager.java 2016-10-02 22:46:01.890071761 +0300 4 + @@ -607,11 +607,9 @@ 5 + if (osType == OSInfo.OSType.WINDOWS) { 6 + return "com.sun.java.swing.plaf.windows.WindowsLookAndFeel"; 7 + } else { 8 + - String desktop = AccessController.doPrivileged(new GetPropertyAction("sun.desktop")); 9 + Toolkit toolkit = Toolkit.getDefaultToolkit(); 10 + - if ("gnome".equals(desktop) && 11 + - toolkit instanceof SunToolkit && 12 + - ((SunToolkit) toolkit).isNativeGTKAvailable()) { 13 + + if (toolkit instanceof SunToolkit && 14 + + ((SunToolkit) toolkit).isNativeGTKAvailable()) { 15 + // May be set on Linux and Solaris boxs. 16 + return "com.sun.java.swing.plaf.gtk.GTKLookAndFeel"; 17 + } 18 + @@ -1341,7 +1339,7 @@ 19 + lafName = (String) lafData.remove("defaultlaf"); 20 + } 21 + if (lafName == null) { 22 + - lafName = getCrossPlatformLookAndFeelClassName(); 23 + + lafName = getSystemLookAndFeelClassName(); 24 + } 25 + lafName = swingProps.getProperty(defaultLAFKey, lafName); 26 +
+3
pkgs/development/haskell-modules/configuration-common.nix
··· 720 720 # It makes no sense to have intero-nix-shim in Hackage, so we publish it here only. 721 721 intero-nix-shim = self.callPackage ../tools/haskell/intero-nix-shim {}; 722 722 723 + # vaultenv is not available from Hackage. 724 + vaultenv = self.callPackage ../tools/haskell/vaultenv { }; 725 + 723 726 # https://github.com/Philonous/hs-stun/pull/1 724 727 # Remove if a version > 0.1.0.1 ever gets released. 725 728 stunclient = overrideCabal super.stunclient (drv: {
+1 -1
pkgs/development/libraries/dirac/default.nix
··· 24 24 meta = with stdenv.lib; { 25 25 homepage = http://sourceforge.net/projects/dirac; 26 26 description = "A general-purpose video codec based on wavelets"; 27 - platforms = platforms.all; 27 + platforms = platforms.linux; 28 28 license = with licenses; [ mpl11 gpl2 lgpl21 ]; 29 29 maintainer = maintainers.igsha; 30 30 };
+1 -1
pkgs/development/libraries/idnkit/default.nix
··· 14 14 homepage = https://www.nic.ad.jp/ja/idn/idnkit; 15 15 description = "Provides functionalities about i18n domain name processing"; 16 16 license = "idnkit-2 license"; 17 - platforms = platforms.unix; 17 + platforms = platforms.linux; 18 18 maintainers = with maintainers; [ wkennington ]; 19 19 }; 20 20 }
+2 -2
pkgs/development/libraries/libuv/default.nix
··· 2 2 , ApplicationServices, CoreServices }: 3 3 4 4 stdenv.mkDerivation rec { 5 - version = "1.13.1"; 5 + version = "1.14.1"; 6 6 name = "libuv-${version}"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "libuv"; 10 10 repo = "libuv"; 11 11 rev = "v${version}"; 12 - sha256 = "0k348kgdphha1w4cw78zngq3gqcrhcn0az7k0k4w2bgmdf4ip8z8"; 12 + sha256 = "1121qvnvpcabq1bl2k41jq8r2hn2x123csiaf7s9vrq66bbxgfdx"; 13 13 }; 14 14 15 15 postPatch = let
+3 -9
pkgs/development/libraries/lmdb/default.nix
··· 1 1 { stdenv, fetchFromGitHub }: 2 2 3 - let optional = stdenv.lib.optional; 4 - in stdenv.mkDerivation rec { 3 + stdenv.mkDerivation rec { 5 4 name = "lmdb-${version}"; 6 5 version = "0.9.21"; 7 6 ··· 16 15 17 16 outputs = [ "bin" "out" "dev" ]; 18 17 19 - makeFlags = [ "prefix=$(out)" "CC=cc" ]; 18 + makeFlags = [ "prefix=$(out)" "CC=cc" ] 19 + ++ stdenv.lib.optional stdenv.isDarwin "LDFLAGS=-Wl,-install_name,$(out)/lib/liblmdb.so"; 20 20 21 21 doCheck = true; 22 22 checkPhase = "make test"; ··· 25 25 moveToOutput bin "$bin" 26 26 moveToOutput "lib/*.a" REMOVE # until someone needs it 27 27 '' 28 - 29 - # fix bogus library name 30 - + stdenv.lib.optionalString stdenv.isDarwin '' 31 - mv "$out"/lib/liblmdb.{so,dylib} 32 - '' 33 - 34 28 # add lmdb.pc (dynamic only) 35 29 + '' 36 30 mkdir -p "$dev/lib/pkgconfig"
+1 -1
pkgs/development/libraries/qt-5/qtbase-setup-hook.sh
··· 123 123 124 124 mkdir -p "$NIX_QT5_TMP/nix-support" 125 125 for subdir in bin include lib mkspecs share; do 126 - mkdir "$NIX_QT5_TMP/$subdir" 126 + mkdir -p "$NIX_QT5_TMP/$subdir" 127 127 echo "$subdir/" >> "$NIX_QT5_TMP/nix-support/qt-inputs" 128 128 done 129 129
+1 -1
pkgs/development/libraries/resolv_wrapper/default.nix
··· 15 15 homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;"; 16 16 license = licenses.bsd3; 17 17 maintainers = with maintainers; [ wkennington ]; 18 - platforms = platforms.all; 18 + platforms = platforms.linux; 19 19 }; 20 20 }
+4 -3
pkgs/development/libraries/vapoursynth/default.nix
··· 1 1 { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, 2 - zimg, libass, yasm, python3, 2 + zimg, libass, yasm, python3, libiconv, ApplicationServices, 3 3 ocrSupport ? false, tesseract, 4 4 imwriSupport? true, imagemagick7 5 5 }: ··· 20 20 sha256 = "0nabl6949s7awy7rnr4ck52v50xr0hwr280fyzsqixgp8w369jn0"; 21 21 }; 22 22 23 + nativeBuildInputs = [ pkgconfig autoreconfHook ]; 23 24 buildInputs = [ 24 - pkgconfig autoreconfHook 25 25 zimg libass tesseract yasm 26 26 (python3.withPackages (ps: with ps; [ sphinx cython ])) 27 - ] ++ optional ocrSupport tesseract 27 + ] ++ optionals stdenv.isDarwin [ libiconv ApplicationServices ] 28 + ++ optional ocrSupport tesseract 28 29 ++ optional imwriSupport imagemagick7; 29 30 30 31 configureFlags = [
+13 -8
pkgs/development/libraries/vmmlib/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, pkgconfig, boost, blas }: 1 + { stdenv, fetchFromGitHub, cmake, pkgconfig, boost, blas 2 + , Accelerate, CoreGraphics, CoreVideo 3 + }: 2 4 3 5 stdenv.mkDerivation rec { 4 6 version = "1.6.2"; 5 7 name = "vmmlib-${version}"; 6 - buildInputs = [ stdenv pkgconfig cmake boost blas ]; 7 8 8 9 src = fetchFromGitHub { 9 10 owner = "VMML"; ··· 12 13 sha256 = "0sn6jl1r5k6ka0vkjsdnn14hb95dqq8158dapby6jk72wqj9kdml"; 13 14 }; 14 15 15 - patches = [ 16 - ./disable-cpack.patch #disable the need of cpack/rpm 17 - ]; 18 - 16 + patches = [ 17 + ./disable-cpack.patch #disable the need of cpack/rpm 18 + ]; 19 + 20 + nativeBuildInputs = [ pkgconfig cmake ]; 21 + buildInputs = [ boost blas ] 22 + ++ stdenv.lib.optionals stdenv.isDarwin [ Accelerate CoreGraphics CoreVideo ]; 23 + 19 24 enableParallelBuilding = true; 20 25 21 - doCheck = true; 26 + doCheck = !stdenv.isDarwin; 22 27 23 28 checkTarget = "test"; 24 29 ··· 36 41 homepage = http://github.com/VMML/vmmlib/; 37 42 maintainers = [ maintainers.adev ]; 38 43 platforms = platforms.all; 39 - }; 44 + }; 40 45 } 41 46
+10 -3
pkgs/development/libraries/vsqlite/default.nix
··· 11 11 12 12 buildInputs = [ boost sqlite ]; 13 13 14 - meta = { 14 + prePatch = stdenv.lib.optionalString stdenv.isDarwin '' 15 + substituteInPlace Makefile.in \ 16 + --replace '-Wl,--as-needed' "" \ 17 + --replace '-Wl,-soname -Wl,libvsqlitepp.so.3' \ 18 + "-Wl,-install_name,$out/lib/libvsqlitepp.3.dylib" 19 + ''; 20 + 21 + meta = with stdenv.lib; { 15 22 homepage = http://vsqlite.virtuosic-bytes.com/; 16 23 description = "C++ wrapper library for sqlite."; 17 - license = stdenv.lib.licenses.bsd3; 18 - platforms = stdenv.lib.platforms.unix; 24 + license = licenses.bsd3; 25 + platforms = platforms.unix; 19 26 }; 20 27 }
+805 -249
pkgs/development/node-packages/node-packages-v4.nix
··· 175 175 sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f"; 176 176 }; 177 177 }; 178 - "interpret-1.0.3" = { 178 + "interpret-1.0.4" = { 179 179 name = "interpret"; 180 180 packageName = "interpret"; 181 - version = "1.0.3"; 181 + version = "1.0.4"; 182 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz"; 184 - sha1 = "cbc35c62eeee73f19ab7b10a801511401afc0f90"; 183 + url = "https://registry.npmjs.org/interpret/-/interpret-1.0.4.tgz"; 184 + sha1 = "820cdd588b868ffb191a809506d6c9c8f212b1b0"; 185 185 }; 186 186 }; 187 187 "liftoff-2.3.0" = { ··· 337 337 sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; 338 338 }; 339 339 }; 340 - "dateformat-2.0.0" = { 340 + "dateformat-2.2.0" = { 341 341 name = "dateformat"; 342 342 packageName = "dateformat"; 343 - version = "2.0.0"; 343 + version = "2.2.0"; 344 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/dateformat/-/dateformat-2.0.0.tgz"; 346 - sha1 = "2743e3abb5c3fc2462e527dca445e04e9f4dee17"; 345 + url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; 346 + sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062"; 347 347 }; 348 348 }; 349 349 "fancy-log-1.3.0" = { ··· 1741 1741 sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644"; 1742 1742 }; 1743 1743 }; 1744 - "request-2.81.0" = { 1744 + "request-2.82.0" = { 1745 1745 name = "request"; 1746 1746 packageName = "request"; 1747 - version = "2.81.0"; 1747 + version = "2.82.0"; 1748 1748 src = fetchurl { 1749 - url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; 1750 - sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; 1749 + url = "https://registry.npmjs.org/request/-/request-2.82.0.tgz"; 1750 + sha512 = "079947pnxi0h8jdiv5wb64rj3gnq4a02dfj47c41wsdi3g6pp1v3yfg3m1rphib7igf6vkisrgjq16vc4fq916fc870wzckdizal1gx"; 1751 1751 }; 1752 1752 }; 1753 - "rimraf-2.6.1" = { 1753 + "rimraf-2.6.2" = { 1754 1754 name = "rimraf"; 1755 1755 packageName = "rimraf"; 1756 - version = "2.6.1"; 1756 + version = "2.6.2"; 1757 1757 src = fetchurl { 1758 - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz"; 1759 - sha1 = "c2338ec643df7a1b7fe5c54fa86f57428a55f33d"; 1758 + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"; 1759 + sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn"; 1760 1760 }; 1761 1761 }; 1762 1762 "semver-5.3.0" = { ··· 1831 1831 sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; 1832 1832 }; 1833 1833 }; 1834 - "aproba-1.1.2" = { 1834 + "aproba-1.2.0" = { 1835 1835 name = "aproba"; 1836 1836 packageName = "aproba"; 1837 - version = "1.1.2"; 1837 + version = "1.2.0"; 1838 1838 src = fetchurl { 1839 - url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz"; 1840 - sha512 = "0zmgm7vf91vxk5hdvkwhfnzjxz9r6hwpn8dlbpasaax8rxx7z1qqdmh8l631vawj7y1bkpsd0v0mhjh9agggkjl72f3vlnfhy61m5k6"; 1839 + url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; 1840 + sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3"; 1841 1841 }; 1842 1842 }; 1843 1843 "has-unicode-2.0.1" = { ··· 1921 1921 sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 1922 1922 }; 1923 1923 }; 1924 - "aws-sign2-0.6.0" = { 1924 + "aws-sign2-0.7.0" = { 1925 1925 name = "aws-sign2"; 1926 1926 packageName = "aws-sign2"; 1927 - version = "0.6.0"; 1927 + version = "0.7.0"; 1928 1928 src = fetchurl { 1929 - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; 1930 - sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; 1929 + url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; 1930 + sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 1931 1931 }; 1932 1932 }; 1933 1933 "aws4-1.6.0" = { ··· 1966 1966 sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; 1967 1967 }; 1968 1968 }; 1969 - "form-data-2.1.4" = { 1969 + "form-data-2.3.1" = { 1970 1970 name = "form-data"; 1971 1971 packageName = "form-data"; 1972 - version = "2.1.4"; 1972 + version = "2.3.1"; 1973 1973 src = fetchurl { 1974 - url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz"; 1975 - sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1"; 1974 + url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz"; 1975 + sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"; 1976 1976 }; 1977 1977 }; 1978 - "har-validator-4.2.1" = { 1978 + "har-validator-5.0.3" = { 1979 1979 name = "har-validator"; 1980 1980 packageName = "har-validator"; 1981 - version = "4.2.1"; 1981 + version = "5.0.3"; 1982 1982 src = fetchurl { 1983 - url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; 1984 - sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; 1983 + url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz"; 1984 + sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd"; 1985 1985 }; 1986 1986 }; 1987 - "hawk-3.1.3" = { 1987 + "hawk-6.0.2" = { 1988 1988 name = "hawk"; 1989 1989 packageName = "hawk"; 1990 - version = "3.1.3"; 1990 + version = "6.0.2"; 1991 1991 src = fetchurl { 1992 - url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; 1993 - sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; 1992 + url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz"; 1993 + sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als"; 1994 1994 }; 1995 1995 }; 1996 - "http-signature-1.1.1" = { 1996 + "http-signature-1.2.0" = { 1997 1997 name = "http-signature"; 1998 1998 packageName = "http-signature"; 1999 - version = "1.1.1"; 1999 + version = "1.2.0"; 2000 2000 src = fetchurl { 2001 - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; 2002 - sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; 2001 + url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; 2002 + sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 2003 2003 }; 2004 2004 }; 2005 2005 "is-typedarray-1.0.0" = { ··· 2047 2047 sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"; 2048 2048 }; 2049 2049 }; 2050 - "performance-now-0.2.0" = { 2050 + "performance-now-2.1.0" = { 2051 2051 name = "performance-now"; 2052 2052 packageName = "performance-now"; 2053 - version = "0.2.0"; 2053 + version = "2.1.0"; 2054 2054 src = fetchurl { 2055 - url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; 2056 - sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; 2055 + url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; 2056 + sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 2057 2057 }; 2058 2058 }; 2059 - "qs-6.4.0" = { 2059 + "qs-6.5.1" = { 2060 2060 name = "qs"; 2061 2061 packageName = "qs"; 2062 - version = "6.4.0"; 2062 + version = "6.5.1"; 2063 2063 src = fetchurl { 2064 - url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; 2065 - sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; 2064 + url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz"; 2065 + sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r"; 2066 2066 }; 2067 2067 }; 2068 2068 "stringstream-0.0.5" = { ··· 2119 2119 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 2120 2120 }; 2121 2121 }; 2122 - "ajv-4.11.8" = { 2122 + "ajv-5.2.2" = { 2123 2123 name = "ajv"; 2124 2124 packageName = "ajv"; 2125 - version = "4.11.8"; 2125 + version = "5.2.2"; 2126 2126 src = fetchurl { 2127 - url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; 2128 - sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; 2127 + url = "https://registry.npmjs.org/ajv/-/ajv-5.2.2.tgz"; 2128 + sha1 = "47c68d69e86f5d953103b0074a9430dc63da5e39"; 2129 2129 }; 2130 2130 }; 2131 - "har-schema-1.0.5" = { 2131 + "har-schema-2.0.0" = { 2132 2132 name = "har-schema"; 2133 2133 packageName = "har-schema"; 2134 - version = "1.0.5"; 2134 + version = "2.0.0"; 2135 2135 src = fetchurl { 2136 - url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; 2137 - sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; 2136 + url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; 2137 + sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 2138 2138 }; 2139 2139 }; 2140 2140 "co-4.6.0" = { ··· 2146 2146 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; 2147 2147 }; 2148 2148 }; 2149 + "fast-deep-equal-1.0.0" = { 2150 + name = "fast-deep-equal"; 2151 + packageName = "fast-deep-equal"; 2152 + version = "1.0.0"; 2153 + src = fetchurl { 2154 + url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz"; 2155 + sha1 = "96256a3bc975595eb36d82e9929d060d893439ff"; 2156 + }; 2157 + }; 2158 + "json-schema-traverse-0.3.1" = { 2159 + name = "json-schema-traverse"; 2160 + packageName = "json-schema-traverse"; 2161 + version = "0.3.1"; 2162 + src = fetchurl { 2163 + url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz"; 2164 + sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340"; 2165 + }; 2166 + }; 2149 2167 "json-stable-stringify-1.0.1" = { 2150 2168 name = "json-stable-stringify"; 2151 2169 packageName = "json-stable-stringify"; ··· 2164 2182 sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; 2165 2183 }; 2166 2184 }; 2167 - "hoek-2.16.3" = { 2185 + "hoek-4.2.0" = { 2168 2186 name = "hoek"; 2169 2187 packageName = "hoek"; 2170 - version = "2.16.3"; 2188 + version = "4.2.0"; 2171 2189 src = fetchurl { 2172 - url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; 2173 - sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; 2190 + url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz"; 2191 + sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz"; 2174 2192 }; 2175 2193 }; 2176 - "boom-2.10.1" = { 2194 + "boom-4.3.1" = { 2177 2195 name = "boom"; 2178 2196 packageName = "boom"; 2179 - version = "2.10.1"; 2197 + version = "4.3.1"; 2180 2198 src = fetchurl { 2181 - url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; 2182 - sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; 2199 + url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz"; 2200 + sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31"; 2183 2201 }; 2184 2202 }; 2185 - "cryptiles-2.0.5" = { 2203 + "cryptiles-3.1.2" = { 2186 2204 name = "cryptiles"; 2187 2205 packageName = "cryptiles"; 2188 - version = "2.0.5"; 2206 + version = "3.1.2"; 2189 2207 src = fetchurl { 2190 - url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; 2191 - sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; 2208 + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz"; 2209 + sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"; 2192 2210 }; 2193 2211 }; 2194 - "sntp-1.0.9" = { 2212 + "sntp-2.0.2" = { 2195 2213 name = "sntp"; 2196 2214 packageName = "sntp"; 2197 - version = "1.0.9"; 2215 + version = "2.0.2"; 2198 2216 src = fetchurl { 2199 - url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; 2200 - sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; 2217 + url = "https://registry.npmjs.org/sntp/-/sntp-2.0.2.tgz"; 2218 + sha1 = "5064110f0af85f7cfdb7d6b67a40028ce52b4b2b"; 2201 2219 }; 2202 2220 }; 2203 - "assert-plus-0.2.0" = { 2221 + "boom-5.2.0" = { 2222 + name = "boom"; 2223 + packageName = "boom"; 2224 + version = "5.2.0"; 2225 + src = fetchurl { 2226 + url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz"; 2227 + sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437"; 2228 + }; 2229 + }; 2230 + "assert-plus-1.0.0" = { 2204 2231 name = "assert-plus"; 2205 2232 packageName = "assert-plus"; 2206 - version = "0.2.0"; 2233 + version = "1.0.0"; 2207 2234 src = fetchurl { 2208 - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; 2209 - sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; 2235 + url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; 2236 + sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; 2210 2237 }; 2211 2238 }; 2212 2239 "jsprim-1.4.1" = { ··· 2225 2252 src = fetchurl { 2226 2253 url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz"; 2227 2254 sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3"; 2228 - }; 2229 - }; 2230 - "assert-plus-1.0.0" = { 2231 - name = "assert-plus"; 2232 - packageName = "assert-plus"; 2233 - version = "1.0.0"; 2234 - src = fetchurl { 2235 - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; 2236 - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; 2237 2255 }; 2238 2256 }; 2239 2257 "extsprintf-1.3.0" = { ··· 2398 2416 sha1 = "2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"; 2399 2417 }; 2400 2418 }; 2401 - "serve-favicon-2.4.3" = { 2419 + "serve-favicon-2.4.4" = { 2402 2420 name = "serve-favicon"; 2403 2421 packageName = "serve-favicon"; 2404 - version = "2.4.3"; 2422 + version = "2.4.4"; 2405 2423 src = fetchurl { 2406 - url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.3.tgz"; 2407 - sha1 = "5986b17b0502642b641c21f818b1acce32025d23"; 2424 + url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.4.tgz"; 2425 + sha1 = "412ddd74965151c9f74c0828f35d50c5250210de"; 2408 2426 }; 2409 2427 }; 2410 2428 "strong-data-uri-1.0.4" = { ··· 2974 2992 sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; 2975 2993 }; 2976 2994 }; 2977 - "content-type-1.0.2" = { 2995 + "content-type-1.0.4" = { 2978 2996 name = "content-type"; 2979 2997 packageName = "content-type"; 2980 - version = "1.0.2"; 2998 + version = "1.0.4"; 2981 2999 src = fetchurl { 2982 - url = "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz"; 2983 - sha1 = "b7d113aee7a8dd27bd21133c4dc2529df1721eed"; 3000 + url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; 3001 + sha512 = "1f4y61wc913jrnga7nny83gzf9l2488q6sl1ry9lbwgh5x5d3va0xcc0xrmjk6gdxl6d4r6rsk800xp5bazhjrx05yx1wpc8c8gg0w4"; 2984 3002 }; 2985 3003 }; 2986 3004 "cookie-0.3.1" = { ··· 3028 3046 sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 3029 3047 }; 3030 3048 }; 3031 - "etag-1.8.0" = { 3049 + "etag-1.8.1" = { 3032 3050 name = "etag"; 3033 3051 packageName = "etag"; 3034 - version = "1.8.0"; 3052 + version = "1.8.1"; 3035 3053 src = fetchurl { 3036 - url = "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz"; 3037 - sha1 = "6f631aef336d6c46362b51764044ce216be3c051"; 3054 + url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; 3055 + sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 3038 3056 }; 3039 3057 }; 3040 - "finalhandler-1.0.4" = { 3058 + "finalhandler-1.0.5" = { 3041 3059 name = "finalhandler"; 3042 3060 packageName = "finalhandler"; 3043 - version = "1.0.4"; 3061 + version = "1.0.5"; 3044 3062 src = fetchurl { 3045 - url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.4.tgz"; 3046 - sha512 = "2vbps6iw562i2zxd973z5mmbs8ggx3wbz4g1jqwvkjibiwrk9ym8bxcvvwnlmxqad92x120x5xz5nyfq68nd8akk355bkk0qjppzafp"; 3063 + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.5.tgz"; 3064 + sha1 = "a701303d257a1bc82fea547a33e5ae89531723df"; 3047 3065 }; 3048 3066 }; 3049 3067 "fresh-0.5.0" = { ··· 3082 3100 sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 3083 3101 }; 3084 3102 }; 3085 - "parseurl-1.3.1" = { 3103 + "parseurl-1.3.2" = { 3086 3104 name = "parseurl"; 3087 3105 packageName = "parseurl"; 3088 - version = "1.3.1"; 3106 + version = "1.3.2"; 3089 3107 src = fetchurl { 3090 - url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz"; 3091 - sha1 = "c8ab8c9223ba34888aa64a297b28853bec18da56"; 3108 + url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz"; 3109 + sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3"; 3092 3110 }; 3093 3111 }; 3094 3112 "path-to-regexp-0.1.7" = { ··· 3217 3235 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 3218 3236 }; 3219 3237 }; 3220 - "forwarded-0.1.0" = { 3238 + "forwarded-0.1.2" = { 3221 3239 name = "forwarded"; 3222 3240 packageName = "forwarded"; 3223 - version = "0.1.0"; 3241 + version = "0.1.2"; 3224 3242 src = fetchurl { 3225 - url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz"; 3226 - sha1 = "19ef9874c4ae1c297bcf078fde63a09b66a84363"; 3243 + url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; 3244 + sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; 3227 3245 }; 3228 3246 }; 3229 3247 "ipaddr.js-1.4.0" = { ··· 3289 3307 sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 3290 3308 }; 3291 3309 }; 3292 - "safe-buffer-5.0.1" = { 3293 - name = "safe-buffer"; 3294 - packageName = "safe-buffer"; 3295 - version = "5.0.1"; 3310 + "fresh-0.5.1" = { 3311 + name = "fresh"; 3312 + packageName = "fresh"; 3313 + version = "0.5.1"; 3296 3314 src = fetchurl { 3297 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz"; 3298 - sha1 = "d263ca54696cd8a306b5ca6551e92de57918fbe7"; 3315 + url = "https://registry.npmjs.org/fresh/-/fresh-0.5.1.tgz"; 3316 + sha1 = "c3a08bcec0fcdcc223edf3b23eb327f1f9fcbf5c"; 3299 3317 }; 3300 3318 }; 3301 3319 "truncate-1.0.5" = { ··· 3316 3334 sha1 = "d95bf721ec877e08db276ed3fc6eb78f9083ad46"; 3317 3335 }; 3318 3336 }; 3319 - "node-pre-gyp-0.6.36" = { 3337 + "node-pre-gyp-0.6.37" = { 3320 3338 name = "node-pre-gyp"; 3321 3339 packageName = "node-pre-gyp"; 3322 - version = "0.6.36"; 3340 + version = "0.6.37"; 3323 3341 src = fetchurl { 3324 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; 3325 - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; 3342 + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz"; 3343 + sha1 = "3c872b236b2e266e4140578fe1ee88f693323a05"; 3326 3344 }; 3327 3345 }; 3328 3346 "nopt-4.0.1" = { ··· 3343 3361 sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar"; 3344 3362 }; 3345 3363 }; 3364 + "tape-4.8.0" = { 3365 + name = "tape"; 3366 + packageName = "tape"; 3367 + version = "4.8.0"; 3368 + src = fetchurl { 3369 + url = "https://registry.npmjs.org/tape/-/tape-4.8.0.tgz"; 3370 + sha512 = "026x60jpvkdwfvbd6gls76zjj3yiqfz4cg9imi80r25zdziaiy87jkpw9mwbrbg9k2xc4nsn9yzk90pgkgybdspk0yb4fzg95y0nqjd"; 3371 + }; 3372 + }; 3346 3373 "tar-pack-3.4.0" = { 3347 3374 name = "tar-pack"; 3348 3375 packageName = "tar-pack"; ··· 3352 3379 sha1 = "23be2d7f671a8339376cbdb0b8fe3fdebf317984"; 3353 3380 }; 3354 3381 }; 3382 + "deep-equal-1.0.1" = { 3383 + name = "deep-equal"; 3384 + packageName = "deep-equal"; 3385 + version = "1.0.1"; 3386 + src = fetchurl { 3387 + url = "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz"; 3388 + sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5"; 3389 + }; 3390 + }; 3391 + "defined-1.0.0" = { 3392 + name = "defined"; 3393 + packageName = "defined"; 3394 + version = "1.0.0"; 3395 + src = fetchurl { 3396 + url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz"; 3397 + sha1 = "c98d9bcef75674188e110969151199e39b1fa693"; 3398 + }; 3399 + }; 3400 + "for-each-0.3.2" = { 3401 + name = "for-each"; 3402 + packageName = "for-each"; 3403 + version = "0.3.2"; 3404 + src = fetchurl { 3405 + url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz"; 3406 + sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4"; 3407 + }; 3408 + }; 3409 + "function-bind-1.1.1" = { 3410 + name = "function-bind"; 3411 + packageName = "function-bind"; 3412 + version = "1.1.1"; 3413 + src = fetchurl { 3414 + url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; 3415 + sha512 = "38chm1mh077ksx6hy2sssfz4q29hf0ncb9k6ila7si54zqcpl5fxd1rh6wi82blqp7jcspf4aynr7jqhbsg2yc9y42xpqqp6c1jz2n8"; 3416 + }; 3417 + }; 3418 + "has-1.0.1" = { 3419 + name = "has"; 3420 + packageName = "has"; 3421 + version = "1.0.1"; 3422 + src = fetchurl { 3423 + url = "https://registry.npmjs.org/has/-/has-1.0.1.tgz"; 3424 + sha1 = "8461733f538b0837c9361e39a9ab9e9704dc2f28"; 3425 + }; 3426 + }; 3427 + "object-inspect-1.3.0" = { 3428 + name = "object-inspect"; 3429 + packageName = "object-inspect"; 3430 + version = "1.3.0"; 3431 + src = fetchurl { 3432 + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.3.0.tgz"; 3433 + sha512 = "1302hkgbynr48i0h4n5psz3ln624f8516qh68kpah1ziczyg8vpyfxws5x6iazncaw5jgg9bp19pgbfl4n4gjb9z0z96pnd08pffw9q"; 3434 + }; 3435 + }; 3436 + "resumer-0.0.0" = { 3437 + name = "resumer"; 3438 + packageName = "resumer"; 3439 + version = "0.0.0"; 3440 + src = fetchurl { 3441 + url = "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz"; 3442 + sha1 = "f1e8f461e4064ba39e82af3cdc2a8c893d076759"; 3443 + }; 3444 + }; 3445 + "string.prototype.trim-1.1.2" = { 3446 + name = "string.prototype.trim"; 3447 + packageName = "string.prototype.trim"; 3448 + version = "1.1.2"; 3449 + src = fetchurl { 3450 + url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz"; 3451 + sha1 = "d04de2c89e137f4d7d206f086b5ed2fae6be8cea"; 3452 + }; 3453 + }; 3454 + "through-2.3.8" = { 3455 + name = "through"; 3456 + packageName = "through"; 3457 + version = "2.3.8"; 3458 + src = fetchurl { 3459 + url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 3460 + sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 3461 + }; 3462 + }; 3463 + "is-function-1.0.1" = { 3464 + name = "is-function"; 3465 + packageName = "is-function"; 3466 + version = "1.0.1"; 3467 + src = fetchurl { 3468 + url = "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz"; 3469 + sha1 = "12cfb98b65b57dd3d193a3121f5f6e2f437602b5"; 3470 + }; 3471 + }; 3472 + "define-properties-1.1.2" = { 3473 + name = "define-properties"; 3474 + packageName = "define-properties"; 3475 + version = "1.1.2"; 3476 + src = fetchurl { 3477 + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz"; 3478 + sha1 = "83a73f2fea569898fb737193c8f873caf6d45c94"; 3479 + }; 3480 + }; 3481 + "es-abstract-1.8.2" = { 3482 + name = "es-abstract"; 3483 + packageName = "es-abstract"; 3484 + version = "1.8.2"; 3485 + src = fetchurl { 3486 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.8.2.tgz"; 3487 + sha512 = "0cz5pzkb9xh1askig7mrv990raaa1pym6a8acyyjw405bnzdznck7q9qg2rcybwjq866i6226nq6mijn6kwg5n36r6hr3gjpla71y3n"; 3488 + }; 3489 + }; 3490 + "foreach-2.0.5" = { 3491 + name = "foreach"; 3492 + packageName = "foreach"; 3493 + version = "2.0.5"; 3494 + src = fetchurl { 3495 + url = "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"; 3496 + sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99"; 3497 + }; 3498 + }; 3499 + "object-keys-1.0.11" = { 3500 + name = "object-keys"; 3501 + packageName = "object-keys"; 3502 + version = "1.0.11"; 3503 + src = fetchurl { 3504 + url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz"; 3505 + sha1 = "c54601778ad560f1142ce0e01bcca8b56d13426d"; 3506 + }; 3507 + }; 3508 + "es-to-primitive-1.1.1" = { 3509 + name = "es-to-primitive"; 3510 + packageName = "es-to-primitive"; 3511 + version = "1.1.1"; 3512 + src = fetchurl { 3513 + url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz"; 3514 + sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d"; 3515 + }; 3516 + }; 3517 + "is-callable-1.1.3" = { 3518 + name = "is-callable"; 3519 + packageName = "is-callable"; 3520 + version = "1.1.3"; 3521 + src = fetchurl { 3522 + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz"; 3523 + sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2"; 3524 + }; 3525 + }; 3526 + "is-regex-1.0.4" = { 3527 + name = "is-regex"; 3528 + packageName = "is-regex"; 3529 + version = "1.0.4"; 3530 + src = fetchurl { 3531 + url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz"; 3532 + sha1 = "5517489b547091b0930e095654ced25ee97e9491"; 3533 + }; 3534 + }; 3535 + "is-date-object-1.0.1" = { 3536 + name = "is-date-object"; 3537 + packageName = "is-date-object"; 3538 + version = "1.0.1"; 3539 + src = fetchurl { 3540 + url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz"; 3541 + sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; 3542 + }; 3543 + }; 3544 + "is-symbol-1.0.1" = { 3545 + name = "is-symbol"; 3546 + packageName = "is-symbol"; 3547 + version = "1.0.1"; 3548 + src = fetchurl { 3549 + url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz"; 3550 + sha1 = "3cc59f00025194b6ab2e38dbae6689256b660572"; 3551 + }; 3552 + }; 3355 3553 "fstream-ignore-1.0.5" = { 3356 3554 name = "fstream-ignore"; 3357 3555 packageName = "fstream-ignore"; ··· 3485 3683 src = fetchurl { 3486 3684 url = "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"; 3487 3685 sha1 = "5de60415bda071bb37127854c864f41b23254539"; 3686 + }; 3687 + }; 3688 + "aproba-1.1.2" = { 3689 + name = "aproba"; 3690 + packageName = "aproba"; 3691 + version = "1.1.2"; 3692 + src = fetchurl { 3693 + url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz"; 3694 + sha512 = "0zmgm7vf91vxk5hdvkwhfnzjxz9r6hwpn8dlbpasaax8rxx7z1qqdmh8l631vawj7y1bkpsd0v0mhjh9agggkjl72f3vlnfhy61m5k6"; 3488 3695 }; 3489 3696 }; 3490 3697 "bluebird-3.5.0" = { ··· 3766 3973 sha512 = "36g1gm57qcvdgb4lm6ibl9pgma8lgx8l8i2jzap6w3v36wfzsqa7vb411zd26yp9rgcq23951vl5j6pac22qd5h9x7jm9raznnnr460"; 3767 3974 }; 3768 3975 }; 3769 - "npm-packlist-1.1.8" = { 3976 + "npm-packlist-1.1.9" = { 3770 3977 name = "npm-packlist"; 3771 3978 packageName = "npm-packlist"; 3772 - version = "1.1.8"; 3979 + version = "1.1.9"; 3773 3980 src = fetchurl { 3774 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.8.tgz"; 3775 - sha512 = "3wbyrf8k8ziygg8lyaj5v0kfpw9mhz4an8hqznapf7n0g2ik02shn91607274zvvayl5zcgmfkf17yy4vgz67lsdjmhzwi8rmrzapv4"; 3981 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.9.tgz"; 3982 + sha512 = "1d1l5hasnw67hczgcwbc8534n1hgvx87hin1yr14yz70b4yzp06gfrj97lhh0qfmk5p1lqfrzajhs5wywx98hj75g00mqmir54050gm"; 3776 3983 }; 3777 3984 }; 3778 3985 "npm-registry-client-8.4.0" = { ··· 3872 4079 src = fetchurl { 3873 4080 url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz"; 3874 4081 sha512 = "0v1k32zqj8bnqzyp5h0jxnkvpgpzpa6z7iyqbpm3p0ylqafbb2zm656mw6gs16zf98l7y218ygpx2kzks00qcycwwx2cny67mlza98l"; 4082 + }; 4083 + }; 4084 + "request-2.81.0" = { 4085 + name = "request"; 4086 + packageName = "request"; 4087 + version = "2.81.0"; 4088 + src = fetchurl { 4089 + url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; 4090 + sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; 3875 4091 }; 3876 4092 }; 3877 4093 "retry-0.10.1" = { ··· 4000 4216 sha512 = "2lrlysxfbyzywla6i1q07xncmw30w1icgq18c4bra25dl6wvcd3mxg1lqbf88w5h7mqnf98j8ll657wnqwjq9rwd7pbmd9i11964x0c"; 4001 4217 }; 4002 4218 }; 4003 - "write-file-atomic-2.3.0" = { 4219 + "write-file-atomic-2.1.0" = { 4004 4220 name = "write-file-atomic"; 4005 4221 packageName = "write-file-atomic"; 4006 - version = "2.3.0"; 4222 + version = "2.1.0"; 4007 4223 src = fetchurl { 4008 - url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz"; 4009 - sha512 = "2sgqxmcqzjd7nq9gjh6jz7vfb0gs0ag4jvqzdq93afq3bw3jrm88mhxql9sryyb04f3ipw5jkgjfiigsmdwlz9fgsnnm3cxhcmxxqy6"; 4224 + url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.1.0.tgz"; 4225 + sha512 = "0jpbx5znf640m7icywa21hdgyss5h6c811z27mzk7mh1yhv8sqcqd2y0cwgkrnigx57k2chv5cqwv0z8ff8z32gpdw8jw5imz8pcdni"; 4010 4226 }; 4011 4227 }; 4012 4228 "debuglog-1.0.1" = { ··· 4079 4295 src = fetchurl { 4080 4296 url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"; 4081 4297 sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280"; 4082 - }; 4083 - }; 4084 - "through-2.3.8" = { 4085 - name = "through"; 4086 - packageName = "through"; 4087 - version = "2.3.8"; 4088 - src = fetchurl { 4089 - url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 4090 - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 4091 4298 }; 4092 4299 }; 4093 4300 "wcwidth-1.0.1" = { ··· 4675 4882 sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw"; 4676 4883 }; 4677 4884 }; 4678 - "socks-proxy-agent-3.0.0" = { 4885 + "socks-proxy-agent-3.0.1" = { 4679 4886 name = "socks-proxy-agent"; 4680 4887 packageName = "socks-proxy-agent"; 4681 - version = "3.0.0"; 4888 + version = "3.0.1"; 4682 4889 src = fetchurl { 4683 - url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.0.tgz"; 4684 - sha512 = "3zn9cz2ry5m1akapj7hvhgkxfq7ffwynia46lmwipsw2jk5sv8dvs32dc4hfx3xvp34i1jff1bg870a1xnknsgk5dl021jd4gwi75v0"; 4890 + url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.1.tgz"; 4891 + sha512 = "2a5lsw4fry6nqk3jdxvwqrnpasypvl8c4d0kg32912820lc72l7s9jzidfsrn2an9c66xqicspxb2vnir5cjspprs9qklxnd75060b7"; 4685 4892 }; 4686 4893 }; 4687 4894 "humanize-ms-1.2.1" = { ··· 4738 4945 sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967"; 4739 4946 }; 4740 4947 }; 4741 - "iconv-lite-0.4.18" = { 4948 + "iconv-lite-0.4.19" = { 4742 4949 name = "iconv-lite"; 4743 4950 packageName = "iconv-lite"; 4744 - version = "0.4.18"; 4951 + version = "0.4.19"; 4745 4952 src = fetchurl { 4746 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz"; 4747 - sha512 = "2l97vd6kax8syr9aggcqhiyhd3b2rf506wdq6wapfrc74qwpdzqf2a3891kq9ri3g5sdzayph2sz4zkr8kbbps58z9h2lvpk115kgdj"; 4953 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz"; 4954 + sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1"; 4748 4955 }; 4749 4956 }; 4750 4957 "socks-1.1.10" = { ··· 4819 5026 sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; 4820 5027 }; 4821 5028 }; 5029 + "aws-sign2-0.6.0" = { 5030 + name = "aws-sign2"; 5031 + packageName = "aws-sign2"; 5032 + version = "0.6.0"; 5033 + src = fetchurl { 5034 + url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; 5035 + sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; 5036 + }; 5037 + }; 5038 + "form-data-2.1.4" = { 5039 + name = "form-data"; 5040 + packageName = "form-data"; 5041 + version = "2.1.4"; 5042 + src = fetchurl { 5043 + url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz"; 5044 + sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1"; 5045 + }; 5046 + }; 5047 + "har-validator-4.2.1" = { 5048 + name = "har-validator"; 5049 + packageName = "har-validator"; 5050 + version = "4.2.1"; 5051 + src = fetchurl { 5052 + url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; 5053 + sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; 5054 + }; 5055 + }; 5056 + "hawk-3.1.3" = { 5057 + name = "hawk"; 5058 + packageName = "hawk"; 5059 + version = "3.1.3"; 5060 + src = fetchurl { 5061 + url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; 5062 + sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; 5063 + }; 5064 + }; 5065 + "http-signature-1.1.1" = { 5066 + name = "http-signature"; 5067 + packageName = "http-signature"; 5068 + version = "1.1.1"; 5069 + src = fetchurl { 5070 + url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; 5071 + sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; 5072 + }; 5073 + }; 5074 + "performance-now-0.2.0" = { 5075 + name = "performance-now"; 5076 + packageName = "performance-now"; 5077 + version = "0.2.0"; 5078 + src = fetchurl { 5079 + url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; 5080 + sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; 5081 + }; 5082 + }; 5083 + "qs-6.4.0" = { 5084 + name = "qs"; 5085 + packageName = "qs"; 5086 + version = "6.4.0"; 5087 + src = fetchurl { 5088 + url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; 5089 + sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; 5090 + }; 5091 + }; 5092 + "ajv-4.11.8" = { 5093 + name = "ajv"; 5094 + packageName = "ajv"; 5095 + version = "4.11.8"; 5096 + src = fetchurl { 5097 + url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; 5098 + sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; 5099 + }; 5100 + }; 5101 + "har-schema-1.0.5" = { 5102 + name = "har-schema"; 5103 + packageName = "har-schema"; 5104 + version = "1.0.5"; 5105 + src = fetchurl { 5106 + url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; 5107 + sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; 5108 + }; 5109 + }; 5110 + "hoek-2.16.3" = { 5111 + name = "hoek"; 5112 + packageName = "hoek"; 5113 + version = "2.16.3"; 5114 + src = fetchurl { 5115 + url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; 5116 + sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; 5117 + }; 5118 + }; 5119 + "boom-2.10.1" = { 5120 + name = "boom"; 5121 + packageName = "boom"; 5122 + version = "2.10.1"; 5123 + src = fetchurl { 5124 + url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; 5125 + sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; 5126 + }; 5127 + }; 5128 + "cryptiles-2.0.5" = { 5129 + name = "cryptiles"; 5130 + packageName = "cryptiles"; 5131 + version = "2.0.5"; 5132 + src = fetchurl { 5133 + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; 5134 + sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; 5135 + }; 5136 + }; 5137 + "sntp-1.0.9" = { 5138 + name = "sntp"; 5139 + packageName = "sntp"; 5140 + version = "1.0.9"; 5141 + src = fetchurl { 5142 + url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; 5143 + sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; 5144 + }; 5145 + }; 5146 + "assert-plus-0.2.0" = { 5147 + name = "assert-plus"; 5148 + packageName = "assert-plus"; 5149 + version = "0.2.0"; 5150 + src = fetchurl { 5151 + url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; 5152 + sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; 5153 + }; 5154 + }; 4822 5155 "from2-1.3.0" = { 4823 5156 name = "from2"; 4824 5157 packageName = "from2"; ··· 5844 6177 sources."array-differ-1.0.0" 5845 6178 sources."array-uniq-1.0.3" 5846 6179 sources."beeper-1.1.1" 5847 - sources."dateformat-2.0.0" 6180 + sources."dateformat-2.2.0" 5848 6181 (sources."fancy-log-1.3.0" // { 5849 6182 dependencies = [ 5850 6183 sources."time-stamp-1.1.0" ··· 5931 6264 }) 5932 6265 ]; 5933 6266 }) 5934 - sources."interpret-1.0.3" 6267 + sources."interpret-1.0.4" 5935 6268 (sources."liftoff-2.3.0" // { 5936 6269 dependencies = [ 5937 6270 sources."extend-3.0.1" ··· 6360 6693 sources."console-control-strings-1.1.0" 6361 6694 (sources."gauge-2.7.4" // { 6362 6695 dependencies = [ 6363 - sources."aproba-1.1.2" 6696 + sources."aproba-1.2.0" 6364 6697 sources."has-unicode-2.0.1" 6365 6698 sources."object-assign-4.1.1" 6366 6699 sources."signal-exit-3.0.2" ··· 6391 6724 sources."os-tmpdir-1.0.2" 6392 6725 ]; 6393 6726 }) 6394 - (sources."request-2.81.0" // { 6727 + (sources."request-2.82.0" // { 6395 6728 dependencies = [ 6396 - sources."aws-sign2-0.6.0" 6729 + sources."aws-sign2-0.7.0" 6397 6730 sources."aws4-1.6.0" 6398 6731 sources."caseless-0.12.0" 6399 6732 (sources."combined-stream-1.0.5" // { ··· 6403 6736 }) 6404 6737 sources."extend-3.0.1" 6405 6738 sources."forever-agent-0.6.1" 6406 - (sources."form-data-2.1.4" // { 6739 + (sources."form-data-2.3.1" // { 6407 6740 dependencies = [ 6408 6741 sources."asynckit-0.4.0" 6409 6742 ]; 6410 6743 }) 6411 - (sources."har-validator-4.2.1" // { 6744 + (sources."har-validator-5.0.3" // { 6412 6745 dependencies = [ 6413 - (sources."ajv-4.11.8" // { 6746 + (sources."ajv-5.2.2" // { 6414 6747 dependencies = [ 6415 6748 sources."co-4.6.0" 6749 + sources."fast-deep-equal-1.0.0" 6750 + sources."json-schema-traverse-0.3.1" 6416 6751 (sources."json-stable-stringify-1.0.1" // { 6417 6752 dependencies = [ 6418 6753 sources."jsonify-0.0.0" ··· 6420 6755 }) 6421 6756 ]; 6422 6757 }) 6423 - sources."har-schema-1.0.5" 6758 + sources."har-schema-2.0.0" 6424 6759 ]; 6425 6760 }) 6426 - (sources."hawk-3.1.3" // { 6761 + (sources."hawk-6.0.2" // { 6427 6762 dependencies = [ 6428 - sources."hoek-2.16.3" 6429 - sources."boom-2.10.1" 6430 - sources."cryptiles-2.0.5" 6431 - sources."sntp-1.0.9" 6763 + sources."hoek-4.2.0" 6764 + sources."boom-4.3.1" 6765 + (sources."cryptiles-3.1.2" // { 6766 + dependencies = [ 6767 + sources."boom-5.2.0" 6768 + ]; 6769 + }) 6770 + sources."sntp-2.0.2" 6432 6771 ]; 6433 6772 }) 6434 - (sources."http-signature-1.1.1" // { 6773 + (sources."http-signature-1.2.0" // { 6435 6774 dependencies = [ 6436 - sources."assert-plus-0.2.0" 6775 + sources."assert-plus-1.0.0" 6437 6776 (sources."jsprim-1.4.1" // { 6438 6777 dependencies = [ 6439 - sources."assert-plus-1.0.0" 6440 6778 sources."extsprintf-1.3.0" 6441 6779 sources."json-schema-0.2.3" 6442 6780 (sources."verror-1.10.0" // { ··· 6449 6787 (sources."sshpk-1.13.1" // { 6450 6788 dependencies = [ 6451 6789 sources."asn1-0.2.3" 6452 - sources."assert-plus-1.0.0" 6453 6790 sources."dashdash-1.14.1" 6454 6791 sources."getpass-0.1.7" 6455 6792 sources."jsbn-0.1.1" ··· 6469 6806 ]; 6470 6807 }) 6471 6808 sources."oauth-sign-0.8.2" 6472 - sources."performance-now-0.2.0" 6473 - sources."qs-6.4.0" 6809 + sources."performance-now-2.1.0" 6810 + sources."qs-6.5.1" 6474 6811 sources."safe-buffer-5.1.1" 6475 6812 sources."stringstream-0.0.5" 6476 6813 (sources."tough-cookie-2.3.2" // { ··· 6482 6819 sources."uuid-3.1.0" 6483 6820 ]; 6484 6821 }) 6485 - sources."rimraf-2.6.1" 6822 + sources."rimraf-2.6.2" 6486 6823 sources."semver-5.3.0" 6487 6824 (sources."tar-2.2.1" // { 6488 6825 dependencies = [ ··· 6713 7050 }) 6714 7051 sources."array-flatten-1.1.1" 6715 7052 sources."content-disposition-0.5.2" 6716 - sources."content-type-1.0.2" 7053 + sources."content-type-1.0.4" 6717 7054 sources."cookie-0.3.1" 6718 7055 sources."cookie-signature-1.0.6" 6719 7056 sources."depd-1.1.1" 6720 7057 sources."encodeurl-1.0.1" 6721 7058 sources."escape-html-1.0.3" 6722 - sources."etag-1.8.0" 6723 - (sources."finalhandler-1.0.4" // { 7059 + sources."etag-1.8.1" 7060 + (sources."finalhandler-1.0.5" // { 6724 7061 dependencies = [ 6725 7062 sources."unpipe-1.0.0" 6726 7063 ]; ··· 6733 7070 sources."ee-first-1.1.1" 6734 7071 ]; 6735 7072 }) 6736 - sources."parseurl-1.3.1" 7073 + sources."parseurl-1.3.2" 6737 7074 sources."path-to-regexp-0.1.7" 6738 7075 (sources."proxy-addr-1.1.5" // { 6739 7076 dependencies = [ 6740 - sources."forwarded-0.1.0" 7077 + sources."forwarded-0.1.2" 6741 7078 sources."ipaddr.js-1.4.0" 6742 7079 ]; 6743 7080 }) ··· 6807 7144 ]; 6808 7145 }) 6809 7146 sources."semver-4.3.6" 6810 - (sources."serve-favicon-2.4.3" // { 7147 + (sources."serve-favicon-2.4.4" // { 6811 7148 dependencies = [ 6812 - sources."etag-1.8.0" 6813 - sources."fresh-0.5.0" 7149 + sources."etag-1.8.1" 7150 + sources."fresh-0.5.1" 6814 7151 sources."ms-2.0.0" 6815 - sources."parseurl-1.3.1" 6816 - sources."safe-buffer-5.0.1" 7152 + sources."parseurl-1.3.2" 7153 + sources."safe-buffer-5.1.1" 6817 7154 ]; 6818 7155 }) 6819 7156 (sources."strong-data-uri-1.0.4" // { ··· 6824 7161 (sources."v8-debug-1.0.1" // { 6825 7162 dependencies = [ 6826 7163 sources."nan-2.7.0" 6827 - (sources."node-pre-gyp-0.6.36" // { 7164 + (sources."node-pre-gyp-0.6.37" // { 6828 7165 dependencies = [ 6829 7166 (sources."mkdirp-0.5.1" // { 6830 7167 dependencies = [ ··· 6863 7200 sources."console-control-strings-1.1.0" 6864 7201 (sources."gauge-2.7.4" // { 6865 7202 dependencies = [ 6866 - sources."aproba-1.1.2" 7203 + sources."aproba-1.2.0" 6867 7204 sources."has-unicode-2.0.1" 6868 7205 sources."object-assign-4.1.1" 6869 7206 sources."signal-exit-3.0.2" ··· 6888 7225 sources."set-blocking-2.0.0" 6889 7226 ]; 6890 7227 }) 6891 - (sources."request-2.81.0" // { 7228 + (sources."request-2.82.0" // { 6892 7229 dependencies = [ 6893 - sources."aws-sign2-0.6.0" 7230 + sources."aws-sign2-0.7.0" 6894 7231 sources."aws4-1.6.0" 6895 7232 sources."caseless-0.12.0" 6896 7233 (sources."combined-stream-1.0.5" // { ··· 6900 7237 }) 6901 7238 sources."extend-3.0.1" 6902 7239 sources."forever-agent-0.6.1" 6903 - (sources."form-data-2.1.4" // { 7240 + (sources."form-data-2.3.1" // { 6904 7241 dependencies = [ 6905 7242 sources."asynckit-0.4.0" 6906 7243 ]; 6907 7244 }) 6908 - (sources."har-validator-4.2.1" // { 7245 + (sources."har-validator-5.0.3" // { 6909 7246 dependencies = [ 6910 - (sources."ajv-4.11.8" // { 7247 + (sources."ajv-5.2.2" // { 6911 7248 dependencies = [ 6912 7249 sources."co-4.6.0" 7250 + sources."fast-deep-equal-1.0.0" 7251 + sources."json-schema-traverse-0.3.1" 6913 7252 (sources."json-stable-stringify-1.0.1" // { 6914 7253 dependencies = [ 6915 7254 sources."jsonify-0.0.0" ··· 6917 7256 }) 6918 7257 ]; 6919 7258 }) 6920 - sources."har-schema-1.0.5" 7259 + sources."har-schema-2.0.0" 6921 7260 ]; 6922 7261 }) 6923 - (sources."hawk-3.1.3" // { 7262 + (sources."hawk-6.0.2" // { 6924 7263 dependencies = [ 6925 - sources."hoek-2.16.3" 6926 - sources."boom-2.10.1" 6927 - sources."cryptiles-2.0.5" 6928 - sources."sntp-1.0.9" 7264 + sources."hoek-4.2.0" 7265 + sources."boom-4.3.1" 7266 + (sources."cryptiles-3.1.2" // { 7267 + dependencies = [ 7268 + sources."boom-5.2.0" 7269 + ]; 7270 + }) 7271 + sources."sntp-2.0.2" 6929 7272 ]; 6930 7273 }) 6931 - (sources."http-signature-1.1.1" // { 7274 + (sources."http-signature-1.2.0" // { 6932 7275 dependencies = [ 6933 - sources."assert-plus-0.2.0" 7276 + sources."assert-plus-1.0.0" 6934 7277 (sources."jsprim-1.4.1" // { 6935 7278 dependencies = [ 6936 - sources."assert-plus-1.0.0" 6937 7279 sources."extsprintf-1.3.0" 6938 7280 sources."json-schema-0.2.3" 6939 7281 (sources."verror-1.10.0" // { ··· 6946 7288 (sources."sshpk-1.13.1" // { 6947 7289 dependencies = [ 6948 7290 sources."asn1-0.2.3" 6949 - sources."assert-plus-1.0.0" 6950 7291 sources."dashdash-1.14.1" 6951 7292 sources."getpass-0.1.7" 6952 7293 sources."jsbn-0.1.1" ··· 6966 7307 ]; 6967 7308 }) 6968 7309 sources."oauth-sign-0.8.2" 6969 - sources."performance-now-0.2.0" 6970 - sources."qs-6.4.0" 7310 + sources."performance-now-2.1.0" 7311 + sources."qs-6.5.1" 6971 7312 sources."safe-buffer-5.1.1" 6972 7313 sources."stringstream-0.0.5" 6973 7314 (sources."tough-cookie-2.3.2" // { ··· 6979 7320 sources."uuid-3.1.0" 6980 7321 ]; 6981 7322 }) 6982 - (sources."rimraf-2.6.1" // { 7323 + (sources."rimraf-2.6.2" // { 6983 7324 dependencies = [ 6984 7325 (sources."glob-7.1.2" // { 6985 7326 dependencies = [ ··· 7010 7351 ]; 7011 7352 }) 7012 7353 sources."semver-5.4.1" 7354 + (sources."tape-4.8.0" // { 7355 + dependencies = [ 7356 + sources."deep-equal-1.0.1" 7357 + sources."defined-1.0.0" 7358 + (sources."for-each-0.3.2" // { 7359 + dependencies = [ 7360 + sources."is-function-1.0.1" 7361 + ]; 7362 + }) 7363 + sources."function-bind-1.1.1" 7364 + (sources."glob-7.1.2" // { 7365 + dependencies = [ 7366 + sources."fs.realpath-1.0.0" 7367 + (sources."inflight-1.0.6" // { 7368 + dependencies = [ 7369 + sources."wrappy-1.0.2" 7370 + ]; 7371 + }) 7372 + (sources."minimatch-3.0.4" // { 7373 + dependencies = [ 7374 + (sources."brace-expansion-1.1.8" // { 7375 + dependencies = [ 7376 + sources."balanced-match-1.0.0" 7377 + sources."concat-map-0.0.1" 7378 + ]; 7379 + }) 7380 + ]; 7381 + }) 7382 + (sources."once-1.4.0" // { 7383 + dependencies = [ 7384 + sources."wrappy-1.0.2" 7385 + ]; 7386 + }) 7387 + ]; 7388 + }) 7389 + sources."has-1.0.1" 7390 + sources."inherits-2.0.3" 7391 + sources."minimist-1.2.0" 7392 + sources."object-inspect-1.3.0" 7393 + (sources."resolve-1.4.0" // { 7394 + dependencies = [ 7395 + sources."path-parse-1.0.5" 7396 + ]; 7397 + }) 7398 + sources."resumer-0.0.0" 7399 + (sources."string.prototype.trim-1.1.2" // { 7400 + dependencies = [ 7401 + (sources."define-properties-1.1.2" // { 7402 + dependencies = [ 7403 + sources."foreach-2.0.5" 7404 + sources."object-keys-1.0.11" 7405 + ]; 7406 + }) 7407 + (sources."es-abstract-1.8.2" // { 7408 + dependencies = [ 7409 + (sources."es-to-primitive-1.1.1" // { 7410 + dependencies = [ 7411 + sources."is-date-object-1.0.1" 7412 + sources."is-symbol-1.0.1" 7413 + ]; 7414 + }) 7415 + sources."is-callable-1.1.3" 7416 + sources."is-regex-1.0.4" 7417 + ]; 7418 + }) 7419 + ]; 7420 + }) 7421 + sources."through-2.3.8" 7422 + ]; 7423 + }) 7013 7424 (sources."tar-2.2.1" // { 7014 7425 dependencies = [ 7015 7426 sources."block-stream-0.0.9" ··· 7070 7481 (sources."v8-profiler-5.7.0" // { 7071 7482 dependencies = [ 7072 7483 sources."nan-2.7.0" 7073 - (sources."node-pre-gyp-0.6.36" // { 7484 + (sources."node-pre-gyp-0.6.37" // { 7074 7485 dependencies = [ 7075 7486 (sources."mkdirp-0.5.1" // { 7076 7487 dependencies = [ ··· 7109 7520 sources."console-control-strings-1.1.0" 7110 7521 (sources."gauge-2.7.4" // { 7111 7522 dependencies = [ 7112 - sources."aproba-1.1.2" 7523 + sources."aproba-1.2.0" 7113 7524 sources."has-unicode-2.0.1" 7114 7525 sources."object-assign-4.1.1" 7115 7526 sources."signal-exit-3.0.2" ··· 7134 7545 sources."set-blocking-2.0.0" 7135 7546 ]; 7136 7547 }) 7137 - (sources."request-2.81.0" // { 7548 + (sources."request-2.82.0" // { 7138 7549 dependencies = [ 7139 - sources."aws-sign2-0.6.0" 7550 + sources."aws-sign2-0.7.0" 7140 7551 sources."aws4-1.6.0" 7141 7552 sources."caseless-0.12.0" 7142 7553 (sources."combined-stream-1.0.5" // { ··· 7146 7557 }) 7147 7558 sources."extend-3.0.1" 7148 7559 sources."forever-agent-0.6.1" 7149 - (sources."form-data-2.1.4" // { 7560 + (sources."form-data-2.3.1" // { 7150 7561 dependencies = [ 7151 7562 sources."asynckit-0.4.0" 7152 7563 ]; 7153 7564 }) 7154 - (sources."har-validator-4.2.1" // { 7565 + (sources."har-validator-5.0.3" // { 7155 7566 dependencies = [ 7156 - (sources."ajv-4.11.8" // { 7567 + (sources."ajv-5.2.2" // { 7157 7568 dependencies = [ 7158 7569 sources."co-4.6.0" 7570 + sources."fast-deep-equal-1.0.0" 7571 + sources."json-schema-traverse-0.3.1" 7159 7572 (sources."json-stable-stringify-1.0.1" // { 7160 7573 dependencies = [ 7161 7574 sources."jsonify-0.0.0" ··· 7163 7576 }) 7164 7577 ]; 7165 7578 }) 7166 - sources."har-schema-1.0.5" 7579 + sources."har-schema-2.0.0" 7167 7580 ]; 7168 7581 }) 7169 - (sources."hawk-3.1.3" // { 7582 + (sources."hawk-6.0.2" // { 7170 7583 dependencies = [ 7171 - sources."hoek-2.16.3" 7172 - sources."boom-2.10.1" 7173 - sources."cryptiles-2.0.5" 7174 - sources."sntp-1.0.9" 7584 + sources."hoek-4.2.0" 7585 + sources."boom-4.3.1" 7586 + (sources."cryptiles-3.1.2" // { 7587 + dependencies = [ 7588 + sources."boom-5.2.0" 7589 + ]; 7590 + }) 7591 + sources."sntp-2.0.2" 7175 7592 ]; 7176 7593 }) 7177 - (sources."http-signature-1.1.1" // { 7594 + (sources."http-signature-1.2.0" // { 7178 7595 dependencies = [ 7179 - sources."assert-plus-0.2.0" 7596 + sources."assert-plus-1.0.0" 7180 7597 (sources."jsprim-1.4.1" // { 7181 7598 dependencies = [ 7182 - sources."assert-plus-1.0.0" 7183 7599 sources."extsprintf-1.3.0" 7184 7600 sources."json-schema-0.2.3" 7185 7601 (sources."verror-1.10.0" // { ··· 7192 7608 (sources."sshpk-1.13.1" // { 7193 7609 dependencies = [ 7194 7610 sources."asn1-0.2.3" 7195 - sources."assert-plus-1.0.0" 7196 7611 sources."dashdash-1.14.1" 7197 7612 sources."getpass-0.1.7" 7198 7613 sources."jsbn-0.1.1" ··· 7212 7627 ]; 7213 7628 }) 7214 7629 sources."oauth-sign-0.8.2" 7215 - sources."performance-now-0.2.0" 7216 - sources."qs-6.4.0" 7630 + sources."performance-now-2.1.0" 7631 + sources."qs-6.5.1" 7217 7632 sources."safe-buffer-5.1.1" 7218 7633 sources."stringstream-0.0.5" 7219 7634 (sources."tough-cookie-2.3.2" // { ··· 7225 7640 sources."uuid-3.1.0" 7226 7641 ]; 7227 7642 }) 7228 - (sources."rimraf-2.6.1" // { 7643 + (sources."rimraf-2.6.2" // { 7229 7644 dependencies = [ 7230 7645 (sources."glob-7.1.2" // { 7231 7646 dependencies = [ ··· 7256 7671 ]; 7257 7672 }) 7258 7673 sources."semver-5.4.1" 7674 + (sources."tape-4.8.0" // { 7675 + dependencies = [ 7676 + sources."deep-equal-1.0.1" 7677 + sources."defined-1.0.0" 7678 + (sources."for-each-0.3.2" // { 7679 + dependencies = [ 7680 + sources."is-function-1.0.1" 7681 + ]; 7682 + }) 7683 + sources."function-bind-1.1.1" 7684 + (sources."glob-7.1.2" // { 7685 + dependencies = [ 7686 + sources."fs.realpath-1.0.0" 7687 + (sources."inflight-1.0.6" // { 7688 + dependencies = [ 7689 + sources."wrappy-1.0.2" 7690 + ]; 7691 + }) 7692 + (sources."minimatch-3.0.4" // { 7693 + dependencies = [ 7694 + (sources."brace-expansion-1.1.8" // { 7695 + dependencies = [ 7696 + sources."balanced-match-1.0.0" 7697 + sources."concat-map-0.0.1" 7698 + ]; 7699 + }) 7700 + ]; 7701 + }) 7702 + (sources."once-1.4.0" // { 7703 + dependencies = [ 7704 + sources."wrappy-1.0.2" 7705 + ]; 7706 + }) 7707 + ]; 7708 + }) 7709 + sources."has-1.0.1" 7710 + sources."inherits-2.0.3" 7711 + sources."minimist-1.2.0" 7712 + sources."object-inspect-1.3.0" 7713 + (sources."resolve-1.4.0" // { 7714 + dependencies = [ 7715 + sources."path-parse-1.0.5" 7716 + ]; 7717 + }) 7718 + sources."resumer-0.0.0" 7719 + (sources."string.prototype.trim-1.1.2" // { 7720 + dependencies = [ 7721 + (sources."define-properties-1.1.2" // { 7722 + dependencies = [ 7723 + sources."foreach-2.0.5" 7724 + sources."object-keys-1.0.11" 7725 + ]; 7726 + }) 7727 + (sources."es-abstract-1.8.2" // { 7728 + dependencies = [ 7729 + (sources."es-to-primitive-1.1.1" // { 7730 + dependencies = [ 7731 + sources."is-date-object-1.0.1" 7732 + sources."is-symbol-1.0.1" 7733 + ]; 7734 + }) 7735 + sources."is-callable-1.1.3" 7736 + sources."is-regex-1.0.4" 7737 + ]; 7738 + }) 7739 + ]; 7740 + }) 7741 + sources."through-2.3.8" 7742 + ]; 7743 + }) 7259 7744 (sources."tar-2.2.1" // { 7260 7745 dependencies = [ 7261 7746 sources."block-stream-0.0.9" ··· 7377 7862 node-pre-gyp = nodeEnv.buildNodePackage { 7378 7863 name = "node-pre-gyp"; 7379 7864 packageName = "node-pre-gyp"; 7380 - version = "0.6.36"; 7865 + version = "0.6.37"; 7381 7866 src = fetchurl { 7382 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; 7383 - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; 7867 + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz"; 7868 + sha1 = "3c872b236b2e266e4140578fe1ee88f693323a05"; 7384 7869 }; 7385 7870 dependencies = [ 7386 7871 (sources."mkdirp-0.5.1" // { ··· 7420 7905 sources."console-control-strings-1.1.0" 7421 7906 (sources."gauge-2.7.4" // { 7422 7907 dependencies = [ 7423 - sources."aproba-1.1.2" 7908 + sources."aproba-1.2.0" 7424 7909 sources."has-unicode-2.0.1" 7425 7910 sources."object-assign-4.1.1" 7426 7911 sources."signal-exit-3.0.2" ··· 7453 7938 sources."strip-json-comments-2.0.1" 7454 7939 ]; 7455 7940 }) 7456 - (sources."request-2.81.0" // { 7941 + (sources."request-2.82.0" // { 7457 7942 dependencies = [ 7458 - sources."aws-sign2-0.6.0" 7943 + sources."aws-sign2-0.7.0" 7459 7944 sources."aws4-1.6.0" 7460 7945 sources."caseless-0.12.0" 7461 7946 (sources."combined-stream-1.0.5" // { ··· 7465 7950 }) 7466 7951 sources."extend-3.0.1" 7467 7952 sources."forever-agent-0.6.1" 7468 - (sources."form-data-2.1.4" // { 7953 + (sources."form-data-2.3.1" // { 7469 7954 dependencies = [ 7470 7955 sources."asynckit-0.4.0" 7471 7956 ]; 7472 7957 }) 7473 - (sources."har-validator-4.2.1" // { 7958 + (sources."har-validator-5.0.3" // { 7474 7959 dependencies = [ 7475 - (sources."ajv-4.11.8" // { 7960 + (sources."ajv-5.2.2" // { 7476 7961 dependencies = [ 7477 7962 sources."co-4.6.0" 7963 + sources."fast-deep-equal-1.0.0" 7964 + sources."json-schema-traverse-0.3.1" 7478 7965 (sources."json-stable-stringify-1.0.1" // { 7479 7966 dependencies = [ 7480 7967 sources."jsonify-0.0.0" ··· 7482 7969 }) 7483 7970 ]; 7484 7971 }) 7485 - sources."har-schema-1.0.5" 7972 + sources."har-schema-2.0.0" 7486 7973 ]; 7487 7974 }) 7488 - (sources."hawk-3.1.3" // { 7975 + (sources."hawk-6.0.2" // { 7489 7976 dependencies = [ 7490 - sources."hoek-2.16.3" 7491 - sources."boom-2.10.1" 7492 - sources."cryptiles-2.0.5" 7493 - sources."sntp-1.0.9" 7977 + sources."hoek-4.2.0" 7978 + sources."boom-4.3.1" 7979 + (sources."cryptiles-3.1.2" // { 7980 + dependencies = [ 7981 + sources."boom-5.2.0" 7982 + ]; 7983 + }) 7984 + sources."sntp-2.0.2" 7494 7985 ]; 7495 7986 }) 7496 - (sources."http-signature-1.1.1" // { 7987 + (sources."http-signature-1.2.0" // { 7497 7988 dependencies = [ 7498 - sources."assert-plus-0.2.0" 7989 + sources."assert-plus-1.0.0" 7499 7990 (sources."jsprim-1.4.1" // { 7500 7991 dependencies = [ 7501 - sources."assert-plus-1.0.0" 7502 7992 sources."extsprintf-1.3.0" 7503 7993 sources."json-schema-0.2.3" 7504 7994 (sources."verror-1.10.0" // { ··· 7511 8001 (sources."sshpk-1.13.1" // { 7512 8002 dependencies = [ 7513 8003 sources."asn1-0.2.3" 7514 - sources."assert-plus-1.0.0" 7515 8004 sources."dashdash-1.14.1" 7516 8005 sources."getpass-0.1.7" 7517 8006 sources."jsbn-0.1.1" ··· 7531 8020 ]; 7532 8021 }) 7533 8022 sources."oauth-sign-0.8.2" 7534 - sources."performance-now-0.2.0" 7535 - sources."qs-6.4.0" 8023 + sources."performance-now-2.1.0" 8024 + sources."qs-6.5.1" 7536 8025 sources."safe-buffer-5.1.1" 7537 8026 sources."stringstream-0.0.5" 7538 8027 (sources."tough-cookie-2.3.2" // { ··· 7544 8033 sources."uuid-3.1.0" 7545 8034 ]; 7546 8035 }) 7547 - (sources."rimraf-2.6.1" // { 8036 + (sources."rimraf-2.6.2" // { 7548 8037 dependencies = [ 7549 8038 (sources."glob-7.1.2" // { 7550 8039 dependencies = [ ··· 7576 8065 ]; 7577 8066 }) 7578 8067 sources."semver-5.4.1" 8068 + (sources."tape-4.8.0" // { 8069 + dependencies = [ 8070 + sources."deep-equal-1.0.1" 8071 + sources."defined-1.0.0" 8072 + (sources."for-each-0.3.2" // { 8073 + dependencies = [ 8074 + sources."is-function-1.0.1" 8075 + ]; 8076 + }) 8077 + sources."function-bind-1.1.1" 8078 + (sources."glob-7.1.2" // { 8079 + dependencies = [ 8080 + sources."fs.realpath-1.0.0" 8081 + (sources."inflight-1.0.6" // { 8082 + dependencies = [ 8083 + sources."wrappy-1.0.2" 8084 + ]; 8085 + }) 8086 + (sources."minimatch-3.0.4" // { 8087 + dependencies = [ 8088 + (sources."brace-expansion-1.1.8" // { 8089 + dependencies = [ 8090 + sources."balanced-match-1.0.0" 8091 + sources."concat-map-0.0.1" 8092 + ]; 8093 + }) 8094 + ]; 8095 + }) 8096 + (sources."once-1.4.0" // { 8097 + dependencies = [ 8098 + sources."wrappy-1.0.2" 8099 + ]; 8100 + }) 8101 + sources."path-is-absolute-1.0.1" 8102 + ]; 8103 + }) 8104 + sources."has-1.0.1" 8105 + sources."inherits-2.0.3" 8106 + sources."minimist-1.2.0" 8107 + sources."object-inspect-1.3.0" 8108 + (sources."resolve-1.4.0" // { 8109 + dependencies = [ 8110 + sources."path-parse-1.0.5" 8111 + ]; 8112 + }) 8113 + sources."resumer-0.0.0" 8114 + (sources."string.prototype.trim-1.1.2" // { 8115 + dependencies = [ 8116 + (sources."define-properties-1.1.2" // { 8117 + dependencies = [ 8118 + sources."foreach-2.0.5" 8119 + sources."object-keys-1.0.11" 8120 + ]; 8121 + }) 8122 + (sources."es-abstract-1.8.2" // { 8123 + dependencies = [ 8124 + (sources."es-to-primitive-1.1.1" // { 8125 + dependencies = [ 8126 + sources."is-date-object-1.0.1" 8127 + sources."is-symbol-1.0.1" 8128 + ]; 8129 + }) 8130 + sources."is-callable-1.1.3" 8131 + sources."is-regex-1.0.4" 8132 + ]; 8133 + }) 8134 + ]; 8135 + }) 8136 + sources."through-2.3.8" 8137 + ]; 8138 + }) 7579 8139 (sources."tar-2.2.1" // { 7580 8140 dependencies = [ 7581 8141 sources."block-stream-0.0.9" ··· 7646 8206 npm = nodeEnv.buildNodePackage { 7647 8207 name = "npm"; 7648 8208 packageName = "npm"; 7649 - version = "5.4.1"; 8209 + version = "5.4.2"; 7650 8210 src = fetchurl { 7651 - url = "https://registry.npmjs.org/npm/-/npm-5.4.1.tgz"; 7652 - sha512 = "0vb3ad2wgv4y52jwbz8xpzg36hzimbbnlad594kblfq2mjfnaw9v4zzgd19ghan4a622s4zcrap51l2fww79lbl6n2qfv26allyg26z"; 8211 + url = "https://registry.npmjs.org/npm/-/npm-5.4.2.tgz"; 8212 + sha512 = "28m9zjiynb24b8bxikdaya27j87am88x1y8l70pvmh9fk3pfq0y6xvqjmpy72ld4csnz9s1hik1ff8a19sx6pyi8f5ar27b044cp8hp"; 7653 8213 }; 7654 8214 dependencies = [ 7655 8215 (sources."JSONStream-1.3.1" // { ··· 7955 8515 sources."npm-install-checks-3.0.0" 7956 8516 sources."npm-lifecycle-1.0.3" 7957 8517 sources."npm-package-arg-5.1.2" 7958 - (sources."npm-packlist-1.1.8" // { 8518 + (sources."npm-packlist-1.1.9" // { 7959 8519 dependencies = [ 7960 8520 (sources."ignore-walk-3.0.0" // { 7961 8521 dependencies = [ ··· 8079 8639 dependencies = [ 8080 8640 (sources."encoding-0.1.12" // { 8081 8641 dependencies = [ 8082 - sources."iconv-lite-0.4.18" 8642 + sources."iconv-lite-0.4.19" 8083 8643 ]; 8084 8644 }) 8085 8645 sources."json-parse-better-errors-1.0.1" 8086 8646 ]; 8087 8647 }) 8088 - (sources."socks-proxy-agent-3.0.0" // { 8648 + (sources."socks-proxy-agent-3.0.1" // { 8089 8649 dependencies = [ 8090 8650 (sources."agent-base-4.1.1" // { 8091 8651 dependencies = [ ··· 8248 8808 ]; 8249 8809 }) 8250 8810 sources."retry-0.10.1" 8251 - sources."rimraf-2.6.1" 8811 + sources."rimraf-2.6.2" 8252 8812 sources."safe-buffer-5.1.1" 8253 8813 sources."semver-5.4.1" 8254 8814 sources."sha-2.0.1" ··· 8487 9047 ]; 8488 9048 }) 8489 9049 sources."wrappy-1.0.2" 8490 - (sources."write-file-atomic-2.3.0" // { 8491 - dependencies = [ 8492 - sources."signal-exit-3.0.2" 8493 - ]; 8494 - }) 9050 + sources."write-file-atomic-2.1.0" 8495 9051 sources."debuglog-1.0.1" 8496 9052 sources."imurmurhash-0.1.4" 8497 9053 sources."lodash._baseindexof-3.1.0"
+1
pkgs/development/node-packages/node-packages-v6.json
··· 65 65 , "peerflix-server" 66 66 , "phantomjs" 67 67 , "prettier" 68 + , "pulp" 68 69 , "react-tools" 69 70 , "s3http" 70 71 , "semver"
+3158 -2658
pkgs/development/node-packages/node-packages-v6.nix
··· 4 4 5 5 let 6 6 sources = { 7 + "async-2.5.0" = { 8 + name = "async"; 9 + packageName = "async"; 10 + version = "2.5.0"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/async/-/async-2.5.0.tgz"; 13 + sha512 = "1ijrwmifg76a8wwhhfqxg23kd0rsjhzklwvj2czvqxs2k25ii6p3y6s3vhbcc5hnr87b0gfc4nb54b8bph2hn9c6z1f6nldjw04ksbv"; 14 + }; 15 + }; 16 + "babel-core-6.26.0" = { 17 + name = "babel-core"; 18 + packageName = "babel-core"; 19 + version = "6.26.0"; 20 + src = fetchurl { 21 + url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz"; 22 + sha1 = "af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"; 23 + }; 24 + }; 25 + "babel-generator-6.26.0" = { 26 + name = "babel-generator"; 27 + packageName = "babel-generator"; 28 + version = "6.26.0"; 29 + src = fetchurl { 30 + url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz"; 31 + sha1 = "ac1ae20070b79f6e3ca1d3269613053774f20dc5"; 32 + }; 33 + }; 34 + "babel-traverse-6.26.0" = { 35 + name = "babel-traverse"; 36 + packageName = "babel-traverse"; 37 + version = "6.26.0"; 38 + src = fetchurl { 39 + url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz"; 40 + sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"; 41 + }; 42 + }; 43 + "babel-types-6.26.0" = { 44 + name = "babel-types"; 45 + packageName = "babel-types"; 46 + version = "6.26.0"; 47 + src = fetchurl { 48 + url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz"; 49 + sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497"; 50 + }; 51 + }; 52 + "babylon-6.18.0" = { 53 + name = "babylon"; 54 + packageName = "babylon"; 55 + version = "6.18.0"; 56 + src = fetchurl { 57 + url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz"; 58 + sha512 = "1qk460vyxfs08g8586jdc02wqzyy2y06596qcn1na9bz7yxra6vgh6177qf345xai0virpaz56bkpgmfcrd8yx5l2vjkn49y66h9xdb"; 59 + }; 60 + }; 61 + "chmodr-1.0.2" = { 62 + name = "chmodr"; 63 + packageName = "chmodr"; 64 + version = "1.0.2"; 65 + src = fetchurl { 66 + url = "https://registry.npmjs.org/chmodr/-/chmodr-1.0.2.tgz"; 67 + sha1 = "04662b932d0f02ec66deaa2b0ea42811968e3eb9"; 68 + }; 69 + }; 7 70 "colors-0.6.0-1" = { 8 71 name = "colors"; 9 72 packageName = "colors"; ··· 13 76 sha1 = "6dbb68ceb8bc60f2b313dcc5ce1599f06d19e67a"; 14 77 }; 15 78 }; 16 - "ejs-2.3.4" = { 17 - name = "ejs"; 18 - packageName = "ejs"; 19 - version = "2.3.4"; 20 - src = fetchurl { 21 - url = "https://registry.npmjs.org/ejs/-/ejs-2.3.4.tgz"; 22 - sha1 = "3c76caa09664b3583b0037af9dc136e79ec68b98"; 23 - }; 24 - }; 25 - "pkginfo-0.2.2" = { 26 - name = "pkginfo"; 27 - packageName = "pkginfo"; 28 - version = "0.2.2"; 29 - src = fetchurl { 30 - url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.2.tgz"; 31 - sha1 = "97e1100dbbb275ff6fab583a256a7eea85120c8e"; 32 - }; 33 - }; 34 79 "commander-0.6.1" = { 35 80 name = "commander"; 36 81 packageName = "commander"; ··· 40 85 sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; 41 86 }; 42 87 }; 43 - "wrench-1.3.9" = { 44 - name = "wrench"; 45 - packageName = "wrench"; 46 - version = "1.3.9"; 88 + "deasync-0.1.10" = { 89 + name = "deasync"; 90 + packageName = "deasync"; 91 + version = "0.1.10"; 47 92 src = fetchurl { 48 - url = "https://registry.npmjs.org/wrench/-/wrench-1.3.9.tgz"; 49 - sha1 = "6f13ec35145317eb292ca5f6531391b244111411"; 93 + url = "https://registry.npmjs.org/deasync/-/deasync-0.1.10.tgz"; 94 + sha1 = "4e4a6836fbe0477bd5f908308bd2a96557d5d7fe"; 50 95 }; 51 96 }; 52 - "xmldom-0.1.19" = { 53 - name = "xmldom"; 54 - packageName = "xmldom"; 55 - version = "0.1.19"; 97 + "ejs-2.3.4" = { 98 + name = "ejs"; 99 + packageName = "ejs"; 100 + version = "2.3.4"; 101 + src = fetchurl { 102 + url = "https://registry.npmjs.org/ejs/-/ejs-2.3.4.tgz"; 103 + sha1 = "3c76caa09664b3583b0037af9dc136e79ec68b98"; 104 + }; 105 + }; 106 + "fs-extra-3.0.1" = { 107 + name = "fs-extra"; 108 + packageName = "fs-extra"; 109 + version = "3.0.1"; 56 110 src = fetchurl { 57 - url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz"; 58 - sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc"; 111 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz"; 112 + sha1 = "3794f378c58b342ea7dbbb23095109c4b3b62291"; 113 + }; 114 + }; 115 + "global-paths-0.1.2" = { 116 + name = "global-paths"; 117 + packageName = "global-paths"; 118 + version = "0.1.2"; 119 + src = fetchurl { 120 + url = "https://registry.npmjs.org/global-paths/-/global-paths-0.1.2.tgz"; 121 + sha1 = "8869ecb2a8c80995be8a459f27ae5db7a0b03299"; 59 122 }; 60 123 }; 61 124 "jsonlint-1.5.1" = { ··· 67 130 sha1 = "3cf436dcc9f3477ef3d7fa55a5bdf6d893f1c6c6"; 68 131 }; 69 132 }; 70 - "uglify-js-2.6.1" = { 71 - name = "uglify-js"; 72 - packageName = "uglify-js"; 73 - version = "2.6.1"; 133 + "moment-2.17.1" = { 134 + name = "moment"; 135 + packageName = "moment"; 136 + version = "2.17.1"; 137 + src = fetchurl { 138 + url = "https://registry.npmjs.org/moment/-/moment-2.17.1.tgz"; 139 + sha1 = "fed9506063f36b10f066c8b59a144d7faebe1d82"; 140 + }; 141 + }; 142 + "node.extend-1.0.10" = { 143 + name = "node.extend"; 144 + packageName = "node.extend"; 145 + version = "1.0.10"; 146 + src = fetchurl { 147 + url = "https://registry.npmjs.org/node.extend/-/node.extend-1.0.10.tgz"; 148 + sha1 = "3269bddf81c54535f408abc784c32b0d2bd55f6f"; 149 + }; 150 + }; 151 + "pkginfo-0.2.2" = { 152 + name = "pkginfo"; 153 + packageName = "pkginfo"; 154 + version = "0.2.2"; 74 155 src = fetchurl { 75 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.1.tgz"; 76 - sha1 = "edbbe1888ba3525ded3a7bf836b30b3405d3161b"; 156 + url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.2.tgz"; 157 + sha1 = "97e1100dbbb275ff6fab583a256a7eea85120c8e"; 77 158 }; 78 159 }; 79 160 "resolve-1.4.0" = { ··· 85 166 sha512 = "3aygixvrv5l6jm5n2dfgzyx4z86l3q2v7c2rln6znai3877q0r5ajlxgdaj4qm9h70yp7grmg9kmvr77ww2zckc7bm22zzfldafqvk9"; 86 167 }; 87 168 }; 88 - "global-paths-0.1.2" = { 89 - name = "global-paths"; 90 - packageName = "global-paths"; 91 - version = "0.1.2"; 92 - src = fetchurl { 93 - url = "https://registry.npmjs.org/global-paths/-/global-paths-0.1.2.tgz"; 94 - sha1 = "8869ecb2a8c80995be8a459f27ae5db7a0b03299"; 95 - }; 96 - }; 97 169 "source-map-0.1.9" = { 98 170 name = "source-map"; 99 171 packageName = "source-map"; ··· 101 173 src = fetchurl { 102 174 url = "https://registry.npmjs.org/source-map/-/source-map-0.1.9.tgz"; 103 175 sha1 = "250224e4e9ef7e91f4cad76cae714b90f6218599"; 176 + }; 177 + }; 178 + "walk-sync-0.3.2" = { 179 + name = "walk-sync"; 180 + packageName = "walk-sync"; 181 + version = "0.3.2"; 182 + src = fetchurl { 183 + url = "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.2.tgz"; 184 + sha512 = "2cycfx3lc52h2684s54pd81wz42f9lbggff4yva194nzr5x8nxp4fl437scd2dayyvxk68v8jmk1k8m364zdh5wmaff1a2bm9b7kh0l"; 104 185 }; 105 186 }; 106 187 "xml2tss-0.0.5" = { ··· 112 193 sha1 = "d76a310d6b8a7ba9e4825bb3d43f5427e9fe8f6e"; 113 194 }; 114 195 }; 115 - "moment-2.17.1" = { 116 - name = "moment"; 117 - packageName = "moment"; 118 - version = "2.17.1"; 196 + "xmldom-0.1.19" = { 197 + name = "xmldom"; 198 + packageName = "xmldom"; 199 + version = "0.1.19"; 119 200 src = fetchurl { 120 - url = "https://registry.npmjs.org/moment/-/moment-2.17.1.tgz"; 121 - sha1 = "fed9506063f36b10f066c8b59a144d7faebe1d82"; 201 + url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz"; 202 + sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc"; 122 203 }; 123 204 }; 124 - "node.extend-1.0.10" = { 125 - name = "node.extend"; 126 - packageName = "node.extend"; 127 - version = "1.0.10"; 205 + "lodash-4.17.4" = { 206 + name = "lodash"; 207 + packageName = "lodash"; 208 + version = "4.17.4"; 209 + src = fetchurl { 210 + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"; 211 + sha1 = "78203a4d1c328ae1d86dca6460e369b57f4055ae"; 212 + }; 213 + }; 214 + "babel-code-frame-6.26.0" = { 215 + name = "babel-code-frame"; 216 + packageName = "babel-code-frame"; 217 + version = "6.26.0"; 128 218 src = fetchurl { 129 - url = "https://registry.npmjs.org/node.extend/-/node.extend-1.0.10.tgz"; 130 - sha1 = "3269bddf81c54535f408abc784c32b0d2bd55f6f"; 219 + url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; 220 + sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; 221 + }; 222 + }; 223 + "babel-helpers-6.24.1" = { 224 + name = "babel-helpers"; 225 + packageName = "babel-helpers"; 226 + version = "6.24.1"; 227 + src = fetchurl { 228 + url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz"; 229 + sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2"; 230 + }; 231 + }; 232 + "babel-messages-6.23.0" = { 233 + name = "babel-messages"; 234 + packageName = "babel-messages"; 235 + version = "6.23.0"; 236 + src = fetchurl { 237 + url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"; 238 + sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e"; 239 + }; 240 + }; 241 + "babel-register-6.26.0" = { 242 + name = "babel-register"; 243 + packageName = "babel-register"; 244 + version = "6.26.0"; 245 + src = fetchurl { 246 + url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz"; 247 + sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071"; 131 248 }; 132 249 }; 133 - "nomnom-1.8.1" = { 134 - name = "nomnom"; 135 - packageName = "nomnom"; 136 - version = "1.8.1"; 250 + "babel-runtime-6.26.0" = { 251 + name = "babel-runtime"; 252 + packageName = "babel-runtime"; 253 + version = "6.26.0"; 137 254 src = fetchurl { 138 - url = "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz"; 139 - sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"; 255 + url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; 256 + sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 140 257 }; 141 258 }; 142 - "JSV-4.0.2" = { 143 - name = "JSV"; 144 - packageName = "JSV"; 145 - version = "4.0.2"; 259 + "babel-template-6.26.0" = { 260 + name = "babel-template"; 261 + packageName = "babel-template"; 262 + version = "6.26.0"; 146 263 src = fetchurl { 147 - url = "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz"; 148 - sha1 = "d077f6825571f82132f9dffaed587b4029feff57"; 264 + url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz"; 265 + sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02"; 149 266 }; 150 267 }; 151 - "underscore-1.6.0" = { 152 - name = "underscore"; 153 - packageName = "underscore"; 154 - version = "1.6.0"; 268 + "convert-source-map-1.5.0" = { 269 + name = "convert-source-map"; 270 + packageName = "convert-source-map"; 271 + version = "1.5.0"; 155 272 src = fetchurl { 156 - url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; 157 - sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; 273 + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz"; 274 + sha1 = "9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"; 158 275 }; 159 276 }; 160 - "chalk-0.4.0" = { 277 + "debug-2.6.8" = { 278 + name = "debug"; 279 + packageName = "debug"; 280 + version = "2.6.8"; 281 + src = fetchurl { 282 + url = "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz"; 283 + sha1 = "e731531ca2ede27d188222427da17821d68ff4fc"; 284 + }; 285 + }; 286 + "json5-0.5.1" = { 287 + name = "json5"; 288 + packageName = "json5"; 289 + version = "0.5.1"; 290 + src = fetchurl { 291 + url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"; 292 + sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; 293 + }; 294 + }; 295 + "minimatch-3.0.4" = { 296 + name = "minimatch"; 297 + packageName = "minimatch"; 298 + version = "3.0.4"; 299 + src = fetchurl { 300 + url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 301 + sha512 = "1879a3j85h92ypvb7lpv1dqpcxl49rqnbgs5la18zmj1yqhwl60c2m74254wbr5pp3znckqpkg9dvjyrz6hfz8b9vag5a3j910db4f8"; 302 + }; 303 + }; 304 + "path-is-absolute-1.0.1" = { 305 + name = "path-is-absolute"; 306 + packageName = "path-is-absolute"; 307 + version = "1.0.1"; 308 + src = fetchurl { 309 + url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 310 + sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 311 + }; 312 + }; 313 + "private-0.1.7" = { 314 + name = "private"; 315 + packageName = "private"; 316 + version = "0.1.7"; 317 + src = fetchurl { 318 + url = "https://registry.npmjs.org/private/-/private-0.1.7.tgz"; 319 + sha1 = "68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"; 320 + }; 321 + }; 322 + "slash-1.0.0" = { 323 + name = "slash"; 324 + packageName = "slash"; 325 + version = "1.0.0"; 326 + src = fetchurl { 327 + url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"; 328 + sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; 329 + }; 330 + }; 331 + "source-map-0.5.7" = { 332 + name = "source-map"; 333 + packageName = "source-map"; 334 + version = "0.5.7"; 335 + src = fetchurl { 336 + url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; 337 + sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 338 + }; 339 + }; 340 + "chalk-1.1.3" = { 161 341 name = "chalk"; 162 342 packageName = "chalk"; 163 - version = "0.4.0"; 343 + version = "1.1.3"; 344 + src = fetchurl { 345 + url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; 346 + sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; 347 + }; 348 + }; 349 + "esutils-2.0.2" = { 350 + name = "esutils"; 351 + packageName = "esutils"; 352 + version = "2.0.2"; 164 353 src = fetchurl { 165 - url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; 166 - sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; 354 + url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz"; 355 + sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; 167 356 }; 168 357 }; 169 - "has-color-0.1.7" = { 170 - name = "has-color"; 171 - packageName = "has-color"; 172 - version = "0.1.7"; 358 + "js-tokens-3.0.2" = { 359 + name = "js-tokens"; 360 + packageName = "js-tokens"; 361 + version = "3.0.2"; 173 362 src = fetchurl { 174 - url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz"; 175 - sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f"; 363 + url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"; 364 + sha1 = "9866df395102130e38f7f996bceb65443209c25b"; 176 365 }; 177 366 }; 178 - "ansi-styles-1.0.0" = { 367 + "ansi-styles-2.2.1" = { 179 368 name = "ansi-styles"; 180 369 packageName = "ansi-styles"; 181 - version = "1.0.0"; 370 + version = "2.2.1"; 371 + src = fetchurl { 372 + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; 373 + sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; 374 + }; 375 + }; 376 + "escape-string-regexp-1.0.5" = { 377 + name = "escape-string-regexp"; 378 + packageName = "escape-string-regexp"; 379 + version = "1.0.5"; 380 + src = fetchurl { 381 + url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 382 + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 383 + }; 384 + }; 385 + "has-ansi-2.0.0" = { 386 + name = "has-ansi"; 387 + packageName = "has-ansi"; 388 + version = "2.0.0"; 182 389 src = fetchurl { 183 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz"; 184 - sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178"; 390 + url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; 391 + sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 185 392 }; 186 393 }; 187 - "strip-ansi-0.1.1" = { 394 + "strip-ansi-3.0.1" = { 188 395 name = "strip-ansi"; 189 396 packageName = "strip-ansi"; 190 - version = "0.1.1"; 397 + version = "3.0.1"; 398 + src = fetchurl { 399 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 400 + sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 401 + }; 402 + }; 403 + "supports-color-2.0.0" = { 404 + name = "supports-color"; 405 + packageName = "supports-color"; 406 + version = "2.0.0"; 407 + src = fetchurl { 408 + url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; 409 + sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; 410 + }; 411 + }; 412 + "ansi-regex-2.1.1" = { 413 + name = "ansi-regex"; 414 + packageName = "ansi-regex"; 415 + version = "2.1.1"; 416 + src = fetchurl { 417 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 418 + sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 419 + }; 420 + }; 421 + "core-js-2.5.1" = { 422 + name = "core-js"; 423 + packageName = "core-js"; 424 + version = "2.5.1"; 191 425 src = fetchurl { 192 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; 193 - sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; 426 + url = "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz"; 427 + sha1 = "ae6874dc66937789b80754ff5428df66819ca50b"; 194 428 }; 195 429 }; 196 - "async-0.2.10" = { 197 - name = "async"; 198 - packageName = "async"; 199 - version = "0.2.10"; 430 + "home-or-tmp-2.0.0" = { 431 + name = "home-or-tmp"; 432 + packageName = "home-or-tmp"; 433 + version = "2.0.0"; 200 434 src = fetchurl { 201 - url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz"; 202 - sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1"; 435 + url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; 436 + sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; 203 437 }; 204 438 }; 205 - "source-map-0.5.7" = { 206 - name = "source-map"; 207 - packageName = "source-map"; 208 - version = "0.5.7"; 439 + "mkdirp-0.5.1" = { 440 + name = "mkdirp"; 441 + packageName = "mkdirp"; 442 + version = "0.5.1"; 209 443 src = fetchurl { 210 - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; 211 - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 444 + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; 445 + sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 212 446 }; 213 447 }; 214 - "uglify-to-browserify-1.0.2" = { 215 - name = "uglify-to-browserify"; 216 - packageName = "uglify-to-browserify"; 448 + "source-map-support-0.4.18" = { 449 + name = "source-map-support"; 450 + packageName = "source-map-support"; 451 + version = "0.4.18"; 452 + src = fetchurl { 453 + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz"; 454 + sha512 = "1n37icn5xpsxs2x8szv6ifajjf066fskm04xn6agr79sid57n0yws4n0cis7m9q5hr0hxzr8dv2fnmmpgb4mvz8kiyv2g5ikbyb9g5n"; 455 + }; 456 + }; 457 + "os-homedir-1.0.2" = { 458 + name = "os-homedir"; 459 + packageName = "os-homedir"; 217 460 version = "1.0.2"; 218 461 src = fetchurl { 219 - url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz"; 220 - sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7"; 462 + url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; 463 + sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; 221 464 }; 222 465 }; 223 - "yargs-3.10.0" = { 224 - name = "yargs"; 225 - packageName = "yargs"; 226 - version = "3.10.0"; 466 + "os-tmpdir-1.0.2" = { 467 + name = "os-tmpdir"; 468 + packageName = "os-tmpdir"; 469 + version = "1.0.2"; 227 470 src = fetchurl { 228 - url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; 229 - sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; 471 + url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 472 + sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 230 473 }; 231 474 }; 232 - "camelcase-1.2.1" = { 233 - name = "camelcase"; 234 - packageName = "camelcase"; 235 - version = "1.2.1"; 475 + "minimist-0.0.8" = { 476 + name = "minimist"; 477 + packageName = "minimist"; 478 + version = "0.0.8"; 479 + src = fetchurl { 480 + url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; 481 + sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 482 + }; 483 + }; 484 + "regenerator-runtime-0.11.0" = { 485 + name = "regenerator-runtime"; 486 + packageName = "regenerator-runtime"; 487 + version = "0.11.0"; 236 488 src = fetchurl { 237 - url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"; 238 - sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"; 489 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz"; 490 + sha512 = "3a1pn2aankj443h5v8png8dbgrlyb7fcdn66vjglxwqvdpivpq959qsl2n44i6zwf1k5y6y23xwhim0x077yy275dyr6vwiny83987x"; 239 491 }; 240 492 }; 241 - "cliui-2.1.0" = { 242 - name = "cliui"; 243 - packageName = "cliui"; 244 - version = "2.1.0"; 493 + "ms-2.0.0" = { 494 + name = "ms"; 495 + packageName = "ms"; 496 + version = "2.0.0"; 245 497 src = fetchurl { 246 - url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz"; 247 - sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1"; 498 + url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; 499 + sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 248 500 }; 249 501 }; 250 - "decamelize-1.2.0" = { 251 - name = "decamelize"; 252 - packageName = "decamelize"; 253 - version = "1.2.0"; 502 + "brace-expansion-1.1.8" = { 503 + name = "brace-expansion"; 504 + packageName = "brace-expansion"; 505 + version = "1.1.8"; 254 506 src = fetchurl { 255 - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 256 - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 507 + url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz"; 508 + sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292"; 257 509 }; 258 510 }; 259 - "window-size-0.1.0" = { 260 - name = "window-size"; 261 - packageName = "window-size"; 262 - version = "0.1.0"; 511 + "balanced-match-1.0.0" = { 512 + name = "balanced-match"; 513 + packageName = "balanced-match"; 514 + version = "1.0.0"; 263 515 src = fetchurl { 264 - url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz"; 265 - sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; 516 + url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; 517 + sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 266 518 }; 267 519 }; 268 - "center-align-0.1.3" = { 269 - name = "center-align"; 270 - packageName = "center-align"; 271 - version = "0.1.3"; 520 + "concat-map-0.0.1" = { 521 + name = "concat-map"; 522 + packageName = "concat-map"; 523 + version = "0.0.1"; 272 524 src = fetchurl { 273 - url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"; 274 - sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad"; 525 + url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 526 + sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 275 527 }; 276 528 }; 277 - "right-align-0.1.3" = { 278 - name = "right-align"; 279 - packageName = "right-align"; 280 - version = "0.1.3"; 529 + "detect-indent-4.0.0" = { 530 + name = "detect-indent"; 531 + packageName = "detect-indent"; 532 + version = "4.0.0"; 281 533 src = fetchurl { 282 - url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz"; 283 - sha1 = "61339b722fe6a3515689210d24e14c96148613ef"; 534 + url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"; 535 + sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; 284 536 }; 285 537 }; 286 - "wordwrap-0.0.2" = { 287 - name = "wordwrap"; 288 - packageName = "wordwrap"; 289 - version = "0.0.2"; 538 + "jsesc-1.3.0" = { 539 + name = "jsesc"; 540 + packageName = "jsesc"; 541 + version = "1.3.0"; 290 542 src = fetchurl { 291 - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz"; 292 - sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; 543 + url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; 544 + sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; 293 545 }; 294 546 }; 295 - "align-text-0.1.4" = { 296 - name = "align-text"; 297 - packageName = "align-text"; 298 - version = "0.1.4"; 547 + "trim-right-1.0.1" = { 548 + name = "trim-right"; 549 + packageName = "trim-right"; 550 + version = "1.0.1"; 299 551 src = fetchurl { 300 - url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz"; 301 - sha1 = "0cd90a561093f35d0a99256c22b7069433fad117"; 552 + url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz"; 553 + sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; 302 554 }; 303 555 }; 304 - "lazy-cache-1.0.4" = { 305 - name = "lazy-cache"; 306 - packageName = "lazy-cache"; 307 - version = "1.0.4"; 556 + "repeating-2.0.1" = { 557 + name = "repeating"; 558 + packageName = "repeating"; 559 + version = "2.0.1"; 308 560 src = fetchurl { 309 - url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz"; 310 - sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"; 561 + url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"; 562 + sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; 311 563 }; 312 564 }; 313 - "kind-of-3.2.2" = { 314 - name = "kind-of"; 315 - packageName = "kind-of"; 316 - version = "3.2.2"; 565 + "is-finite-1.0.2" = { 566 + name = "is-finite"; 567 + packageName = "is-finite"; 568 + version = "1.0.2"; 317 569 src = fetchurl { 318 - url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"; 319 - sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; 570 + url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz"; 571 + sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa"; 320 572 }; 321 573 }; 322 - "longest-1.0.1" = { 323 - name = "longest"; 324 - packageName = "longest"; 574 + "number-is-nan-1.0.1" = { 575 + name = "number-is-nan"; 576 + packageName = "number-is-nan"; 325 577 version = "1.0.1"; 326 578 src = fetchurl { 327 - url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz"; 328 - sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; 579 + url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; 580 + sha1 = "097b602b53422a522c1afb8790318336941a011d"; 581 + }; 582 + }; 583 + "globals-9.18.0" = { 584 + name = "globals"; 585 + packageName = "globals"; 586 + version = "9.18.0"; 587 + src = fetchurl { 588 + url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz"; 589 + sha512 = "18psd5ig23apaw07k4mma3z1hi2ndfwsqkm05hxashnf5lf7mpfs6kjiircc0x3x3q15j2x2j4zfzsqacxvfsmw40zjchn44bfccjab"; 590 + }; 591 + }; 592 + "invariant-2.2.2" = { 593 + name = "invariant"; 594 + packageName = "invariant"; 595 + version = "2.2.2"; 596 + src = fetchurl { 597 + url = "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz"; 598 + sha1 = "9e1f56ac0acdb6bf303306f338be3b204ae60360"; 599 + }; 600 + }; 601 + "loose-envify-1.3.1" = { 602 + name = "loose-envify"; 603 + packageName = "loose-envify"; 604 + version = "1.3.1"; 605 + src = fetchurl { 606 + url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz"; 607 + sha1 = "d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"; 608 + }; 609 + }; 610 + "to-fast-properties-1.0.3" = { 611 + name = "to-fast-properties"; 612 + packageName = "to-fast-properties"; 613 + version = "1.0.3"; 614 + src = fetchurl { 615 + url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"; 616 + sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; 329 617 }; 330 618 }; 331 - "repeat-string-1.6.1" = { 332 - name = "repeat-string"; 333 - packageName = "repeat-string"; 334 - version = "1.6.1"; 619 + "bindings-1.2.1" = { 620 + name = "bindings"; 621 + packageName = "bindings"; 622 + version = "1.2.1"; 623 + src = fetchurl { 624 + url = "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz"; 625 + sha1 = "14ad6113812d2d37d72e67b4cacb4bb726505f11"; 626 + }; 627 + }; 628 + "nan-2.7.0" = { 629 + name = "nan"; 630 + packageName = "nan"; 631 + version = "2.7.0"; 632 + src = fetchurl { 633 + url = "https://registry.npmjs.org/nan/-/nan-2.7.0.tgz"; 634 + sha1 = "d95bf721ec877e08db276ed3fc6eb78f9083ad46"; 635 + }; 636 + }; 637 + "graceful-fs-4.1.11" = { 638 + name = "graceful-fs"; 639 + packageName = "graceful-fs"; 640 + version = "4.1.11"; 335 641 src = fetchurl { 336 - url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"; 337 - sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 642 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz"; 643 + sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"; 338 644 }; 339 645 }; 340 - "is-buffer-1.1.5" = { 341 - name = "is-buffer"; 342 - packageName = "is-buffer"; 343 - version = "1.1.5"; 646 + "jsonfile-3.0.1" = { 647 + name = "jsonfile"; 648 + packageName = "jsonfile"; 649 + version = "3.0.1"; 344 650 src = fetchurl { 345 - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz"; 346 - sha1 = "1f3b26ef613b214b88cbca23cc6c01d87961eecc"; 651 + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz"; 652 + sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66"; 347 653 }; 348 654 }; 349 - "path-parse-1.0.5" = { 350 - name = "path-parse"; 351 - packageName = "path-parse"; 352 - version = "1.0.5"; 655 + "universalify-0.1.1" = { 656 + name = "universalify"; 657 + packageName = "universalify"; 658 + version = "0.1.1"; 353 659 src = fetchurl { 354 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz"; 355 - sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"; 660 + url = "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz"; 661 + sha1 = "fa71badd4437af4c148841e3b3b165f9e9e590b7"; 356 662 }; 357 663 }; 358 664 "array-unique-0.2.1" = { ··· 445 751 sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 446 752 }; 447 753 }; 754 + "nomnom-1.8.1" = { 755 + name = "nomnom"; 756 + packageName = "nomnom"; 757 + version = "1.8.1"; 758 + src = fetchurl { 759 + url = "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz"; 760 + sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"; 761 + }; 762 + }; 763 + "JSV-4.0.2" = { 764 + name = "JSV"; 765 + packageName = "JSV"; 766 + version = "4.0.2"; 767 + src = fetchurl { 768 + url = "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz"; 769 + sha1 = "d077f6825571f82132f9dffaed587b4029feff57"; 770 + }; 771 + }; 772 + "underscore-1.6.0" = { 773 + name = "underscore"; 774 + packageName = "underscore"; 775 + version = "1.6.0"; 776 + src = fetchurl { 777 + url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; 778 + sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; 779 + }; 780 + }; 781 + "chalk-0.4.0" = { 782 + name = "chalk"; 783 + packageName = "chalk"; 784 + version = "0.4.0"; 785 + src = fetchurl { 786 + url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; 787 + sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; 788 + }; 789 + }; 790 + "has-color-0.1.7" = { 791 + name = "has-color"; 792 + packageName = "has-color"; 793 + version = "0.1.7"; 794 + src = fetchurl { 795 + url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz"; 796 + sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f"; 797 + }; 798 + }; 799 + "ansi-styles-1.0.0" = { 800 + name = "ansi-styles"; 801 + packageName = "ansi-styles"; 802 + version = "1.0.0"; 803 + src = fetchurl { 804 + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz"; 805 + sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178"; 806 + }; 807 + }; 808 + "strip-ansi-0.1.1" = { 809 + name = "strip-ansi"; 810 + packageName = "strip-ansi"; 811 + version = "0.1.1"; 812 + src = fetchurl { 813 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; 814 + sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; 815 + }; 816 + }; 817 + "is-0.3.0" = { 818 + name = "is"; 819 + packageName = "is"; 820 + version = "0.3.0"; 821 + src = fetchurl { 822 + url = "https://registry.npmjs.org/is/-/is-0.3.0.tgz"; 823 + sha1 = "a8f71dfc8a6e28371627f26c929098c6f4d5d5d7"; 824 + }; 825 + }; 826 + "path-parse-1.0.5" = { 827 + name = "path-parse"; 828 + packageName = "path-parse"; 829 + version = "1.0.5"; 830 + src = fetchurl { 831 + url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz"; 832 + sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"; 833 + }; 834 + }; 448 835 "amdefine-1.0.1" = { 449 836 name = "amdefine"; 450 837 packageName = "amdefine"; ··· 454 841 sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5"; 455 842 }; 456 843 }; 844 + "ensure-posix-path-1.0.2" = { 845 + name = "ensure-posix-path"; 846 + packageName = "ensure-posix-path"; 847 + version = "1.0.2"; 848 + src = fetchurl { 849 + url = "https://registry.npmjs.org/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz"; 850 + sha1 = "a65b3e42d0b71cfc585eb774f9943c8d9b91b0c2"; 851 + }; 852 + }; 853 + "matcher-collection-1.0.5" = { 854 + name = "matcher-collection"; 855 + packageName = "matcher-collection"; 856 + version = "1.0.5"; 857 + src = fetchurl { 858 + url = "https://registry.npmjs.org/matcher-collection/-/matcher-collection-1.0.5.tgz"; 859 + sha512 = "1hfvbsx85xqrw6g0k7rkqwngl8b2nwj92ax10ilx3b4lma2mcp8q6zpvam1sffgqsssa9d13cj7prrzg5c00mf0c8q92w59m36ach4x"; 860 + }; 861 + }; 457 862 "xml2js-0.2.8" = { 458 863 name = "xml2js"; 459 864 packageName = "xml2js"; ··· 470 875 src = fetchurl { 471 876 url = "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz"; 472 877 sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1"; 473 - }; 474 - }; 475 - "is-0.3.0" = { 476 - name = "is"; 477 - packageName = "is"; 478 - version = "0.3.0"; 479 - src = fetchurl { 480 - url = "https://registry.npmjs.org/is/-/is-0.3.0.tgz"; 481 - sha1 = "a8f71dfc8a6e28371627f26c929098c6f4d5d5d7"; 482 878 }; 483 879 }; 484 880 "adal-node-0.1.21" = { ··· 1012 1408 sha1 = "be191c4fbdff2e208bda440933436af80e7425b9"; 1013 1409 }; 1014 1410 }; 1015 - "ms-rest-azure-2.3.0" = { 1411 + "ms-rest-azure-2.3.1" = { 1016 1412 name = "ms-rest-azure"; 1017 1413 packageName = "ms-rest-azure"; 1018 - version = "2.3.0"; 1414 + version = "2.3.1"; 1019 1415 src = fetchurl { 1020 - url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.3.0.tgz"; 1021 - sha1 = "526b4c39a3c02e50913b92787a9e95ce833b37f1"; 1416 + url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.3.1.tgz"; 1417 + sha1 = "25f2c6bdc721ec41187606b8d71a7b6090dc708e"; 1022 1418 }; 1023 1419 }; 1024 1420 "node-forge-0.6.23" = { ··· 1181 1577 src = fetchurl { 1182 1578 url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz"; 1183 1579 sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e"; 1580 + }; 1581 + }; 1582 + "wordwrap-0.0.2" = { 1583 + name = "wordwrap"; 1584 + packageName = "wordwrap"; 1585 + version = "0.0.2"; 1586 + src = fetchurl { 1587 + url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz"; 1588 + sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; 1184 1589 }; 1185 1590 }; 1186 1591 "xml2js-0.1.14" = { ··· 1615 2020 sha1 = "0e3c4f24a3f052b231b12d5049085a0a099be782"; 1616 2021 }; 1617 2022 }; 1618 - "@types/node-8.0.27" = { 2023 + "@types/node-8.0.28" = { 1619 2024 name = "@types/node"; 1620 2025 packageName = "@types/node"; 1621 - version = "8.0.27"; 2026 + version = "8.0.28"; 1622 2027 src = fetchurl { 1623 - url = "https://registry.npmjs.org/@types/node/-/node-8.0.27.tgz"; 1624 - sha512 = "26y8ngdixrwyzyas9bbb4cq9gpb2mawnp4j94vi035hzajrskcp48nm90pcx1ma0gv5x8qkibskyjqpvmsn62x8qd7djzks63jrs8rj"; 2028 + url = "https://registry.npmjs.org/@types/node/-/node-8.0.28.tgz"; 2029 + sha512 = "2wlavwh38262crr2wm0zhzgp1ibkd2wy2hpmby0xr218k36vls3gdbya0848wx6r51hs1mbly8k8f3aby4xsarp9g5fvp1gf4an9shy"; 1625 2030 }; 1626 2031 }; 1627 2032 "@types/request-2.0.3" = { ··· 1640 2045 src = fetchurl { 1641 2046 url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.2.tgz"; 1642 2047 sha512 = "2k89p1xsllidfwgic0qklzdp1lpvyzw22z7xlphii062jm6rh58xajz11r4lby49kghc5zrmmqrsi1mkmzm6ix8x3rhcrj1rnixhykx"; 2048 + }; 2049 + }; 2050 + "is-buffer-1.1.5" = { 2051 + name = "is-buffer"; 2052 + packageName = "is-buffer"; 2053 + version = "1.1.5"; 2054 + src = fetchurl { 2055 + url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz"; 2056 + sha1 = "1f3b26ef613b214b88cbca23cc6c01d87961eecc"; 1643 2057 }; 1644 2058 }; 1645 2059 "is-stream-1.1.0" = { ··· 1714 2128 sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0"; 1715 2129 }; 1716 2130 }; 2131 + "async-0.2.10" = { 2132 + name = "async"; 2133 + packageName = "async"; 2134 + version = "0.2.10"; 2135 + src = fetchurl { 2136 + url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz"; 2137 + sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1"; 2138 + }; 2139 + }; 1717 2140 "deep-equal-1.0.1" = { 1718 2141 name = "deep-equal"; 1719 2142 packageName = "deep-equal"; ··· 1732 2155 sha1 = "1d2b854158ec8169113c6cb7f6b6801e99e211d5"; 1733 2156 }; 1734 2157 }; 1735 - "mkdirp-0.5.1" = { 1736 - name = "mkdirp"; 1737 - packageName = "mkdirp"; 1738 - version = "0.5.1"; 1739 - src = fetchurl { 1740 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; 1741 - sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 1742 - }; 1743 - }; 1744 2158 "ncp-0.4.2" = { 1745 2159 name = "ncp"; 1746 2160 packageName = "ncp"; ··· 1750 2164 sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574"; 1751 2165 }; 1752 2166 }; 1753 - "rimraf-2.6.1" = { 2167 + "rimraf-2.6.2" = { 1754 2168 name = "rimraf"; 1755 2169 packageName = "rimraf"; 1756 - version = "2.6.1"; 1757 - src = fetchurl { 1758 - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz"; 1759 - sha1 = "c2338ec643df7a1b7fe5c54fa86f57428a55f33d"; 1760 - }; 1761 - }; 1762 - "minimist-0.0.8" = { 1763 - name = "minimist"; 1764 - packageName = "minimist"; 1765 - version = "0.0.8"; 2170 + version = "2.6.2"; 1766 2171 src = fetchurl { 1767 - url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; 1768 - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 2172 + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"; 2173 + sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn"; 1769 2174 }; 1770 2175 }; 1771 2176 "glob-7.1.2" = { ··· 1795 2200 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 1796 2201 }; 1797 2202 }; 1798 - "minimatch-3.0.4" = { 1799 - name = "minimatch"; 1800 - packageName = "minimatch"; 1801 - version = "3.0.4"; 1802 - src = fetchurl { 1803 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 1804 - sha512 = "1879a3j85h92ypvb7lpv1dqpcxl49rqnbgs5la18zmj1yqhwl60c2m74254wbr5pp3znckqpkg9dvjyrz6hfz8b9vag5a3j910db4f8"; 1805 - }; 1806 - }; 1807 2203 "once-1.4.0" = { 1808 2204 name = "once"; 1809 2205 packageName = "once"; ··· 1811 2207 src = fetchurl { 1812 2208 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 1813 2209 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 1814 - }; 1815 - }; 1816 - "path-is-absolute-1.0.1" = { 1817 - name = "path-is-absolute"; 1818 - packageName = "path-is-absolute"; 1819 - version = "1.0.1"; 1820 - src = fetchurl { 1821 - url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 1822 - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 1823 2210 }; 1824 2211 }; 1825 2212 "wrappy-1.0.2" = { ··· 1831 2218 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 1832 2219 }; 1833 2220 }; 1834 - "brace-expansion-1.1.8" = { 1835 - name = "brace-expansion"; 1836 - packageName = "brace-expansion"; 1837 - version = "1.1.8"; 1838 - src = fetchurl { 1839 - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz"; 1840 - sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292"; 1841 - }; 1842 - }; 1843 - "balanced-match-1.0.0" = { 1844 - name = "balanced-match"; 1845 - packageName = "balanced-match"; 1846 - version = "1.0.0"; 1847 - src = fetchurl { 1848 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; 1849 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 1850 - }; 1851 - }; 1852 - "concat-map-0.0.1" = { 1853 - name = "concat-map"; 1854 - packageName = "concat-map"; 1855 - version = "0.0.1"; 1856 - src = fetchurl { 1857 - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 1858 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 1859 - }; 1860 - }; 1861 2221 "colors-0.6.2" = { 1862 2222 name = "colors"; 1863 2223 packageName = "colors"; ··· 2083 2443 sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; 2084 2444 }; 2085 2445 }; 2086 - "async-2.5.0" = { 2087 - name = "async"; 2088 - packageName = "async"; 2089 - version = "2.5.0"; 2090 - src = fetchurl { 2091 - url = "https://registry.npmjs.org/async/-/async-2.5.0.tgz"; 2092 - sha512 = "1ijrwmifg76a8wwhhfqxg23kd0rsjhzklwvj2czvqxs2k25ii6p3y6s3vhbcc5hnr87b0gfc4nb54b8bph2hn9c6z1f6nldjw04ksbv"; 2093 - }; 2094 - }; 2095 - "lodash-4.17.4" = { 2096 - name = "lodash"; 2097 - packageName = "lodash"; 2098 - version = "4.17.4"; 2099 - src = fetchurl { 2100 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"; 2101 - sha1 = "78203a4d1c328ae1d86dca6460e369b57f4055ae"; 2102 - }; 2103 - }; 2104 - "chalk-1.1.3" = { 2105 - name = "chalk"; 2106 - packageName = "chalk"; 2107 - version = "1.1.3"; 2108 - src = fetchurl { 2109 - url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; 2110 - sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; 2111 - }; 2112 - }; 2113 2446 "commander-2.11.0" = { 2114 2447 name = "commander"; 2115 2448 packageName = "commander"; ··· 2137 2470 sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 2138 2471 }; 2139 2472 }; 2140 - "ansi-styles-2.2.1" = { 2141 - name = "ansi-styles"; 2142 - packageName = "ansi-styles"; 2143 - version = "2.2.1"; 2144 - src = fetchurl { 2145 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; 2146 - sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; 2147 - }; 2148 - }; 2149 - "escape-string-regexp-1.0.5" = { 2150 - name = "escape-string-regexp"; 2151 - packageName = "escape-string-regexp"; 2152 - version = "1.0.5"; 2153 - src = fetchurl { 2154 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 2155 - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 2156 - }; 2157 - }; 2158 - "has-ansi-2.0.0" = { 2159 - name = "has-ansi"; 2160 - packageName = "has-ansi"; 2161 - version = "2.0.0"; 2162 - src = fetchurl { 2163 - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; 2164 - sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 2165 - }; 2166 - }; 2167 - "strip-ansi-3.0.1" = { 2168 - name = "strip-ansi"; 2169 - packageName = "strip-ansi"; 2170 - version = "3.0.1"; 2171 - src = fetchurl { 2172 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 2173 - sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 2174 - }; 2175 - }; 2176 - "supports-color-2.0.0" = { 2177 - name = "supports-color"; 2178 - packageName = "supports-color"; 2179 - version = "2.0.0"; 2180 - src = fetchurl { 2181 - url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; 2182 - sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; 2183 - }; 2184 - }; 2185 - "ansi-regex-2.1.1" = { 2186 - name = "ansi-regex"; 2187 - packageName = "ansi-regex"; 2188 - version = "2.1.1"; 2189 - src = fetchurl { 2190 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 2191 - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 2192 - }; 2193 - }; 2194 2473 "generate-function-2.0.0" = { 2195 2474 name = "generate-function"; 2196 2475 packageName = "generate-function"; ··· 2551 2830 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; 2552 2831 }; 2553 2832 }; 2554 - "os-homedir-1.0.2" = { 2555 - name = "os-homedir"; 2556 - packageName = "os-homedir"; 2557 - version = "1.0.2"; 2558 - src = fetchurl { 2559 - url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; 2560 - sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; 2561 - }; 2562 - }; 2563 2833 "async-1.0.0" = { 2564 2834 name = "async"; 2565 2835 packageName = "async"; ··· 2596 2866 sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4"; 2597 2867 }; 2598 2868 }; 2599 - "bower-1.8.0" = { 2869 + "bower-1.8.2" = { 2600 2870 name = "bower"; 2601 2871 packageName = "bower"; 2602 - version = "1.8.0"; 2872 + version = "1.8.2"; 2603 2873 src = fetchurl { 2604 - url = "https://registry.npmjs.org/bower/-/bower-1.8.0.tgz"; 2605 - sha1 = "55dbebef0ad9155382d9e9d3e497c1372345b44a"; 2874 + url = "https://registry.npmjs.org/bower/-/bower-1.8.2.tgz"; 2875 + sha1 = "adf53529c8d4af02ef24fb8d5341c1419d33e2f7"; 2606 2876 }; 2607 2877 }; 2608 2878 "bower-endpoint-parser-0.2.1" = { ··· 2774 3044 src = fetchurl { 2775 3045 url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; 2776 3046 sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7"; 3047 + }; 3048 + }; 3049 + "decamelize-1.2.0" = { 3050 + name = "decamelize"; 3051 + packageName = "decamelize"; 3052 + version = "1.2.0"; 3053 + src = fetchurl { 3054 + url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 3055 + sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 2777 3056 }; 2778 3057 }; 2779 3058 "loud-rejection-1.6.0" = { ··· 2992 3271 sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; 2993 3272 }; 2994 3273 }; 2995 - "graceful-fs-4.1.11" = { 2996 - name = "graceful-fs"; 2997 - packageName = "graceful-fs"; 2998 - version = "4.1.11"; 2999 - src = fetchurl { 3000 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz"; 3001 - sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"; 3002 - }; 3003 - }; 3004 3274 "parse-json-2.2.0" = { 3005 3275 name = "parse-json"; 3006 3276 packageName = "parse-json"; ··· 3073 3343 sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2"; 3074 3344 }; 3075 3345 }; 3076 - "repeating-2.0.1" = { 3077 - name = "repeating"; 3078 - packageName = "repeating"; 3079 - version = "2.0.1"; 3080 - src = fetchurl { 3081 - url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"; 3082 - sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; 3083 - }; 3084 - }; 3085 - "is-finite-1.0.2" = { 3086 - name = "is-finite"; 3087 - packageName = "is-finite"; 3088 - version = "1.0.2"; 3089 - src = fetchurl { 3090 - url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz"; 3091 - sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa"; 3092 - }; 3093 - }; 3094 - "number-is-nan-1.0.1" = { 3095 - name = "number-is-nan"; 3096 - packageName = "number-is-nan"; 3097 - version = "1.0.1"; 3098 - src = fetchurl { 3099 - url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; 3100 - sha1 = "097b602b53422a522c1afb8790318336941a011d"; 3101 - }; 3102 - }; 3103 3346 "get-stdin-4.0.1" = { 3104 3347 name = "get-stdin"; 3105 3348 packageName = "get-stdin"; ··· 3163 3406 sha1 = "dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"; 3164 3407 }; 3165 3408 }; 3166 - "debug-2.6.8" = { 3167 - name = "debug"; 3168 - packageName = "debug"; 3169 - version = "2.6.8"; 3170 - src = fetchurl { 3171 - url = "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz"; 3172 - sha1 = "e731531ca2ede27d188222427da17821d68ff4fc"; 3173 - }; 3174 - }; 3175 - "ms-2.0.0" = { 3176 - name = "ms"; 3177 - packageName = "ms"; 3178 - version = "2.0.0"; 3179 - src = fetchurl { 3180 - url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; 3181 - sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 3182 - }; 3183 - }; 3184 - "os-tmpdir-1.0.2" = { 3185 - name = "os-tmpdir"; 3186 - packageName = "os-tmpdir"; 3187 - version = "1.0.2"; 3188 - src = fetchurl { 3189 - url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 3190 - sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 3191 - }; 3192 - }; 3193 3409 "rimraf-2.2.8" = { 3194 3410 name = "rimraf"; 3195 3411 packageName = "rimraf"; ··· 3721 3937 sha1 = "b5835739270cfe26acf632099fded2a07f209e5e"; 3722 3938 }; 3723 3939 }; 3724 - "pbkdf2-3.0.13" = { 3940 + "pbkdf2-3.0.14" = { 3725 3941 name = "pbkdf2"; 3726 3942 packageName = "pbkdf2"; 3727 - version = "3.0.13"; 3943 + version = "3.0.14"; 3728 3944 src = fetchurl { 3729 - url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.13.tgz"; 3730 - sha512 = "3crgpf13g3zshm39jjfgnp4lfg5jilllwk6ixi07nzyf4yghmxrhrdmhsgr5jr855ma790a21hd4bcvpx8bv9h5irnk6xpy6728gl7r"; 3945 + url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.14.tgz"; 3946 + sha512 = "30bb7vx0m1k1m3d1i1khgvmgddx3ahqgprs421ssrh5plpx50k5bazsj67gdi7qiknircqy59yxbclq95s2rnmk8ysgkqdpsddijfw2"; 3731 3947 }; 3732 3948 }; 3733 3949 "public-encrypt-4.0.0" = { ··· 6232 6448 sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e"; 6233 6449 }; 6234 6450 }; 6235 - "interpret-1.0.3" = { 6451 + "interpret-1.0.4" = { 6236 6452 name = "interpret"; 6237 6453 packageName = "interpret"; 6238 - version = "1.0.3"; 6454 + version = "1.0.4"; 6239 6455 src = fetchurl { 6240 - url = "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz"; 6241 - sha1 = "cbc35c62eeee73f19ab7b10a801511401afc0f90"; 6456 + url = "https://registry.npmjs.org/interpret/-/interpret-1.0.4.tgz"; 6457 + sha1 = "820cdd588b868ffb191a809506d6c9c8f212b1b0"; 6242 6458 }; 6243 6459 }; 6244 6460 "rechoir-0.6.2" = { ··· 6367 6583 sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; 6368 6584 }; 6369 6585 }; 6370 - "content-type-1.0.2" = { 6586 + "content-type-1.0.4" = { 6371 6587 name = "content-type"; 6372 6588 packageName = "content-type"; 6373 - version = "1.0.2"; 6589 + version = "1.0.4"; 6374 6590 src = fetchurl { 6375 - url = "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz"; 6376 - sha1 = "b7d113aee7a8dd27bd21133c4dc2529df1721eed"; 6591 + url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; 6592 + sha512 = "1f4y61wc913jrnga7nny83gzf9l2488q6sl1ry9lbwgh5x5d3va0xcc0xrmjk6gdxl6d4r6rsk800xp5bazhjrx05yx1wpc8c8gg0w4"; 6377 6593 }; 6378 6594 }; 6379 6595 "cookie-0.3.1" = { ··· 6421 6637 sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 6422 6638 }; 6423 6639 }; 6424 - "etag-1.8.0" = { 6640 + "etag-1.8.1" = { 6425 6641 name = "etag"; 6426 6642 packageName = "etag"; 6427 - version = "1.8.0"; 6643 + version = "1.8.1"; 6428 6644 src = fetchurl { 6429 - url = "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz"; 6430 - sha1 = "6f631aef336d6c46362b51764044ce216be3c051"; 6645 + url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; 6646 + sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 6431 6647 }; 6432 6648 }; 6433 - "finalhandler-1.0.4" = { 6649 + "finalhandler-1.0.5" = { 6434 6650 name = "finalhandler"; 6435 6651 packageName = "finalhandler"; 6436 - version = "1.0.4"; 6652 + version = "1.0.5"; 6437 6653 src = fetchurl { 6438 - url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.4.tgz"; 6439 - sha512 = "2vbps6iw562i2zxd973z5mmbs8ggx3wbz4g1jqwvkjibiwrk9ym8bxcvvwnlmxqad92x120x5xz5nyfq68nd8akk355bkk0qjppzafp"; 6654 + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.5.tgz"; 6655 + sha1 = "a701303d257a1bc82fea547a33e5ae89531723df"; 6440 6656 }; 6441 6657 }; 6442 6658 "fresh-0.5.0" = { ··· 6475 6691 sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 6476 6692 }; 6477 6693 }; 6478 - "parseurl-1.3.1" = { 6694 + "parseurl-1.3.2" = { 6479 6695 name = "parseurl"; 6480 6696 packageName = "parseurl"; 6481 - version = "1.3.1"; 6697 + version = "1.3.2"; 6482 6698 src = fetchurl { 6483 - url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz"; 6484 - sha1 = "c8ab8c9223ba34888aa64a297b28853bec18da56"; 6699 + url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz"; 6700 + sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3"; 6485 6701 }; 6486 6702 }; 6487 6703 "path-to-regexp-0.1.7" = { ··· 6583 6799 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 6584 6800 }; 6585 6801 }; 6586 - "forwarded-0.1.0" = { 6802 + "forwarded-0.1.2" = { 6587 6803 name = "forwarded"; 6588 6804 packageName = "forwarded"; 6589 - version = "0.1.0"; 6805 + version = "0.1.2"; 6590 6806 src = fetchurl { 6591 - url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz"; 6592 - sha1 = "19ef9874c4ae1c297bcf078fde63a09b66a84363"; 6807 + url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; 6808 + sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; 6593 6809 }; 6594 6810 }; 6595 6811 "ipaddr.js-1.4.0" = { ··· 6691 6907 sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967"; 6692 6908 }; 6693 6909 }; 6694 - "slash-1.0.0" = { 6695 - name = "slash"; 6696 - packageName = "slash"; 6697 - version = "1.0.0"; 6698 - src = fetchurl { 6699 - url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"; 6700 - sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; 6701 - }; 6702 - }; 6703 6910 "builtins-1.0.3" = { 6704 6911 name = "builtins"; 6705 6912 packageName = "builtins"; ··· 6779 6986 src = fetchurl { 6780 6987 url = "https://registry.npmjs.org/char-spinner/-/char-spinner-1.0.1.tgz"; 6781 6988 sha1 = "e6ea67bd247e107112983b7ab0479ed362800081"; 6782 - }; 6783 - }; 6784 - "chmodr-1.0.2" = { 6785 - name = "chmodr"; 6786 - packageName = "chmodr"; 6787 - version = "1.0.2"; 6788 - src = fetchurl { 6789 - url = "https://registry.npmjs.org/chmodr/-/chmodr-1.0.2.tgz"; 6790 - sha1 = "04662b932d0f02ec66deaa2b0ea42811968e3eb9"; 6791 6989 }; 6792 6990 }; 6793 6991 "chownr-1.0.1" = { ··· 8186 8384 sha512 = "15lvjac4av3h7xmks8jgd56vryz5xb27r8xcpfwhfyr9dv305lms5llc1x6nx6nfvha873d4vg04nfi89aj4jkxplrnjiyc9kjf34hf"; 8187 8385 }; 8188 8386 }; 8189 - "nan-2.7.0" = { 8190 - name = "nan"; 8191 - packageName = "nan"; 8192 - version = "2.7.0"; 8193 - src = fetchurl { 8194 - url = "https://registry.npmjs.org/nan/-/nan-2.7.0.tgz"; 8195 - sha1 = "d95bf721ec877e08db276ed3fc6eb78f9083ad46"; 8196 - }; 8197 - }; 8198 8387 "jsonparse-0.0.6" = { 8199 8388 name = "jsonparse"; 8200 8389 packageName = "jsonparse"; ··· 8258 8447 sha1 = "38f716b24c8cee07a262abc41c22c314e20e3869"; 8259 8448 }; 8260 8449 }; 8261 - "websocket-driver-0.6.5" = { 8450 + "websocket-driver-0.7.0" = { 8262 8451 name = "websocket-driver"; 8263 8452 packageName = "websocket-driver"; 8264 - version = "0.6.5"; 8453 + version = "0.7.0"; 8265 8454 src = fetchurl { 8266 - url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz"; 8267 - sha1 = "5cb2556ceb85f4373c6d8238aa691c8454e13a36"; 8455 + url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.0.tgz"; 8456 + sha1 = "0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb"; 8268 8457 }; 8269 8458 }; 8270 - "websocket-extensions-0.1.1" = { 8459 + "http-parser-js-0.4.7" = { 8460 + name = "http-parser-js"; 8461 + packageName = "http-parser-js"; 8462 + version = "0.4.7"; 8463 + src = fetchurl { 8464 + url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.7.tgz"; 8465 + sha1 = "1cecc9c4ce845c0288224d8844854c1ef08c9ad7"; 8466 + }; 8467 + }; 8468 + "websocket-extensions-0.1.2" = { 8271 8469 name = "websocket-extensions"; 8272 8470 packageName = "websocket-extensions"; 8273 - version = "0.1.1"; 8471 + version = "0.1.2"; 8274 8472 src = fetchurl { 8275 - url = "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.1.tgz"; 8276 - sha1 = "76899499c184b6ef754377c2dbb0cd6cb55d29e7"; 8473 + url = "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.2.tgz"; 8474 + sha1 = "0e18781de629a18308ce1481650f67ffa2693a5d"; 8277 8475 }; 8278 8476 }; 8279 8477 "native-dns-cache-git+https://github.com/okTurtles/native-dns-cache.git#8714196bb9223cc9a4064a4fddf9e82ec50b7d4d" = { ··· 8675 8873 sha1 = "9500635e257945d6feede185f5d7a24773455b17"; 8676 8874 }; 8677 8875 }; 8678 - "pull-stream-3.6.0" = { 8876 + "pull-stream-3.6.1" = { 8679 8877 name = "pull-stream"; 8680 8878 packageName = "pull-stream"; 8681 - version = "3.6.0"; 8879 + version = "3.6.1"; 8682 8880 src = fetchurl { 8683 - url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.0.tgz"; 8684 - sha1 = "59d033a6815d4e3097d47c3d2b1893a9e58a2351"; 8881 + url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.1.tgz"; 8882 + sha1 = "c5c2ae4a51246efeebcc65c0412a3d725a92ce00"; 8685 8883 }; 8686 8884 }; 8687 8885 "typewiselite-1.0.0" = { ··· 8846 9044 sha1 = "2efa54c3b1cbaba9b94aee2e5914b0be57fbb749"; 8847 9045 }; 8848 9046 }; 8849 - "bindings-1.2.1" = { 8850 - name = "bindings"; 8851 - packageName = "bindings"; 8852 - version = "1.2.1"; 8853 - src = fetchurl { 8854 - url = "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz"; 8855 - sha1 = "14ad6113812d2d37d72e67b4cacb4bb726505f11"; 8856 - }; 8857 - }; 8858 9047 "nan-2.1.0" = { 8859 9048 name = "nan"; 8860 9049 packageName = "nan"; ··· 8918 9107 sha1 = "cac328f7bee45730d404b692203fcb590e172d5e"; 8919 9108 }; 8920 9109 }; 8921 - "aws-sdk-2.110.0" = { 9110 + "aws-sdk-2.120.0" = { 8922 9111 name = "aws-sdk"; 8923 9112 packageName = "aws-sdk"; 8924 - version = "2.110.0"; 9113 + version = "2.120.0"; 8925 9114 src = fetchurl { 8926 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.110.0.tgz"; 8927 - sha1 = "ef3a88b08e8100d984c307108e0617a56eb74fdb"; 9115 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.120.0.tgz"; 9116 + sha1 = "44857ecb476936fce891850ff27a502210814fb6"; 8928 9117 }; 8929 9118 }; 8930 - "request-2.81.0" = { 9119 + "request-2.82.0" = { 8931 9120 name = "request"; 8932 9121 packageName = "request"; 8933 - version = "2.81.0"; 9122 + version = "2.82.0"; 8934 9123 src = fetchurl { 8935 - url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; 8936 - sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; 9124 + url = "https://registry.npmjs.org/request/-/request-2.82.0.tgz"; 9125 + sha512 = "079947pnxi0h8jdiv5wb64rj3gnq4a02dfj47c41wsdi3g6pp1v3yfg3m1rphib7igf6vkisrgjq16vc4fq916fc870wzckdizal1gx"; 8937 9126 }; 8938 9127 }; 8939 9128 "crypto-browserify-1.0.9" = { ··· 8990 9179 sha1 = "aa58a3041a066f90eaa16c2f5389ff19f3f461a5"; 8991 9180 }; 8992 9181 }; 9182 + "aws-sign2-0.7.0" = { 9183 + name = "aws-sign2"; 9184 + packageName = "aws-sign2"; 9185 + version = "0.7.0"; 9186 + src = fetchurl { 9187 + url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; 9188 + sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 9189 + }; 9190 + }; 8993 9191 "caseless-0.12.0" = { 8994 9192 name = "caseless"; 8995 9193 packageName = "caseless"; ··· 8999 9197 sha1 = "1b681c21ff84033c826543090689420d187151dc"; 9000 9198 }; 9001 9199 }; 9002 - "har-validator-4.2.1" = { 9200 + "form-data-2.3.1" = { 9201 + name = "form-data"; 9202 + packageName = "form-data"; 9203 + version = "2.3.1"; 9204 + src = fetchurl { 9205 + url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz"; 9206 + sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"; 9207 + }; 9208 + }; 9209 + "har-validator-5.0.3" = { 9003 9210 name = "har-validator"; 9004 9211 packageName = "har-validator"; 9005 - version = "4.2.1"; 9212 + version = "5.0.3"; 9213 + src = fetchurl { 9214 + url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz"; 9215 + sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd"; 9216 + }; 9217 + }; 9218 + "hawk-6.0.2" = { 9219 + name = "hawk"; 9220 + packageName = "hawk"; 9221 + version = "6.0.2"; 9222 + src = fetchurl { 9223 + url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz"; 9224 + sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als"; 9225 + }; 9226 + }; 9227 + "http-signature-1.2.0" = { 9228 + name = "http-signature"; 9229 + packageName = "http-signature"; 9230 + version = "1.2.0"; 9006 9231 src = fetchurl { 9007 - url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; 9008 - sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; 9232 + url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; 9233 + sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 9009 9234 }; 9010 9235 }; 9011 - "performance-now-0.2.0" = { 9236 + "performance-now-2.1.0" = { 9012 9237 name = "performance-now"; 9013 9238 packageName = "performance-now"; 9014 - version = "0.2.0"; 9239 + version = "2.1.0"; 9015 9240 src = fetchurl { 9016 - url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; 9017 - sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; 9241 + url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; 9242 + sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 9018 9243 }; 9019 9244 }; 9020 - "qs-6.4.0" = { 9245 + "qs-6.5.1" = { 9021 9246 name = "qs"; 9022 9247 packageName = "qs"; 9023 - version = "6.4.0"; 9248 + version = "6.5.1"; 9024 9249 src = fetchurl { 9025 - url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; 9026 - sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; 9250 + url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz"; 9251 + sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r"; 9027 9252 }; 9028 9253 }; 9029 9254 "tunnel-agent-0.6.0" = { ··· 9035 9260 sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; 9036 9261 }; 9037 9262 }; 9038 - "ajv-4.11.8" = { 9263 + "ajv-5.2.2" = { 9039 9264 name = "ajv"; 9040 9265 packageName = "ajv"; 9041 - version = "4.11.8"; 9266 + version = "5.2.2"; 9042 9267 src = fetchurl { 9043 - url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; 9044 - sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; 9268 + url = "https://registry.npmjs.org/ajv/-/ajv-5.2.2.tgz"; 9269 + sha1 = "47c68d69e86f5d953103b0074a9430dc63da5e39"; 9045 9270 }; 9046 9271 }; 9047 - "har-schema-1.0.5" = { 9272 + "har-schema-2.0.0" = { 9048 9273 name = "har-schema"; 9049 9274 packageName = "har-schema"; 9050 - version = "1.0.5"; 9275 + version = "2.0.0"; 9051 9276 src = fetchurl { 9052 - url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; 9053 - sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; 9277 + url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; 9278 + sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 9054 9279 }; 9055 9280 }; 9056 9281 "co-4.6.0" = { ··· 9062 9287 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; 9063 9288 }; 9064 9289 }; 9290 + "fast-deep-equal-1.0.0" = { 9291 + name = "fast-deep-equal"; 9292 + packageName = "fast-deep-equal"; 9293 + version = "1.0.0"; 9294 + src = fetchurl { 9295 + url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz"; 9296 + sha1 = "96256a3bc975595eb36d82e9929d060d893439ff"; 9297 + }; 9298 + }; 9299 + "json-schema-traverse-0.3.1" = { 9300 + name = "json-schema-traverse"; 9301 + packageName = "json-schema-traverse"; 9302 + version = "0.3.1"; 9303 + src = fetchurl { 9304 + url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz"; 9305 + sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340"; 9306 + }; 9307 + }; 9065 9308 "json-stable-stringify-1.0.1" = { 9066 9309 name = "json-stable-stringify"; 9067 9310 packageName = "json-stable-stringify"; ··· 9071 9314 sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af"; 9072 9315 }; 9073 9316 }; 9317 + "hoek-4.2.0" = { 9318 + name = "hoek"; 9319 + packageName = "hoek"; 9320 + version = "4.2.0"; 9321 + src = fetchurl { 9322 + url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz"; 9323 + sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz"; 9324 + }; 9325 + }; 9326 + "boom-4.3.1" = { 9327 + name = "boom"; 9328 + packageName = "boom"; 9329 + version = "4.3.1"; 9330 + src = fetchurl { 9331 + url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz"; 9332 + sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31"; 9333 + }; 9334 + }; 9335 + "cryptiles-3.1.2" = { 9336 + name = "cryptiles"; 9337 + packageName = "cryptiles"; 9338 + version = "3.1.2"; 9339 + src = fetchurl { 9340 + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz"; 9341 + sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"; 9342 + }; 9343 + }; 9344 + "sntp-2.0.2" = { 9345 + name = "sntp"; 9346 + packageName = "sntp"; 9347 + version = "2.0.2"; 9348 + src = fetchurl { 9349 + url = "https://registry.npmjs.org/sntp/-/sntp-2.0.2.tgz"; 9350 + sha1 = "5064110f0af85f7cfdb7d6b67a40028ce52b4b2b"; 9351 + }; 9352 + }; 9353 + "boom-5.2.0" = { 9354 + name = "boom"; 9355 + packageName = "boom"; 9356 + version = "5.2.0"; 9357 + src = fetchurl { 9358 + url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz"; 9359 + sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437"; 9360 + }; 9361 + }; 9074 9362 "auto-bind-1.1.0" = { 9075 9363 name = "auto-bind"; 9076 9364 packageName = "auto-bind"; ··· 9089 9377 sha1 = "51b17574fc682588e2dd295cfa6e6aa109eab5ee"; 9090 9378 }; 9091 9379 }; 9092 - "conf-1.2.0" = { 9380 + "conf-1.3.0" = { 9093 9381 name = "conf"; 9094 9382 packageName = "conf"; 9095 - version = "1.2.0"; 9383 + version = "1.3.0"; 9096 9384 src = fetchurl { 9097 - url = "https://registry.npmjs.org/conf/-/conf-1.2.0.tgz"; 9098 - sha512 = "1sxfpzqlcpjj6cndz2h78xa9y8z5k9hw7nb7d1whd0044l78b2dqs93k9bfksqbn6s7vp472rk4w3qgggn58mraycs143pr6hh1zszl"; 9385 + url = "https://registry.npmjs.org/conf/-/conf-1.3.0.tgz"; 9386 + sha512 = "21wa83v253mikyav1r639cnmycyribfhr6d4kzmzhgcs8l1ahn6mb37lmr3wnzjrca53f52w30p5ccxhm58zh1lmr01naf0kb3fc2qh"; 9099 9387 }; 9100 9388 }; 9101 9389 "got-7.1.0" = { ··· 9458 9746 sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 9459 9747 }; 9460 9748 }; 9461 - "babel-core-6.26.0" = { 9462 - name = "babel-core"; 9463 - packageName = "babel-core"; 9464 - version = "6.26.0"; 9465 - src = fetchurl { 9466 - url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz"; 9467 - sha1 = "af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"; 9468 - }; 9469 - }; 9470 9749 "babel-plugin-transform-es2015-destructuring-6.23.0" = { 9471 9750 name = "babel-plugin-transform-es2015-destructuring"; 9472 9751 packageName = "babel-plugin-transform-es2015-destructuring"; ··· 9521 9800 sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; 9522 9801 }; 9523 9802 }; 9524 - "babel-code-frame-6.26.0" = { 9525 - name = "babel-code-frame"; 9526 - packageName = "babel-code-frame"; 9527 - version = "6.26.0"; 9528 - src = fetchurl { 9529 - url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; 9530 - sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; 9531 - }; 9532 - }; 9533 - "babel-generator-6.26.0" = { 9534 - name = "babel-generator"; 9535 - packageName = "babel-generator"; 9536 - version = "6.26.0"; 9537 - src = fetchurl { 9538 - url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz"; 9539 - sha1 = "ac1ae20070b79f6e3ca1d3269613053774f20dc5"; 9540 - }; 9541 - }; 9542 - "babel-helpers-6.24.1" = { 9543 - name = "babel-helpers"; 9544 - packageName = "babel-helpers"; 9545 - version = "6.24.1"; 9546 - src = fetchurl { 9547 - url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz"; 9548 - sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2"; 9549 - }; 9550 - }; 9551 - "babel-messages-6.23.0" = { 9552 - name = "babel-messages"; 9553 - packageName = "babel-messages"; 9554 - version = "6.23.0"; 9555 - src = fetchurl { 9556 - url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"; 9557 - sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e"; 9558 - }; 9559 - }; 9560 - "babel-register-6.26.0" = { 9561 - name = "babel-register"; 9562 - packageName = "babel-register"; 9563 - version = "6.26.0"; 9564 - src = fetchurl { 9565 - url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz"; 9566 - sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071"; 9567 - }; 9568 - }; 9569 - "babel-runtime-6.26.0" = { 9570 - name = "babel-runtime"; 9571 - packageName = "babel-runtime"; 9572 - version = "6.26.0"; 9573 - src = fetchurl { 9574 - url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; 9575 - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 9576 - }; 9577 - }; 9578 - "babel-template-6.26.0" = { 9579 - name = "babel-template"; 9580 - packageName = "babel-template"; 9581 - version = "6.26.0"; 9582 - src = fetchurl { 9583 - url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz"; 9584 - sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02"; 9585 - }; 9586 - }; 9587 - "babel-traverse-6.26.0" = { 9588 - name = "babel-traverse"; 9589 - packageName = "babel-traverse"; 9590 - version = "6.26.0"; 9591 - src = fetchurl { 9592 - url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz"; 9593 - sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"; 9594 - }; 9595 - }; 9596 - "babel-types-6.26.0" = { 9597 - name = "babel-types"; 9598 - packageName = "babel-types"; 9599 - version = "6.26.0"; 9600 - src = fetchurl { 9601 - url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz"; 9602 - sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497"; 9603 - }; 9604 - }; 9605 - "babylon-6.18.0" = { 9606 - name = "babylon"; 9607 - packageName = "babylon"; 9608 - version = "6.18.0"; 9609 - src = fetchurl { 9610 - url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz"; 9611 - sha512 = "1qk460vyxfs08g8586jdc02wqzyy2y06596qcn1na9bz7yxra6vgh6177qf345xai0virpaz56bkpgmfcrd8yx5l2vjkn49y66h9xdb"; 9612 - }; 9613 - }; 9614 - "convert-source-map-1.5.0" = { 9615 - name = "convert-source-map"; 9616 - packageName = "convert-source-map"; 9617 - version = "1.5.0"; 9618 - src = fetchurl { 9619 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz"; 9620 - sha1 = "9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"; 9621 - }; 9622 - }; 9623 - "json5-0.5.1" = { 9624 - name = "json5"; 9625 - packageName = "json5"; 9626 - version = "0.5.1"; 9627 - src = fetchurl { 9628 - url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"; 9629 - sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; 9630 - }; 9631 - }; 9632 - "private-0.1.7" = { 9633 - name = "private"; 9634 - packageName = "private"; 9635 - version = "0.1.7"; 9636 - src = fetchurl { 9637 - url = "https://registry.npmjs.org/private/-/private-0.1.7.tgz"; 9638 - sha1 = "68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"; 9639 - }; 9640 - }; 9641 - "esutils-2.0.2" = { 9642 - name = "esutils"; 9643 - packageName = "esutils"; 9644 - version = "2.0.2"; 9645 - src = fetchurl { 9646 - url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz"; 9647 - sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; 9648 - }; 9649 - }; 9650 - "js-tokens-3.0.2" = { 9651 - name = "js-tokens"; 9652 - packageName = "js-tokens"; 9653 - version = "3.0.2"; 9654 - src = fetchurl { 9655 - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"; 9656 - sha1 = "9866df395102130e38f7f996bceb65443209c25b"; 9657 - }; 9658 - }; 9659 - "detect-indent-4.0.0" = { 9660 - name = "detect-indent"; 9661 - packageName = "detect-indent"; 9662 - version = "4.0.0"; 9663 - src = fetchurl { 9664 - url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"; 9665 - sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; 9666 - }; 9667 - }; 9668 - "jsesc-1.3.0" = { 9669 - name = "jsesc"; 9670 - packageName = "jsesc"; 9671 - version = "1.3.0"; 9672 - src = fetchurl { 9673 - url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; 9674 - sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; 9675 - }; 9676 - }; 9677 - "trim-right-1.0.1" = { 9678 - name = "trim-right"; 9679 - packageName = "trim-right"; 9680 - version = "1.0.1"; 9681 - src = fetchurl { 9682 - url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz"; 9683 - sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; 9684 - }; 9685 - }; 9686 - "core-js-2.5.1" = { 9687 - name = "core-js"; 9688 - packageName = "core-js"; 9689 - version = "2.5.1"; 9690 - src = fetchurl { 9691 - url = "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz"; 9692 - sha1 = "ae6874dc66937789b80754ff5428df66819ca50b"; 9693 - }; 9694 - }; 9695 - "home-or-tmp-2.0.0" = { 9696 - name = "home-or-tmp"; 9697 - packageName = "home-or-tmp"; 9698 - version = "2.0.0"; 9699 - src = fetchurl { 9700 - url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; 9701 - sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; 9702 - }; 9703 - }; 9704 - "source-map-support-0.4.17" = { 9705 - name = "source-map-support"; 9706 - packageName = "source-map-support"; 9707 - version = "0.4.17"; 9708 - src = fetchurl { 9709 - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.17.tgz"; 9710 - sha512 = "170xri02n6vla7f8xny3qcmnmf533i535i5k2as1nzcpsb36f6s0laj95k11h2jhc97lf9zsp8y7dmmkxwfgdh02xs3ajh53w53aiyz"; 9711 - }; 9712 - }; 9713 - "regenerator-runtime-0.11.0" = { 9714 - name = "regenerator-runtime"; 9715 - packageName = "regenerator-runtime"; 9716 - version = "0.11.0"; 9717 - src = fetchurl { 9718 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz"; 9719 - sha512 = "3a1pn2aankj443h5v8png8dbgrlyb7fcdn66vjglxwqvdpivpq959qsl2n44i6zwf1k5y6y23xwhim0x077yy275dyr6vwiny83987x"; 9720 - }; 9721 - }; 9722 - "globals-9.18.0" = { 9723 - name = "globals"; 9724 - packageName = "globals"; 9725 - version = "9.18.0"; 9726 - src = fetchurl { 9727 - url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz"; 9728 - sha512 = "18psd5ig23apaw07k4mma3z1hi2ndfwsqkm05hxashnf5lf7mpfs6kjiircc0x3x3q15j2x2j4zfzsqacxvfsmw40zjchn44bfccjab"; 9729 - }; 9730 - }; 9731 - "invariant-2.2.2" = { 9732 - name = "invariant"; 9733 - packageName = "invariant"; 9734 - version = "2.2.2"; 9735 - src = fetchurl { 9736 - url = "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz"; 9737 - sha1 = "9e1f56ac0acdb6bf303306f338be3b204ae60360"; 9738 - }; 9739 - }; 9740 - "loose-envify-1.3.1" = { 9741 - name = "loose-envify"; 9742 - packageName = "loose-envify"; 9743 - version = "1.3.1"; 9744 - src = fetchurl { 9745 - url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz"; 9746 - sha1 = "d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"; 9747 - }; 9748 - }; 9749 - "to-fast-properties-1.0.3" = { 9750 - name = "to-fast-properties"; 9751 - packageName = "to-fast-properties"; 9752 - version = "1.0.3"; 9753 - src = fetchurl { 9754 - url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"; 9755 - sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; 9756 - }; 9757 - }; 9758 9803 "babel-plugin-syntax-object-rest-spread-6.13.0" = { 9759 9804 name = "babel-plugin-syntax-object-rest-spread"; 9760 9805 packageName = "babel-plugin-syntax-object-rest-spread"; ··· 9989 10034 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 9990 10035 }; 9991 10036 }; 9992 - "fbjs-0.8.14" = { 10037 + "fbjs-0.8.15" = { 9993 10038 name = "fbjs"; 9994 10039 packageName = "fbjs"; 9995 - version = "0.8.14"; 10040 + version = "0.8.15"; 9996 10041 src = fetchurl { 9997 - url = "https://registry.npmjs.org/fbjs/-/fbjs-0.8.14.tgz"; 9998 - sha1 = "d1dbe2be254c35a91e09f31f9cd50a40b2a0ed1c"; 10042 + url = "https://registry.npmjs.org/fbjs/-/fbjs-0.8.15.tgz"; 10043 + sha1 = "4f0695fdfcc16c37c0b07facec8cb4c4091685b9"; 9999 10044 }; 10000 10045 }; 10001 10046 "core-js-1.2.7" = { ··· 10034 10079 sha1 = "110d53fa4c3f326c121292bbeac904d2e03387ca"; 10035 10080 }; 10036 10081 }; 10037 - "node-fetch-1.7.2" = { 10082 + "node-fetch-1.7.3" = { 10038 10083 name = "node-fetch"; 10039 10084 packageName = "node-fetch"; 10040 - version = "1.7.2"; 10085 + version = "1.7.3"; 10041 10086 src = fetchurl { 10042 - url = "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.2.tgz"; 10043 - sha512 = "250k1k343w8g1ndd16h1lqcdvp989id6agsppfqi9a6lcqk89ga56xjz78hhy1dqn86vha8n8s551pwpyd1n87mkw4a7143djmm95n5"; 10087 + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz"; 10088 + sha512 = "0lz5m15w7qaks0a0s3dm0crsjrsd123dy00pn6qwcp50zfjykxkp22i5ymh6smlc0ags38nmdxlxw9yyq509azlv8kcdvdiq857h5in"; 10044 10089 }; 10045 10090 }; 10046 10091 "whatwg-fetch-2.0.3" = { ··· 10061 10106 sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb"; 10062 10107 }; 10063 10108 }; 10064 - "iconv-lite-0.4.18" = { 10109 + "iconv-lite-0.4.19" = { 10065 10110 name = "iconv-lite"; 10066 10111 packageName = "iconv-lite"; 10067 - version = "0.4.18"; 10112 + version = "0.4.19"; 10068 10113 src = fetchurl { 10069 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz"; 10070 - sha512 = "2l97vd6kax8syr9aggcqhiyhd3b2rf506wdq6wapfrc74qwpdzqf2a3891kq9ri3g5sdzayph2sz4zkr8kbbps58z9h2lvpk115kgdj"; 10114 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz"; 10115 + sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1"; 10071 10116 }; 10072 10117 }; 10073 10118 "unicode-emoji-modifier-base-1.0.0" = { ··· 10079 10124 sha1 = "dbbd5b54ba30f287e2a8d5a249da6c0cef369459"; 10080 10125 }; 10081 10126 }; 10082 - "ajv-5.2.2" = { 10083 - name = "ajv"; 10084 - packageName = "ajv"; 10085 - version = "5.2.2"; 10127 + "debug-3.0.1" = { 10128 + name = "debug"; 10129 + packageName = "debug"; 10130 + version = "3.0.1"; 10086 10131 src = fetchurl { 10087 - url = "https://registry.npmjs.org/ajv/-/ajv-5.2.2.tgz"; 10088 - sha1 = "47c68d69e86f5d953103b0074a9430dc63da5e39"; 10132 + url = "https://registry.npmjs.org/debug/-/debug-3.0.1.tgz"; 10133 + sha512 = "3rnqa9m5ma6whhiailgppfhnm4gkv4brw9619yvxz59di3g306svl7na9qj6n9l887ra3fgr80b0xij0vjvfwpbk9zvpags5plmqxga"; 10089 10134 }; 10090 10135 }; 10091 10136 "doctrine-2.0.0" = { ··· 10106 10151 sha1 = "3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"; 10107 10152 }; 10108 10153 }; 10109 - "espree-3.5.0" = { 10154 + "espree-3.5.1" = { 10110 10155 name = "espree"; 10111 10156 packageName = "espree"; 10112 - version = "3.5.0"; 10157 + version = "3.5.1"; 10113 10158 src = fetchurl { 10114 - url = "https://registry.npmjs.org/espree/-/espree-3.5.0.tgz"; 10115 - sha1 = "98358625bdd055861ea27e2867ea729faf463d8d"; 10159 + url = "https://registry.npmjs.org/espree/-/espree-3.5.1.tgz"; 10160 + sha1 = "0c988b8ab46db53100a1954ae4ba995ddd27d87e"; 10116 10161 }; 10117 10162 }; 10118 10163 "esquery-1.0.0" = { ··· 10160 10205 sha512 = "07qdg1b3fwg8b7zwq83rljcx2h0ybq8s43h5xkvsr252qij7ib2gcjamqsb25zv1nvxm94yrvf4fl41s1kyms8zhr86cspwcbggvc94"; 10161 10206 }; 10162 10207 }; 10163 - "inquirer-3.2.3" = { 10208 + "inquirer-3.3.0" = { 10164 10209 name = "inquirer"; 10165 10210 packageName = "inquirer"; 10166 - version = "3.2.3"; 10211 + version = "3.3.0"; 10167 10212 src = fetchurl { 10168 - url = "https://registry.npmjs.org/inquirer/-/inquirer-3.2.3.tgz"; 10169 - sha512 = "1dncd0lws3fdvpgxzhi7y4lcfijrnhphn9bzxlhdl3c2aifqff1v6c6i85niwg9fim26ja1x0d6rfgy5g1dgqyh86g363d955pcmk85"; 10213 + url = "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz"; 10214 + sha512 = "1wsmzzva3rfjb4bfks7ba2nvha9ziwgq2kag6xxibc5cc6mz19xbgj4fm3a7ghvfbfx4am0x13ibc8j2s5m3sv12nph44rq56gnvv47"; 10170 10215 }; 10171 10216 }; 10172 10217 "is-resolvable-1.0.0" = { ··· 10178 10223 sha1 = "8df57c61ea2e3c501408d100fb013cf8d6e0cc62"; 10179 10224 }; 10180 10225 }; 10181 - "js-yaml-3.9.1" = { 10226 + "js-yaml-3.10.0" = { 10182 10227 name = "js-yaml"; 10183 10228 packageName = "js-yaml"; 10184 - version = "3.9.1"; 10229 + version = "3.10.0"; 10185 10230 src = fetchurl { 10186 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.1.tgz"; 10187 - sha512 = "31wxw267vdf4nnjpksnzcb4i603366sjrw7g08bkxi3cwlrfl67458v7rvj72vbxcycq43z4ldkrfvqjrsvrjqrb2kfzmabpzghddq9"; 10231 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz"; 10232 + sha512 = "0h26sq1bwxc45bm0hvlcadrbk4bizzaw729wvw690ya7mpys45bqfzdqwhjkdrnq0i44dzxckykz4bix22jfdyfg1asybg3yzczjsrv"; 10188 10233 }; 10189 10234 }; 10190 10235 "levn-0.3.0" = { ··· 10214 10259 sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64"; 10215 10260 }; 10216 10261 }; 10217 - "pluralize-4.0.0" = { 10262 + "pluralize-7.0.0" = { 10218 10263 name = "pluralize"; 10219 10264 packageName = "pluralize"; 10220 - version = "4.0.0"; 10265 + version = "7.0.0"; 10221 10266 src = fetchurl { 10222 - url = "https://registry.npmjs.org/pluralize/-/pluralize-4.0.0.tgz"; 10223 - sha1 = "59b708c1c0190a2f692f1c7618c446b052fd1762"; 10267 + url = "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz"; 10268 + sha512 = "2ihaln20qjx82jx73wgzirbyp8mfmhxr75am1h0w8n5hy2gsbgvw9dricv7h57ycxzax84bma96wjscmdszs5mr2lsyxpfjvhwl2601"; 10224 10269 }; 10225 10270 }; 10226 10271 "progress-2.0.0" = { ··· 10248 10293 src = fetchurl { 10249 10294 url = "https://registry.npmjs.org/table/-/table-4.0.1.tgz"; 10250 10295 sha1 = "a8116c133fac2c61f4a420ab6cdf5c4d61f0e435"; 10251 - }; 10252 - }; 10253 - "fast-deep-equal-1.0.0" = { 10254 - name = "fast-deep-equal"; 10255 - packageName = "fast-deep-equal"; 10256 - version = "1.0.0"; 10257 - src = fetchurl { 10258 - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz"; 10259 - sha1 = "96256a3bc975595eb36d82e9929d060d893439ff"; 10260 - }; 10261 - }; 10262 - "json-schema-traverse-0.3.1" = { 10263 - name = "json-schema-traverse"; 10264 - packageName = "json-schema-traverse"; 10265 - version = "0.3.1"; 10266 - src = fetchurl { 10267 - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz"; 10268 - sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340"; 10269 10296 }; 10270 10297 }; 10271 10298 "esrecurse-4.2.0" = { ··· 10385 10412 sha1 = "fc06e5a1683fbda13de667aff717bbc10a48f37f"; 10386 10413 }; 10387 10414 }; 10415 + "ansi-escapes-3.0.0" = { 10416 + name = "ansi-escapes"; 10417 + packageName = "ansi-escapes"; 10418 + version = "3.0.0"; 10419 + src = fetchurl { 10420 + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz"; 10421 + sha512 = "06szfav8g7xywvqsis16nnkjqs2snhv37r4m53l1ax8k2sahvqv9id2klam32jajqd08ylw8g9wbcjr971igx6vh8idan76drrjby9v"; 10422 + }; 10423 + }; 10388 10424 "cli-width-2.2.0" = { 10389 10425 name = "cli-width"; 10390 10426 packageName = "cli-width"; ··· 10394 10430 sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; 10395 10431 }; 10396 10432 }; 10397 - "external-editor-2.0.4" = { 10433 + "external-editor-2.0.5" = { 10398 10434 name = "external-editor"; 10399 10435 packageName = "external-editor"; 10400 - version = "2.0.4"; 10436 + version = "2.0.5"; 10401 10437 src = fetchurl { 10402 - url = "https://registry.npmjs.org/external-editor/-/external-editor-2.0.4.tgz"; 10403 - sha1 = "1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972"; 10438 + url = "https://registry.npmjs.org/external-editor/-/external-editor-2.0.5.tgz"; 10439 + sha512 = "3znpqavb7rxmw74p6hnq963agimzsm5r524jrpy9v6sbbhbbk77qhklgkr65jirq0a58lsz8jgvwy9q4wfmwl7ahj6nzrckhpmyij1j"; 10404 10440 }; 10405 10441 }; 10406 10442 "figures-2.0.0" = { ··· 10448 10484 sha512 = "3c44v9rz6j4z6i7gj2v3wmfcqv5i47psysgd1p4jcgz114vfk99fif1n1r08jbsdkp4g3smv1wx7x4ikwa7q9dp5i1bc77la17s2kdw"; 10449 10485 }; 10450 10486 }; 10451 - "tmp-0.0.31" = { 10487 + "tmp-0.0.33" = { 10452 10488 name = "tmp"; 10453 10489 packageName = "tmp"; 10454 - version = "0.0.31"; 10490 + version = "0.0.33"; 10455 10491 src = fetchurl { 10456 - url = "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz"; 10457 - sha1 = "8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7"; 10492 + url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"; 10493 + sha512 = "0drg2bck1cj8677rgs1l98v7vqaxawcqh6ja87qilwnd719l5y0lzv5ssn3pcwa37fdbg4188y6x15a90vkllyvfpd9v7fai2b8j44d"; 10458 10494 }; 10459 10495 }; 10460 10496 "is-promise-2.1.0" = { ··· 10565 10601 sha1 = "afab96262910a7f33c19a5775825c69f34e350ca"; 10566 10602 }; 10567 10603 }; 10604 + "ajv-4.11.8" = { 10605 + name = "ajv"; 10606 + packageName = "ajv"; 10607 + version = "4.11.8"; 10608 + src = fetchurl { 10609 + url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; 10610 + sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; 10611 + }; 10612 + }; 10568 10613 "ajv-keywords-1.5.1" = { 10569 10614 name = "ajv-keywords"; 10570 10615 packageName = "ajv-keywords"; ··· 10583 10628 sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; 10584 10629 }; 10585 10630 }; 10586 - "eslint-4.6.1" = { 10631 + "eslint-4.7.2" = { 10587 10632 name = "eslint"; 10588 10633 packageName = "eslint"; 10589 - version = "4.6.1"; 10634 + version = "4.7.2"; 10590 10635 src = fetchurl { 10591 - url = "https://registry.npmjs.org/eslint/-/eslint-4.6.1.tgz"; 10592 - sha1 = "ddc7fc7fd70bf93205b0b3449bb16a1e9e7d4950"; 10636 + url = "https://registry.npmjs.org/eslint/-/eslint-4.7.2.tgz"; 10637 + sha1 = "ff6f5f5193848a27ee9b627be3e73fb9cb5e662e"; 10593 10638 }; 10594 10639 }; 10595 10640 "supports-color-3.2.3" = { ··· 10718 10763 sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; 10719 10764 }; 10720 10765 }; 10766 + "request-2.81.0" = { 10767 + name = "request"; 10768 + packageName = "request"; 10769 + version = "2.81.0"; 10770 + src = fetchurl { 10771 + url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; 10772 + sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; 10773 + }; 10774 + }; 10721 10775 "request-progress-2.0.1" = { 10722 10776 name = "request-progress"; 10723 10777 packageName = "request-progress"; ··· 10781 10835 sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50"; 10782 10836 }; 10783 10837 }; 10838 + "har-validator-4.2.1" = { 10839 + name = "har-validator"; 10840 + packageName = "har-validator"; 10841 + version = "4.2.1"; 10842 + src = fetchurl { 10843 + url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; 10844 + sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; 10845 + }; 10846 + }; 10847 + "performance-now-0.2.0" = { 10848 + name = "performance-now"; 10849 + packageName = "performance-now"; 10850 + version = "0.2.0"; 10851 + src = fetchurl { 10852 + url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; 10853 + sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; 10854 + }; 10855 + }; 10856 + "qs-6.4.0" = { 10857 + name = "qs"; 10858 + packageName = "qs"; 10859 + version = "6.4.0"; 10860 + src = fetchurl { 10861 + url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; 10862 + sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; 10863 + }; 10864 + }; 10865 + "har-schema-1.0.5" = { 10866 + name = "har-schema"; 10867 + packageName = "har-schema"; 10868 + version = "1.0.5"; 10869 + src = fetchurl { 10870 + url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; 10871 + sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; 10872 + }; 10873 + }; 10784 10874 "throttleit-1.0.0" = { 10785 10875 name = "throttleit"; 10786 10876 packageName = "throttleit"; ··· 10806 10896 src = fetchurl { 10807 10897 url = "https://registry.npmjs.org/node-phantom-simple/-/node-phantom-simple-2.2.4.tgz"; 10808 10898 sha1 = "4fc4effbb02f241fb5082bd4fbab398e4aecb64d"; 10899 + }; 10900 + }; 10901 + "tmp-0.0.31" = { 10902 + name = "tmp"; 10903 + packageName = "tmp"; 10904 + version = "0.0.31"; 10905 + src = fetchurl { 10906 + url = "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz"; 10907 + sha1 = "8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7"; 10809 10908 }; 10810 10909 }; 10811 10910 "glob-3.2.11" = { ··· 11103 11202 src = fetchurl { 11104 11203 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"; 11105 11204 sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0"; 11205 + }; 11206 + }; 11207 + "kind-of-3.2.2" = { 11208 + name = "kind-of"; 11209 + packageName = "kind-of"; 11210 + version = "3.2.2"; 11211 + src = fetchurl { 11212 + url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"; 11213 + sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; 11106 11214 }; 11107 11215 }; 11108 11216 "object.omit-2.0.1" = { ··· 11204 11312 sha512 = "2is2kipfnz3hl4yxgqk07rll6956cq3zzf9cddai3f0lij5acq76v98qv14qkpljh1pqfsyb8p69xa9cyaww6p0j91s4vc9zj6594hg"; 11205 11313 }; 11206 11314 }; 11315 + "repeat-string-1.6.1" = { 11316 + name = "repeat-string"; 11317 + packageName = "repeat-string"; 11318 + version = "1.6.1"; 11319 + src = fetchurl { 11320 + url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"; 11321 + sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 11322 + }; 11323 + }; 11207 11324 "is-number-3.0.0" = { 11208 11325 name = "is-number"; 11209 11326 packageName = "is-number"; ··· 11321 11438 sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"; 11322 11439 }; 11323 11440 }; 11324 - "node-pre-gyp-0.6.36" = { 11441 + "node-pre-gyp-0.6.37" = { 11325 11442 name = "node-pre-gyp"; 11326 11443 packageName = "node-pre-gyp"; 11327 - version = "0.6.36"; 11444 + version = "0.6.37"; 11328 11445 src = fetchurl { 11329 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; 11330 - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; 11446 + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz"; 11447 + sha1 = "3c872b236b2e266e4140578fe1ee88f693323a05"; 11331 11448 }; 11332 11449 }; 11333 11450 "npmlog-4.1.2" = { ··· 11337 11454 src = fetchurl { 11338 11455 url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"; 11339 11456 sha512 = "2967mavp7zw0aawf5fadqf4pmn7vy5gya1yx2s9wwppvivhd9q4mpdnszfqvd7p6yks649bwbpj8iviw86g0hpp4f93d5ca7dmjmrfs"; 11457 + }; 11458 + }; 11459 + "tape-4.8.0" = { 11460 + name = "tape"; 11461 + packageName = "tape"; 11462 + version = "4.8.0"; 11463 + src = fetchurl { 11464 + url = "https://registry.npmjs.org/tape/-/tape-4.8.0.tgz"; 11465 + sha512 = "026x60jpvkdwfvbd6gls76zjj3yiqfz4cg9imi80r25zdziaiy87jkpw9mwbrbg9k2xc4nsn9yzk90pgkgybdspk0yb4fzg95y0nqjd"; 11340 11466 }; 11341 11467 }; 11342 11468 "tar-pack-3.4.0" = { ··· 11375 11501 sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 11376 11502 }; 11377 11503 }; 11378 - "aproba-1.1.2" = { 11504 + "aproba-1.2.0" = { 11379 11505 name = "aproba"; 11380 11506 packageName = "aproba"; 11381 - version = "1.1.2"; 11507 + version = "1.2.0"; 11382 11508 src = fetchurl { 11383 - url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz"; 11384 - sha512 = "0zmgm7vf91vxk5hdvkwhfnzjxz9r6hwpn8dlbpasaax8rxx7z1qqdmh8l631vawj7y1bkpsd0v0mhjh9agggkjl72f3vlnfhy61m5k6"; 11509 + url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; 11510 + sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3"; 11385 11511 }; 11386 11512 }; 11387 11513 "string-width-1.0.2" = { ··· 11402 11528 sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a"; 11403 11529 }; 11404 11530 }; 11531 + "for-each-0.3.2" = { 11532 + name = "for-each"; 11533 + packageName = "for-each"; 11534 + version = "0.3.2"; 11535 + src = fetchurl { 11536 + url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz"; 11537 + sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4"; 11538 + }; 11539 + }; 11540 + "object-inspect-1.3.0" = { 11541 + name = "object-inspect"; 11542 + packageName = "object-inspect"; 11543 + version = "1.3.0"; 11544 + src = fetchurl { 11545 + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.3.0.tgz"; 11546 + sha512 = "1302hkgbynr48i0h4n5psz3ln624f8516qh68kpah1ziczyg8vpyfxws5x6iazncaw5jgg9bp19pgbfl4n4gjb9z0z96pnd08pffw9q"; 11547 + }; 11548 + }; 11549 + "resumer-0.0.0" = { 11550 + name = "resumer"; 11551 + packageName = "resumer"; 11552 + version = "0.0.0"; 11553 + src = fetchurl { 11554 + url = "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz"; 11555 + sha1 = "f1e8f461e4064ba39e82af3cdc2a8c893d076759"; 11556 + }; 11557 + }; 11558 + "string.prototype.trim-1.1.2" = { 11559 + name = "string.prototype.trim"; 11560 + packageName = "string.prototype.trim"; 11561 + version = "1.1.2"; 11562 + src = fetchurl { 11563 + url = "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz"; 11564 + sha1 = "d04de2c89e137f4d7d206f086b5ed2fae6be8cea"; 11565 + }; 11566 + }; 11567 + "is-function-1.0.1" = { 11568 + name = "is-function"; 11569 + packageName = "is-function"; 11570 + version = "1.0.1"; 11571 + src = fetchurl { 11572 + url = "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz"; 11573 + sha1 = "12cfb98b65b57dd3d193a3121f5f6e2f437602b5"; 11574 + }; 11575 + }; 11576 + "define-properties-1.1.2" = { 11577 + name = "define-properties"; 11578 + packageName = "define-properties"; 11579 + version = "1.1.2"; 11580 + src = fetchurl { 11581 + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz"; 11582 + sha1 = "83a73f2fea569898fb737193c8f873caf6d45c94"; 11583 + }; 11584 + }; 11585 + "es-abstract-1.8.2" = { 11586 + name = "es-abstract"; 11587 + packageName = "es-abstract"; 11588 + version = "1.8.2"; 11589 + src = fetchurl { 11590 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.8.2.tgz"; 11591 + sha512 = "0cz5pzkb9xh1askig7mrv990raaa1pym6a8acyyjw405bnzdznck7q9qg2rcybwjq866i6226nq6mijn6kwg5n36r6hr3gjpla71y3n"; 11592 + }; 11593 + }; 11594 + "es-to-primitive-1.1.1" = { 11595 + name = "es-to-primitive"; 11596 + packageName = "es-to-primitive"; 11597 + version = "1.1.1"; 11598 + src = fetchurl { 11599 + url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz"; 11600 + sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d"; 11601 + }; 11602 + }; 11603 + "is-callable-1.1.3" = { 11604 + name = "is-callable"; 11605 + packageName = "is-callable"; 11606 + version = "1.1.3"; 11607 + src = fetchurl { 11608 + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz"; 11609 + sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2"; 11610 + }; 11611 + }; 11612 + "is-regex-1.0.4" = { 11613 + name = "is-regex"; 11614 + packageName = "is-regex"; 11615 + version = "1.0.4"; 11616 + src = fetchurl { 11617 + url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz"; 11618 + sha1 = "5517489b547091b0930e095654ced25ee97e9491"; 11619 + }; 11620 + }; 11621 + "is-date-object-1.0.1" = { 11622 + name = "is-date-object"; 11623 + packageName = "is-date-object"; 11624 + version = "1.0.1"; 11625 + src = fetchurl { 11626 + url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz"; 11627 + sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; 11628 + }; 11629 + }; 11630 + "is-symbol-1.0.1" = { 11631 + name = "is-symbol"; 11632 + packageName = "is-symbol"; 11633 + version = "1.0.1"; 11634 + src = fetchurl { 11635 + url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz"; 11636 + sha1 = "3cc59f00025194b6ab2e38dbae6689256b660572"; 11637 + }; 11638 + }; 11405 11639 "event-stream-0.5.3" = { 11406 11640 name = "event-stream"; 11407 11641 packageName = "event-stream"; ··· 11472 11706 src = fetchurl { 11473 11707 url = "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz"; 11474 11708 sha1 = "f35eea7d705e933baf13b2f03b3f83d921403b3e"; 11475 - }; 11476 - }; 11477 - "resumer-0.0.0" = { 11478 - name = "resumer"; 11479 - packageName = "resumer"; 11480 - version = "0.0.0"; 11481 - src = fetchurl { 11482 - url = "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz"; 11483 - sha1 = "f1e8f461e4064ba39e82af3cdc2a8c893d076759"; 11484 11709 }; 11485 11710 }; 11486 11711 "lodash.groupby-4.6.0" = { ··· 11781 12006 sha1 = "c90941ad59e4273328923074d2cf2e7cbc6ec0d9"; 11782 12007 }; 11783 12008 }; 12009 + "yargs-3.10.0" = { 12010 + name = "yargs"; 12011 + packageName = "yargs"; 12012 + version = "3.10.0"; 12013 + src = fetchurl { 12014 + url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; 12015 + sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; 12016 + }; 12017 + }; 12018 + "uglify-to-browserify-1.0.2" = { 12019 + name = "uglify-to-browserify"; 12020 + packageName = "uglify-to-browserify"; 12021 + version = "1.0.2"; 12022 + src = fetchurl { 12023 + url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz"; 12024 + sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7"; 12025 + }; 12026 + }; 12027 + "camelcase-1.2.1" = { 12028 + name = "camelcase"; 12029 + packageName = "camelcase"; 12030 + version = "1.2.1"; 12031 + src = fetchurl { 12032 + url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"; 12033 + sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"; 12034 + }; 12035 + }; 12036 + "cliui-2.1.0" = { 12037 + name = "cliui"; 12038 + packageName = "cliui"; 12039 + version = "2.1.0"; 12040 + src = fetchurl { 12041 + url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz"; 12042 + sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1"; 12043 + }; 12044 + }; 12045 + "window-size-0.1.0" = { 12046 + name = "window-size"; 12047 + packageName = "window-size"; 12048 + version = "0.1.0"; 12049 + src = fetchurl { 12050 + url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz"; 12051 + sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; 12052 + }; 12053 + }; 12054 + "center-align-0.1.3" = { 12055 + name = "center-align"; 12056 + packageName = "center-align"; 12057 + version = "0.1.3"; 12058 + src = fetchurl { 12059 + url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"; 12060 + sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad"; 12061 + }; 12062 + }; 12063 + "right-align-0.1.3" = { 12064 + name = "right-align"; 12065 + packageName = "right-align"; 12066 + version = "0.1.3"; 12067 + src = fetchurl { 12068 + url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz"; 12069 + sha1 = "61339b722fe6a3515689210d24e14c96148613ef"; 12070 + }; 12071 + }; 12072 + "align-text-0.1.4" = { 12073 + name = "align-text"; 12074 + packageName = "align-text"; 12075 + version = "0.1.4"; 12076 + src = fetchurl { 12077 + url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz"; 12078 + sha1 = "0cd90a561093f35d0a99256c22b7069433fad117"; 12079 + }; 12080 + }; 12081 + "lazy-cache-1.0.4" = { 12082 + name = "lazy-cache"; 12083 + packageName = "lazy-cache"; 12084 + version = "1.0.4"; 12085 + src = fetchurl { 12086 + url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz"; 12087 + sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"; 12088 + }; 12089 + }; 12090 + "longest-1.0.1" = { 12091 + name = "longest"; 12092 + packageName = "longest"; 12093 + version = "1.0.1"; 12094 + src = fetchurl { 12095 + url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz"; 12096 + sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; 12097 + }; 12098 + }; 11784 12099 "acorn-1.2.2" = { 11785 12100 name = "acorn"; 11786 12101 packageName = "acorn"; ··· 11916 12231 sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; 11917 12232 }; 11918 12233 }; 11919 - "dateformat-2.0.0" = { 12234 + "dateformat-2.2.0" = { 11920 12235 name = "dateformat"; 11921 12236 packageName = "dateformat"; 11922 - version = "2.0.0"; 12237 + version = "2.2.0"; 11923 12238 src = fetchurl { 11924 - url = "https://registry.npmjs.org/dateformat/-/dateformat-2.0.0.tgz"; 11925 - sha1 = "2743e3abb5c3fc2462e527dca445e04e9f4dee17"; 12239 + url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; 12240 + sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062"; 11926 12241 }; 11927 12242 }; 11928 12243 "fancy-log-1.3.0" = { ··· 12771 13086 sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"; 12772 13087 }; 12773 13088 }; 12774 - "@ionic/cli-utils-1.9.2" = { 13089 + "@ionic/cli-utils-1.10.2" = { 12775 13090 name = "@ionic/cli-utils"; 12776 13091 packageName = "@ionic/cli-utils"; 12777 - version = "1.9.2"; 13092 + version = "1.10.2"; 13093 + src = fetchurl { 13094 + url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-1.10.2.tgz"; 13095 + sha512 = "3nnaaxpbcfqhp3hdi5gqjllw11li8pmbcpbwixyfxly5sy6m7izid84a80azmd1hh2f3pv68n07qm3prznzvx495vnvw3qyaxg0hi6x"; 13096 + }; 13097 + }; 13098 + "@ionic/discover-0.3.1" = { 13099 + name = "@ionic/discover"; 13100 + packageName = "@ionic/discover"; 13101 + version = "0.3.1"; 12778 13102 src = fetchurl { 12779 - url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-1.9.2.tgz"; 12780 - sha512 = "0swmlwdlxhnfb2bvkzg5vw9jpmgccp0frivlyiadakn0b6v2h9g0nlmfnmfk7sy8hazxlpd8z986i94mnkc53j5c7dqlmjq9l1ff29x"; 13103 + url = "https://registry.npmjs.org/@ionic/discover/-/discover-0.3.1.tgz"; 13104 + sha512 = "35246ajg70xdrv5r5ln20m3b3h8gqa7gvmcraalmr5nk7pkmrldfr8cyscm9zrqpzpsjbbs2h2vdy0nh0ghlnyhiywry8ivxn7agk90"; 12781 13105 }; 12782 13106 }; 12783 13107 "opn-5.1.0" = { ··· 12807 13131 sha1 = "bc8004164691923a79fe8378bbeb3da2017538ec"; 12808 13132 }; 12809 13133 }; 12810 - "@types/gulp-3.8.33" = { 12811 - name = "@types/gulp"; 12812 - packageName = "@types/gulp"; 12813 - version = "3.8.33"; 12814 - src = fetchurl { 12815 - url = "https://registry.npmjs.org/@types/gulp/-/gulp-3.8.33.tgz"; 12816 - sha512 = "01i562c5pc602w3jnb960nqh7afknhjv3i9mjkqv7k4300prh61z27akxh6fzgk4nxiw9vx4h0r4ma09jyg3gzp6hf8sfqak7d40jnx"; 12817 - }; 12818 - }; 12819 13134 "archiver-2.0.3" = { 12820 13135 name = "archiver"; 12821 13136 packageName = "archiver"; ··· 12825 13140 sha1 = "b4360bb584af1437991942716f21d7c523d1dbbd"; 12826 13141 }; 12827 13142 }; 13143 + "body-parser-1.18.1" = { 13144 + name = "body-parser"; 13145 + packageName = "body-parser"; 13146 + version = "1.18.1"; 13147 + src = fetchurl { 13148 + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.1.tgz"; 13149 + sha512 = "1i2fmb5q1gy3zand1lmqbyamdg1iapbmy1wk9fr181fwcwjnsay1fvqkzbf9lx98mghlc061bhg15ymq4wm663qciparjxgj5kakg98"; 13150 + }; 13151 + }; 12828 13152 "ci-info-1.1.1" = { 12829 13153 name = "ci-info"; 12830 13154 packageName = "ci-info"; ··· 12897 13221 sha512 = "1xd3zsk02nck4y601rn98n8cicrphaw5bdix278mk1yizmjv9s0wpa6akcqggd7d99c55s3byf4ylqdxkshyfsfnfx7lvwbmq2b3siw"; 12898 13222 }; 12899 13223 }; 12900 - "ssh-config-1.1.0" = { 13224 + "ssh-config-1.1.1" = { 12901 13225 name = "ssh-config"; 12902 13226 packageName = "ssh-config"; 12903 - version = "1.1.0"; 13227 + version = "1.1.1"; 12904 13228 src = fetchurl { 12905 - url = "https://registry.npmjs.org/ssh-config/-/ssh-config-1.1.0.tgz"; 12906 - sha1 = "bbc7f92204a385b5dececec8f8b63be9c125079b"; 13229 + url = "https://registry.npmjs.org/ssh-config/-/ssh-config-1.1.1.tgz"; 13230 + sha512 = "34a8bmib45cxms67cjfwwwfaay3amvzj61ay7k7qj9lajxqb8qjp5m4ivn89pzcy1siiqxs47mmh63dsq2lrypjci2w9b4lp9cqpak4"; 12907 13231 }; 12908 13232 }; 12909 13233 "superagent-3.6.0" = { ··· 12924 13248 sha512 = "2b8y1xdv7szw0hvad64rghp2zdahs6qhx0k79c0s9xa0a35zbcrb9b9gywixhcxqi1c9ab7ah8ibra22k8baakh7rvmhf904d559g32"; 12925 13249 }; 12926 13250 }; 12927 - "@types/orchestrator-0.3.0" = { 12928 - name = "@types/orchestrator"; 12929 - packageName = "@types/orchestrator"; 12930 - version = "0.3.0"; 12931 - src = fetchurl { 12932 - url = "https://registry.npmjs.org/@types/orchestrator/-/orchestrator-0.3.0.tgz"; 12933 - sha1 = "bf84a1699c9330d4fe89cd81263e8fc09fb32978"; 12934 - }; 12935 - }; 12936 - "@types/vinyl-2.0.1" = { 12937 - name = "@types/vinyl"; 12938 - packageName = "@types/vinyl"; 12939 - version = "2.0.1"; 12940 - src = fetchurl { 12941 - url = "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.1.tgz"; 12942 - sha512 = "39di6nqjv2i8yqjq1zqyrlg237a9ma5npnggwq77qvj9rk982hzj5x04xq4y0j3bcj99vbfpqvydqph6975pb3bacgrmng7nxlrv2r6"; 12943 - }; 12944 - }; 12945 - "@types/q-0.0.37" = { 12946 - name = "@types/q"; 12947 - packageName = "@types/q"; 12948 - version = "0.0.37"; 13251 + "ws-3.2.0" = { 13252 + name = "ws"; 13253 + packageName = "ws"; 13254 + version = "3.2.0"; 12949 13255 src = fetchurl { 12950 - url = "https://registry.npmjs.org/@types/q/-/q-0.0.37.tgz"; 12951 - sha512 = "1jsz2sb10m3vshfy9k9k7zkmzcnlafp76ivzp04yf9xda3h7kv75vdxf82lfd17jzfwlm0n8cp1a4vkr43wcxsaj7zwqk6cbiglccdy"; 13256 + url = "https://registry.npmjs.org/ws/-/ws-3.2.0.tgz"; 13257 + sha512 = "1bj83dg7c5sca2v9cpzz4m83y9mm8icldvpk2c9sq3216cr6cn7qvfwhw9hq881nq7pii3xxbg8lz6g2p6223ililwkzzp68ndbfd45"; 12952 13258 }; 12953 13259 }; 12954 13260 "archiver-utils-1.3.0" = { ··· 13023 13329 sha1 = "9da1e980e3bd44fc5c93bf5ab3da3378d85e466b"; 13024 13330 }; 13025 13331 }; 13332 + "bytes-3.0.0" = { 13333 + name = "bytes"; 13334 + packageName = "bytes"; 13335 + version = "3.0.0"; 13336 + src = fetchurl { 13337 + url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"; 13338 + sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048"; 13339 + }; 13340 + }; 13341 + "raw-body-2.3.2" = { 13342 + name = "raw-body"; 13343 + packageName = "raw-body"; 13344 + version = "2.3.2"; 13345 + src = fetchurl { 13346 + url = "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz"; 13347 + sha1 = "bcd60c77d3eb93cde0050295c3f379389bc88f89"; 13348 + }; 13349 + }; 13026 13350 "sax-1.1.4" = { 13027 13351 name = "sax"; 13028 13352 packageName = "sax"; ··· 13185 13509 sha1 = "3569ede8ba34315fab99c3e92cb04c7220de1fa8"; 13186 13510 }; 13187 13511 }; 13512 + "async-limiter-1.0.0" = { 13513 + name = "async-limiter"; 13514 + packageName = "async-limiter"; 13515 + version = "1.0.0"; 13516 + src = fetchurl { 13517 + url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz"; 13518 + sha512 = "1ddib7nbyayhldvsyrfdpxk7khyi6s72570gkf3qqf4b1xwzdh52w0vlj6bknl40imispychhwfjb2bm29pjxbd5yz26fi8g8bfx7wf"; 13519 + }; 13520 + }; 13521 + "netmask-1.0.6" = { 13522 + name = "netmask"; 13523 + packageName = "netmask"; 13524 + version = "1.0.6"; 13525 + src = fetchurl { 13526 + url = "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz"; 13527 + sha1 = "20297e89d86f6f6400f250d9f4f6b4c1945fcd35"; 13528 + }; 13529 + }; 13188 13530 "is-wsl-1.1.0" = { 13189 13531 name = "is-wsl"; 13190 13532 packageName = "is-wsl"; ··· 13302 13644 sha1 = "30a3989642ee3e8ea06d10c2b9f9e046d424d8ed"; 13303 13645 }; 13304 13646 }; 13305 - "mz-2.6.0" = { 13647 + "mz-2.7.0" = { 13306 13648 name = "mz"; 13307 13649 packageName = "mz"; 13308 - version = "2.6.0"; 13650 + version = "2.7.0"; 13309 13651 src = fetchurl { 13310 - url = "https://registry.npmjs.org/mz/-/mz-2.6.0.tgz"; 13311 - sha1 = "c8b8521d958df0a4f2768025db69c719ee4ef1ce"; 13652 + url = "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz"; 13653 + sha512 = "3cpmwzmngnmxhklvicnsbl5dchvsy0yikzgf705cq1cplyps3waa03xbjp306bjf167wnplibwki0csnavz98dihq2877g7xqs4dkfg"; 13312 13654 }; 13313 13655 }; 13314 13656 "object-hash-1.1.8" = { ··· 13356 13698 sha1 = "3d38321828231e434f287514959c37a82b629f42"; 13357 13699 }; 13358 13700 }; 13359 - "vscode-jsonrpc-3.3.1" = { 13701 + "vscode-jsonrpc-3.4.0" = { 13360 13702 name = "vscode-jsonrpc"; 13361 13703 packageName = "vscode-jsonrpc"; 13362 - version = "3.3.1"; 13704 + version = "3.4.0"; 13363 13705 src = fetchurl { 13364 - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.3.1.tgz"; 13365 - sha512 = "1dwznr02qr6wd7886k3i7y3vxgzqdm14gc5vs892vrc8azhh6hl79bvl5lgc05004lzqbazj9p7vdkbms62f1iys92h5w1xpvdldfc8"; 13706 + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.4.0.tgz"; 13707 + sha1 = "aa95ac583bf31d80f725d57c27c09f4c2cfe9fa9"; 13366 13708 }; 13367 13709 }; 13368 - "vscode-languageserver-3.3.0" = { 13710 + "vscode-languageserver-3.4.2" = { 13369 13711 name = "vscode-languageserver"; 13370 13712 packageName = "vscode-languageserver"; 13371 - version = "3.3.0"; 13713 + version = "3.4.2"; 13372 13714 src = fetchurl { 13373 - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.3.0.tgz"; 13374 - sha512 = "380fi37ifwdgndnglvymyrb844aybpm5mjpwmq4p3dm1b93iqdfr00pr2b692d15k5hn9x82h98zw0bs0k7287pwdvdkv3v75pc92zi"; 13715 + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.4.2.tgz"; 13716 + sha1 = "08cbe50ee26901d37dd4b5dc52c25b909363c1f1"; 13375 13717 }; 13376 13718 }; 13377 - "vscode-languageserver-types-3.3.0" = { 13719 + "vscode-languageserver-types-3.4.0" = { 13378 13720 name = "vscode-languageserver-types"; 13379 13721 packageName = "vscode-languageserver-types"; 13380 - version = "3.3.0"; 13722 + version = "3.4.0"; 13381 13723 src = fetchurl { 13382 - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.3.0.tgz"; 13383 - sha512 = "1xjiay30jyp6sj9nq55zwjmxyq5ajcdrv4bw9ypkplv7mg57h4skiqvcsd6wbizidpx3xanqmnl04l66491fmlrwijn9ph3rsa044z4"; 13724 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.4.0.tgz"; 13725 + sha1 = "5043ae47ee4ac16af07bb3d0ca561235e0c0d2fa"; 13384 13726 }; 13385 13727 }; 13386 13728 "symbol-observable-1.0.4" = { ··· 13527 13869 sha1 = "e69e38a1babe969b0108207978b9f62b88604839"; 13528 13870 }; 13529 13871 }; 13872 + "vscode-uri-1.0.1" = { 13873 + name = "vscode-uri"; 13874 + packageName = "vscode-uri"; 13875 + version = "1.0.1"; 13876 + src = fetchurl { 13877 + url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.1.tgz"; 13878 + sha1 = "11a86befeac3c4aa3ec08623651a3c81a6d0bbc8"; 13879 + }; 13880 + }; 13881 + "vscode-languageserver-protocol-3.4.2" = { 13882 + name = "vscode-languageserver-protocol"; 13883 + packageName = "vscode-languageserver-protocol"; 13884 + version = "3.4.2"; 13885 + src = fetchurl { 13886 + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.4.2.tgz"; 13887 + sha512 = "1vm846vq0y63gjxgjnng6zd4196yjx212rmzjr1ljwmkrgb2f1llgpc13ly1b1zsg6v1zjzj473i0dql50sykxwm5vdzaavl28knl6r"; 13888 + }; 13889 + }; 13530 13890 "when-3.4.6" = { 13531 13891 name = "when"; 13532 13892 packageName = "when"; ··· 13608 13968 sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa"; 13609 13969 }; 13610 13970 }; 13611 - "form-data-2.3.1" = { 13612 - name = "form-data"; 13613 - packageName = "form-data"; 13614 - version = "2.3.1"; 13615 - src = fetchurl { 13616 - url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz"; 13617 - sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"; 13618 - }; 13619 - }; 13620 13971 "punycode-2.1.0" = { 13621 13972 name = "punycode"; 13622 13973 packageName = "punycode"; ··· 13624 13975 src = fetchurl { 13625 13976 url = "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz"; 13626 13977 sha1 = "5f863edc89b96db09074bad7947bf09056ca4e7d"; 13627 - }; 13628 - }; 13629 - "body-parser-1.17.2" = { 13630 - name = "body-parser"; 13631 - packageName = "body-parser"; 13632 - version = "1.17.2"; 13633 - src = fetchurl { 13634 - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.17.2.tgz"; 13635 - sha1 = "f8892abc8f9e627d42aedafbca66bf5ab99104ee"; 13636 13978 }; 13637 13979 }; 13638 13980 "connect-pause-0.1.1" = { ··· 13761 14103 sha1 = "782ec21ef403345f830a808ca3d513af56065208"; 13762 14104 }; 13763 14105 }; 13764 - "bytes-2.4.0" = { 13765 - name = "bytes"; 13766 - packageName = "bytes"; 13767 - version = "2.4.0"; 13768 - src = fetchurl { 13769 - url = "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz"; 13770 - sha1 = "7d97196f9d5baf7f6935e25985549edd2a6c2339"; 13771 - }; 13772 - }; 13773 - "debug-2.6.7" = { 13774 - name = "debug"; 13775 - packageName = "debug"; 13776 - version = "2.6.7"; 13777 - src = fetchurl { 13778 - url = "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz"; 13779 - sha1 = "92bad1f6d05bbb6bba22cca88bcd0ec894c2861e"; 13780 - }; 13781 - }; 13782 - "iconv-lite-0.4.15" = { 13783 - name = "iconv-lite"; 13784 - packageName = "iconv-lite"; 13785 - version = "0.4.15"; 13786 - src = fetchurl { 13787 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz"; 13788 - sha1 = "fe265a218ac6a57cfe854927e9d04c19825eddeb"; 13789 - }; 13790 - }; 13791 - "raw-body-2.2.0" = { 13792 - name = "raw-body"; 13793 - packageName = "raw-body"; 13794 - version = "2.2.0"; 13795 - src = fetchurl { 13796 - url = "https://registry.npmjs.org/raw-body/-/raw-body-2.2.0.tgz"; 13797 - sha1 = "994976cf6a5096a41162840492f0bdc5d6e7fb96"; 13798 - }; 13799 - }; 13800 14106 "path-to-regexp-1.7.0" = { 13801 14107 name = "path-to-regexp"; 13802 14108 packageName = "path-to-regexp"; ··· 14076 14382 sha1 = "458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6"; 14077 14383 }; 14078 14384 }; 14079 - "connect-3.6.3" = { 14385 + "connect-3.6.4" = { 14080 14386 name = "connect"; 14081 14387 packageName = "connect"; 14082 - version = "3.6.3"; 14388 + version = "3.6.4"; 14083 14389 src = fetchurl { 14084 - url = "https://registry.npmjs.org/connect/-/connect-3.6.3.tgz"; 14085 - sha512 = "2fkfixwv0fqqxw5rhmzrczj8ayxccwnxwkgyv4w8sxnkz52sl6dsx2nirg1vryxxqdlwph4ag9vc17yzzydmzshc73gpi6m12m9kd0q"; 14390 + url = "https://registry.npmjs.org/connect/-/connect-3.6.4.tgz"; 14391 + sha1 = "52ea19c38607318784269297b0218ed074a01687"; 14086 14392 }; 14087 14393 }; 14088 14394 "di-0.0.1" = { ··· 14166 14472 sha1 = "cf593ef4f2d175875e8bb658ea92e18a4fd06d8e"; 14167 14473 }; 14168 14474 }; 14475 + "utils-merge-1.0.1" = { 14476 + name = "utils-merge"; 14477 + packageName = "utils-merge"; 14478 + version = "1.0.1"; 14479 + src = fetchurl { 14480 + url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; 14481 + sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; 14482 + }; 14483 + }; 14169 14484 "custom-event-1.0.1" = { 14170 14485 name = "custom-event"; 14171 14486 packageName = "custom-event"; ··· 14850 15165 sha1 = "adfeace2e4fb3098058014d08c072dcc59758774"; 14851 15166 }; 14852 15167 }; 15168 + "bytes-2.4.0" = { 15169 + name = "bytes"; 15170 + packageName = "bytes"; 15171 + version = "2.4.0"; 15172 + src = fetchurl { 15173 + url = "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz"; 15174 + sha1 = "7d97196f9d5baf7f6935e25985549edd2a6c2339"; 15175 + }; 15176 + }; 14853 15177 "iconv-lite-0.4.13" = { 14854 15178 name = "iconv-lite"; 14855 15179 packageName = "iconv-lite"; ··· 15084 15408 sha1 = "d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"; 15085 15409 }; 15086 15410 }; 15087 - "fs-extra-4.0.1" = { 15411 + "fs-extra-4.0.2" = { 15088 15412 name = "fs-extra"; 15089 15413 packageName = "fs-extra"; 15090 - version = "4.0.1"; 15414 + version = "4.0.2"; 15091 15415 src = fetchurl { 15092 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.1.tgz"; 15093 - sha1 = "7fc0c6c8957f983f57f306a24e5b9ddd8d0dd880"; 15416 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.2.tgz"; 15417 + sha1 = "f91704c53d1b461f893452b0c307d9997647ab6b"; 15094 15418 }; 15095 15419 }; 15096 15420 "get-port-3.2.0" = { ··· 15507 15831 sha1 = "41d045f3851a5ea88f03f24ca1c6178114464b9b"; 15508 15832 }; 15509 15833 }; 15510 - "jsonfile-3.0.1" = { 15834 + "jsonfile-4.0.0" = { 15511 15835 name = "jsonfile"; 15512 15836 packageName = "jsonfile"; 15513 - version = "3.0.1"; 15837 + version = "4.0.0"; 15514 15838 src = fetchurl { 15515 - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz"; 15516 - sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66"; 15517 - }; 15518 - }; 15519 - "universalify-0.1.1" = { 15520 - name = "universalify"; 15521 - packageName = "universalify"; 15522 - version = "0.1.1"; 15523 - src = fetchurl { 15524 - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz"; 15525 - sha1 = "fa71badd4437af4c148841e3b3b165f9e9e590b7"; 15839 + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"; 15840 + sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; 15526 15841 }; 15527 15842 }; 15528 15843 "is-glob-3.1.0" = { ··· 15876 16191 sha1 = "7ed50d5e0f9a9fb0a573379259f2a77458d50192"; 15877 16192 }; 15878 16193 }; 15879 - "github-slugger-1.1.3" = { 16194 + "github-slugger-1.2.0" = { 15880 16195 name = "github-slugger"; 15881 16196 packageName = "github-slugger"; 15882 - version = "1.1.3"; 16197 + version = "1.2.0"; 15883 16198 src = fetchurl { 15884 - url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.1.3.tgz"; 15885 - sha1 = "314a6e759a18c2b0cc5760d512ccbab549c549a7"; 16199 + url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.2.0.tgz"; 16200 + sha512 = "3nya50972xq88vz4p5gqz63014dkwlp5f40cz1fgad4ifnhprpr4qlqvvi44qxs3arikyfm3ygmf3phyjq5lwkg7rr9ig9mk7prm1n0"; 15886 16201 }; 15887 16202 }; 15888 16203 "innertext-1.0.2" = { ··· 16020 16335 sha1 = "945cfadd66521eaf8f7c84913d377d7b15f24e31"; 16021 16336 }; 16022 16337 }; 16338 + "send-0.15.5" = { 16339 + name = "send"; 16340 + packageName = "send"; 16341 + version = "0.15.5"; 16342 + src = fetchurl { 16343 + url = "https://registry.npmjs.org/send/-/send-0.15.5.tgz"; 16344 + sha1 = "32ef6c8d820c9756597c3174b8c9dd51e3319be2"; 16345 + }; 16346 + }; 16023 16347 "serve-index-1.9.0" = { 16024 16348 name = "serve-index"; 16025 16349 packageName = "serve-index"; ··· 16072 16396 src = fetchurl { 16073 16397 url = "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.0.0.tgz"; 16074 16398 sha1 = "1c0824150481bc7a01d49e98f1ec668d82412f3b"; 16399 + }; 16400 + }; 16401 + "fresh-0.5.2" = { 16402 + name = "fresh"; 16403 + packageName = "fresh"; 16404 + version = "0.5.2"; 16405 + src = fetchurl { 16406 + url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"; 16407 + sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; 16075 16408 }; 16076 16409 }; 16077 16410 "batch-0.6.1" = { ··· 16236 16569 sha1 = "0ea7743715db8d8de2c5ede1775e1b45ac85c02f"; 16237 16570 }; 16238 16571 }; 16572 + "he-1.1.1" = { 16573 + name = "he"; 16574 + packageName = "he"; 16575 + version = "1.1.1"; 16576 + src = fetchurl { 16577 + url = "https://registry.npmjs.org/he/-/he-1.1.1.tgz"; 16578 + sha1 = "93410fd21b009735151f8868c2f271f3427e23fd"; 16579 + }; 16580 + }; 16239 16581 "lodash.create-3.1.1" = { 16240 16582 name = "lodash.create"; 16241 16583 packageName = "lodash.create"; ··· 16434 16776 sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4"; 16435 16777 }; 16436 16778 }; 16437 - "serve-favicon-2.4.3" = { 16779 + "serve-favicon-2.4.4" = { 16438 16780 name = "serve-favicon"; 16439 16781 packageName = "serve-favicon"; 16440 - version = "2.4.3"; 16782 + version = "2.4.4"; 16441 16783 src = fetchurl { 16442 - url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.3.tgz"; 16443 - sha1 = "5986b17b0502642b641c21f818b1acce32025d23"; 16784 + url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.4.tgz"; 16785 + sha1 = "412ddd74965151c9f74c0828f35d50c5250210de"; 16444 16786 }; 16445 16787 }; 16446 16788 "strong-data-uri-1.0.4" = { ··· 16551 16893 sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0"; 16552 16894 }; 16553 16895 }; 16896 + "fresh-0.5.1" = { 16897 + name = "fresh"; 16898 + packageName = "fresh"; 16899 + version = "0.5.1"; 16900 + src = fetchurl { 16901 + url = "https://registry.npmjs.org/fresh/-/fresh-0.5.1.tgz"; 16902 + sha1 = "c3a08bcec0fcdcc223edf3b23eb327f1f9fcbf5c"; 16903 + }; 16904 + }; 16554 16905 "truncate-1.0.5" = { 16555 16906 name = "truncate"; 16556 16907 packageName = "truncate"; ··· 16749 17100 sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97"; 16750 17101 }; 16751 17102 }; 17103 + "body-parser-1.17.2" = { 17104 + name = "body-parser"; 17105 + packageName = "body-parser"; 17106 + version = "1.17.2"; 17107 + src = fetchurl { 17108 + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.17.2.tgz"; 17109 + sha1 = "f8892abc8f9e627d42aedafbca66bf5ab99104ee"; 17110 + }; 17111 + }; 16752 17112 "cheerio-0.22.0" = { 16753 17113 name = "cheerio"; 16754 17114 packageName = "cheerio"; ··· 16920 17280 sha1 = "4f378b678b92d16dbbd233a6c706520093e561ba"; 16921 17281 }; 16922 17282 }; 17283 + "raw-body-2.2.0" = { 17284 + name = "raw-body"; 17285 + packageName = "raw-body"; 17286 + version = "2.2.0"; 17287 + src = fetchurl { 17288 + url = "https://registry.npmjs.org/raw-body/-/raw-body-2.2.0.tgz"; 17289 + sha1 = "994976cf6a5096a41162840492f0bdc5d6e7fb96"; 17290 + }; 17291 + }; 16923 17292 "sentiment-2.1.0" = { 16924 17293 name = "sentiment"; 16925 17294 packageName = "sentiment"; ··· 16983 17352 sha1 = "52c074f42a32140132baea108d42cbcd0ef397d2"; 16984 17353 }; 16985 17354 }; 16986 - "node-red-node-rbe-0.1.11" = { 17355 + "node-red-node-rbe-0.1.13" = { 16987 17356 name = "node-red-node-rbe"; 16988 17357 packageName = "node-red-node-rbe"; 16989 - version = "0.1.11"; 17358 + version = "0.1.13"; 16990 17359 src = fetchurl { 16991 - url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.1.11.tgz"; 16992 - sha1 = "a670c1542a6eaf5e06db45490c2a7edf8a9f70b6"; 17360 + url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.1.13.tgz"; 17361 + sha1 = "734ff1264cdbe0a8aaade20696dd4bfc6bbcdd49"; 16993 17362 }; 16994 17363 }; 16995 17364 "bcrypt-1.0.3" = { ··· 17001 17370 sha512 = "1zfn87155w6q9fsv5ls3gxwih7yvarrh16kzpfrpppblzpmp1cy9gjkknsf9lkixacza39h51jd7varqfg19w3qkdic62zpirv86755"; 17002 17371 }; 17003 17372 }; 17373 + "debug-2.6.7" = { 17374 + name = "debug"; 17375 + packageName = "debug"; 17376 + version = "2.6.7"; 17377 + src = fetchurl { 17378 + url = "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz"; 17379 + sha1 = "92bad1f6d05bbb6bba22cca88bcd0ec894c2861e"; 17380 + }; 17381 + }; 17382 + "iconv-lite-0.4.15" = { 17383 + name = "iconv-lite"; 17384 + packageName = "iconv-lite"; 17385 + version = "0.4.15"; 17386 + src = fetchurl { 17387 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz"; 17388 + sha1 = "fe265a218ac6a57cfe854927e9d04c19825eddeb"; 17389 + }; 17390 + }; 17004 17391 "css-select-1.2.0" = { 17005 17392 name = "css-select"; 17006 17393 packageName = "css-select"; ··· 17361 17748 sha1 = "70c375805b9e3105e899ee8dbdd6a9aa108f407b"; 17362 17749 }; 17363 17750 }; 17364 - "ws-3.1.0" = { 17365 - name = "ws"; 17366 - packageName = "ws"; 17367 - version = "3.1.0"; 17368 - src = fetchurl { 17369 - url = "https://registry.npmjs.org/ws/-/ws-3.1.0.tgz"; 17370 - sha512 = "07wdh2llaz8j5nbjpvl1zbbksw2pikqnw243c6a1ifmshp095hgam79vv5nbp1pjwnlm120m4d3sih9iwm5mkc46im03jb5l6l3ykjd"; 17371 - }; 17372 - }; 17373 17751 "append-field-0.1.0" = { 17374 17752 name = "append-field"; 17375 17753 packageName = "append-field"; ··· 17649 18027 sha1 = "e4ff34e6c95fdfb5aecc08de6596f43605a7db45"; 17650 18028 }; 17651 18029 }; 18030 + "node-pre-gyp-0.6.36" = { 18031 + name = "node-pre-gyp"; 18032 + packageName = "node-pre-gyp"; 18033 + version = "0.6.36"; 18034 + src = fetchurl { 18035 + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; 18036 + sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; 18037 + }; 18038 + }; 17652 18039 "mongoose-3.6.7" = { 17653 18040 name = "mongoose"; 17654 18041 packageName = "mongoose"; ··· 17908 18295 src = fetchurl { 17909 18296 url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz"; 17910 18297 sha1 = "44e072148af01e6e8e24afbf12690d68ae698ecb"; 17911 - }; 17912 - }; 17913 - "debug-3.0.1" = { 17914 - name = "debug"; 17915 - packageName = "debug"; 17916 - version = "3.0.1"; 17917 - src = fetchurl { 17918 - url = "https://registry.npmjs.org/debug/-/debug-3.0.1.tgz"; 17919 - sha512 = "3rnqa9m5ma6whhiailgppfhnm4gkv4brw9619yvxz59di3g306svl7na9qj6n9l887ra3fgr80b0xij0vjvfwpbk9zvpags5plmqxga"; 17920 18298 }; 17921 18299 }; 17922 18300 "qs-0.5.1" = { ··· 18243 18621 sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"; 18244 18622 }; 18245 18623 }; 18624 + "aproba-1.1.2" = { 18625 + name = "aproba"; 18626 + packageName = "aproba"; 18627 + version = "1.1.2"; 18628 + src = fetchurl { 18629 + url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz"; 18630 + sha512 = "0zmgm7vf91vxk5hdvkwhfnzjxz9r6hwpn8dlbpasaax8rxx7z1qqdmh8l631vawj7y1bkpsd0v0mhjh9agggkjl72f3vlnfhy61m5k6"; 18631 + }; 18632 + }; 18246 18633 "cacache-9.2.9" = { 18247 18634 name = "cacache"; 18248 18635 packageName = "cacache"; ··· 18369 18756 sha512 = "0iapgirmdb46ia3apm6fsb9qv9c0hi4k9jflrxlgnrm0jhliqgas49lmpz06xafncx1sxgjngl0fw3gr472c7kapzdvpivf0fp5miqa"; 18370 18757 }; 18371 18758 }; 18372 - "npm-packlist-1.1.8" = { 18759 + "npm-packlist-1.1.9" = { 18373 18760 name = "npm-packlist"; 18374 18761 packageName = "npm-packlist"; 18375 - version = "1.1.8"; 18762 + version = "1.1.9"; 18376 18763 src = fetchurl { 18377 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.8.tgz"; 18378 - sha512 = "3wbyrf8k8ziygg8lyaj5v0kfpw9mhz4an8hqznapf7n0g2ik02shn91607274zvvayl5zcgmfkf17yy4vgz67lsdjmhzwi8rmrzapv4"; 18764 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.9.tgz"; 18765 + sha512 = "1d1l5hasnw67hczgcwbc8534n1hgvx87hin1yr14yz70b4yzp06gfrj97lhh0qfmk5p1lqfrzajhs5wywx98hj75g00mqmir54050gm"; 18379 18766 }; 18380 18767 }; 18381 18768 "npm-user-validate-1.0.0" = { ··· 18459 18846 sha512 = "2lrlysxfbyzywla6i1q07xncmw30w1icgq18c4bra25dl6wvcd3mxg1lqbf88w5h7mqnf98j8ll657wnqwjq9rwd7pbmd9i11964x0c"; 18460 18847 }; 18461 18848 }; 18849 + "write-file-atomic-2.1.0" = { 18850 + name = "write-file-atomic"; 18851 + packageName = "write-file-atomic"; 18852 + version = "2.1.0"; 18853 + src = fetchurl { 18854 + url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.1.0.tgz"; 18855 + sha512 = "0jpbx5znf640m7icywa21hdgyss5h6c811z27mzk7mh1yhv8sqcqd2y0cwgkrnigx57k2chv5cqwv0z8ff8z32gpdw8jw5imz8pcdni"; 18856 + }; 18857 + }; 18462 18858 "lodash._baseindexof-3.1.0" = { 18463 18859 name = "lodash._baseindexof"; 18464 18860 packageName = "lodash._baseindexof"; ··· 18666 19062 sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw"; 18667 19063 }; 18668 19064 }; 18669 - "socks-proxy-agent-3.0.0" = { 19065 + "socks-proxy-agent-3.0.1" = { 18670 19066 name = "socks-proxy-agent"; 18671 19067 packageName = "socks-proxy-agent"; 18672 - version = "3.0.0"; 19068 + version = "3.0.1"; 18673 19069 src = fetchurl { 18674 - url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.0.tgz"; 18675 - sha512 = "3zn9cz2ry5m1akapj7hvhgkxfq7ffwynia46lmwipsw2jk5sv8dvs32dc4hfx3xvp34i1jff1bg870a1xnknsgk5dl021jd4gwi75v0"; 19070 + url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.1.tgz"; 19071 + sha512 = "2a5lsw4fry6nqk3jdxvwqrnpasypvl8c4d0kg32912820lc72l7s9jzidfsrn2an9c66xqicspxb2vnir5cjspprs9qklxnd75060b7"; 18676 19072 }; 18677 19073 }; 18678 19074 "humanize-ms-1.2.1" = { ··· 18936 19332 sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"; 18937 19333 }; 18938 19334 }; 18939 - "fast-diff-1.1.1" = { 19335 + "fast-diff-1.1.2" = { 18940 19336 name = "fast-diff"; 18941 19337 packageName = "fast-diff"; 18942 - version = "1.1.1"; 19338 + version = "1.1.2"; 18943 19339 src = fetchurl { 18944 - url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.1.tgz"; 18945 - sha1 = "0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b"; 19340 + url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz"; 19341 + sha512 = "2550z1qvyfv9js9vg2aaj57ji5d9hhg4f6zl4rf483d6xswv23ac6ipj8gbapv4sjx14dpcslqmnx1z78vvx4np4ad5mdrxwfvm98i9"; 18946 19342 }; 18947 19343 }; 18948 19344 "node-alias-1.0.4" = { ··· 18990 19386 sha1 = "27d92fec34d27cfa42707d3b40d025ae9855f2df"; 18991 19387 }; 18992 19388 }; 18993 - "snyk-1.40.2" = { 19389 + "snyk-1.41.0" = { 18994 19390 name = "snyk"; 18995 19391 packageName = "snyk"; 18996 - version = "1.40.2"; 19392 + version = "1.41.0"; 18997 19393 src = fetchurl { 18998 - url = "https://registry.npmjs.org/snyk/-/snyk-1.40.2.tgz"; 18999 - sha1 = "0084cdb969f0ee0282f5b1de562434d916c732c5"; 19394 + url = "https://registry.npmjs.org/snyk/-/snyk-1.41.0.tgz"; 19395 + sha1 = "6c7a9a94f788181a21575f1b4ee59e6d80f6a059"; 19000 19396 }; 19001 19397 }; 19002 19398 "spawn-please-0.3.0" = { ··· 19161 19557 sha1 = "ebe3a0948571bcc46ccccbe2f9bcec251e984bd0"; 19162 19558 }; 19163 19559 }; 19560 + "needle-2.0.1" = { 19561 + name = "needle"; 19562 + packageName = "needle"; 19563 + version = "2.0.1"; 19564 + src = fetchurl { 19565 + url = "https://registry.npmjs.org/needle/-/needle-2.0.1.tgz"; 19566 + sha1 = "c21fc961ce3c340fb082250da6a08a32f38631f1"; 19567 + }; 19568 + }; 19164 19569 "snyk-config-1.0.1" = { 19165 19570 name = "snyk-config"; 19166 19571 packageName = "snyk-config"; ··· 19170 19575 sha1 = "f27aec2498b24027ac719214026521591111508f"; 19171 19576 }; 19172 19577 }; 19173 - "snyk-go-plugin-1.1.3" = { 19578 + "snyk-go-plugin-1.2.1" = { 19174 19579 name = "snyk-go-plugin"; 19175 19580 packageName = "snyk-go-plugin"; 19176 - version = "1.1.3"; 19581 + version = "1.2.1"; 19177 19582 src = fetchurl { 19178 - url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.1.3.tgz"; 19179 - sha512 = "2yxrc9kh1i9xxa012g3gwx5hdv0df0d0jkqh5h9bm6lkjs567kyh116bfvk6y3gj2cy39a85gvm0dd9gc92fy8i6if8d0zgh9w5wj2i"; 19583 + url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.2.1.tgz"; 19584 + sha512 = "3fvzskjkhljbpcha1z2bk9ca96bcyqc1hb8i2fz7ck71bmfvq9q1wxq1rmp981zmmxvag6igdxsxcq8nrc5igq5s452qr8x9b2g6s9a"; 19180 19585 }; 19181 19586 }; 19182 19587 "snyk-gradle-plugin-1.1.2" = { ··· 19197 19602 sha1 = "31d5080fb1c0dfd6fa8567dd34a523fd02bf1fca"; 19198 19603 }; 19199 19604 }; 19200 - "snyk-mvn-plugin-1.0.1" = { 19605 + "snyk-mvn-plugin-1.0.3" = { 19201 19606 name = "snyk-mvn-plugin"; 19202 19607 packageName = "snyk-mvn-plugin"; 19203 - version = "1.0.1"; 19608 + version = "1.0.3"; 19204 19609 src = fetchurl { 19205 - url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-1.0.1.tgz"; 19206 - sha512 = "2hyx0v53423yszxyxx41swndwqxya92iw3zjqaa35fl1ial9zxrmvrvlrc6jv4jaimv9ci7ni9jkascs1cgm85gqf1ifzkl9kfg0h3c"; 19610 + url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-1.0.3.tgz"; 19611 + sha512 = "3p1ji20lrwfgq8gv8br38nk8l5sklhpvmgdcp9il01f22pzclaqnvrh8pcihkq5x74rifhcra6kqjz057i0mmrk8p3w3yq8gikqgz7l"; 19207 19612 }; 19208 19613 }; 19209 19614 "snyk-policy-1.7.1" = { ··· 19321 19726 src = fetchurl { 19322 19727 url = "https://registry.npmjs.org/yargs/-/yargs-3.15.0.tgz"; 19323 19728 sha1 = "3d9446ef21fb3791b3985690662e4b9683c7f181"; 19324 - }; 19325 - }; 19326 - "fs-0.0.1-security" = { 19327 - name = "fs"; 19328 - packageName = "fs"; 19329 - version = "0.0.1-security"; 19330 - src = fetchurl { 19331 - url = "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz"; 19332 - sha1 = "8a7bd37186b6dddf3813f23858b57ecaaf5e41d4"; 19333 19729 }; 19334 19730 }; 19335 19731 "toml-2.3.3" = { ··· 19485 19881 sha1 = "85568de3cf150ff49fa51825f03a8c880ddcc5c4"; 19486 19882 }; 19487 19883 }; 19488 - "async-2.1.5" = { 19884 + "async-2.4.1" = { 19489 19885 name = "async"; 19490 19886 packageName = "async"; 19491 - version = "2.1.5"; 19887 + version = "2.4.1"; 19492 19888 src = fetchurl { 19493 - url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz"; 19494 - sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc"; 19889 + url = "https://registry.npmjs.org/async/-/async-2.4.1.tgz"; 19890 + sha1 = "62a56b279c98a11d0987096a01cc3eeb8eb7bbd7"; 19495 19891 }; 19496 19892 }; 19497 19893 "lokijs-1.4.3" = { ··· 19503 19899 sha1 = "f2a47ba8d6991c92d6da6a5b35be79b674453abb"; 19504 19900 }; 19505 19901 }; 19506 - "vscode-jsonrpc-3.0.4" = { 19902 + "vscode-jsonrpc-3.2.0" = { 19507 19903 name = "vscode-jsonrpc"; 19508 19904 packageName = "vscode-jsonrpc"; 19509 - version = "3.0.4"; 19905 + version = "3.2.0"; 19510 19906 src = fetchurl { 19511 - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.0.4.tgz"; 19512 - sha1 = "07fdae38e3122412faddf45756fba1d2cb1eb9c8"; 19907 + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.2.0.tgz"; 19908 + sha1 = "c92b946ac385c8b41439b842b6bd07d517b64a7d"; 19513 19909 }; 19514 19910 }; 19515 - "vscode-languageclient-3.0.4" = { 19911 + "vscode-languageclient-3.2.2" = { 19516 19912 name = "vscode-languageclient"; 19517 19913 packageName = "vscode-languageclient"; 19518 - version = "3.0.4"; 19914 + version = "3.2.2"; 19519 19915 src = fetchurl { 19520 - url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-3.0.4.tgz"; 19521 - sha1 = "d0a4ecf3e1c5bf486a49a161962f9189b0bd2bf7"; 19916 + url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-3.2.2.tgz"; 19917 + sha1 = "7843839614aa099f172b4e5f8967d42b58d77f0d"; 19522 19918 }; 19523 19919 }; 19524 - "vscode-languageserver-3.0.5" = { 19920 + "vscode-languageserver-3.2.2" = { 19525 19921 name = "vscode-languageserver"; 19526 19922 packageName = "vscode-languageserver"; 19527 - version = "3.0.5"; 19923 + version = "3.2.2"; 19528 19924 src = fetchurl { 19529 - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.0.5.tgz"; 19530 - sha1 = "080f7b7ce6d43a0785a21195e00068ac57558c85"; 19925 + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.2.2.tgz"; 19926 + sha1 = "9a7b66e1252838ea51a0061145089a2b88a9516a"; 19531 19927 }; 19532 19928 }; 19533 - "vscode-languageserver-types-3.0.3" = { 19929 + "vscode-languageserver-types-3.2.0" = { 19534 19930 name = "vscode-languageserver-types"; 19535 19931 packageName = "vscode-languageserver-types"; 19536 - version = "3.0.3"; 19932 + version = "3.2.0"; 19537 19933 src = fetchurl { 19538 - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.0.3.tgz"; 19539 - sha1 = "303b2a307c20952ff5c1f5a608f3c91146028d47"; 19934 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.2.0.tgz"; 19935 + sha1 = "8874ed92dbfa66df5fb0e2bf73f614cf9483be8f"; 19540 19936 }; 19541 19937 }; 19542 19938 "babybird-0.0.1" = { ··· 19677 20073 sha1 = "b1c9cc044ef1b9fe63606fc141abbb32e14730cc"; 19678 20074 }; 19679 20075 }; 19680 - "define-properties-1.1.2" = { 19681 - name = "define-properties"; 19682 - packageName = "define-properties"; 19683 - version = "1.1.2"; 19684 - src = fetchurl { 19685 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz"; 19686 - sha1 = "83a73f2fea569898fb737193c8f873caf6d45c94"; 19687 - }; 19688 - }; 19689 20076 "bunyan-1.8.12" = { 19690 20077 name = "bunyan"; 19691 20078 packageName = "bunyan"; ··· 19713 20100 sha1 = "9cea9b6386ac301c741838ca3cb91e66dbfbf669"; 19714 20101 }; 19715 20102 }; 19716 - "hot-shots-4.5.0" = { 20103 + "hot-shots-4.7.0" = { 19717 20104 name = "hot-shots"; 19718 20105 packageName = "hot-shots"; 19719 - version = "4.5.0"; 20106 + version = "4.7.0"; 19720 20107 src = fetchurl { 19721 - url = "https://registry.npmjs.org/hot-shots/-/hot-shots-4.5.0.tgz"; 19722 - sha1 = "d0b7c2ad367cbb2f8c062b26151c0949ad9271f9"; 20108 + url = "https://registry.npmjs.org/hot-shots/-/hot-shots-4.7.0.tgz"; 20109 + sha1 = "1fb2eecd234c938e3ccb56c93681b573455dd64c"; 19723 20110 }; 19724 20111 }; 19725 20112 "limitation-0.2.0" = { ··· 20263 20650 sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"; 20264 20651 }; 20265 20652 }; 20653 + "browserify-incremental-3.1.1" = { 20654 + name = "browserify-incremental"; 20655 + packageName = "browserify-incremental"; 20656 + version = "3.1.1"; 20657 + src = fetchurl { 20658 + url = "https://registry.npmjs.org/browserify-incremental/-/browserify-incremental-3.1.1.tgz"; 20659 + sha1 = "0713cb7587247a632a9f08cf1bd169b878b62a8a"; 20660 + }; 20661 + }; 20662 + "node-static-0.7.10" = { 20663 + name = "node-static"; 20664 + packageName = "node-static"; 20665 + version = "0.7.10"; 20666 + src = fetchurl { 20667 + url = "https://registry.npmjs.org/node-static/-/node-static-0.7.10.tgz"; 20668 + sha512 = "3a22r0jr4112h0vr1smzrsaygc607v13arhjbjwzmy1jvmcrdlq9ydnw96ailkrlnwl3k0l65hjcgnrgkdwyc2qhbfnq2bgk0xz7pkd"; 20669 + }; 20670 + }; 20671 + "string-stream-0.0.7" = { 20672 + name = "string-stream"; 20673 + packageName = "string-stream"; 20674 + version = "0.0.7"; 20675 + src = fetchurl { 20676 + url = "https://registry.npmjs.org/string-stream/-/string-stream-0.0.7.tgz"; 20677 + sha1 = "cfcde82799fa62f303429aaa79336ee8834332fe"; 20678 + }; 20679 + }; 20680 + "tree-kill-1.2.0" = { 20681 + name = "tree-kill"; 20682 + packageName = "tree-kill"; 20683 + version = "1.2.0"; 20684 + src = fetchurl { 20685 + url = "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz"; 20686 + sha512 = "1r0mixygpdqrm2fn92z4cyxzbnvimm16k5gdm2m2jxx8wrj3w0mql9s748hcqp2nzcnybnw74wkm211zlr9ld0j2x1q8f153mszlm8f"; 20687 + }; 20688 + }; 20689 + "watchpack-1.4.0" = { 20690 + name = "watchpack"; 20691 + packageName = "watchpack"; 20692 + version = "1.4.0"; 20693 + src = fetchurl { 20694 + url = "https://registry.npmjs.org/watchpack/-/watchpack-1.4.0.tgz"; 20695 + sha1 = "4a1472bcbb952bd0a9bb4036801f954dfb39faac"; 20696 + }; 20697 + }; 20698 + "JSONStream-0.10.0" = { 20699 + name = "JSONStream"; 20700 + packageName = "JSONStream"; 20701 + version = "0.10.0"; 20702 + src = fetchurl { 20703 + url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.10.0.tgz"; 20704 + sha1 = "74349d0d89522b71f30f0a03ff9bd20ca6f12ac0"; 20705 + }; 20706 + }; 20707 + "browserify-cache-api-3.0.1" = { 20708 + name = "browserify-cache-api"; 20709 + packageName = "browserify-cache-api"; 20710 + version = "3.0.1"; 20711 + src = fetchurl { 20712 + url = "https://registry.npmjs.org/browserify-cache-api/-/browserify-cache-api-3.0.1.tgz"; 20713 + sha1 = "96247e853f068fd6e0d45cc73f0bb2cd9778ef02"; 20714 + }; 20715 + }; 20266 20716 "commoner-0.10.8" = { 20267 20717 name = "commoner"; 20268 20718 packageName = "commoner"; ··· 20651 21101 sha512 = "2441a84bwxxm0zcn133ngf0aj1f8jidgfsvm40wa8ap98lkzyzv8fppfsl1dhxpni70mpgl8yik9anc2vrgh1n1immkhw3z6727r9ll"; 20652 21102 }; 20653 21103 }; 20654 - "chalk-2.0.1" = { 20655 - name = "chalk"; 20656 - packageName = "chalk"; 20657 - version = "2.0.1"; 21104 + "basic-auth-2.0.0" = { 21105 + name = "basic-auth"; 21106 + packageName = "basic-auth"; 21107 + version = "2.0.0"; 20658 21108 src = fetchurl { 20659 - url = "https://registry.npmjs.org/chalk/-/chalk-2.0.1.tgz"; 20660 - sha512 = "398mvhli8dvcn53xaqllyjzp19z8gh3j75fvp4gv5njnnkhsikx3byfb6lx432pl0073hn75prc8gb0ysbf65bnzlcbq5iy89f8b7rj"; 21109 + url = "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.0.tgz"; 21110 + sha1 = "015db3f353e02e56377755f962742e8981e7bbba"; 20661 21111 }; 20662 21112 }; 20663 21113 "detect-port-1.2.1" = { ··· 20678 21128 sha1 = "fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f"; 20679 21129 }; 20680 21130 }; 20681 - "micro-8.0.1" = { 21131 + "micro-9.0.0" = { 20682 21132 name = "micro"; 20683 21133 packageName = "micro"; 20684 - version = "8.0.1"; 21134 + version = "9.0.0"; 20685 21135 src = fetchurl { 20686 - url = "https://registry.npmjs.org/micro/-/micro-8.0.1.tgz"; 20687 - sha512 = "3fbrk4yxb1bj097n2w8iqapyq5znp13p8lgc3kd6h53aakpp52779qicbfzd89dva5yj5pinb9swf92j8k5ksl82llahc0y8kg45q1z"; 21136 + url = "https://registry.npmjs.org/micro/-/micro-9.0.0.tgz"; 21137 + sha512 = "1ga72y60zj44dy1y3md37x86klv6nxs7ii0aap37p4qwhq5rb5mcl5yn0kmkrgy6wbvgcnw761rjq7ripiqn1w8q2nl23g2rdj64x69"; 20688 21138 }; 20689 21139 }; 20690 21140 "micro-compress-1.0.0" = { ··· 20696 21146 sha1 = "53f5a80b4ad0320ca165a559b6e3df145d4f704f"; 20697 21147 }; 20698 21148 }; 20699 - "mime-types-2.1.16" = { 20700 - name = "mime-types"; 20701 - packageName = "mime-types"; 20702 - version = "2.1.16"; 20703 - src = fetchurl { 20704 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.16.tgz"; 20705 - sha1 = "2b858a52e5ecd516db897ac2be87487830698e23"; 20706 - }; 20707 - }; 20708 21149 "node-version-1.1.0" = { 20709 21150 name = "node-version"; 20710 21151 packageName = "node-version"; ··· 20723 21164 sha512 = "2z1csf4c3fmlwl0ahk533z5zqkjdf36ccfx11kakl9xran9f5asxm4cxjq4lx1kwqdp8gki786cgpldvgrkvfc7pcvh07j5ssqm8rjg"; 20724 21165 }; 20725 21166 }; 21167 + "chalk-2.0.1" = { 21168 + name = "chalk"; 21169 + packageName = "chalk"; 21170 + version = "2.0.1"; 21171 + src = fetchurl { 21172 + url = "https://registry.npmjs.org/chalk/-/chalk-2.0.1.tgz"; 21173 + sha512 = "398mvhli8dvcn53xaqllyjzp19z8gh3j75fvp4gv5njnnkhsikx3byfb6lx432pl0073hn75prc8gb0ysbf65bnzlcbq5iy89f8b7rj"; 21174 + }; 21175 + }; 20726 21176 "pkginfo-0.4.0" = { 20727 21177 name = "pkginfo"; 20728 21178 packageName = "pkginfo"; ··· 20748 21198 src = fetchurl { 20749 21199 url = "https://registry.npmjs.org/mri/-/mri-1.1.0.tgz"; 20750 21200 sha1 = "5c0a3f29c8ccffbbb1ec941dcec09d71fa32f36a"; 20751 - }; 20752 - }; 20753 - "mime-db-1.29.0" = { 20754 - name = "mime-db"; 20755 - packageName = "mime-db"; 20756 - version = "1.29.0"; 20757 - src = fetchurl { 20758 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.29.0.tgz"; 20759 - sha1 = "48d26d235589651704ac5916ca06001914266878"; 20760 21201 }; 20761 21202 }; 20762 21203 "pify-3.0.0" = { ··· 20966 21407 sha1 = "1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff"; 20967 21408 }; 20968 21409 }; 21410 + "async-2.1.5" = { 21411 + name = "async"; 21412 + packageName = "async"; 21413 + version = "2.1.5"; 21414 + src = fetchurl { 21415 + url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz"; 21416 + sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc"; 21417 + }; 21418 + }; 20969 21419 "assert-plus-0.1.5" = { 20970 21420 name = "assert-plus"; 20971 21421 packageName = "assert-plus"; ··· 21155 21605 sha1 = "97e4e63ae46b21912cd9475bc31469d26f5ade66"; 21156 21606 }; 21157 21607 }; 21158 - "csv-parse-1.2.1" = { 21608 + "csv-parse-1.2.2" = { 21159 21609 name = "csv-parse"; 21160 21610 packageName = "csv-parse"; 21161 - version = "1.2.1"; 21611 + version = "1.2.2"; 21162 21612 src = fetchurl { 21163 - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-1.2.1.tgz"; 21164 - sha1 = "9199c23f2490d98c4d9ab2a0167b06927498c9df"; 21613 + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-1.2.2.tgz"; 21614 + sha512 = "0f3kdjcfncknijsn256frrcdmpw52wkimylhbds095kmkva57dhhnrlqzlzsxvf60d1qzfzqlhhc0wj25b9rg1w6rwxfixx2q9a6bx7"; 21165 21615 }; 21166 21616 }; 21167 21617 "stream-transform-0.1.2" = { ··· 21236 21686 sha1 = "0abf1af89a8f5129a81f18c2b35b21df22622f60"; 21237 21687 }; 21238 21688 }; 21239 - "http-signature-1.2.0" = { 21240 - name = "http-signature"; 21241 - packageName = "http-signature"; 21242 - version = "1.2.0"; 21243 - src = fetchurl { 21244 - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; 21245 - sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 21246 - }; 21247 - }; 21248 21689 "once-1.3.0" = { 21249 21690 name = "once"; 21250 21691 packageName = "once"; ··· 21380 21821 sha1 = "ddd52c587033f49e94b71fc55569f252e8ff5f85"; 21381 21822 }; 21382 21823 }; 21383 - "clap-1.2.0" = { 21824 + "clap-1.2.3" = { 21384 21825 name = "clap"; 21385 21826 packageName = "clap"; 21386 - version = "1.2.0"; 21827 + version = "1.2.3"; 21387 21828 src = fetchurl { 21388 - url = "https://registry.npmjs.org/clap/-/clap-1.2.0.tgz"; 21389 - sha1 = "59c90fe3e137104746ff19469a27a634ff68c857"; 21829 + url = "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz"; 21830 + sha512 = "1ha66pbxhll7c6vv641rahzq0ylwaifskwpwggy9k4sfh8r9n0r8mpqbib22dppb7zfrk6a84a4dyaal7mqs12jvlaxszz11py0nap0"; 21390 21831 }; 21391 21832 }; 21392 21833 "enhanced-resolve-2.3.0" = { ··· 21884 22325 sha1 = "4424aca20e14d255c0b0889af6f6b8973da10e0d"; 21885 22326 }; 21886 22327 }; 21887 - "tmp-0.0.33" = { 21888 - name = "tmp"; 21889 - packageName = "tmp"; 21890 - version = "0.0.33"; 21891 - src = fetchurl { 21892 - url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"; 21893 - sha512 = "0drg2bck1cj8677rgs1l98v7vqaxawcqh6ja87qilwnd719l5y0lzv5ssn3pcwa37fdbg4188y6x15a90vkllyvfpd9v7fai2b8j44d"; 21894 - }; 21895 - }; 21896 22328 "follow-redirects-0.0.3" = { 21897 22329 name = "follow-redirects"; 21898 22330 packageName = "follow-redirects"; ··· 21992 22424 sha1 = "b951f4abb6bd617e66f63eb891498e391763e309"; 21993 22425 }; 21994 22426 }; 21995 - "watchpack-1.4.0" = { 21996 - name = "watchpack"; 21997 - packageName = "watchpack"; 21998 - version = "1.4.0"; 21999 - src = fetchurl { 22000 - url = "https://registry.npmjs.org/watchpack/-/watchpack-1.4.0.tgz"; 22001 - sha1 = "4a1472bcbb952bd0a9bb4036801f954dfb39faac"; 22002 - }; 22003 - }; 22004 22427 "webpack-sources-1.0.1" = { 22005 22428 name = "webpack-sources"; 22006 22429 packageName = "webpack-sources"; ··· 22046 22469 sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39"; 22047 22470 }; 22048 22471 }; 22049 - "big.js-3.1.3" = { 22472 + "big.js-3.2.0" = { 22050 22473 name = "big.js"; 22051 22474 packageName = "big.js"; 22052 - version = "3.1.3"; 22475 + version = "3.2.0"; 22053 22476 src = fetchurl { 22054 - url = "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz"; 22055 - sha1 = "4cada2193652eb3ca9ec8e55c9015669c9806978"; 22477 + url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz"; 22478 + sha512 = "3qicqys1bg16slzbzjn3f0fir82r4d1h6lvy5y0cqqwzbs2iaxf93xgi6x47m7l87i102ifjn4qvjbf764gyncsxcqw7lw33mk7y4zs"; 22056 22479 }; 22057 22480 }; 22058 22481 "emojis-list-2.1.0" = { ··· 22091 22514 sha512 = "3q09f2w67qqhl3lwiisj4422mj9nfldg4cxmidfrjcwn3k7spm9g46x4n1j6kv39bi9khmcpyvfa3fwski488ibivyg9bwijjw2cr93"; 22092 22515 }; 22093 22516 }; 22094 - "death-1.1.0" = { 22095 - name = "death"; 22096 - packageName = "death"; 22097 - version = "1.1.0"; 22098 - src = fetchurl { 22099 - url = "https://registry.npmjs.org/death/-/death-1.1.0.tgz"; 22100 - sha1 = "01aa9c401edd92750514470b8266390c66c67318"; 22101 - }; 22102 - }; 22103 - "gunzip-maybe-1.4.1" = { 22104 - name = "gunzip-maybe"; 22105 - packageName = "gunzip-maybe"; 22106 - version = "1.4.1"; 22107 - src = fetchurl { 22108 - url = "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.1.tgz"; 22109 - sha512 = "3d6jyhcq21cxy2n6mnalnxcdxl9i00n8qka7awrqamggss8yllz57msx7c480knv037snkzkymq6npl36wlpl71h54x511dlchavnxa"; 22110 - }; 22111 - }; 22112 - "leven-2.1.0" = { 22113 - name = "leven"; 22114 - packageName = "leven"; 22115 - version = "2.1.0"; 22116 - src = fetchurl { 22117 - url = "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz"; 22118 - sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580"; 22119 - }; 22120 - }; 22121 - "node-emoji-1.8.1" = { 22122 - name = "node-emoji"; 22123 - packageName = "node-emoji"; 22124 - version = "1.8.1"; 22125 - src = fetchurl { 22126 - url = "https://registry.npmjs.org/node-emoji/-/node-emoji-1.8.1.tgz"; 22127 - sha512 = "1bdm7sms59bj5fa575nda007mvn4nibjla4hm9bf9ry70kgqw7slmz3l4md4cyx2j4zda0dh0mcjildkzq7ba3i9qzapha93l14qjzs"; 22128 - }; 22129 - }; 22130 - "object-path-0.11.4" = { 22131 - name = "object-path"; 22132 - packageName = "object-path"; 22133 - version = "0.11.4"; 22134 - src = fetchurl { 22135 - url = "https://registry.npmjs.org/object-path/-/object-path-0.11.4.tgz"; 22136 - sha1 = "370ae752fbf37de3ea70a861c23bba8915691949"; 22137 - }; 22138 - }; 22139 - "proper-lockfile-2.0.1" = { 22140 - name = "proper-lockfile"; 22141 - packageName = "proper-lockfile"; 22142 - version = "2.0.1"; 22143 - src = fetchurl { 22144 - url = "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-2.0.1.tgz"; 22145 - sha1 = "159fb06193d32003f4b3691dd2ec1a634aa80d1d"; 22146 - }; 22147 - }; 22148 - "request-capture-har-1.2.2" = { 22149 - name = "request-capture-har"; 22150 - packageName = "request-capture-har"; 22151 - version = "1.2.2"; 22152 - src = fetchurl { 22153 - url = "https://registry.npmjs.org/request-capture-har/-/request-capture-har-1.2.2.tgz"; 22154 - sha1 = "cd692cfb2cc744fd84a3358aac6ee51528cf720d"; 22155 - }; 22156 - }; 22157 - "tar-fs-1.15.3" = { 22158 - name = "tar-fs"; 22159 - packageName = "tar-fs"; 22160 - version = "1.15.3"; 22161 - src = fetchurl { 22162 - url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.15.3.tgz"; 22163 - sha1 = "eccf935e941493d8151028e636e51ce4c3ca7f20"; 22164 - }; 22165 - }; 22166 - "v8-compile-cache-1.1.0" = { 22167 - name = "v8-compile-cache"; 22168 - packageName = "v8-compile-cache"; 22169 - version = "1.1.0"; 22170 - src = fetchurl { 22171 - url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-1.1.0.tgz"; 22172 - sha1 = "1dc2a340fb8e5f800a32bcdbfb8c23cd747021b9"; 22173 - }; 22174 - }; 22175 - "is-deflate-1.0.0" = { 22176 - name = "is-deflate"; 22177 - packageName = "is-deflate"; 22178 - version = "1.0.0"; 22179 - src = fetchurl { 22180 - url = "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz"; 22181 - sha1 = "c862901c3c161fb09dac7cdc7e784f80e98f2f14"; 22182 - }; 22183 - }; 22184 - "is-gzip-1.0.0" = { 22185 - name = "is-gzip"; 22186 - packageName = "is-gzip"; 22187 - version = "1.0.0"; 22188 - src = fetchurl { 22189 - url = "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz"; 22190 - sha1 = "6ca8b07b99c77998025900e555ced8ed80879a83"; 22191 - }; 22192 - }; 22193 - "peek-stream-1.1.2" = { 22194 - name = "peek-stream"; 22195 - packageName = "peek-stream"; 22196 - version = "1.1.2"; 22197 - src = fetchurl { 22198 - url = "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.2.tgz"; 22199 - sha1 = "97eb76365bcfd8c89e287f55c8b69d4c3e9bcc52"; 22200 - }; 22201 - }; 22202 - "lodash.toarray-4.4.0" = { 22203 - name = "lodash.toarray"; 22204 - packageName = "lodash.toarray"; 22205 - version = "4.4.0"; 22206 - src = fetchurl { 22207 - url = "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz"; 22208 - sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561"; 22209 - }; 22210 - }; 22211 22517 "cli-list-0.2.0" = { 22212 22518 name = "cli-list"; 22213 22519 packageName = "cli-list"; ··· 22691 22997 alloy = nodeEnv.buildNodePackage { 22692 22998 name = "alloy"; 22693 22999 packageName = "alloy"; 22694 - version = "1.9.13"; 23000 + version = "1.10.4"; 22695 23001 src = fetchurl { 22696 - url = "https://registry.npmjs.org/alloy/-/alloy-1.9.13.tgz"; 22697 - sha1 = "5ab8089cee9a9bf4ba46298d87c7039a4f2a7410"; 23002 + url = "https://registry.npmjs.org/alloy/-/alloy-1.10.4.tgz"; 23003 + sha1 = "8df4818788ba3735122383f99c61cc6ce50626fa"; 22698 23004 }; 22699 23005 dependencies = [ 23006 + sources."async-2.5.0" 23007 + (sources."babel-core-6.26.0" // { 23008 + dependencies = [ 23009 + sources."source-map-0.5.7" 23010 + ]; 23011 + }) 23012 + (sources."babel-generator-6.26.0" // { 23013 + dependencies = [ 23014 + sources."source-map-0.5.7" 23015 + ]; 23016 + }) 23017 + sources."babel-traverse-6.26.0" 23018 + sources."babel-types-6.26.0" 23019 + sources."babylon-6.18.0" 23020 + sources."chmodr-1.0.2" 22700 23021 sources."colors-0.6.0-1" 23022 + sources."commander-0.6.1" 23023 + sources."deasync-0.1.10" 22701 23024 sources."ejs-2.3.4" 23025 + sources."fs-extra-3.0.1" 23026 + sources."global-paths-0.1.2" 23027 + sources."jsonlint-1.5.1" 23028 + sources."moment-2.17.1" 23029 + sources."node.extend-1.0.10" 22702 23030 sources."pkginfo-0.2.2" 22703 - sources."commander-0.6.1" 22704 - sources."wrench-1.3.9" 23031 + sources."resolve-1.4.0" 23032 + sources."source-map-0.1.9" 23033 + sources."walk-sync-0.3.2" 23034 + sources."xml2tss-0.0.5" 22705 23035 sources."xmldom-0.1.19" 22706 - sources."jsonlint-1.5.1" 22707 - (sources."uglify-js-2.6.1" // { 23036 + sources."lodash-4.17.4" 23037 + sources."babel-code-frame-6.26.0" 23038 + sources."babel-helpers-6.24.1" 23039 + sources."babel-messages-6.23.0" 23040 + sources."babel-register-6.26.0" 23041 + sources."babel-runtime-6.26.0" 23042 + sources."babel-template-6.26.0" 23043 + sources."convert-source-map-1.5.0" 23044 + sources."debug-2.6.8" 23045 + sources."json5-0.5.1" 23046 + sources."minimatch-3.0.4" 23047 + sources."path-is-absolute-1.0.1" 23048 + sources."private-0.1.7" 23049 + sources."slash-1.0.0" 23050 + sources."chalk-1.1.3" 23051 + sources."esutils-2.0.2" 23052 + sources."js-tokens-3.0.2" 23053 + sources."ansi-styles-2.2.1" 23054 + sources."escape-string-regexp-1.0.5" 23055 + sources."has-ansi-2.0.0" 23056 + sources."strip-ansi-3.0.1" 23057 + sources."supports-color-2.0.0" 23058 + sources."ansi-regex-2.1.1" 23059 + sources."core-js-2.5.1" 23060 + sources."home-or-tmp-2.0.0" 23061 + sources."mkdirp-0.5.1" 23062 + (sources."source-map-support-0.4.18" // { 22708 23063 dependencies = [ 22709 23064 sources."source-map-0.5.7" 22710 23065 ]; 22711 23066 }) 22712 - sources."resolve-1.4.0" 22713 - sources."global-paths-0.1.2" 22714 - sources."source-map-0.1.9" 22715 - sources."xml2tss-0.0.5" 22716 - sources."moment-2.17.1" 22717 - sources."node.extend-1.0.10" 22718 - sources."nomnom-1.8.1" 22719 - sources."JSV-4.0.2" 22720 - sources."underscore-1.6.0" 22721 - sources."chalk-0.4.0" 22722 - sources."has-color-0.1.7" 22723 - sources."ansi-styles-1.0.0" 22724 - sources."strip-ansi-0.1.1" 22725 - sources."async-0.2.10" 22726 - sources."uglify-to-browserify-1.0.2" 22727 - sources."yargs-3.10.0" 22728 - sources."camelcase-1.2.1" 22729 - sources."cliui-2.1.0" 22730 - sources."decamelize-1.2.0" 22731 - sources."window-size-0.1.0" 22732 - sources."center-align-0.1.3" 22733 - sources."right-align-0.1.3" 22734 - sources."wordwrap-0.0.2" 22735 - sources."align-text-0.1.4" 22736 - sources."lazy-cache-1.0.4" 22737 - sources."kind-of-3.2.2" 22738 - sources."longest-1.0.1" 22739 - sources."repeat-string-1.6.1" 22740 - sources."is-buffer-1.1.5" 22741 - sources."path-parse-1.0.5" 23067 + sources."os-homedir-1.0.2" 23068 + sources."os-tmpdir-1.0.2" 23069 + sources."minimist-0.0.8" 23070 + sources."regenerator-runtime-0.11.0" 23071 + sources."ms-2.0.0" 23072 + sources."brace-expansion-1.1.8" 23073 + sources."balanced-match-1.0.0" 23074 + sources."concat-map-0.0.1" 23075 + sources."detect-indent-4.0.0" 23076 + sources."jsesc-1.3.0" 23077 + sources."trim-right-1.0.1" 23078 + sources."repeating-2.0.1" 23079 + sources."is-finite-1.0.2" 23080 + sources."number-is-nan-1.0.1" 23081 + sources."globals-9.18.0" 23082 + sources."invariant-2.2.2" 23083 + sources."loose-envify-1.3.1" 23084 + sources."to-fast-properties-1.0.3" 23085 + sources."bindings-1.2.1" 23086 + sources."nan-2.7.0" 23087 + sources."graceful-fs-4.1.11" 23088 + sources."jsonfile-3.0.1" 23089 + sources."universalify-0.1.1" 22742 23090 sources."array-unique-0.2.1" 22743 23091 (sources."global-modules-0.2.3" // { 22744 23092 dependencies = [ ··· 22756 23104 sources."which-1.3.0" 22757 23105 sources."parse-passwd-1.0.0" 22758 23106 sources."isexe-2.0.0" 23107 + (sources."nomnom-1.8.1" // { 23108 + dependencies = [ 23109 + sources."chalk-0.4.0" 23110 + sources."ansi-styles-1.0.0" 23111 + sources."strip-ansi-0.1.1" 23112 + ]; 23113 + }) 23114 + sources."JSV-4.0.2" 23115 + sources."underscore-1.6.0" 23116 + sources."has-color-0.1.7" 23117 + sources."is-0.3.0" 23118 + sources."path-parse-1.0.5" 22759 23119 sources."amdefine-1.0.1" 23120 + sources."ensure-posix-path-1.0.2" 23121 + sources."matcher-collection-1.0.5" 22760 23122 sources."xml2js-0.2.8" 22761 23123 sources."sax-0.5.8" 22762 - sources."is-0.3.0" 22763 23124 ]; 22764 23125 buildInputs = globalBuildInputs; 22765 23126 meta = { ··· 22957 23318 }) 22958 23319 sources."moment-2.18.1" 22959 23320 sources."ms-rest-2.2.2" 22960 - (sources."ms-rest-azure-2.3.0" // { 23321 + (sources."ms-rest-azure-2.3.1" // { 22961 23322 dependencies = [ 22962 23323 sources."async-0.2.7" 22963 23324 ]; ··· 23057 23418 sources."has-color-0.1.7" 23058 23419 sources."ansi-styles-1.0.0" 23059 23420 sources."strip-ansi-0.1.1" 23060 - sources."@types/node-8.0.27" 23421 + sources."@types/node-8.0.28" 23061 23422 sources."@types/request-2.0.3" 23062 23423 sources."@types/uuid-3.4.2" 23063 23424 sources."is-buffer-1.1.5" ··· 23076 23437 sources."i-0.3.5" 23077 23438 sources."mkdirp-0.5.1" 23078 23439 sources."ncp-0.4.2" 23079 - sources."rimraf-2.6.1" 23440 + sources."rimraf-2.6.2" 23080 23441 sources."minimist-0.0.8" 23081 23442 sources."glob-7.1.2" 23082 23443 sources."fs.realpath-1.0.0" ··· 23207 23568 bower = nodeEnv.buildNodePackage { 23208 23569 name = "bower"; 23209 23570 packageName = "bower"; 23210 - version = "1.8.0"; 23571 + version = "1.8.2"; 23211 23572 src = fetchurl { 23212 - url = "https://registry.npmjs.org/bower/-/bower-1.8.0.tgz"; 23213 - sha1 = "55dbebef0ad9155382d9e9d3e497c1372345b44a"; 23573 + url = "https://registry.npmjs.org/bower/-/bower-1.8.2.tgz"; 23574 + sha1 = "adf53529c8d4af02ef24fb8d5341c1419d33e2f7"; 23214 23575 }; 23215 23576 buildInputs = globalBuildInputs; 23216 23577 meta = { ··· 23230 23591 }; 23231 23592 dependencies = [ 23232 23593 sources."argparse-1.0.4" 23233 - sources."bower-1.8.0" 23594 + sources."bower-1.8.2" 23234 23595 sources."bower-endpoint-parser-0.2.1" 23235 23596 sources."bower-json-0.6.0" 23236 23597 sources."bower-logger-0.2.1" ··· 23320 23681 ]; 23321 23682 }) 23322 23683 sources."path-is-absolute-1.0.1" 23323 - (sources."rimraf-2.6.1" // { 23684 + (sources."rimraf-2.6.2" // { 23324 23685 dependencies = [ 23325 23686 sources."glob-7.1.2" 23326 23687 ]; ··· 23452 23813 sources."create-hash-1.1.3" 23453 23814 sources."create-hmac-1.1.6" 23454 23815 sources."diffie-hellman-5.0.2" 23455 - sources."pbkdf2-3.0.13" 23816 + sources."pbkdf2-3.0.14" 23456 23817 sources."public-encrypt-4.0.0" 23457 23818 sources."randombytes-2.0.5" 23458 23819 sources."browserify-aes-1.0.8" ··· 23747 24108 sources."ip-set-1.0.1" 23748 24109 sources."mkdirp-0.3.5" 23749 24110 sources."peer-wire-swarm-0.12.1" 23750 - sources."rimraf-2.6.1" 24111 + sources."rimraf-2.6.2" 23751 24112 sources."torrent-discovery-5.4.0" 23752 24113 sources."torrent-piece-1.1.1" 23753 24114 (sources."random-access-file-1.8.1" // { ··· 24069 24430 ]; 24070 24431 }) 24071 24432 sources."is-url-1.2.2" 24072 - sources."interpret-1.0.3" 24433 + sources."interpret-1.0.4" 24073 24434 sources."rechoir-0.6.2" 24074 24435 sources."fs.realpath-1.0.0" 24075 24436 sources."resolve-1.4.0" ··· 24177 24538 sources."create-hash-1.1.3" 24178 24539 sources."create-hmac-1.1.6" 24179 24540 sources."diffie-hellman-5.0.2" 24180 - sources."pbkdf2-3.0.13" 24541 + sources."pbkdf2-3.0.14" 24181 24542 sources."public-encrypt-4.0.0" 24182 24543 sources."randombytes-2.0.5" 24183 24544 sources."browserify-aes-1.0.8" ··· 24252 24613 sources."ms-2.0.0" 24253 24614 sources."array-flatten-1.1.1" 24254 24615 sources."content-disposition-0.5.2" 24255 - sources."content-type-1.0.2" 24616 + sources."content-type-1.0.4" 24256 24617 sources."cookie-0.3.1" 24257 24618 sources."cookie-signature-1.0.6" 24258 24619 sources."depd-1.1.1" 24259 24620 sources."encodeurl-1.0.1" 24260 24621 sources."escape-html-1.0.3" 24261 - sources."etag-1.8.0" 24262 - sources."finalhandler-1.0.4" 24622 + sources."etag-1.8.1" 24623 + sources."finalhandler-1.0.5" 24263 24624 sources."fresh-0.5.0" 24264 24625 sources."merge-descriptors-1.0.1" 24265 24626 sources."methods-1.1.2" 24266 24627 sources."on-finished-2.3.0" 24267 - sources."parseurl-1.3.1" 24628 + sources."parseurl-1.3.2" 24268 24629 sources."path-to-regexp-0.1.7" 24269 24630 sources."proxy-addr-1.1.5" 24270 24631 sources."qs-6.5.0" ··· 24277 24638 sources."utils-merge-1.0.0" 24278 24639 sources."unpipe-1.0.0" 24279 24640 sources."ee-first-1.1.1" 24280 - sources."forwarded-0.1.0" 24641 + sources."forwarded-0.1.2" 24281 24642 sources."ipaddr.js-1.4.0" 24282 24643 sources."destroy-1.0.4" 24283 24644 sources."http-errors-1.6.2" ··· 24636 24997 sources."media-typer-0.3.0" 24637 24998 sources."methods-1.1.2" 24638 24999 sources."on-finished-2.2.1" 24639 - sources."parseurl-1.3.1" 25000 + sources."parseurl-1.3.2" 24640 25001 sources."path-to-regexp-0.1.3" 24641 25002 sources."proxy-addr-1.0.10" 24642 25003 sources."qs-2.3.3" ··· 24659 25020 sources."ms-0.7.0" 24660 25021 sources."crc-3.2.1" 24661 25022 sources."ee-first-1.1.0" 24662 - sources."forwarded-0.1.0" 25023 + sources."forwarded-0.1.2" 24663 25024 sources."ipaddr.js-1.0.5" 24664 25025 sources."destroy-1.0.3" 24665 25026 sources."mime-1.2.11" ··· 24670 25031 sources."faye-websocket-0.11.1" 24671 25032 sources."eventemitter3-0.1.6" 24672 25033 sources."better-curry-1.6.0" 24673 - sources."websocket-driver-0.6.5" 24674 - sources."websocket-extensions-0.1.1" 25034 + sources."websocket-driver-0.7.0" 25035 + sources."http-parser-js-0.4.7" 25036 + sources."websocket-extensions-0.1.2" 24675 25037 (sources."native-dns-cache-git+https://github.com/okTurtles/native-dns-cache.git#8714196bb9223cc9a4064a4fddf9e82ec50b7d4d" // { 24676 25038 dependencies = [ 24677 25039 sources."native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#307e77a47ebba57a5ae9118a284e916e5ebb305a" ··· 24821 25183 sources."bytewise-1.1.0" 24822 25184 sources."ltgt-2.1.3" 24823 25185 sources."pull-level-2.0.3" 24824 - sources."pull-stream-3.6.0" 25186 + sources."pull-stream-3.6.1" 24825 25187 sources."typewiselite-1.0.0" 24826 25188 sources."bytewise-core-1.2.3" 24827 25189 sources."typewise-1.0.3" ··· 24878 25240 sources."JSONStream-1.3.1" 24879 25241 sources."async-2.5.0" 24880 25242 sources."aws4-1.6.0" 24881 - sources."aws-sdk-2.110.0" 25243 + sources."aws-sdk-2.120.0" 24882 25244 sources."ini-1.3.4" 24883 25245 sources."optimist-0.6.1" 24884 - sources."request-2.81.0" 25246 + (sources."request-2.82.0" // { 25247 + dependencies = [ 25248 + sources."uuid-3.1.0" 25249 + ]; 25250 + }) 24885 25251 sources."jsonparse-1.3.1" 24886 25252 sources."through-2.3.8" 24887 25253 sources."lodash-4.17.4" ··· 24901 25267 sources."punycode-1.3.2" 24902 25268 sources."wordwrap-0.0.3" 24903 25269 sources."minimist-0.0.10" 24904 - sources."aws-sign2-0.6.0" 25270 + sources."aws-sign2-0.7.0" 24905 25271 sources."caseless-0.12.0" 24906 25272 sources."combined-stream-1.0.5" 24907 25273 sources."extend-3.0.1" 24908 25274 sources."forever-agent-0.6.1" 24909 - sources."form-data-2.1.4" 24910 - sources."har-validator-4.2.1" 24911 - sources."hawk-3.1.3" 24912 - sources."http-signature-1.1.1" 25275 + sources."form-data-2.3.1" 25276 + sources."har-validator-5.0.3" 25277 + sources."hawk-6.0.2" 25278 + sources."http-signature-1.2.0" 24913 25279 sources."is-typedarray-1.0.0" 24914 25280 sources."isstream-0.1.2" 24915 25281 sources."json-stringify-safe-5.0.1" 24916 25282 sources."mime-types-2.1.17" 24917 25283 sources."oauth-sign-0.8.2" 24918 - sources."performance-now-0.2.0" 24919 - sources."qs-6.4.0" 25284 + sources."performance-now-2.1.0" 25285 + sources."qs-6.5.1" 24920 25286 sources."safe-buffer-5.1.1" 24921 25287 sources."stringstream-0.0.5" 24922 25288 (sources."tough-cookie-2.3.2" // { ··· 24927 25293 sources."tunnel-agent-0.6.0" 24928 25294 sources."delayed-stream-1.0.0" 24929 25295 sources."asynckit-0.4.0" 24930 - sources."ajv-4.11.8" 24931 - sources."har-schema-1.0.5" 25296 + sources."ajv-5.2.2" 25297 + sources."har-schema-2.0.0" 24932 25298 sources."co-4.6.0" 25299 + sources."fast-deep-equal-1.0.0" 25300 + sources."json-schema-traverse-0.3.1" 24933 25301 sources."json-stable-stringify-1.0.1" 24934 25302 sources."jsonify-0.0.0" 24935 - sources."hoek-2.16.3" 24936 - sources."boom-2.10.1" 24937 - sources."cryptiles-2.0.5" 24938 - sources."sntp-1.0.9" 24939 - sources."assert-plus-0.2.0" 24940 - (sources."jsprim-1.4.1" // { 25303 + sources."hoek-4.2.0" 25304 + sources."boom-4.3.1" 25305 + (sources."cryptiles-3.1.2" // { 24941 25306 dependencies = [ 24942 - sources."assert-plus-1.0.0" 25307 + sources."boom-5.2.0" 24943 25308 ]; 24944 25309 }) 24945 - (sources."sshpk-1.13.1" // { 24946 - dependencies = [ 24947 - sources."assert-plus-1.0.0" 24948 - ]; 24949 - }) 25310 + sources."sntp-2.0.2" 25311 + sources."assert-plus-1.0.0" 25312 + sources."jsprim-1.4.1" 25313 + sources."sshpk-1.13.1" 24950 25314 sources."extsprintf-1.3.0" 24951 25315 sources."json-schema-0.2.3" 24952 - (sources."verror-1.10.0" // { 24953 - dependencies = [ 24954 - sources."assert-plus-1.0.0" 24955 - ]; 24956 - }) 25316 + sources."verror-1.10.0" 24957 25317 sources."core-util-is-1.0.2" 24958 25318 sources."asn1-0.2.3" 24959 - (sources."dashdash-1.14.1" // { 24960 - dependencies = [ 24961 - sources."assert-plus-1.0.0" 24962 - ]; 24963 - }) 24964 - (sources."getpass-0.1.7" // { 24965 - dependencies = [ 24966 - sources."assert-plus-1.0.0" 24967 - ]; 24968 - }) 25319 + sources."dashdash-1.14.1" 25320 + sources."getpass-0.1.7" 24969 25321 sources."jsbn-0.1.1" 24970 25322 sources."tweetnacl-0.14.5" 24971 25323 sources."ecc-jsbn-0.1.1" ··· 24991 25343 dependencies = [ 24992 25344 sources."auto-bind-1.1.0" 24993 25345 sources."clipboardy-1.1.4" 24994 - sources."conf-1.2.0" 25346 + sources."conf-1.3.0" 24995 25347 sources."got-7.1.0" 24996 25348 sources."has-ansi-3.0.0" 24997 25349 sources."import-jsx-1.3.0" ··· 25110 25462 sources."core-js-2.5.1" 25111 25463 sources."home-or-tmp-2.0.0" 25112 25464 sources."mkdirp-0.5.1" 25113 - sources."source-map-support-0.4.17" 25465 + sources."source-map-support-0.4.18" 25114 25466 sources."os-homedir-1.0.2" 25115 25467 sources."os-tmpdir-1.0.2" 25116 25468 sources."minimist-0.0.8" ··· 25153 25505 ]; 25154 25506 }) 25155 25507 sources."is-fullwidth-code-point-2.0.0" 25156 - (sources."fbjs-0.8.14" // { 25508 + (sources."fbjs-0.8.15" // { 25157 25509 dependencies = [ 25158 25510 sources."core-js-1.2.7" 25159 25511 ]; ··· 25163 25515 sources."promise-7.3.1" 25164 25516 sources."setimmediate-1.0.5" 25165 25517 sources."ua-parser-js-0.7.14" 25166 - sources."node-fetch-1.7.2" 25518 + sources."node-fetch-1.7.3" 25167 25519 sources."whatwg-fetch-2.0.3" 25168 25520 sources."encoding-0.1.12" 25169 - sources."iconv-lite-0.4.18" 25521 + sources."iconv-lite-0.4.19" 25170 25522 sources."asap-2.0.6" 25171 25523 sources."camelcase-keys-2.1.0" 25172 25524 sources."decamelize-1.2.0" ··· 25221 25573 eslint = nodeEnv.buildNodePackage { 25222 25574 name = "eslint"; 25223 25575 packageName = "eslint"; 25224 - version = "4.6.1"; 25576 + version = "4.7.2"; 25225 25577 src = fetchurl { 25226 - url = "https://registry.npmjs.org/eslint/-/eslint-4.6.1.tgz"; 25227 - sha1 = "ddc7fc7fd70bf93205b0b3449bb16a1e9e7d4950"; 25578 + url = "https://registry.npmjs.org/eslint/-/eslint-4.7.2.tgz"; 25579 + sha1 = "ff6f5f5193848a27ee9b627be3e73fb9cb5e662e"; 25228 25580 }; 25229 25581 dependencies = [ 25230 25582 sources."ajv-5.2.2" ··· 25242 25594 }) 25243 25595 sources."concat-stream-1.6.0" 25244 25596 sources."cross-spawn-5.1.0" 25245 - sources."debug-2.6.8" 25597 + sources."debug-3.0.1" 25246 25598 sources."doctrine-2.0.0" 25247 25599 sources."eslint-scope-3.7.1" 25248 - sources."espree-3.5.0" 25600 + sources."espree-3.5.1" 25249 25601 sources."esquery-1.0.0" 25250 25602 sources."estraverse-4.2.0" 25251 25603 sources."esutils-2.0.2" ··· 25255 25607 sources."globals-9.18.0" 25256 25608 sources."ignore-3.3.5" 25257 25609 sources."imurmurhash-0.1.4" 25258 - sources."inquirer-3.2.3" 25610 + sources."inquirer-3.3.0" 25259 25611 sources."is-resolvable-1.0.0" 25260 - sources."js-yaml-3.9.1" 25612 + sources."js-yaml-3.10.0" 25261 25613 sources."json-stable-stringify-1.0.1" 25262 25614 sources."levn-0.3.0" 25263 25615 sources."lodash-4.17.4" ··· 25266 25618 sources."natural-compare-1.4.0" 25267 25619 sources."optionator-0.8.2" 25268 25620 sources."path-is-inside-1.0.2" 25269 - sources."pluralize-4.0.0" 25621 + sources."pluralize-7.0.0" 25270 25622 sources."progress-2.0.0" 25271 25623 sources."require-uncached-1.0.3" 25272 25624 sources."semver-5.4.1" ··· 25331 25683 sources."is-path-in-cwd-1.0.0" 25332 25684 sources."pify-2.3.0" 25333 25685 sources."pinkie-promise-2.0.1" 25334 - sources."rimraf-2.6.1" 25686 + sources."rimraf-2.6.2" 25335 25687 sources."array-union-1.0.2" 25336 25688 sources."arrify-1.0.1" 25337 25689 sources."array-uniq-1.0.3" ··· 25342 25694 sources."once-1.4.0" 25343 25695 sources."path-is-absolute-1.0.1" 25344 25696 sources."wrappy-1.0.2" 25345 - sources."ansi-escapes-2.0.0" 25697 + sources."ansi-escapes-3.0.0" 25346 25698 sources."cli-cursor-2.1.0" 25347 25699 sources."cli-width-2.2.0" 25348 - sources."external-editor-2.0.4" 25700 + sources."external-editor-2.0.5" 25349 25701 sources."figures-2.0.0" 25350 25702 sources."mute-stream-0.0.7" 25351 25703 sources."run-async-2.3.0" ··· 25357 25709 sources."onetime-2.0.1" 25358 25710 sources."signal-exit-3.0.2" 25359 25711 sources."mimic-fn-1.1.0" 25360 - sources."iconv-lite-0.4.18" 25712 + sources."iconv-lite-0.4.19" 25361 25713 sources."jschardet-1.5.1" 25362 - sources."tmp-0.0.31" 25714 + sources."tmp-0.0.33" 25363 25715 sources."os-tmpdir-1.0.2" 25364 25716 sources."is-promise-2.1.0" 25365 25717 sources."is-fullwidth-code-point-2.0.0" ··· 25405 25757 sources."supports-color-2.0.0" 25406 25758 ]; 25407 25759 }) 25408 - (sources."eslint-4.6.1" // { 25760 + (sources."eslint-4.7.2" // { 25409 25761 dependencies = [ 25410 25762 sources."chalk-2.1.0" 25411 25763 sources."strip-ansi-4.0.0" ··· 25430 25782 sources."babel-code-frame-6.26.0" 25431 25783 sources."concat-stream-1.6.0" 25432 25784 sources."cross-spawn-5.1.0" 25433 - sources."debug-2.6.8" 25785 + sources."debug-3.0.1" 25434 25786 sources."doctrine-2.0.0" 25435 25787 sources."eslint-scope-3.7.1" 25436 - sources."espree-3.5.0" 25788 + sources."espree-3.5.1" 25437 25789 sources."esquery-1.0.0" 25438 25790 sources."estraverse-4.2.0" 25439 25791 sources."esutils-2.0.2" ··· 25443 25795 sources."globals-9.18.0" 25444 25796 sources."ignore-3.3.5" 25445 25797 sources."imurmurhash-0.1.4" 25446 - (sources."inquirer-3.2.3" // { 25798 + (sources."inquirer-3.3.0" // { 25447 25799 dependencies = [ 25448 25800 sources."chalk-2.1.0" 25449 25801 sources."strip-ansi-4.0.0" ··· 25453 25805 ]; 25454 25806 }) 25455 25807 sources."is-resolvable-1.0.0" 25456 - sources."js-yaml-3.9.1" 25808 + sources."js-yaml-3.10.0" 25457 25809 sources."json-stable-stringify-1.0.1" 25458 25810 sources."levn-0.3.0" 25459 25811 sources."lodash-4.17.4" ··· 25461 25813 sources."mkdirp-0.5.1" 25462 25814 sources."natural-compare-1.4.0" 25463 25815 sources."path-is-inside-1.0.2" 25464 - sources."pluralize-4.0.0" 25816 + sources."pluralize-7.0.0" 25465 25817 sources."progress-2.0.0" 25466 25818 sources."require-uncached-1.0.3" 25467 25819 sources."semver-5.4.1" ··· 25514 25866 sources."is-path-in-cwd-1.0.0" 25515 25867 sources."pify-2.3.0" 25516 25868 sources."pinkie-promise-2.0.1" 25517 - sources."rimraf-2.6.1" 25869 + sources."rimraf-2.6.2" 25518 25870 sources."array-union-1.0.2" 25519 25871 sources."arrify-1.0.1" 25520 25872 sources."array-uniq-1.0.3" ··· 25525 25877 sources."once-1.4.0" 25526 25878 sources."path-is-absolute-1.0.1" 25527 25879 sources."wrappy-1.0.2" 25528 - sources."ansi-escapes-2.0.0" 25880 + sources."ansi-escapes-3.0.0" 25529 25881 sources."cli-cursor-2.1.0" 25530 25882 sources."cli-width-2.2.0" 25531 - sources."external-editor-2.0.4" 25883 + sources."external-editor-2.0.5" 25532 25884 sources."figures-2.0.0" 25533 25885 sources."mute-stream-0.0.7" 25534 25886 sources."run-async-2.3.0" ··· 25545 25897 sources."onetime-2.0.1" 25546 25898 sources."signal-exit-3.0.2" 25547 25899 sources."mimic-fn-1.1.0" 25548 - sources."iconv-lite-0.4.18" 25900 + sources."iconv-lite-0.4.19" 25549 25901 sources."jschardet-1.5.1" 25550 - sources."tmp-0.0.31" 25902 + sources."tmp-0.0.33" 25551 25903 sources."os-tmpdir-1.0.2" 25552 25904 sources."is-promise-2.1.0" 25553 25905 sources."is-fullwidth-code-point-2.0.0" ··· 25798 26150 dependencies = [ 25799 26151 sources."bower-endpoint-parser-0.2.1" 25800 26152 sources."bower-logger-0.2.1" 25801 - sources."bower-1.8.0" 26153 + sources."bower-1.8.2" 25802 26154 sources."glob-3.2.11" 25803 26155 sources."inherits-2.0.3" 25804 26156 sources."minimatch-0.3.0" ··· 25940 26292 sources."string_decoder-1.0.3" 25941 26293 sources."util-deprecate-1.0.2" 25942 26294 sources."nan-2.7.0" 25943 - sources."node-pre-gyp-0.6.36" 26295 + sources."node-pre-gyp-0.6.37" 25944 26296 (sources."mkdirp-0.5.1" // { 25945 26297 dependencies = [ 25946 26298 sources."minimist-0.0.8" ··· 25953 26305 sources."minimist-1.2.0" 25954 26306 ]; 25955 26307 }) 25956 - sources."request-2.81.0" 25957 - sources."rimraf-2.6.1" 26308 + sources."request-2.82.0" 26309 + sources."rimraf-2.6.2" 25958 26310 sources."semver-5.4.1" 26311 + (sources."tape-4.8.0" // { 26312 + dependencies = [ 26313 + sources."minimist-1.2.0" 26314 + ]; 26315 + }) 25959 26316 sources."tar-2.2.1" 25960 26317 sources."tar-pack-3.4.0" 25961 26318 sources."abbrev-1.1.0" ··· 25971 26328 }) 25972 26329 sources."set-blocking-2.0.0" 25973 26330 sources."delegates-1.0.0" 25974 - sources."aproba-1.1.2" 26331 + sources."aproba-1.2.0" 25975 26332 sources."has-unicode-2.0.1" 25976 26333 sources."signal-exit-3.0.2" 25977 26334 sources."string-width-1.0.2" ··· 25984 26341 sources."deep-extend-0.4.2" 25985 26342 sources."ini-1.3.4" 25986 26343 sources."strip-json-comments-2.0.1" 25987 - sources."aws-sign2-0.6.0" 26344 + sources."aws-sign2-0.7.0" 25988 26345 sources."aws4-1.6.0" 25989 26346 sources."caseless-0.12.0" 25990 26347 sources."combined-stream-1.0.5" 25991 26348 sources."extend-3.0.1" 25992 26349 sources."forever-agent-0.6.1" 25993 - sources."form-data-2.1.4" 25994 - sources."har-validator-4.2.1" 25995 - sources."hawk-3.1.3" 25996 - sources."http-signature-1.1.1" 26350 + sources."form-data-2.3.1" 26351 + sources."har-validator-5.0.3" 26352 + sources."hawk-6.0.2" 26353 + sources."http-signature-1.2.0" 25997 26354 sources."is-typedarray-1.0.0" 25998 26355 sources."isstream-0.1.2" 25999 26356 sources."json-stringify-safe-5.0.1" 26000 26357 sources."mime-types-2.1.17" 26001 26358 sources."oauth-sign-0.8.2" 26002 - sources."performance-now-0.2.0" 26003 - sources."qs-6.4.0" 26359 + sources."performance-now-2.1.0" 26360 + sources."qs-6.5.1" 26004 26361 sources."stringstream-0.0.5" 26005 26362 sources."tough-cookie-2.3.2" 26006 26363 sources."tunnel-agent-0.6.0" 26007 26364 sources."uuid-3.1.0" 26008 26365 sources."delayed-stream-1.0.0" 26009 26366 sources."asynckit-0.4.0" 26010 - sources."ajv-4.11.8" 26011 - sources."har-schema-1.0.5" 26367 + sources."ajv-5.2.2" 26368 + sources."har-schema-2.0.0" 26012 26369 sources."co-4.6.0" 26370 + sources."fast-deep-equal-1.0.0" 26371 + sources."json-schema-traverse-0.3.1" 26013 26372 sources."json-stable-stringify-1.0.1" 26014 26373 sources."jsonify-0.0.0" 26015 - sources."hoek-2.16.3" 26016 - sources."boom-2.10.1" 26017 - sources."cryptiles-2.0.5" 26018 - sources."sntp-1.0.9" 26019 - sources."assert-plus-0.2.0" 26020 - (sources."jsprim-1.4.1" // { 26374 + sources."hoek-4.2.0" 26375 + sources."boom-4.3.1" 26376 + (sources."cryptiles-3.1.2" // { 26021 26377 dependencies = [ 26022 - sources."assert-plus-1.0.0" 26023 - ]; 26024 - }) 26025 - (sources."sshpk-1.13.1" // { 26026 - dependencies = [ 26027 - sources."assert-plus-1.0.0" 26378 + sources."boom-5.2.0" 26028 26379 ]; 26029 26380 }) 26381 + sources."sntp-2.0.2" 26382 + sources."assert-plus-1.0.0" 26383 + sources."jsprim-1.4.1" 26384 + sources."sshpk-1.13.1" 26030 26385 sources."extsprintf-1.3.0" 26031 26386 sources."json-schema-0.2.3" 26032 - (sources."verror-1.10.0" // { 26033 - dependencies = [ 26034 - sources."assert-plus-1.0.0" 26035 - ]; 26036 - }) 26387 + sources."verror-1.10.0" 26037 26388 sources."asn1-0.2.3" 26038 - (sources."dashdash-1.14.1" // { 26039 - dependencies = [ 26040 - sources."assert-plus-1.0.0" 26041 - ]; 26042 - }) 26043 - (sources."getpass-0.1.7" // { 26044 - dependencies = [ 26045 - sources."assert-plus-1.0.0" 26046 - ]; 26047 - }) 26389 + sources."dashdash-1.14.1" 26390 + sources."getpass-0.1.7" 26048 26391 sources."jsbn-0.1.1" 26049 26392 sources."tweetnacl-0.14.5" 26050 26393 sources."ecc-jsbn-0.1.1" ··· 26056 26399 sources."inflight-1.0.6" 26057 26400 sources."once-1.4.0" 26058 26401 sources."wrappy-1.0.2" 26402 + sources."deep-equal-1.0.1" 26403 + sources."defined-1.0.0" 26404 + sources."for-each-0.3.2" 26405 + sources."function-bind-1.1.1" 26406 + sources."has-1.0.1" 26407 + sources."object-inspect-1.3.0" 26408 + sources."resolve-1.4.0" 26409 + sources."resumer-0.0.0" 26410 + sources."string.prototype.trim-1.1.2" 26411 + sources."through-2.3.8" 26412 + sources."is-function-1.0.1" 26413 + sources."path-parse-1.0.5" 26414 + sources."define-properties-1.1.2" 26415 + sources."es-abstract-1.8.2" 26416 + sources."foreach-2.0.5" 26417 + sources."object-keys-1.0.11" 26418 + sources."es-to-primitive-1.1.1" 26419 + sources."is-callable-1.1.3" 26420 + sources."is-regex-1.0.4" 26421 + sources."is-date-object-1.0.1" 26422 + sources."is-symbol-1.0.1" 26059 26423 sources."block-stream-0.0.9" 26060 26424 sources."fstream-1.0.11" 26061 26425 sources."debug-2.6.8" ··· 26071 26435 ]; 26072 26436 }) 26073 26437 sources."lazy-1.0.11" 26074 - sources."caller-0.0.1" 26075 - sources."tape-2.3.3" 26076 - sources."deep-equal-0.1.2" 26077 - sources."defined-0.0.0" 26078 - sources."through-2.3.8" 26079 - sources."resumer-0.0.0" 26438 + (sources."caller-0.0.1" // { 26439 + dependencies = [ 26440 + sources."tape-2.3.3" 26441 + sources."deep-equal-0.1.2" 26442 + sources."defined-0.0.0" 26443 + ]; 26444 + }) 26080 26445 sources."i-0.3.5" 26081 26446 sources."ncp-0.4.2" 26082 26447 ]; ··· 26270 26635 sources."chalk-1.1.3" 26271 26636 sources."deprecated-0.0.1" 26272 26637 sources."gulp-util-3.0.8" 26273 - sources."interpret-1.0.3" 26638 + sources."interpret-1.0.4" 26274 26639 sources."liftoff-2.3.0" 26275 26640 sources."minimist-1.2.0" 26276 26641 sources."orchestrator-0.3.8" ··· 26295 26660 sources."array-differ-1.0.0" 26296 26661 sources."array-uniq-1.0.3" 26297 26662 sources."beeper-1.1.1" 26298 - sources."dateformat-2.0.0" 26663 + sources."dateformat-2.2.0" 26299 26664 sources."fancy-log-1.3.0" 26300 26665 sources."gulplog-1.0.0" 26301 26666 sources."has-gulplog-0.1.0" ··· 26596 26961 ionic = nodeEnv.buildNodePackage { 26597 26962 name = "ionic"; 26598 26963 packageName = "ionic"; 26599 - version = "3.9.2"; 26964 + version = "3.10.3"; 26600 26965 src = fetchurl { 26601 - url = "https://registry.npmjs.org/ionic/-/ionic-3.9.2.tgz"; 26602 - sha512 = "0d5fbf59ri01dfn213cxbc7vb2z6c4i3sz4k9kji1p8xlcfxg5nj1aprjm4zvdmc6mgryp15g5kvsy7p1qdh2rcdvcqiyn1r70g834c"; 26966 + url = "https://registry.npmjs.org/ionic/-/ionic-3.10.3.tgz"; 26967 + sha512 = "2n96j5a5fpy6pjgmgsnkx5d2asxha7yvlmlj77fpg31qg7nij0p9y4sq00zjrdzhzq2avsc9r25pjgy3i8cb16il9w9rrd210rlzc15"; 26603 26968 }; 26604 26969 dependencies = [ 26605 - sources."@ionic/cli-utils-1.9.2" 26970 + sources."@ionic/cli-utils-1.10.2" 26971 + sources."@ionic/discover-0.3.1" 26606 26972 sources."chalk-2.1.0" 26607 26973 sources."opn-5.1.0" 26608 26974 sources."os-name-2.0.1" 26609 - sources."rimraf-2.6.1" 26975 + sources."rimraf-2.6.2" 26610 26976 sources."semver-5.4.1" 26611 26977 sources."tslib-1.7.1" 26612 - sources."@types/gulp-3.8.33" 26613 26978 sources."archiver-2.0.3" 26979 + sources."basic-auth-1.1.0" 26980 + sources."body-parser-1.18.1" 26614 26981 sources."chokidar-1.7.0" 26615 26982 sources."ci-info-1.1.1" 26616 26983 sources."cross-spawn-5.1.0" ··· 26622 26989 sources."qs-6.5.0" 26623 26990 ]; 26624 26991 }) 26625 - sources."inquirer-3.2.3" 26992 + sources."inquirer-3.3.0" 26626 26993 sources."leek-0.0.24" 26627 26994 sources."lodash-4.17.4" 26628 26995 sources."minimist-1.2.0" ··· 26633 27000 sources."is-fullwidth-code-point-2.0.0" 26634 27001 ]; 26635 27002 }) 26636 - sources."ssh-config-1.1.0" 27003 + sources."ssh-config-1.1.1" 26637 27004 (sources."string-width-2.1.1" // { 26638 27005 dependencies = [ 26639 27006 sources."is-fullwidth-code-point-2.0.0" ··· 26653 27020 sources."tiny-lr-1.0.5" 26654 27021 sources."uuid-3.1.0" 26655 27022 sources."wrap-ansi-3.0.1" 26656 - sources."@types/orchestrator-0.3.0" 26657 - sources."@types/vinyl-2.0.1" 26658 - sources."@types/node-8.0.27" 26659 - sources."@types/q-0.0.37" 27023 + sources."ws-3.2.0" 26660 27024 sources."archiver-utils-1.3.0" 26661 27025 sources."async-2.5.0" 26662 27026 sources."buffer-crc32-0.2.13" ··· 26691 27055 sources."compress-commons-1.2.0" 26692 27056 sources."crc32-stream-2.0.0" 26693 27057 sources."crc-3.4.4" 27058 + sources."bytes-3.0.0" 27059 + sources."content-type-1.0.4" 27060 + sources."debug-2.6.8" 27061 + sources."depd-1.1.1" 27062 + sources."http-errors-1.6.2" 27063 + sources."iconv-lite-0.4.19" 27064 + sources."on-finished-2.3.0" 27065 + sources."qs-6.5.1" 27066 + sources."raw-body-2.3.2" 27067 + sources."type-is-1.6.15" 27068 + sources."ms-2.0.0" 27069 + sources."setprototypeof-1.0.3" 27070 + sources."statuses-1.3.1" 27071 + sources."ee-first-1.1.1" 27072 + sources."unpipe-1.0.0" 27073 + sources."media-typer-0.3.0" 27074 + sources."mime-types-2.1.17" 27075 + sources."mime-db-1.30.0" 26694 27076 sources."anymatch-1.3.2" 26695 27077 sources."async-each-1.0.1" 26696 27078 sources."glob-parent-2.0.0" ··· 26740 27122 sources."binary-extensions-1.10.0" 26741 27123 sources."set-immediate-shim-1.0.1" 26742 27124 sources."nan-2.7.0" 26743 - sources."node-pre-gyp-0.6.36" 27125 + sources."node-pre-gyp-0.6.37" 26744 27126 (sources."mkdirp-0.5.1" // { 26745 27127 dependencies = [ 26746 27128 sources."minimist-0.0.8" ··· 26749 27131 sources."nopt-4.0.1" 26750 27132 sources."npmlog-4.1.2" 26751 27133 sources."rc-1.2.1" 26752 - sources."request-2.81.0" 27134 + sources."request-2.82.0" 27135 + sources."tape-4.8.0" 26753 27136 sources."tar-pack-3.4.0" 26754 27137 sources."abbrev-1.1.0" 26755 27138 sources."osenv-0.1.4" ··· 26765 27148 }) 26766 27149 sources."set-blocking-2.0.0" 26767 27150 sources."delegates-1.0.0" 26768 - sources."aproba-1.1.2" 27151 + sources."aproba-1.2.0" 26769 27152 sources."has-unicode-2.0.1" 26770 27153 sources."object-assign-4.1.1" 26771 27154 sources."signal-exit-3.0.2" ··· 26782 27165 sources."deep-extend-0.4.2" 26783 27166 sources."ini-1.3.4" 26784 27167 sources."strip-json-comments-2.0.1" 26785 - sources."aws-sign2-0.6.0" 27168 + sources."aws-sign2-0.7.0" 26786 27169 sources."aws4-1.6.0" 26787 27170 sources."caseless-0.12.0" 26788 27171 sources."combined-stream-1.0.5" 26789 27172 sources."extend-3.0.1" 26790 27173 sources."forever-agent-0.6.1" 26791 - sources."form-data-2.1.4" 26792 - sources."har-validator-4.2.1" 26793 - sources."hawk-3.1.3" 26794 - sources."http-signature-1.1.1" 27174 + sources."form-data-2.3.1" 27175 + sources."har-validator-5.0.3" 27176 + sources."hawk-6.0.2" 27177 + sources."http-signature-1.2.0" 26795 27178 sources."is-typedarray-1.0.0" 26796 27179 sources."isstream-0.1.2" 26797 27180 sources."json-stringify-safe-5.0.1" 26798 - sources."mime-types-2.1.17" 26799 27181 sources."oauth-sign-0.8.2" 26800 - sources."performance-now-0.2.0" 26801 - sources."qs-6.4.0" 27182 + sources."performance-now-2.1.0" 26802 27183 sources."stringstream-0.0.5" 26803 27184 sources."tough-cookie-2.3.2" 26804 27185 sources."tunnel-agent-0.6.0" 26805 27186 sources."delayed-stream-1.0.0" 26806 27187 sources."asynckit-0.4.0" 26807 - sources."ajv-4.11.8" 26808 - sources."har-schema-1.0.5" 27188 + sources."ajv-5.2.2" 27189 + sources."har-schema-2.0.0" 26809 27190 sources."co-4.6.0" 27191 + sources."fast-deep-equal-1.0.0" 27192 + sources."json-schema-traverse-0.3.1" 26810 27193 sources."json-stable-stringify-1.0.1" 26811 27194 sources."jsonify-0.0.0" 26812 - sources."hoek-2.16.3" 26813 - sources."boom-2.10.1" 26814 - sources."cryptiles-2.0.5" 26815 - sources."sntp-1.0.9" 26816 - sources."assert-plus-0.2.0" 26817 - (sources."jsprim-1.4.1" // { 27195 + sources."hoek-4.2.0" 27196 + sources."boom-4.3.1" 27197 + (sources."cryptiles-3.1.2" // { 26818 27198 dependencies = [ 26819 - sources."assert-plus-1.0.0" 27199 + sources."boom-5.2.0" 26820 27200 ]; 26821 27201 }) 26822 - (sources."sshpk-1.13.1" // { 26823 - dependencies = [ 26824 - sources."assert-plus-1.0.0" 26825 - ]; 26826 - }) 27202 + sources."sntp-2.0.2" 27203 + sources."assert-plus-1.0.0" 27204 + sources."jsprim-1.4.1" 27205 + sources."sshpk-1.13.1" 26827 27206 sources."extsprintf-1.3.0" 26828 27207 sources."json-schema-0.2.3" 26829 - (sources."verror-1.10.0" // { 26830 - dependencies = [ 26831 - sources."assert-plus-1.0.0" 26832 - ]; 26833 - }) 27208 + sources."verror-1.10.0" 26834 27209 sources."asn1-0.2.3" 26835 - (sources."dashdash-1.14.1" // { 26836 - dependencies = [ 26837 - sources."assert-plus-1.0.0" 26838 - ]; 26839 - }) 26840 - (sources."getpass-0.1.7" // { 26841 - dependencies = [ 26842 - sources."assert-plus-1.0.0" 26843 - ]; 26844 - }) 27210 + sources."dashdash-1.14.1" 27211 + sources."getpass-0.1.7" 26845 27212 sources."jsbn-0.1.1" 26846 27213 sources."tweetnacl-0.14.5" 26847 27214 sources."ecc-jsbn-0.1.1" 26848 27215 sources."bcrypt-pbkdf-1.0.1" 26849 - sources."mime-db-1.30.0" 26850 27216 sources."punycode-1.4.1" 26851 - sources."debug-2.6.8" 27217 + sources."deep-equal-1.0.1" 27218 + sources."defined-1.0.0" 27219 + sources."for-each-0.3.2" 27220 + sources."function-bind-1.1.1" 27221 + sources."has-1.0.1" 27222 + sources."object-inspect-1.3.0" 27223 + sources."resolve-1.4.0" 27224 + sources."resumer-0.0.0" 27225 + sources."string.prototype.trim-1.1.2" 27226 + sources."through-2.3.8" 27227 + sources."is-function-1.0.1" 27228 + sources."path-parse-1.0.5" 27229 + sources."define-properties-1.1.2" 27230 + sources."es-abstract-1.8.2" 27231 + sources."foreach-2.0.5" 27232 + sources."object-keys-1.0.11" 27233 + sources."es-to-primitive-1.1.1" 27234 + sources."is-callable-1.1.3" 27235 + sources."is-regex-1.0.4" 27236 + sources."is-date-object-1.0.1" 27237 + sources."is-symbol-1.0.1" 26852 27238 sources."fstream-1.0.11" 26853 27239 sources."fstream-ignore-1.0.5" 26854 27240 sources."uid-number-0.0.6" 26855 - sources."ms-2.0.0" 26856 27241 sources."lru-cache-4.1.1" 26857 27242 sources."shebang-command-1.2.0" 26858 27243 sources."which-1.3.0" ··· 26864 27249 sources."accepts-1.3.4" 26865 27250 sources."array-flatten-1.1.1" 26866 27251 sources."content-disposition-0.5.2" 26867 - sources."content-type-1.0.2" 26868 27252 sources."cookie-0.3.1" 26869 27253 sources."cookie-signature-1.0.6" 26870 - sources."depd-1.1.1" 26871 27254 sources."encodeurl-1.0.1" 26872 27255 sources."escape-html-1.0.3" 26873 - sources."etag-1.8.0" 26874 - sources."finalhandler-1.0.4" 27256 + sources."etag-1.8.1" 27257 + sources."finalhandler-1.0.5" 26875 27258 sources."fresh-0.5.0" 26876 27259 sources."merge-descriptors-1.0.1" 26877 27260 sources."methods-1.1.2" 26878 - sources."on-finished-2.3.0" 26879 - sources."parseurl-1.3.1" 27261 + sources."parseurl-1.3.2" 26880 27262 sources."path-to-regexp-0.1.7" 26881 27263 sources."proxy-addr-1.1.5" 26882 27264 sources."range-parser-1.2.0" 26883 27265 sources."send-0.15.4" 26884 27266 sources."serve-static-1.12.4" 26885 - sources."setprototypeof-1.0.3" 26886 - sources."statuses-1.3.1" 26887 - sources."type-is-1.6.15" 26888 27267 sources."utils-merge-1.0.0" 26889 27268 sources."vary-1.1.1" 26890 27269 sources."negotiator-0.6.1" 26891 - sources."unpipe-1.0.0" 26892 - sources."ee-first-1.1.1" 26893 - sources."forwarded-0.1.0" 27270 + sources."forwarded-0.1.2" 26894 27271 sources."ipaddr.js-1.4.0" 26895 27272 sources."destroy-1.0.4" 26896 - sources."http-errors-1.6.2" 26897 27273 sources."mime-1.3.4" 26898 - sources."media-typer-0.3.0" 26899 - sources."ansi-escapes-2.0.0" 27274 + sources."ansi-escapes-3.0.0" 26900 27275 sources."cli-cursor-2.1.0" 26901 27276 sources."cli-width-2.2.0" 26902 - sources."external-editor-2.0.4" 27277 + sources."external-editor-2.0.5" 26903 27278 sources."figures-2.0.0" 26904 27279 sources."mute-stream-0.0.7" 26905 27280 sources."run-async-2.3.0" 26906 27281 sources."rx-lite-4.0.8" 26907 27282 sources."rx-lite-aggregates-4.0.8" 26908 - sources."through-2.3.8" 26909 27283 sources."restore-cursor-2.0.0" 26910 27284 sources."onetime-2.0.1" 26911 27285 sources."mimic-fn-1.1.0" 26912 - sources."iconv-lite-0.4.18" 26913 27286 sources."jschardet-1.5.1" 26914 - sources."tmp-0.0.31" 27287 + sources."tmp-0.0.33" 26915 27288 sources."escape-string-regexp-1.0.5" 26916 27289 sources."is-promise-2.1.0" 26917 27290 sources."lodash.assign-3.2.0" ··· 26930 27303 sources."cookiejar-2.1.1" 26931 27304 sources."formidable-1.1.1" 26932 27305 sources."block-stream-0.0.9" 26933 - sources."body-5.1.0" 27306 + (sources."body-5.1.0" // { 27307 + dependencies = [ 27308 + sources."raw-body-1.1.7" 27309 + sources."bytes-1.0.0" 27310 + sources."string_decoder-0.10.31" 27311 + ]; 27312 + }) 26934 27313 sources."faye-websocket-0.10.0" 26935 27314 sources."livereload-js-2.2.2" 26936 27315 sources."continuable-cache-0.3.1" 26937 27316 sources."error-7.0.2" 26938 - (sources."raw-body-1.1.7" // { 26939 - dependencies = [ 26940 - sources."string_decoder-0.10.31" 26941 - ]; 26942 - }) 26943 27317 sources."safe-json-parse-1.0.1" 26944 27318 sources."string-template-0.2.1" 26945 - sources."bytes-1.0.0" 26946 - sources."websocket-driver-0.6.5" 26947 - sources."websocket-extensions-0.1.1" 27319 + sources."websocket-driver-0.7.0" 27320 + sources."http-parser-js-0.4.7" 27321 + sources."websocket-extensions-0.1.2" 27322 + sources."async-limiter-1.0.0" 27323 + sources."ultron-1.1.0" 27324 + sources."netmask-1.0.6" 26948 27325 sources."ansi-styles-3.2.0" 26949 27326 sources."supports-color-4.4.0" 26950 27327 sources."color-convert-1.9.0" ··· 26997 27374 sources."source-map-0.4.4" 26998 27375 ]; 26999 27376 }) 27000 - (sources."js-yaml-3.9.1" // { 27377 + (sources."js-yaml-3.10.0" // { 27001 27378 dependencies = [ 27002 27379 sources."esprima-4.0.0" 27003 27380 ]; ··· 27076 27453 javascript-typescript-langserver = nodeEnv.buildNodePackage { 27077 27454 name = "javascript-typescript-langserver"; 27078 27455 packageName = "javascript-typescript-langserver"; 27079 - version = "2.2.1"; 27456 + version = "2.3.1"; 27080 27457 src = fetchurl { 27081 - url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.2.1.tgz"; 27082 - sha1 = "26c2f378cad3ad94282f8dcf0f2b1b8ddc33c612"; 27458 + url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.3.1.tgz"; 27459 + sha1 = "b7db14bee9db6497788e2f5a7d49db2b7a2e1891"; 27083 27460 }; 27084 27461 dependencies = [ 27085 27462 sources."@reactivex/rxjs-5.4.3" ··· 27096 27473 ]; 27097 27474 }) 27098 27475 sources."lodash-4.17.4" 27099 - sources."mz-2.6.0" 27476 + sources."mz-2.7.0" 27100 27477 sources."object-hash-1.1.8" 27101 27478 sources."opentracing-0.14.1" 27102 27479 sources."semaphore-async-await-1.5.1" 27103 27480 sources."string-similarity-1.2.0" 27104 27481 sources."typescript-2.3.4" 27105 - sources."vscode-jsonrpc-3.3.1" 27106 - sources."vscode-languageserver-3.3.0" 27107 - sources."vscode-languageserver-types-3.3.0" 27482 + sources."vscode-jsonrpc-3.4.0" 27483 + sources."vscode-languageserver-3.4.2" 27484 + sources."vscode-languageserver-types-3.4.0" 27108 27485 sources."symbol-observable-1.0.4" 27109 27486 sources."assertion-error-1.0.2" 27110 27487 sources."check-error-1.0.2" ··· 27142 27519 sources."object-assign-4.1.1" 27143 27520 sources."thenify-all-1.6.0" 27144 27521 sources."thenify-3.3.0" 27522 + sources."vscode-uri-1.0.1" 27523 + sources."vscode-languageserver-protocol-3.4.2" 27145 27524 ]; 27146 27525 buildInputs = globalBuildInputs; 27147 27526 meta = { ··· 27239 27618 js-beautify = nodeEnv.buildNodePackage { 27240 27619 name = "js-beautify"; 27241 27620 packageName = "js-beautify"; 27242 - version = "1.6.14"; 27621 + version = "1.7.3"; 27243 27622 src = fetchurl { 27244 - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.6.14.tgz"; 27245 - sha1 = "d3b8f7322d02b9277d58bd238264c327e58044cd"; 27623 + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.7.3.tgz"; 27624 + sha512 = "18pcdycadk2ijyxsgl2kr14hzf75cwp4va0laidqls6haq3h0laj6f7kbbl27mwicqxi3zdin1c34w20ag1ikpm830nffdlif86qgwr"; 27246 27625 }; 27247 27626 dependencies = [ 27248 27627 sources."config-chain-1.1.11" ··· 27318 27697 dependencies = [ 27319 27698 sources."commander-2.11.0" 27320 27699 sources."graphlib-2.1.1" 27321 - sources."js-yaml-3.9.1" 27700 + sources."js-yaml-3.10.0" 27322 27701 sources."lodash-4.17.4" 27323 27702 sources."native-promise-only-0.8.1" 27324 27703 sources."path-loader-1.0.2" ··· 27336 27715 sources."formidable-1.1.1" 27337 27716 sources."methods-1.1.2" 27338 27717 sources."mime-1.4.0" 27339 - sources."qs-6.5.0" 27718 + sources."qs-6.5.1" 27340 27719 sources."readable-stream-2.3.3" 27341 27720 sources."ms-2.0.0" 27342 27721 sources."asynckit-0.4.0" ··· 27370 27749 sha512 = "2iqk65hy94j010zlqsl4rzfkz4f9ic1pqbvsf5w1lrgmda9wmhxl5kmvnmwikjilmn6kz9kniqzl7rpq3xv3cmpx8rppb7ipk5ddhzj"; 27371 27750 }; 27372 27751 dependencies = [ 27373 - sources."body-parser-1.17.2" 27752 + sources."body-parser-1.18.1" 27374 27753 sources."chalk-1.1.3" 27375 27754 (sources."compression-1.7.0" // { 27376 27755 dependencies = [ 27377 27756 sources."bytes-2.5.0" 27378 - sources."debug-2.6.8" 27379 27757 ]; 27380 27758 }) 27381 27759 sources."connect-pause-0.1.1" ··· 27383 27761 sources."errorhandler-1.5.0" 27384 27762 (sources."express-4.15.4" // { 27385 27763 dependencies = [ 27386 - sources."debug-2.6.8" 27387 27764 sources."qs-6.5.0" 27388 27765 ]; 27389 27766 }) ··· 27396 27773 sources."lodash-4.17.4" 27397 27774 sources."lodash-id-0.13.0" 27398 27775 sources."lowdb-0.15.5" 27399 - (sources."method-override-2.3.9" // { 27400 - dependencies = [ 27401 - sources."debug-2.6.8" 27402 - ]; 27403 - }) 27404 - (sources."morgan-1.8.2" // { 27405 - dependencies = [ 27406 - sources."debug-2.6.8" 27407 - ]; 27408 - }) 27776 + sources."method-override-2.3.9" 27777 + sources."morgan-1.8.2" 27409 27778 sources."object-assign-4.1.1" 27410 27779 sources."please-upgrade-node-3.0.1" 27411 27780 sources."pluralize-3.1.0" 27412 - sources."request-2.81.0" 27781 + sources."request-2.82.0" 27413 27782 sources."server-destroy-1.0.1" 27414 27783 sources."shortid-2.2.8" 27415 27784 sources."update-notifier-1.0.3" ··· 27418 27787 sources."camelcase-3.0.0" 27419 27788 ]; 27420 27789 }) 27421 - sources."bytes-2.4.0" 27422 - sources."content-type-1.0.2" 27423 - sources."debug-2.6.7" 27790 + sources."bytes-3.0.0" 27791 + sources."content-type-1.0.4" 27792 + sources."debug-2.6.8" 27424 27793 sources."depd-1.1.1" 27425 27794 sources."http-errors-1.6.2" 27426 - sources."iconv-lite-0.4.15" 27795 + sources."iconv-lite-0.4.19" 27427 27796 sources."on-finished-2.3.0" 27428 - sources."qs-6.4.0" 27429 - sources."raw-body-2.2.0" 27797 + sources."qs-6.5.1" 27798 + sources."raw-body-2.3.2" 27430 27799 sources."type-is-1.6.15" 27431 27800 sources."ms-2.0.0" 27432 27801 sources."inherits-2.0.3" ··· 27455 27824 sources."cookie-0.3.1" 27456 27825 sources."cookie-signature-1.0.6" 27457 27826 sources."encodeurl-1.0.1" 27458 - sources."etag-1.8.0" 27459 - (sources."finalhandler-1.0.4" // { 27460 - dependencies = [ 27461 - sources."debug-2.6.8" 27462 - ]; 27463 - }) 27827 + sources."etag-1.8.1" 27828 + sources."finalhandler-1.0.5" 27464 27829 sources."fresh-0.5.0" 27465 27830 sources."merge-descriptors-1.0.1" 27466 27831 sources."methods-1.1.2" 27467 - sources."parseurl-1.3.1" 27832 + sources."parseurl-1.3.2" 27468 27833 sources."path-to-regexp-0.1.7" 27469 27834 sources."proxy-addr-1.1.5" 27470 27835 sources."range-parser-1.2.0" 27471 - (sources."send-0.15.4" // { 27472 - dependencies = [ 27473 - sources."debug-2.6.8" 27474 - ]; 27475 - }) 27836 + sources."send-0.15.4" 27476 27837 sources."serve-static-1.12.4" 27477 27838 sources."utils-merge-1.0.0" 27478 - sources."forwarded-0.1.0" 27839 + sources."forwarded-0.1.2" 27479 27840 sources."ipaddr.js-1.4.0" 27480 27841 sources."destroy-1.0.4" 27481 27842 sources."mime-1.3.4" ··· 27485 27846 sources."is-promise-2.1.0" 27486 27847 sources."steno-0.4.4" 27487 27848 sources."basic-auth-1.1.0" 27488 - sources."aws-sign2-0.6.0" 27849 + sources."aws-sign2-0.7.0" 27489 27850 sources."aws4-1.6.0" 27490 27851 sources."caseless-0.12.0" 27491 27852 sources."combined-stream-1.0.5" 27492 27853 sources."extend-3.0.1" 27493 27854 sources."forever-agent-0.6.1" 27494 - sources."form-data-2.1.4" 27495 - sources."har-validator-4.2.1" 27496 - sources."hawk-3.1.3" 27497 - sources."http-signature-1.1.1" 27855 + sources."form-data-2.3.1" 27856 + sources."har-validator-5.0.3" 27857 + sources."hawk-6.0.2" 27858 + sources."http-signature-1.2.0" 27498 27859 sources."is-typedarray-1.0.0" 27499 27860 sources."isstream-0.1.2" 27500 27861 sources."json-stringify-safe-5.0.1" 27501 27862 sources."oauth-sign-0.8.2" 27502 - sources."performance-now-0.2.0" 27863 + sources."performance-now-2.1.0" 27503 27864 sources."stringstream-0.0.5" 27504 27865 sources."tough-cookie-2.3.2" 27505 27866 sources."tunnel-agent-0.6.0" 27506 27867 sources."uuid-3.1.0" 27507 27868 sources."delayed-stream-1.0.0" 27508 27869 sources."asynckit-0.4.0" 27509 - sources."ajv-4.11.8" 27510 - sources."har-schema-1.0.5" 27870 + sources."ajv-5.2.2" 27871 + sources."har-schema-2.0.0" 27511 27872 sources."co-4.6.0" 27873 + sources."fast-deep-equal-1.0.0" 27874 + sources."json-schema-traverse-0.3.1" 27512 27875 sources."json-stable-stringify-1.0.1" 27513 27876 sources."jsonify-0.0.0" 27514 - sources."hoek-2.16.3" 27515 - sources."boom-2.10.1" 27516 - sources."cryptiles-2.0.5" 27517 - sources."sntp-1.0.9" 27518 - sources."assert-plus-0.2.0" 27519 - (sources."jsprim-1.4.1" // { 27520 - dependencies = [ 27521 - sources."assert-plus-1.0.0" 27522 - ]; 27523 - }) 27524 - (sources."sshpk-1.13.1" // { 27877 + sources."hoek-4.2.0" 27878 + sources."boom-4.3.1" 27879 + (sources."cryptiles-3.1.2" // { 27525 27880 dependencies = [ 27526 - sources."assert-plus-1.0.0" 27881 + sources."boom-5.2.0" 27527 27882 ]; 27528 27883 }) 27884 + sources."sntp-2.0.2" 27885 + sources."assert-plus-1.0.0" 27886 + sources."jsprim-1.4.1" 27887 + sources."sshpk-1.13.1" 27529 27888 sources."extsprintf-1.3.0" 27530 27889 sources."json-schema-0.2.3" 27531 - (sources."verror-1.10.0" // { 27532 - dependencies = [ 27533 - sources."assert-plus-1.0.0" 27534 - ]; 27535 - }) 27890 + sources."verror-1.10.0" 27536 27891 sources."core-util-is-1.0.2" 27537 27892 sources."asn1-0.2.3" 27538 - (sources."dashdash-1.14.1" // { 27539 - dependencies = [ 27540 - sources."assert-plus-1.0.0" 27541 - ]; 27542 - }) 27543 - (sources."getpass-0.1.7" // { 27544 - dependencies = [ 27545 - sources."assert-plus-1.0.0" 27546 - ]; 27547 - }) 27893 + sources."dashdash-1.14.1" 27894 + sources."getpass-0.1.7" 27548 27895 sources."jsbn-0.1.1" 27549 27896 sources."tweetnacl-0.14.5" 27550 27897 sources."ecc-jsbn-0.1.1" ··· 27667 28014 js-yaml = nodeEnv.buildNodePackage { 27668 28015 name = "js-yaml"; 27669 28016 packageName = "js-yaml"; 27670 - version = "3.9.1"; 28017 + version = "3.10.0"; 27671 28018 src = fetchurl { 27672 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.1.tgz"; 27673 - sha512 = "31wxw267vdf4nnjpksnzcb4i603366sjrw7g08bkxi3cwlrfl67458v7rvj72vbxcycq43z4ldkrfvqjrsvrjqrb2kfzmabpzghddq9"; 28019 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz"; 28020 + sha512 = "0h26sq1bwxc45bm0hvlcadrbk4bizzaw729wvw690ya7mpys45bqfzdqwhjkdrnq0i44dzxckykz4bix22jfdyfg1asybg3yzczjsrv"; 27674 28021 }; 27675 28022 dependencies = [ 27676 28023 sources."argparse-1.0.9" ··· 27695 28042 }; 27696 28043 dependencies = [ 27697 28044 sources."bluebird-3.5.0" 27698 - sources."body-parser-1.17.2" 28045 + sources."body-parser-1.18.1" 27699 28046 sources."chokidar-1.7.0" 27700 28047 sources."colors-1.1.2" 27701 28048 (sources."combine-lists-1.0.1" // { ··· 27703 28050 sources."lodash-4.17.4" 27704 28051 ]; 27705 28052 }) 27706 - (sources."connect-3.6.3" // { 27707 - dependencies = [ 27708 - sources."debug-2.6.8" 27709 - ]; 27710 - }) 28053 + sources."connect-3.6.4" 27711 28054 sources."core-js-2.5.1" 27712 28055 sources."di-0.0.1" 27713 28056 sources."dom-serialize-2.2.1" ··· 27737 28080 sources."optimist-0.6.1" 27738 28081 sources."qjobs-1.1.5" 27739 28082 sources."range-parser-1.2.0" 27740 - sources."rimraf-2.6.1" 28083 + sources."rimraf-2.6.2" 27741 28084 sources."safe-buffer-5.1.1" 27742 28085 (sources."socket.io-1.7.3" // { 27743 28086 dependencies = [ ··· 27749 28092 sources."source-map-0.5.7" 27750 28093 sources."tmp-0.0.31" 27751 28094 sources."useragent-2.2.1" 27752 - sources."bytes-2.4.0" 27753 - sources."content-type-1.0.2" 27754 - sources."debug-2.6.7" 28095 + sources."bytes-3.0.0" 28096 + sources."content-type-1.0.4" 28097 + sources."debug-2.6.8" 27755 28098 sources."depd-1.1.1" 27756 28099 sources."http-errors-1.6.2" 27757 - sources."iconv-lite-0.4.15" 28100 + sources."iconv-lite-0.4.19" 27758 28101 sources."on-finished-2.3.0" 27759 - sources."qs-6.4.0" 27760 - sources."raw-body-2.2.0" 28102 + sources."qs-6.5.1" 28103 + sources."raw-body-2.3.2" 27761 28104 sources."type-is-1.6.15" 27762 28105 sources."ms-2.0.0" 27763 28106 sources."inherits-2.0.3" ··· 27826 28169 sources."string_decoder-1.0.3" 27827 28170 sources."util-deprecate-1.0.2" 27828 28171 sources."nan-2.7.0" 27829 - sources."node-pre-gyp-0.6.36" 28172 + sources."node-pre-gyp-0.6.37" 27830 28173 sources."mkdirp-0.5.1" 27831 28174 sources."nopt-4.0.1" 27832 28175 sources."npmlog-4.1.2" ··· 27835 28178 sources."minimist-1.2.0" 27836 28179 ]; 27837 28180 }) 27838 - sources."request-2.81.0" 28181 + sources."request-2.82.0" 27839 28182 sources."semver-5.4.1" 28183 + (sources."tape-4.8.0" // { 28184 + dependencies = [ 28185 + sources."minimist-1.2.0" 28186 + ]; 28187 + }) 27840 28188 sources."tar-2.2.1" 27841 28189 sources."tar-pack-3.4.0" 27842 28190 sources."minimist-0.0.8" ··· 27849 28197 sources."gauge-2.7.4" 27850 28198 sources."set-blocking-2.0.0" 27851 28199 sources."delegates-1.0.0" 27852 - sources."aproba-1.1.2" 28200 + sources."aproba-1.2.0" 27853 28201 sources."has-unicode-2.0.1" 27854 28202 sources."object-assign-4.1.1" 27855 28203 sources."signal-exit-3.0.2" ··· 27863 28211 sources."deep-extend-0.4.2" 27864 28212 sources."ini-1.3.4" 27865 28213 sources."strip-json-comments-2.0.1" 27866 - sources."aws-sign2-0.6.0" 28214 + sources."aws-sign2-0.7.0" 27867 28215 sources."aws4-1.6.0" 27868 28216 sources."caseless-0.12.0" 27869 28217 sources."combined-stream-1.0.5" 27870 28218 sources."extend-3.0.1" 27871 28219 sources."forever-agent-0.6.1" 27872 - sources."form-data-2.1.4" 27873 - sources."har-validator-4.2.1" 27874 - sources."hawk-3.1.3" 27875 - sources."http-signature-1.1.1" 28220 + sources."form-data-2.3.1" 28221 + sources."har-validator-5.0.3" 28222 + sources."hawk-6.0.2" 28223 + sources."http-signature-1.2.0" 27876 28224 sources."is-typedarray-1.0.0" 27877 28225 sources."isstream-0.1.2" 27878 28226 sources."json-stringify-safe-5.0.1" 27879 28227 sources."oauth-sign-0.8.2" 27880 - sources."performance-now-0.2.0" 28228 + sources."performance-now-2.1.0" 27881 28229 sources."stringstream-0.0.5" 27882 28230 sources."tough-cookie-2.3.2" 27883 28231 sources."tunnel-agent-0.6.0" 27884 28232 sources."uuid-3.1.0" 27885 28233 sources."delayed-stream-1.0.0" 27886 28234 sources."asynckit-0.4.0" 27887 - sources."ajv-4.11.8" 27888 - sources."har-schema-1.0.5" 28235 + sources."ajv-5.2.2" 28236 + sources."har-schema-2.0.0" 27889 28237 sources."co-4.6.0" 28238 + sources."fast-deep-equal-1.0.0" 28239 + sources."json-schema-traverse-0.3.1" 27890 28240 sources."json-stable-stringify-1.0.1" 27891 28241 sources."jsonify-0.0.0" 27892 - sources."hoek-2.16.3" 27893 - sources."boom-2.10.1" 27894 - sources."cryptiles-2.0.5" 27895 - sources."sntp-1.0.9" 27896 - sources."assert-plus-0.2.0" 27897 - (sources."jsprim-1.4.1" // { 28242 + sources."hoek-4.2.0" 28243 + sources."boom-4.3.1" 28244 + (sources."cryptiles-3.1.2" // { 27898 28245 dependencies = [ 27899 - sources."assert-plus-1.0.0" 28246 + sources."boom-5.2.0" 27900 28247 ]; 27901 28248 }) 27902 - (sources."sshpk-1.13.1" // { 27903 - dependencies = [ 27904 - sources."assert-plus-1.0.0" 27905 - ]; 27906 - }) 28249 + sources."sntp-2.0.2" 28250 + sources."assert-plus-1.0.0" 28251 + sources."jsprim-1.4.1" 28252 + sources."sshpk-1.13.1" 27907 28253 sources."extsprintf-1.3.0" 27908 28254 sources."json-schema-0.2.3" 27909 - (sources."verror-1.10.0" // { 27910 - dependencies = [ 27911 - sources."assert-plus-1.0.0" 27912 - ]; 27913 - }) 28255 + sources."verror-1.10.0" 27914 28256 sources."asn1-0.2.3" 27915 - (sources."dashdash-1.14.1" // { 27916 - dependencies = [ 27917 - sources."assert-plus-1.0.0" 27918 - ]; 27919 - }) 27920 - (sources."getpass-0.1.7" // { 27921 - dependencies = [ 27922 - sources."assert-plus-1.0.0" 27923 - ]; 27924 - }) 28257 + sources."dashdash-1.14.1" 28258 + sources."getpass-0.1.7" 27925 28259 sources."jsbn-0.1.1" 27926 28260 sources."tweetnacl-0.14.5" 27927 28261 sources."ecc-jsbn-0.1.1" 27928 28262 sources."bcrypt-pbkdf-1.0.1" 27929 28263 sources."punycode-1.4.1" 28264 + sources."deep-equal-1.0.1" 28265 + sources."defined-1.0.0" 28266 + sources."for-each-0.3.2" 28267 + sources."function-bind-1.1.1" 28268 + sources."has-1.0.1" 28269 + sources."object-inspect-1.3.0" 28270 + sources."resolve-1.4.0" 28271 + sources."resumer-0.0.0" 28272 + sources."string.prototype.trim-1.1.2" 28273 + sources."through-2.3.8" 28274 + sources."is-function-1.0.1" 28275 + sources."path-parse-1.0.5" 28276 + sources."define-properties-1.1.2" 28277 + sources."es-abstract-1.8.2" 28278 + sources."foreach-2.0.5" 28279 + sources."object-keys-1.0.11" 28280 + sources."es-to-primitive-1.1.1" 28281 + sources."is-callable-1.1.3" 28282 + sources."is-regex-1.0.4" 28283 + sources."is-date-object-1.0.1" 28284 + sources."is-symbol-1.0.1" 27930 28285 sources."block-stream-0.0.9" 27931 28286 sources."fstream-1.0.11" 27932 28287 sources."fstream-ignore-1.0.5" 27933 28288 sources."once-1.4.0" 27934 28289 sources."uid-number-0.0.6" 27935 28290 sources."wrappy-1.0.2" 27936 - (sources."finalhandler-1.0.4" // { 27937 - dependencies = [ 27938 - sources."debug-2.6.8" 27939 - ]; 27940 - }) 27941 - sources."parseurl-1.3.1" 27942 - sources."utils-merge-1.0.0" 28291 + sources."finalhandler-1.0.5" 28292 + sources."parseurl-1.3.2" 28293 + sources."utils-merge-1.0.1" 27943 28294 sources."encodeurl-1.0.1" 27944 28295 sources."escape-html-1.0.3" 27945 28296 sources."custom-event-1.0.1" ··· 28052 28403 sources."basic-auth-1.0.4" 28053 28404 sources."connect-2.30.2" 28054 28405 sources."content-disposition-0.5.0" 28055 - sources."content-type-1.0.2" 28406 + sources."content-type-1.0.4" 28056 28407 sources."commander-2.6.0" 28057 28408 sources."cookie-0.1.3" 28058 28409 sources."cookie-signature-1.0.6" ··· 28064 28415 sources."merge-descriptors-1.0.0" 28065 28416 sources."methods-1.1.2" 28066 28417 sources."mkdirp-0.5.1" 28067 - sources."parseurl-1.3.1" 28418 + sources."parseurl-1.3.2" 28068 28419 sources."proxy-addr-1.0.10" 28069 28420 sources."range-parser-1.0.3" 28070 28421 (sources."send-0.13.0" // { ··· 28168 28519 sources."mime-1.3.4" 28169 28520 sources."media-typer-0.3.0" 28170 28521 sources."minimist-0.0.8" 28171 - sources."forwarded-0.1.0" 28522 + sources."forwarded-0.1.2" 28172 28523 sources."ipaddr.js-1.0.5" 28173 28524 sources."passport-strategy-1.0.0" 28174 28525 sources."passport-google-oauth1-1.0.0" ··· 28190 28541 lerna = nodeEnv.buildNodePackage { 28191 28542 name = "lerna"; 28192 28543 packageName = "lerna"; 28193 - version = "2.1.2"; 28544 + version = "2.2.0"; 28194 28545 src = fetchurl { 28195 - url = "https://registry.npmjs.org/lerna/-/lerna-2.1.2.tgz"; 28196 - sha1 = "b07eb7a4d7dd7d44a105262fef49b2229301c577"; 28546 + url = "https://registry.npmjs.org/lerna/-/lerna-2.2.0.tgz"; 28547 + sha512 = "1dcq9rq01bw9g2yqljwf4lmp7x9wzn5bq8yy2x0sjxc9xdr024924ay6a52grjc0lymqs8rj6320kr4xm438qc4xy4yp2xg9crjh82f"; 28197 28548 }; 28198 28549 dependencies = [ 28199 28550 sources."async-1.5.2" ··· 28206 28557 sources."dedent-0.7.0" 28207 28558 sources."execa-0.8.0" 28208 28559 sources."find-up-2.1.0" 28209 - sources."fs-extra-4.0.1" 28560 + sources."fs-extra-4.0.2" 28210 28561 sources."get-port-3.2.0" 28211 28562 sources."glob-7.1.2" 28212 28563 sources."glob-parent-3.1.0" 28213 28564 sources."globby-6.1.0" 28214 28565 sources."graceful-fs-4.1.11" 28215 - (sources."inquirer-3.2.3" // { 28566 + (sources."inquirer-3.3.0" // { 28216 28567 dependencies = [ 28217 28568 sources."strip-ansi-4.0.0" 28218 28569 sources."ansi-regex-3.0.0" ··· 28238 28589 sources."strip-bom-3.0.0" 28239 28590 ]; 28240 28591 }) 28241 - sources."rimraf-2.6.1" 28592 + sources."rimraf-2.6.2" 28242 28593 sources."safe-buffer-5.1.1" 28243 28594 sources."semver-5.4.1" 28244 28595 sources."signal-exit-3.0.2" ··· 28438 28789 sources."locate-path-2.0.0" 28439 28790 sources."p-locate-2.0.0" 28440 28791 sources."p-limit-1.1.0" 28441 - sources."jsonfile-3.0.1" 28792 + sources."jsonfile-4.0.0" 28442 28793 sources."universalify-0.1.1" 28443 28794 sources."fs.realpath-1.0.0" 28444 28795 sources."inflight-1.0.6" ··· 28450 28801 sources."is-extglob-2.1.1" 28451 28802 sources."array-union-1.0.2" 28452 28803 sources."array-uniq-1.0.3" 28453 - sources."ansi-escapes-2.0.0" 28804 + sources."ansi-escapes-3.0.0" 28454 28805 sources."cli-cursor-2.1.0" 28455 28806 sources."cli-width-2.2.0" 28456 - sources."external-editor-2.0.4" 28807 + sources."external-editor-2.0.5" 28457 28808 sources."figures-2.0.0" 28458 28809 sources."mute-stream-0.0.7" 28459 28810 sources."run-async-2.3.0" ··· 28468 28819 sources."restore-cursor-2.0.0" 28469 28820 sources."onetime-2.0.1" 28470 28821 sources."mimic-fn-1.1.0" 28471 - sources."iconv-lite-0.4.18" 28822 + sources."iconv-lite-0.4.19" 28472 28823 sources."jschardet-1.5.1" 28473 - sources."tmp-0.0.31" 28824 + sources."tmp-0.0.33" 28474 28825 sources."is-promise-2.1.0" 28475 28826 sources."is-fullwidth-code-point-2.0.0" 28476 28827 sources."ci-info-1.1.1" ··· 28487 28838 }) 28488 28839 sources."set-blocking-2.0.0" 28489 28840 sources."delegates-1.0.0" 28490 - sources."aproba-1.1.2" 28841 + sources."aproba-1.2.0" 28491 28842 sources."has-unicode-2.0.1" 28492 28843 (sources."wide-align-1.1.2" // { 28493 28844 dependencies = [ ··· 28688 29039 sha512 = "3pnrrz3blfy50s64c4wdj9gjl8zv3p72wd0vmrk86qjdd676g9sj4cwywp356r633csg568pczll7pfb6sxpm0x9fvbk4zhwvdpb70b"; 28689 29040 }; 28690 29041 dependencies = [ 28691 - sources."body-parser-1.17.2" 29042 + sources."body-parser-1.18.1" 28692 29043 sources."chokidar-1.7.0" 28693 29044 (sources."express-4.15.4" // { 28694 29045 dependencies = [ 28695 - sources."debug-2.6.8" 28696 29046 sources."qs-6.5.0" 28697 29047 ]; 28698 29048 }) ··· 28702 29052 sources."markdown-it-task-checkbox-1.0.4" 28703 29053 sources."minimist-1.2.0" 28704 29054 sources."opn-5.1.0" 28705 - sources."request-2.81.0" 29055 + sources."request-2.82.0" 28706 29056 sources."socket.io-2.0.3" 28707 - sources."bytes-2.4.0" 28708 - sources."content-type-1.0.2" 28709 - sources."debug-2.6.7" 29057 + sources."bytes-3.0.0" 29058 + sources."content-type-1.0.4" 29059 + sources."debug-2.6.8" 28710 29060 sources."depd-1.1.1" 28711 29061 sources."http-errors-1.6.2" 28712 - sources."iconv-lite-0.4.15" 29062 + sources."iconv-lite-0.4.19" 28713 29063 sources."on-finished-2.3.0" 28714 - sources."qs-6.4.0" 28715 - sources."raw-body-2.2.0" 29064 + sources."qs-6.5.1" 29065 + sources."raw-body-2.3.2" 28716 29066 sources."type-is-1.6.15" 28717 29067 sources."ms-2.0.0" 28718 29068 sources."inherits-2.0.3" ··· 28787 29137 sources."string_decoder-1.0.3" 28788 29138 sources."util-deprecate-1.0.2" 28789 29139 sources."nan-2.7.0" 28790 - sources."node-pre-gyp-0.6.36" 29140 + sources."node-pre-gyp-0.6.37" 28791 29141 (sources."mkdirp-0.5.1" // { 28792 29142 dependencies = [ 28793 29143 sources."minimist-0.0.8" ··· 28796 29146 sources."nopt-4.0.1" 28797 29147 sources."npmlog-4.1.2" 28798 29148 sources."rc-1.2.1" 28799 - sources."rimraf-2.6.1" 29149 + sources."rimraf-2.6.2" 28800 29150 sources."semver-5.4.1" 29151 + sources."tape-4.8.0" 28801 29152 sources."tar-2.2.1" 28802 29153 sources."tar-pack-3.4.0" 28803 29154 sources."abbrev-1.1.0" ··· 28809 29160 sources."gauge-2.7.4" 28810 29161 sources."set-blocking-2.0.0" 28811 29162 sources."delegates-1.0.0" 28812 - sources."aproba-1.1.2" 29163 + sources."aproba-1.2.0" 28813 29164 sources."has-unicode-2.0.1" 28814 29165 sources."object-assign-4.1.1" 28815 29166 sources."signal-exit-3.0.2" ··· 28828 29179 sources."inflight-1.0.6" 28829 29180 sources."once-1.4.0" 28830 29181 sources."wrappy-1.0.2" 29182 + sources."deep-equal-1.0.1" 29183 + sources."defined-1.0.0" 29184 + sources."for-each-0.3.2" 29185 + sources."function-bind-1.1.1" 29186 + sources."has-1.0.1" 29187 + sources."object-inspect-1.3.0" 29188 + sources."resolve-1.4.0" 29189 + sources."resumer-0.0.0" 29190 + sources."string.prototype.trim-1.1.2" 29191 + sources."through-2.3.8" 29192 + sources."is-function-1.0.1" 29193 + sources."path-parse-1.0.5" 29194 + sources."define-properties-1.1.2" 29195 + sources."es-abstract-1.8.2" 29196 + sources."foreach-2.0.5" 29197 + sources."object-keys-1.0.11" 29198 + sources."es-to-primitive-1.1.1" 29199 + sources."is-callable-1.1.3" 29200 + sources."is-regex-1.0.4" 29201 + sources."is-date-object-1.0.1" 29202 + sources."is-symbol-1.0.1" 28831 29203 sources."block-stream-0.0.9" 28832 29204 sources."fstream-1.0.11" 28833 29205 sources."fstream-ignore-1.0.5" ··· 28839 29211 sources."cookie-signature-1.0.6" 28840 29212 sources."encodeurl-1.0.1" 28841 29213 sources."escape-html-1.0.3" 28842 - sources."etag-1.8.0" 28843 - (sources."finalhandler-1.0.4" // { 28844 - dependencies = [ 28845 - sources."debug-2.6.8" 28846 - ]; 28847 - }) 29214 + sources."etag-1.8.1" 29215 + sources."finalhandler-1.0.5" 28848 29216 sources."fresh-0.5.0" 28849 29217 sources."merge-descriptors-1.0.1" 28850 29218 sources."methods-1.1.2" 28851 - sources."parseurl-1.3.1" 29219 + sources."parseurl-1.3.2" 28852 29220 sources."path-to-regexp-0.1.7" 28853 29221 sources."proxy-addr-1.1.5" 28854 29222 sources."range-parser-1.2.0" 28855 - (sources."send-0.15.4" // { 28856 - dependencies = [ 28857 - sources."debug-2.6.8" 28858 - ]; 28859 - }) 29223 + sources."send-0.15.4" 28860 29224 sources."serve-static-1.12.4" 28861 29225 sources."utils-merge-1.0.0" 28862 29226 sources."vary-1.1.1" 28863 29227 sources."negotiator-0.6.1" 28864 - sources."forwarded-0.1.0" 29228 + sources."forwarded-0.1.2" 28865 29229 sources."ipaddr.js-1.4.0" 28866 29230 sources."destroy-1.0.4" 28867 29231 sources."mime-1.3.4" ··· 28871 29235 sources."mdurl-1.0.1" 28872 29236 sources."uc.micro-1.0.3" 28873 29237 sources."sprintf-js-1.0.3" 28874 - sources."github-slugger-1.1.3" 29238 + sources."github-slugger-1.2.0" 28875 29239 sources."innertext-1.0.2" 28876 29240 sources."emoji-regex-6.1.1" 28877 29241 sources."html-entities-1.2.1" 28878 29242 sources."is-wsl-1.1.0" 28879 - sources."aws-sign2-0.6.0" 29243 + sources."aws-sign2-0.7.0" 28880 29244 sources."aws4-1.6.0" 28881 29245 sources."caseless-0.12.0" 28882 29246 sources."combined-stream-1.0.5" 28883 29247 sources."extend-3.0.1" 28884 29248 sources."forever-agent-0.6.1" 28885 - sources."form-data-2.1.4" 28886 - sources."har-validator-4.2.1" 28887 - sources."hawk-3.1.3" 28888 - sources."http-signature-1.1.1" 29249 + sources."form-data-2.3.1" 29250 + sources."har-validator-5.0.3" 29251 + sources."hawk-6.0.2" 29252 + sources."http-signature-1.2.0" 28889 29253 sources."is-typedarray-1.0.0" 28890 29254 sources."isstream-0.1.2" 28891 29255 sources."json-stringify-safe-5.0.1" 28892 29256 sources."oauth-sign-0.8.2" 28893 - sources."performance-now-0.2.0" 29257 + sources."performance-now-2.1.0" 28894 29258 sources."stringstream-0.0.5" 28895 29259 sources."tough-cookie-2.3.2" 28896 29260 sources."tunnel-agent-0.6.0" 28897 29261 sources."uuid-3.1.0" 28898 29262 sources."delayed-stream-1.0.0" 28899 29263 sources."asynckit-0.4.0" 28900 - sources."ajv-4.11.8" 28901 - sources."har-schema-1.0.5" 29264 + sources."ajv-5.2.2" 29265 + sources."har-schema-2.0.0" 28902 29266 sources."co-4.6.0" 29267 + sources."fast-deep-equal-1.0.0" 29268 + sources."json-schema-traverse-0.3.1" 28903 29269 sources."json-stable-stringify-1.0.1" 28904 29270 sources."jsonify-0.0.0" 28905 - sources."hoek-2.16.3" 28906 - sources."boom-2.10.1" 28907 - sources."cryptiles-2.0.5" 28908 - sources."sntp-1.0.9" 28909 - sources."assert-plus-0.2.0" 28910 - (sources."jsprim-1.4.1" // { 29271 + sources."hoek-4.2.0" 29272 + sources."boom-4.3.1" 29273 + (sources."cryptiles-3.1.2" // { 28911 29274 dependencies = [ 28912 - sources."assert-plus-1.0.0" 29275 + sources."boom-5.2.0" 28913 29276 ]; 28914 29277 }) 28915 - (sources."sshpk-1.13.1" // { 28916 - dependencies = [ 28917 - sources."assert-plus-1.0.0" 28918 - ]; 28919 - }) 29278 + sources."sntp-2.0.2" 29279 + sources."assert-plus-1.0.0" 29280 + sources."jsprim-1.4.1" 29281 + sources."sshpk-1.13.1" 28920 29282 sources."extsprintf-1.3.0" 28921 29283 sources."json-schema-0.2.3" 28922 - (sources."verror-1.10.0" // { 28923 - dependencies = [ 28924 - sources."assert-plus-1.0.0" 28925 - ]; 28926 - }) 29284 + sources."verror-1.10.0" 28927 29285 sources."asn1-0.2.3" 28928 - (sources."dashdash-1.14.1" // { 28929 - dependencies = [ 28930 - sources."assert-plus-1.0.0" 28931 - ]; 28932 - }) 28933 - (sources."getpass-0.1.7" // { 28934 - dependencies = [ 28935 - sources."assert-plus-1.0.0" 28936 - ]; 28937 - }) 29286 + sources."dashdash-1.14.1" 29287 + sources."getpass-0.1.7" 28938 29288 sources."jsbn-0.1.1" 28939 29289 sources."tweetnacl-0.14.5" 28940 29290 sources."ecc-jsbn-0.1.1" ··· 29020 29370 sources."object-assign-4.1.1" 29021 29371 sources."opn-5.1.0" 29022 29372 sources."proxy-middleware-0.15.0" 29023 - sources."send-0.15.4" 29373 + sources."send-0.15.5" 29024 29374 sources."serve-index-1.9.0" 29025 29375 sources."anymatch-1.3.2" 29026 29376 sources."async-each-1.0.1" ··· 29087 29437 sources."string_decoder-1.0.3" 29088 29438 sources."util-deprecate-1.0.2" 29089 29439 sources."nan-2.7.0" 29090 - sources."node-pre-gyp-0.6.36" 29440 + sources."node-pre-gyp-0.6.37" 29091 29441 sources."mkdirp-0.5.1" 29092 29442 sources."nopt-4.0.1" 29093 29443 sources."npmlog-4.1.2" ··· 29096 29446 sources."minimist-1.2.0" 29097 29447 ]; 29098 29448 }) 29099 - sources."request-2.81.0" 29100 - sources."rimraf-2.6.1" 29449 + sources."request-2.82.0" 29450 + sources."rimraf-2.6.2" 29101 29451 sources."semver-5.4.1" 29452 + (sources."tape-4.8.0" // { 29453 + dependencies = [ 29454 + sources."minimist-1.2.0" 29455 + ]; 29456 + }) 29102 29457 sources."tar-2.2.1" 29103 29458 sources."tar-pack-3.4.0" 29104 29459 sources."minimist-0.0.8" ··· 29111 29466 sources."gauge-2.7.4" 29112 29467 sources."set-blocking-2.0.0" 29113 29468 sources."delegates-1.0.0" 29114 - sources."aproba-1.1.2" 29469 + sources."aproba-1.2.0" 29115 29470 sources."has-unicode-2.0.1" 29116 29471 sources."signal-exit-3.0.2" 29117 29472 sources."string-width-1.0.2" ··· 29124 29479 sources."deep-extend-0.4.2" 29125 29480 sources."ini-1.3.4" 29126 29481 sources."strip-json-comments-2.0.1" 29127 - sources."aws-sign2-0.6.0" 29482 + sources."aws-sign2-0.7.0" 29128 29483 sources."aws4-1.6.0" 29129 29484 sources."caseless-0.12.0" 29130 29485 sources."combined-stream-1.0.5" 29131 29486 sources."extend-3.0.1" 29132 29487 sources."forever-agent-0.6.1" 29133 - sources."form-data-2.1.4" 29134 - sources."har-validator-4.2.1" 29135 - sources."hawk-3.1.3" 29136 - sources."http-signature-1.1.1" 29488 + sources."form-data-2.3.1" 29489 + sources."har-validator-5.0.3" 29490 + sources."hawk-6.0.2" 29491 + sources."http-signature-1.2.0" 29137 29492 sources."is-typedarray-1.0.0" 29138 29493 sources."isstream-0.1.2" 29139 29494 sources."json-stringify-safe-5.0.1" 29140 29495 sources."mime-types-2.1.17" 29141 29496 sources."oauth-sign-0.8.2" 29142 - sources."performance-now-0.2.0" 29143 - sources."qs-6.4.0" 29497 + sources."performance-now-2.1.0" 29498 + sources."qs-6.5.1" 29144 29499 sources."stringstream-0.0.5" 29145 29500 sources."tough-cookie-2.3.2" 29146 29501 sources."tunnel-agent-0.6.0" 29147 29502 sources."uuid-3.1.0" 29148 29503 sources."delayed-stream-1.0.0" 29149 29504 sources."asynckit-0.4.0" 29150 - sources."ajv-4.11.8" 29151 - sources."har-schema-1.0.5" 29505 + sources."ajv-5.2.2" 29506 + sources."har-schema-2.0.0" 29152 29507 sources."co-4.6.0" 29508 + sources."fast-deep-equal-1.0.0" 29509 + sources."json-schema-traverse-0.3.1" 29153 29510 sources."json-stable-stringify-1.0.1" 29154 29511 sources."jsonify-0.0.0" 29155 - sources."hoek-2.16.3" 29156 - sources."boom-2.10.1" 29157 - sources."cryptiles-2.0.5" 29158 - sources."sntp-1.0.9" 29159 - sources."assert-plus-0.2.0" 29160 - (sources."jsprim-1.4.1" // { 29512 + sources."hoek-4.2.0" 29513 + sources."boom-4.3.1" 29514 + (sources."cryptiles-3.1.2" // { 29161 29515 dependencies = [ 29162 - sources."assert-plus-1.0.0" 29163 - ]; 29164 - }) 29165 - (sources."sshpk-1.13.1" // { 29166 - dependencies = [ 29167 - sources."assert-plus-1.0.0" 29516 + sources."boom-5.2.0" 29168 29517 ]; 29169 29518 }) 29519 + sources."sntp-2.0.2" 29520 + sources."assert-plus-1.0.0" 29521 + sources."jsprim-1.4.1" 29522 + sources."sshpk-1.13.1" 29170 29523 sources."extsprintf-1.3.0" 29171 29524 sources."json-schema-0.2.3" 29172 - (sources."verror-1.10.0" // { 29173 - dependencies = [ 29174 - sources."assert-plus-1.0.0" 29175 - ]; 29176 - }) 29525 + sources."verror-1.10.0" 29177 29526 sources."asn1-0.2.3" 29178 - (sources."dashdash-1.14.1" // { 29179 - dependencies = [ 29180 - sources."assert-plus-1.0.0" 29181 - ]; 29182 - }) 29183 - (sources."getpass-0.1.7" // { 29184 - dependencies = [ 29185 - sources."assert-plus-1.0.0" 29186 - ]; 29187 - }) 29527 + sources."dashdash-1.14.1" 29528 + sources."getpass-0.1.7" 29188 29529 sources."jsbn-0.1.1" 29189 29530 sources."tweetnacl-0.14.5" 29190 29531 sources."ecc-jsbn-0.1.1" ··· 29196 29537 sources."inflight-1.0.6" 29197 29538 sources."once-1.4.0" 29198 29539 sources."wrappy-1.0.2" 29540 + sources."deep-equal-1.0.1" 29541 + sources."defined-1.0.0" 29542 + sources."for-each-0.3.2" 29543 + sources."function-bind-1.1.1" 29544 + sources."has-1.0.1" 29545 + sources."object-inspect-1.3.0" 29546 + sources."resolve-1.4.0" 29547 + sources."resumer-0.0.0" 29548 + sources."string.prototype.trim-1.1.2" 29549 + sources."through-2.3.8" 29550 + sources."is-function-1.0.1" 29551 + sources."path-parse-1.0.5" 29552 + sources."define-properties-1.1.2" 29553 + sources."es-abstract-1.8.2" 29554 + sources."foreach-2.0.5" 29555 + sources."object-keys-1.0.11" 29556 + sources."es-to-primitive-1.1.1" 29557 + sources."is-callable-1.1.3" 29558 + sources."is-regex-1.0.4" 29559 + sources."is-date-object-1.0.1" 29560 + sources."is-symbol-1.0.1" 29199 29561 sources."block-stream-0.0.9" 29200 29562 sources."fstream-1.0.11" 29201 29563 sources."debug-2.6.8" ··· 29208 29570 sources."ms-0.7.1" 29209 29571 ]; 29210 29572 }) 29211 - sources."parseurl-1.3.1" 29573 + sources."parseurl-1.3.2" 29212 29574 sources."utils-merge-1.0.0" 29213 29575 sources."escape-html-1.0.3" 29214 29576 sources."on-finished-2.3.0" ··· 29216 29578 sources."unpipe-1.0.0" 29217 29579 sources."ee-first-1.1.1" 29218 29580 sources."vary-1.1.1" 29219 - sources."through-2.3.8" 29220 29581 sources."duplexer-0.1.1" 29221 29582 sources."from-0.1.7" 29222 29583 sources."map-stream-0.1.0" 29223 29584 sources."pause-stream-0.0.11" 29224 29585 sources."split-0.3.3" 29225 29586 sources."stream-combiner-0.0.4" 29226 - sources."websocket-driver-0.6.5" 29227 - sources."websocket-extensions-0.1.1" 29587 + sources."websocket-driver-0.7.0" 29588 + sources."http-parser-js-0.4.7" 29589 + sources."websocket-extensions-0.1.2" 29228 29590 sources."apache-crypt-1.2.1" 29229 29591 sources."apache-md5-1.1.2" 29230 29592 sources."bcryptjs-2.4.3" ··· 29235 29597 sources."is-wsl-1.1.0" 29236 29598 sources."destroy-1.0.4" 29237 29599 sources."encodeurl-1.0.1" 29238 - sources."etag-1.8.0" 29239 - sources."fresh-0.5.0" 29600 + sources."etag-1.8.1" 29601 + sources."fresh-0.5.2" 29240 29602 sources."http-errors-1.6.2" 29241 29603 sources."mime-1.3.4" 29242 29604 sources."range-parser-1.2.0" ··· 29291 29653 mocha = nodeEnv.buildNodePackage { 29292 29654 name = "mocha"; 29293 29655 packageName = "mocha"; 29294 - version = "3.5.0"; 29656 + version = "3.5.3"; 29295 29657 src = fetchurl { 29296 - url = "https://registry.npmjs.org/mocha/-/mocha-3.5.0.tgz"; 29297 - sha512 = "0ygdqmd1pxvdrgyympyhfy8cg90632jkggbv7l7irnzl0gaxdmyrrs9bf634046q8xq41bfxysabapgwdy8ssd58vc8nggbk0y3d1d4"; 29658 + url = "https://registry.npmjs.org/mocha/-/mocha-3.5.3.tgz"; 29659 + sha512 = "093v1508xiyy2l0fp2c0rv9qc0jdhi4hz2xil2zyawjvcmag11scslkkyzv2cqwhh24b7ijhbhr3jbyidamgkhiccnn29ac9p9xmagz"; 29298 29660 }; 29299 29661 dependencies = [ 29300 29662 sources."browser-stdout-1.3.0" ··· 29304 29666 sources."escape-string-regexp-1.0.5" 29305 29667 sources."glob-7.1.1" 29306 29668 sources."growl-1.9.2" 29669 + sources."he-1.1.1" 29307 29670 sources."json3-3.3.2" 29308 29671 sources."lodash.create-3.1.1" 29309 29672 sources."mkdirp-0.5.1" ··· 29349 29712 }; 29350 29713 dependencies = [ 29351 29714 sources."commander-2.11.0" 29352 - sources."js-yaml-3.9.1" 29715 + sources."js-yaml-3.10.0" 29353 29716 sources."json-refs-2.1.7" 29354 29717 sources."argparse-1.0.9" 29355 29718 sources."esprima-4.0.0" ··· 29369 29732 sources."formidable-1.1.1" 29370 29733 sources."methods-1.1.2" 29371 29734 sources."mime-1.4.0" 29372 - sources."qs-6.5.0" 29735 + sources."qs-6.5.1" 29373 29736 sources."readable-stream-2.3.3" 29374 29737 sources."ms-2.0.0" 29375 29738 sources."asynckit-0.4.0" ··· 29396 29759 nijs = nodeEnv.buildNodePackage { 29397 29760 name = "nijs"; 29398 29761 packageName = "nijs"; 29399 - version = "0.0.23"; 29762 + version = "0.0.24"; 29400 29763 src = fetchurl { 29401 - url = "https://registry.npmjs.org/nijs/-/nijs-0.0.23.tgz"; 29402 - sha1 = "dbf8f4a0acafbe3b8d9b71c24cbd1d851de6c31a"; 29764 + url = "https://registry.npmjs.org/nijs/-/nijs-0.0.24.tgz"; 29765 + sha1 = "6581de112f5810c9930d5fcdf772f67787e797eb"; 29403 29766 }; 29404 29767 dependencies = [ 29405 29768 sources."optparse-1.0.5" ··· 29408 29771 buildInputs = globalBuildInputs; 29409 29772 meta = { 29410 29773 description = "An internal DSL for the Nix package manager in JavaScript"; 29411 - homepage = https://github.com/svanderburg/nijs; 29774 + homepage = "https://github.com/svanderburg/nijs#readme"; 29412 29775 license = "MIT"; 29413 29776 }; 29414 29777 production = true; ··· 29447 29810 sources."normalize-package-data-2.4.0" 29448 29811 sources."npm-package-arg-5.1.2" 29449 29812 sources."once-1.4.0" 29450 - sources."request-2.81.0" 29813 + sources."request-2.82.0" 29451 29814 sources."retry-0.10.1" 29452 29815 sources."slide-1.1.6" 29453 29816 sources."ssri-4.1.6" ··· 29474 29837 sources."os-tmpdir-1.0.2" 29475 29838 sources."builtins-1.0.3" 29476 29839 sources."wrappy-1.0.2" 29477 - sources."aws-sign2-0.6.0" 29840 + sources."aws-sign2-0.7.0" 29478 29841 sources."aws4-1.6.0" 29479 29842 sources."caseless-0.12.0" 29480 29843 sources."combined-stream-1.0.5" 29481 29844 sources."extend-3.0.1" 29482 29845 sources."forever-agent-0.6.1" 29483 - sources."form-data-2.1.4" 29484 - sources."har-validator-4.2.1" 29485 - sources."hawk-3.1.3" 29486 - sources."http-signature-1.1.1" 29846 + sources."form-data-2.3.1" 29847 + sources."har-validator-5.0.3" 29848 + sources."hawk-6.0.2" 29849 + sources."http-signature-1.2.0" 29487 29850 sources."is-typedarray-1.0.0" 29488 29851 sources."isstream-0.1.2" 29489 29852 sources."json-stringify-safe-5.0.1" 29490 29853 sources."mime-types-2.1.17" 29491 29854 sources."oauth-sign-0.8.2" 29492 - sources."performance-now-0.2.0" 29493 - sources."qs-6.4.0" 29855 + sources."performance-now-2.1.0" 29856 + sources."qs-6.5.1" 29494 29857 sources."stringstream-0.0.5" 29495 29858 sources."tough-cookie-2.3.2" 29496 29859 sources."tunnel-agent-0.6.0" 29497 29860 sources."uuid-3.1.0" 29498 29861 sources."delayed-stream-1.0.0" 29499 29862 sources."asynckit-0.4.0" 29500 - sources."ajv-4.11.8" 29501 - sources."har-schema-1.0.5" 29863 + sources."ajv-5.2.2" 29864 + sources."har-schema-2.0.0" 29502 29865 sources."co-4.6.0" 29866 + sources."fast-deep-equal-1.0.0" 29867 + sources."json-schema-traverse-0.3.1" 29503 29868 sources."json-stable-stringify-1.0.1" 29504 29869 sources."jsonify-0.0.0" 29505 - sources."hoek-2.16.3" 29506 - sources."boom-2.10.1" 29507 - sources."cryptiles-2.0.5" 29508 - sources."sntp-1.0.9" 29509 - sources."assert-plus-0.2.0" 29510 - (sources."jsprim-1.4.1" // { 29870 + sources."hoek-4.2.0" 29871 + sources."boom-4.3.1" 29872 + (sources."cryptiles-3.1.2" // { 29511 29873 dependencies = [ 29512 - sources."assert-plus-1.0.0" 29874 + sources."boom-5.2.0" 29513 29875 ]; 29514 29876 }) 29515 - (sources."sshpk-1.13.1" // { 29516 - dependencies = [ 29517 - sources."assert-plus-1.0.0" 29518 - ]; 29519 - }) 29877 + sources."sntp-2.0.2" 29878 + sources."assert-plus-1.0.0" 29879 + sources."jsprim-1.4.1" 29880 + sources."sshpk-1.13.1" 29520 29881 sources."extsprintf-1.3.0" 29521 29882 sources."json-schema-0.2.3" 29522 - (sources."verror-1.10.0" // { 29523 - dependencies = [ 29524 - sources."assert-plus-1.0.0" 29525 - ]; 29526 - }) 29883 + sources."verror-1.10.0" 29527 29884 sources."asn1-0.2.3" 29528 - (sources."dashdash-1.14.1" // { 29529 - dependencies = [ 29530 - sources."assert-plus-1.0.0" 29531 - ]; 29532 - }) 29533 - (sources."getpass-0.1.7" // { 29534 - dependencies = [ 29535 - sources."assert-plus-1.0.0" 29536 - ]; 29537 - }) 29885 + sources."dashdash-1.14.1" 29886 + sources."getpass-0.1.7" 29538 29887 sources."jsbn-0.1.1" 29539 29888 sources."tweetnacl-0.14.5" 29540 29889 sources."ecc-jsbn-0.1.1" ··· 29546 29895 sources."gauge-2.7.4" 29547 29896 sources."set-blocking-2.0.0" 29548 29897 sources."delegates-1.0.0" 29549 - sources."aproba-1.1.2" 29898 + sources."aproba-1.2.0" 29550 29899 sources."has-unicode-2.0.1" 29551 29900 sources."object-assign-4.1.1" 29552 29901 sources."signal-exit-3.0.2" ··· 29604 29953 sources."nopt-3.0.6" 29605 29954 sources."npmlog-4.1.2" 29606 29955 sources."osenv-0.1.4" 29607 - sources."request-2.81.0" 29608 - sources."rimraf-2.6.1" 29956 + sources."request-2.82.0" 29957 + sources."rimraf-2.6.2" 29609 29958 sources."semver-5.3.0" 29610 29959 sources."tar-2.2.1" 29611 29960 sources."which-1.3.0" ··· 29632 29981 sources."safe-buffer-5.1.1" 29633 29982 sources."string_decoder-1.0.3" 29634 29983 sources."util-deprecate-1.0.2" 29635 - sources."aproba-1.1.2" 29984 + sources."aproba-1.2.0" 29636 29985 sources."has-unicode-2.0.1" 29637 29986 sources."object-assign-4.1.1" 29638 29987 sources."signal-exit-3.0.2" ··· 29645 29994 sources."ansi-regex-2.1.1" 29646 29995 sources."os-homedir-1.0.2" 29647 29996 sources."os-tmpdir-1.0.2" 29648 - sources."aws-sign2-0.6.0" 29997 + sources."aws-sign2-0.7.0" 29649 29998 sources."aws4-1.6.0" 29650 29999 sources."caseless-0.12.0" 29651 30000 sources."combined-stream-1.0.5" 29652 30001 sources."extend-3.0.1" 29653 30002 sources."forever-agent-0.6.1" 29654 - sources."form-data-2.1.4" 29655 - sources."har-validator-4.2.1" 29656 - sources."hawk-3.1.3" 29657 - sources."http-signature-1.1.1" 30003 + sources."form-data-2.3.1" 30004 + sources."har-validator-5.0.3" 30005 + sources."hawk-6.0.2" 30006 + sources."http-signature-1.2.0" 29658 30007 sources."is-typedarray-1.0.0" 29659 30008 sources."isstream-0.1.2" 29660 30009 sources."json-stringify-safe-5.0.1" 29661 30010 sources."mime-types-2.1.17" 29662 30011 sources."oauth-sign-0.8.2" 29663 - sources."performance-now-0.2.0" 29664 - sources."qs-6.4.0" 30012 + sources."performance-now-2.1.0" 30013 + sources."qs-6.5.1" 29665 30014 sources."stringstream-0.0.5" 29666 30015 sources."tough-cookie-2.3.2" 29667 30016 sources."tunnel-agent-0.6.0" 29668 30017 sources."uuid-3.1.0" 29669 30018 sources."delayed-stream-1.0.0" 29670 30019 sources."asynckit-0.4.0" 29671 - sources."ajv-4.11.8" 29672 - sources."har-schema-1.0.5" 30020 + sources."ajv-5.2.2" 30021 + sources."har-schema-2.0.0" 29673 30022 sources."co-4.6.0" 30023 + sources."fast-deep-equal-1.0.0" 30024 + sources."json-schema-traverse-0.3.1" 29674 30025 sources."json-stable-stringify-1.0.1" 29675 30026 sources."jsonify-0.0.0" 29676 - sources."hoek-2.16.3" 29677 - sources."boom-2.10.1" 29678 - sources."cryptiles-2.0.5" 29679 - sources."sntp-1.0.9" 29680 - sources."assert-plus-0.2.0" 29681 - (sources."jsprim-1.4.1" // { 30027 + sources."hoek-4.2.0" 30028 + sources."boom-4.3.1" 30029 + (sources."cryptiles-3.1.2" // { 29682 30030 dependencies = [ 29683 - sources."assert-plus-1.0.0" 30031 + sources."boom-5.2.0" 29684 30032 ]; 29685 30033 }) 29686 - (sources."sshpk-1.13.1" // { 29687 - dependencies = [ 29688 - sources."assert-plus-1.0.0" 29689 - ]; 29690 - }) 30034 + sources."sntp-2.0.2" 30035 + sources."assert-plus-1.0.0" 30036 + sources."jsprim-1.4.1" 30037 + sources."sshpk-1.13.1" 29691 30038 sources."extsprintf-1.3.0" 29692 30039 sources."json-schema-0.2.3" 29693 - (sources."verror-1.10.0" // { 29694 - dependencies = [ 29695 - sources."assert-plus-1.0.0" 29696 - ]; 29697 - }) 30040 + sources."verror-1.10.0" 29698 30041 sources."asn1-0.2.3" 29699 - (sources."dashdash-1.14.1" // { 29700 - dependencies = [ 29701 - sources."assert-plus-1.0.0" 29702 - ]; 29703 - }) 29704 - (sources."getpass-0.1.7" // { 29705 - dependencies = [ 29706 - sources."assert-plus-1.0.0" 29707 - ]; 29708 - }) 30042 + sources."dashdash-1.14.1" 30043 + sources."getpass-0.1.7" 29709 30044 sources."jsbn-0.1.1" 29710 30045 sources."tweetnacl-0.14.5" 29711 30046 sources."ecc-jsbn-0.1.1" ··· 29740 30075 sources."path-is-absolute-1.0.1" 29741 30076 sources."rc-1.2.1" 29742 30077 sources."semver-4.3.6" 29743 - sources."serve-favicon-2.4.3" 30078 + (sources."serve-favicon-2.4.4" // { 30079 + dependencies = [ 30080 + sources."fresh-0.5.1" 30081 + ]; 30082 + }) 29744 30083 sources."strong-data-uri-1.0.4" 29745 30084 sources."v8-debug-1.0.1" 29746 30085 sources."v8-profiler-5.7.0" ··· 29827 30166 sources."accepts-1.3.4" 29828 30167 sources."array-flatten-1.1.1" 29829 30168 sources."content-disposition-0.5.2" 29830 - sources."content-type-1.0.2" 30169 + sources."content-type-1.0.4" 29831 30170 sources."cookie-0.3.1" 29832 30171 sources."cookie-signature-1.0.6" 29833 30172 sources."depd-1.1.1" 29834 30173 sources."encodeurl-1.0.1" 29835 30174 sources."escape-html-1.0.3" 29836 - sources."etag-1.8.0" 29837 - sources."finalhandler-1.0.4" 30175 + sources."etag-1.8.1" 30176 + sources."finalhandler-1.0.5" 29838 30177 sources."fresh-0.5.0" 29839 30178 sources."merge-descriptors-1.0.1" 29840 30179 sources."methods-1.1.2" 29841 30180 sources."on-finished-2.3.0" 29842 - sources."parseurl-1.3.1" 30181 + sources."parseurl-1.3.2" 29843 30182 sources."path-to-regexp-0.1.7" 29844 30183 sources."proxy-addr-1.1.5" 29845 30184 sources."qs-6.5.0" ··· 29856 30195 sources."mime-db-1.30.0" 29857 30196 sources."unpipe-1.0.0" 29858 30197 sources."ee-first-1.1.1" 29859 - sources."forwarded-0.1.0" 30198 + sources."forwarded-0.1.2" 29860 30199 sources."ipaddr.js-1.4.0" 29861 30200 sources."destroy-1.0.4" 29862 30201 sources."http-errors-1.6.2" ··· 29873 30212 sources."deep-extend-0.4.2" 29874 30213 sources."ini-1.3.4" 29875 30214 sources."strip-json-comments-2.0.1" 29876 - sources."safe-buffer-5.0.1" 30215 + sources."safe-buffer-5.1.1" 29877 30216 sources."truncate-1.0.5" 29878 30217 sources."nan-2.7.0" 29879 - (sources."node-pre-gyp-0.6.36" // { 30218 + (sources."node-pre-gyp-0.6.37" // { 29880 30219 dependencies = [ 29881 - sources."rimraf-2.6.1" 30220 + sources."rimraf-2.6.2" 29882 30221 sources."semver-5.4.1" 29883 30222 sources."glob-7.1.2" 29884 30223 ]; 29885 30224 }) 29886 30225 sources."nopt-4.0.1" 29887 30226 sources."npmlog-4.1.2" 29888 - (sources."request-2.81.0" // { 30227 + (sources."request-2.82.0" // { 30228 + dependencies = [ 30229 + sources."qs-6.5.1" 30230 + ]; 30231 + }) 30232 + (sources."tape-4.8.0" // { 29889 30233 dependencies = [ 29890 - sources."qs-6.4.0" 30234 + sources."glob-7.1.2" 29891 30235 ]; 29892 30236 }) 29893 30237 sources."tar-2.2.1" 29894 30238 (sources."tar-pack-3.4.0" // { 29895 30239 dependencies = [ 29896 - sources."rimraf-2.6.1" 30240 + sources."rimraf-2.6.2" 29897 30241 sources."glob-7.1.2" 29898 30242 ]; 29899 30243 }) ··· 29903 30247 sources."gauge-2.7.4" 29904 30248 sources."set-blocking-2.0.0" 29905 30249 sources."delegates-1.0.0" 29906 - (sources."readable-stream-2.3.3" // { 29907 - dependencies = [ 29908 - sources."safe-buffer-5.1.1" 29909 - ]; 29910 - }) 30250 + sources."readable-stream-2.3.3" 29911 30251 sources."core-util-is-1.0.2" 29912 30252 sources."isarray-1.0.0" 29913 30253 sources."process-nextick-args-1.0.7" 29914 - (sources."string_decoder-1.0.3" // { 29915 - dependencies = [ 29916 - sources."safe-buffer-5.1.1" 29917 - ]; 29918 - }) 29919 - sources."aproba-1.1.2" 30254 + sources."string_decoder-1.0.3" 30255 + sources."aproba-1.2.0" 29920 30256 sources."has-unicode-2.0.1" 29921 30257 sources."string-width-1.0.2" 29922 30258 sources."strip-ansi-3.0.1" ··· 29924 30260 sources."code-point-at-1.1.0" 29925 30261 sources."is-fullwidth-code-point-1.0.0" 29926 30262 sources."ansi-regex-2.1.1" 29927 - sources."aws-sign2-0.6.0" 30263 + sources."aws-sign2-0.7.0" 29928 30264 sources."aws4-1.6.0" 29929 30265 sources."caseless-0.12.0" 29930 30266 sources."combined-stream-1.0.5" 29931 30267 sources."extend-3.0.1" 29932 30268 sources."forever-agent-0.6.1" 29933 - sources."form-data-2.1.4" 29934 - sources."har-validator-4.2.1" 29935 - sources."hawk-3.1.3" 29936 - sources."http-signature-1.1.1" 30269 + sources."form-data-2.3.1" 30270 + sources."har-validator-5.0.3" 30271 + sources."hawk-6.0.2" 30272 + sources."http-signature-1.2.0" 29937 30273 sources."is-typedarray-1.0.0" 29938 30274 sources."isstream-0.1.2" 29939 30275 sources."json-stringify-safe-5.0.1" 29940 30276 sources."oauth-sign-0.8.2" 29941 - sources."performance-now-0.2.0" 30277 + sources."performance-now-2.1.0" 29942 30278 sources."stringstream-0.0.5" 29943 30279 sources."tough-cookie-2.3.2" 29944 30280 sources."tunnel-agent-0.6.0" 29945 30281 sources."uuid-3.1.0" 29946 30282 sources."delayed-stream-1.0.0" 29947 30283 sources."asynckit-0.4.0" 29948 - sources."ajv-4.11.8" 29949 - sources."har-schema-1.0.5" 30284 + sources."ajv-5.2.2" 30285 + sources."har-schema-2.0.0" 29950 30286 sources."co-4.6.0" 30287 + sources."fast-deep-equal-1.0.0" 30288 + sources."json-schema-traverse-0.3.1" 29951 30289 sources."json-stable-stringify-1.0.1" 29952 30290 sources."jsonify-0.0.0" 29953 - sources."hoek-2.16.3" 29954 - sources."boom-2.10.1" 29955 - sources."cryptiles-2.0.5" 29956 - sources."sntp-1.0.9" 29957 - sources."assert-plus-0.2.0" 29958 - (sources."jsprim-1.4.1" // { 29959 - dependencies = [ 29960 - sources."assert-plus-1.0.0" 29961 - ]; 29962 - }) 29963 - (sources."sshpk-1.13.1" // { 30291 + sources."hoek-4.2.0" 30292 + sources."boom-4.3.1" 30293 + (sources."cryptiles-3.1.2" // { 29964 30294 dependencies = [ 29965 - sources."assert-plus-1.0.0" 30295 + sources."boom-5.2.0" 29966 30296 ]; 29967 30297 }) 30298 + sources."sntp-2.0.2" 30299 + sources."assert-plus-1.0.0" 30300 + sources."jsprim-1.4.1" 30301 + sources."sshpk-1.13.1" 29968 30302 sources."extsprintf-1.3.0" 29969 30303 sources."json-schema-0.2.3" 29970 - (sources."verror-1.10.0" // { 29971 - dependencies = [ 29972 - sources."assert-plus-1.0.0" 29973 - ]; 29974 - }) 30304 + sources."verror-1.10.0" 29975 30305 sources."asn1-0.2.3" 29976 - (sources."dashdash-1.14.1" // { 29977 - dependencies = [ 29978 - sources."assert-plus-1.0.0" 29979 - ]; 29980 - }) 29981 - (sources."getpass-0.1.7" // { 29982 - dependencies = [ 29983 - sources."assert-plus-1.0.0" 29984 - ]; 29985 - }) 30306 + sources."dashdash-1.14.1" 30307 + sources."getpass-0.1.7" 29986 30308 sources."jsbn-0.1.1" 29987 30309 sources."tweetnacl-0.14.5" 29988 30310 sources."ecc-jsbn-0.1.1" 29989 30311 sources."bcrypt-pbkdf-1.0.1" 29990 30312 sources."punycode-1.4.1" 29991 30313 sources."fs.realpath-1.0.0" 30314 + sources."deep-equal-1.0.1" 30315 + sources."defined-1.0.0" 30316 + sources."for-each-0.3.2" 30317 + sources."function-bind-1.1.1" 30318 + sources."has-1.0.1" 30319 + sources."object-inspect-1.3.0" 30320 + sources."resolve-1.4.0" 30321 + sources."resumer-0.0.0" 30322 + sources."string.prototype.trim-1.1.2" 30323 + sources."through-2.3.8" 30324 + sources."is-function-1.0.1" 30325 + sources."path-parse-1.0.5" 30326 + sources."define-properties-1.1.2" 30327 + sources."es-abstract-1.8.2" 30328 + sources."foreach-2.0.5" 30329 + sources."object-keys-1.0.11" 30330 + sources."es-to-primitive-1.1.1" 30331 + sources."is-callable-1.1.3" 30332 + sources."is-regex-1.0.4" 30333 + sources."is-date-object-1.0.1" 30334 + sources."is-symbol-1.0.1" 29992 30335 sources."block-stream-0.0.9" 29993 30336 sources."fstream-1.0.11" 29994 30337 sources."fstream-ignore-1.0.5" ··· 30014 30357 node-pre-gyp = nodeEnv.buildNodePackage { 30015 30358 name = "node-pre-gyp"; 30016 30359 packageName = "node-pre-gyp"; 30017 - version = "0.6.36"; 30360 + version = "0.6.37"; 30018 30361 src = fetchurl { 30019 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; 30020 - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; 30362 + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz"; 30363 + sha1 = "3c872b236b2e266e4140578fe1ee88f693323a05"; 30021 30364 }; 30022 30365 dependencies = [ 30023 30366 sources."mkdirp-0.5.1" ··· 30028 30371 sources."minimist-1.2.0" 30029 30372 ]; 30030 30373 }) 30031 - sources."request-2.81.0" 30032 - sources."rimraf-2.6.1" 30374 + sources."request-2.82.0" 30375 + sources."rimraf-2.6.2" 30033 30376 sources."semver-5.4.1" 30377 + (sources."tape-4.8.0" // { 30378 + dependencies = [ 30379 + sources."minimist-1.2.0" 30380 + ]; 30381 + }) 30034 30382 sources."tar-2.2.1" 30035 30383 sources."tar-pack-3.4.0" 30036 30384 sources."minimist-0.0.8" ··· 30051 30399 sources."safe-buffer-5.1.1" 30052 30400 sources."string_decoder-1.0.3" 30053 30401 sources."util-deprecate-1.0.2" 30054 - sources."aproba-1.1.2" 30402 + sources."aproba-1.2.0" 30055 30403 sources."has-unicode-2.0.1" 30056 30404 sources."object-assign-4.1.1" 30057 30405 sources."signal-exit-3.0.2" ··· 30065 30413 sources."deep-extend-0.4.2" 30066 30414 sources."ini-1.3.4" 30067 30415 sources."strip-json-comments-2.0.1" 30068 - sources."aws-sign2-0.6.0" 30416 + sources."aws-sign2-0.7.0" 30069 30417 sources."aws4-1.6.0" 30070 30418 sources."caseless-0.12.0" 30071 30419 sources."combined-stream-1.0.5" 30072 30420 sources."extend-3.0.1" 30073 30421 sources."forever-agent-0.6.1" 30074 - sources."form-data-2.1.4" 30075 - sources."har-validator-4.2.1" 30076 - sources."hawk-3.1.3" 30077 - sources."http-signature-1.1.1" 30422 + sources."form-data-2.3.1" 30423 + sources."har-validator-5.0.3" 30424 + sources."hawk-6.0.2" 30425 + sources."http-signature-1.2.0" 30078 30426 sources."is-typedarray-1.0.0" 30079 30427 sources."isstream-0.1.2" 30080 30428 sources."json-stringify-safe-5.0.1" 30081 30429 sources."mime-types-2.1.17" 30082 30430 sources."oauth-sign-0.8.2" 30083 - sources."performance-now-0.2.0" 30084 - sources."qs-6.4.0" 30431 + sources."performance-now-2.1.0" 30432 + sources."qs-6.5.1" 30085 30433 sources."stringstream-0.0.5" 30086 30434 sources."tough-cookie-2.3.2" 30087 30435 sources."tunnel-agent-0.6.0" 30088 30436 sources."uuid-3.1.0" 30089 30437 sources."delayed-stream-1.0.0" 30090 30438 sources."asynckit-0.4.0" 30091 - sources."ajv-4.11.8" 30092 - sources."har-schema-1.0.5" 30439 + sources."ajv-5.2.2" 30440 + sources."har-schema-2.0.0" 30093 30441 sources."co-4.6.0" 30442 + sources."fast-deep-equal-1.0.0" 30443 + sources."json-schema-traverse-0.3.1" 30094 30444 sources."json-stable-stringify-1.0.1" 30095 30445 sources."jsonify-0.0.0" 30096 - sources."hoek-2.16.3" 30097 - sources."boom-2.10.1" 30098 - sources."cryptiles-2.0.5" 30099 - sources."sntp-1.0.9" 30100 - sources."assert-plus-0.2.0" 30101 - (sources."jsprim-1.4.1" // { 30102 - dependencies = [ 30103 - sources."assert-plus-1.0.0" 30104 - ]; 30105 - }) 30106 - (sources."sshpk-1.13.1" // { 30446 + sources."hoek-4.2.0" 30447 + sources."boom-4.3.1" 30448 + (sources."cryptiles-3.1.2" // { 30107 30449 dependencies = [ 30108 - sources."assert-plus-1.0.0" 30450 + sources."boom-5.2.0" 30109 30451 ]; 30110 30452 }) 30453 + sources."sntp-2.0.2" 30454 + sources."assert-plus-1.0.0" 30455 + sources."jsprim-1.4.1" 30456 + sources."sshpk-1.13.1" 30111 30457 sources."extsprintf-1.3.0" 30112 30458 sources."json-schema-0.2.3" 30113 - (sources."verror-1.10.0" // { 30114 - dependencies = [ 30115 - sources."assert-plus-1.0.0" 30116 - ]; 30117 - }) 30459 + sources."verror-1.10.0" 30118 30460 sources."asn1-0.2.3" 30119 - (sources."dashdash-1.14.1" // { 30120 - dependencies = [ 30121 - sources."assert-plus-1.0.0" 30122 - ]; 30123 - }) 30124 - (sources."getpass-0.1.7" // { 30125 - dependencies = [ 30126 - sources."assert-plus-1.0.0" 30127 - ]; 30128 - }) 30461 + sources."dashdash-1.14.1" 30462 + sources."getpass-0.1.7" 30129 30463 sources."jsbn-0.1.1" 30130 30464 sources."tweetnacl-0.14.5" 30131 30465 sources."ecc-jsbn-0.1.1" ··· 30142 30476 sources."brace-expansion-1.1.8" 30143 30477 sources."balanced-match-1.0.0" 30144 30478 sources."concat-map-0.0.1" 30479 + sources."deep-equal-1.0.1" 30480 + sources."defined-1.0.0" 30481 + sources."for-each-0.3.2" 30482 + sources."function-bind-1.1.1" 30483 + sources."has-1.0.1" 30484 + sources."object-inspect-1.3.0" 30485 + sources."resolve-1.4.0" 30486 + sources."resumer-0.0.0" 30487 + sources."string.prototype.trim-1.1.2" 30488 + sources."through-2.3.8" 30489 + sources."is-function-1.0.1" 30490 + sources."path-parse-1.0.5" 30491 + sources."define-properties-1.1.2" 30492 + sources."es-abstract-1.8.2" 30493 + sources."foreach-2.0.5" 30494 + sources."object-keys-1.0.11" 30495 + sources."es-to-primitive-1.1.1" 30496 + sources."is-callable-1.1.3" 30497 + sources."is-regex-1.0.4" 30498 + sources."is-date-object-1.0.1" 30499 + sources."is-symbol-1.0.1" 30145 30500 sources."block-stream-0.0.9" 30146 30501 sources."fstream-1.0.11" 30147 30502 sources."graceful-fs-4.1.11" ··· 30161 30516 nodemon = nodeEnv.buildNodePackage { 30162 30517 name = "nodemon"; 30163 30518 packageName = "nodemon"; 30164 - version = "1.12.0"; 30519 + version = "1.12.1"; 30165 30520 src = fetchurl { 30166 - url = "https://registry.npmjs.org/nodemon/-/nodemon-1.12.0.tgz"; 30167 - sha1 = "e538548a777340a19f855c4f087b7e528aa3feda"; 30521 + url = "https://registry.npmjs.org/nodemon/-/nodemon-1.12.1.tgz"; 30522 + sha1 = "996a56dc49d9f16bbf1b78a4de08f13634b3878d"; 30168 30523 }; 30169 30524 dependencies = [ 30170 30525 sources."chokidar-1.7.0" ··· 30242 30597 sources."string_decoder-1.0.3" 30243 30598 sources."util-deprecate-1.0.2" 30244 30599 sources."nan-2.7.0" 30245 - sources."node-pre-gyp-0.6.36" 30600 + sources."node-pre-gyp-0.6.37" 30246 30601 sources."mkdirp-0.5.1" 30247 30602 sources."nopt-4.0.1" 30248 30603 sources."npmlog-4.1.2" ··· 30251 30606 sources."minimist-1.2.0" 30252 30607 ]; 30253 30608 }) 30254 - sources."request-2.81.0" 30255 - sources."rimraf-2.6.1" 30609 + sources."request-2.82.0" 30610 + sources."rimraf-2.6.2" 30256 30611 sources."semver-5.4.1" 30612 + (sources."tape-4.8.0" // { 30613 + dependencies = [ 30614 + sources."minimist-1.2.0" 30615 + ]; 30616 + }) 30257 30617 sources."tar-2.2.1" 30258 30618 sources."tar-pack-3.4.0" 30259 30619 sources."minimist-0.0.8" ··· 30266 30626 sources."gauge-2.7.4" 30267 30627 sources."set-blocking-2.0.0" 30268 30628 sources."delegates-1.0.0" 30269 - sources."aproba-1.1.2" 30629 + sources."aproba-1.2.0" 30270 30630 sources."has-unicode-2.0.1" 30271 30631 sources."object-assign-4.1.1" 30272 30632 sources."signal-exit-3.0.2" ··· 30280 30640 sources."deep-extend-0.4.2" 30281 30641 sources."ini-1.3.4" 30282 30642 sources."strip-json-comments-2.0.1" 30283 - sources."aws-sign2-0.6.0" 30643 + sources."aws-sign2-0.7.0" 30284 30644 sources."aws4-1.6.0" 30285 30645 sources."caseless-0.12.0" 30286 30646 sources."combined-stream-1.0.5" 30287 30647 sources."extend-3.0.1" 30288 30648 sources."forever-agent-0.6.1" 30289 - sources."form-data-2.1.4" 30290 - sources."har-validator-4.2.1" 30291 - sources."hawk-3.1.3" 30292 - sources."http-signature-1.1.1" 30649 + sources."form-data-2.3.1" 30650 + sources."har-validator-5.0.3" 30651 + sources."hawk-6.0.2" 30652 + sources."http-signature-1.2.0" 30293 30653 sources."is-typedarray-1.0.0" 30294 30654 sources."isstream-0.1.2" 30295 30655 sources."json-stringify-safe-5.0.1" 30296 30656 sources."mime-types-2.1.17" 30297 30657 sources."oauth-sign-0.8.2" 30298 - sources."performance-now-0.2.0" 30299 - sources."qs-6.4.0" 30658 + sources."performance-now-2.1.0" 30659 + sources."qs-6.5.1" 30300 30660 sources."stringstream-0.0.5" 30301 30661 sources."tough-cookie-2.3.2" 30302 30662 sources."tunnel-agent-0.6.0" 30303 30663 sources."uuid-3.1.0" 30304 30664 sources."delayed-stream-1.0.0" 30305 30665 sources."asynckit-0.4.0" 30306 - sources."ajv-4.11.8" 30307 - sources."har-schema-1.0.5" 30666 + sources."ajv-5.2.2" 30667 + sources."har-schema-2.0.0" 30308 30668 sources."co-4.6.0" 30669 + sources."fast-deep-equal-1.0.0" 30670 + sources."json-schema-traverse-0.3.1" 30309 30671 sources."json-stable-stringify-1.0.1" 30310 30672 sources."jsonify-0.0.0" 30311 - sources."hoek-2.16.3" 30312 - sources."boom-2.10.1" 30313 - sources."cryptiles-2.0.5" 30314 - sources."sntp-1.0.9" 30315 - sources."assert-plus-0.2.0" 30316 - (sources."jsprim-1.4.1" // { 30673 + sources."hoek-4.2.0" 30674 + sources."boom-4.3.1" 30675 + (sources."cryptiles-3.1.2" // { 30317 30676 dependencies = [ 30318 - sources."assert-plus-1.0.0" 30319 - ]; 30320 - }) 30321 - (sources."sshpk-1.13.1" // { 30322 - dependencies = [ 30323 - sources."assert-plus-1.0.0" 30677 + sources."boom-5.2.0" 30324 30678 ]; 30325 30679 }) 30680 + sources."sntp-2.0.2" 30681 + sources."assert-plus-1.0.0" 30682 + sources."jsprim-1.4.1" 30683 + sources."sshpk-1.13.1" 30326 30684 sources."extsprintf-1.3.0" 30327 30685 sources."json-schema-0.2.3" 30328 - (sources."verror-1.10.0" // { 30329 - dependencies = [ 30330 - sources."assert-plus-1.0.0" 30331 - ]; 30332 - }) 30686 + sources."verror-1.10.0" 30333 30687 sources."asn1-0.2.3" 30334 - (sources."dashdash-1.14.1" // { 30335 - dependencies = [ 30336 - sources."assert-plus-1.0.0" 30337 - ]; 30338 - }) 30339 - (sources."getpass-0.1.7" // { 30340 - dependencies = [ 30341 - sources."assert-plus-1.0.0" 30342 - ]; 30343 - }) 30688 + sources."dashdash-1.14.1" 30689 + sources."getpass-0.1.7" 30344 30690 sources."jsbn-0.1.1" 30345 30691 sources."tweetnacl-0.14.5" 30346 30692 sources."ecc-jsbn-0.1.1" ··· 30352 30698 sources."inflight-1.0.6" 30353 30699 sources."once-1.4.0" 30354 30700 sources."wrappy-1.0.2" 30701 + sources."deep-equal-1.0.1" 30702 + sources."defined-1.0.0" 30703 + sources."for-each-0.3.2" 30704 + sources."function-bind-1.1.1" 30705 + sources."has-1.0.1" 30706 + sources."object-inspect-1.3.0" 30707 + sources."resolve-1.4.0" 30708 + sources."resumer-0.0.0" 30709 + sources."string.prototype.trim-1.1.2" 30710 + sources."through-2.3.8" 30711 + sources."is-function-1.0.1" 30712 + sources."path-parse-1.0.5" 30713 + sources."define-properties-1.1.2" 30714 + sources."es-abstract-1.8.2" 30715 + sources."foreach-2.0.5" 30716 + sources."object-keys-1.0.11" 30717 + sources."es-to-primitive-1.1.1" 30718 + sources."is-callable-1.1.3" 30719 + sources."is-regex-1.0.4" 30720 + sources."is-date-object-1.0.1" 30721 + sources."is-symbol-1.0.1" 30355 30722 sources."block-stream-0.0.9" 30356 30723 sources."fstream-1.0.11" 30357 30724 sources."fstream-ignore-1.0.5" ··· 30372 30739 sources."balanced-match-1.0.0" 30373 30740 sources."concat-map-0.0.1" 30374 30741 sources."event-stream-3.3.4" 30375 - sources."through-2.3.8" 30376 30742 sources."duplexer-0.1.1" 30377 30743 sources."from-0.1.7" 30378 30744 sources."map-stream-0.1.0" ··· 30528 30894 sources."node-red-node-email-0.1.24" 30529 30895 (sources."node-red-node-twitter-0.1.11" // { 30530 30896 dependencies = [ 30531 - sources."request-2.81.0" 30897 + sources."request-2.82.0" 30898 + sources."aws-sign2-0.7.0" 30532 30899 sources."caseless-0.12.0" 30533 - sources."form-data-2.1.4" 30534 - sources."har-validator-4.2.1" 30900 + sources."form-data-2.3.1" 30901 + sources."har-validator-5.0.3" 30902 + sources."hawk-6.0.2" 30903 + sources."http-signature-1.2.0" 30904 + sources."qs-6.5.1" 30535 30905 sources."tunnel-agent-0.6.0" 30906 + sources."hoek-4.2.0" 30907 + sources."boom-4.3.1" 30908 + (sources."cryptiles-3.1.2" // { 30909 + dependencies = [ 30910 + sources."boom-5.2.0" 30911 + ]; 30912 + }) 30913 + sources."sntp-2.0.2" 30914 + sources."assert-plus-1.0.0" 30536 30915 ]; 30537 30916 }) 30538 - sources."node-red-node-rbe-0.1.11" 30917 + sources."node-red-node-rbe-0.1.13" 30539 30918 sources."bcrypt-1.0.3" 30540 30919 sources."bytes-2.4.0" 30541 - sources."content-type-1.0.2" 30920 + sources."content-type-1.0.4" 30542 30921 sources."debug-2.6.7" 30543 30922 sources."depd-1.1.1" 30544 30923 sources."http-errors-1.6.2" ··· 30596 30975 sources."content-disposition-0.5.2" 30597 30976 sources."encodeurl-1.0.1" 30598 30977 sources."escape-html-1.0.3" 30599 - sources."etag-1.8.0" 30600 - (sources."finalhandler-1.0.4" // { 30978 + sources."etag-1.8.1" 30979 + (sources."finalhandler-1.0.5" // { 30601 30980 dependencies = [ 30602 30981 sources."debug-2.6.8" 30603 30982 ]; ··· 30605 30984 sources."fresh-0.5.0" 30606 30985 sources."merge-descriptors-1.0.1" 30607 30986 sources."methods-1.1.2" 30608 - sources."parseurl-1.3.1" 30987 + sources."parseurl-1.3.2" 30609 30988 sources."path-to-regexp-0.1.7" 30610 30989 sources."proxy-addr-1.1.5" 30611 30990 sources."range-parser-1.2.0" ··· 30614 30993 sources."utils-merge-1.0.0" 30615 30994 sources."negotiator-0.6.1" 30616 30995 sources."unpipe-1.0.0" 30617 - sources."forwarded-0.1.0" 30996 + sources."forwarded-0.1.2" 30618 30997 sources."ipaddr.js-1.4.0" 30619 30998 sources."destroy-1.0.4" 30620 30999 sources."mime-1.3.4" ··· 30644 31023 sources."split2-2.1.1" 30645 31024 (sources."websocket-stream-5.0.1" // { 30646 31025 dependencies = [ 30647 - sources."ws-3.1.0" 31026 + sources."ws-3.2.0" 30648 31027 ]; 30649 31028 }) 30650 31029 sources."xtend-4.0.1" ··· 30687 31066 sources."through2-filter-2.0.0" 30688 31067 sources."jsonify-0.0.0" 30689 31068 sources."bl-1.2.1" 31069 + sources."async-limiter-1.0.0" 30690 31070 sources."ultron-1.1.0" 30691 31071 sources."append-field-0.1.0" 30692 31072 (sources."busboy-0.2.14" // { ··· 30856 31236 sources."utf7-1.0.2" 30857 31237 sources."twitter-ng-0.6.2" 30858 31238 sources."oauth-0.9.14" 30859 - sources."performance-now-0.2.0" 31239 + sources."performance-now-2.1.0" 30860 31240 sources."uuid-3.1.0" 30861 31241 sources."asynckit-0.4.0" 30862 - sources."ajv-4.11.8" 30863 - sources."har-schema-1.0.5" 31242 + sources."ajv-5.2.2" 31243 + sources."har-schema-2.0.0" 30864 31244 sources."co-4.6.0" 31245 + sources."fast-deep-equal-1.0.0" 31246 + sources."json-schema-traverse-0.3.1" 30865 31247 sources."nan-2.6.2" 30866 31248 (sources."node-pre-gyp-0.6.36" // { 30867 31249 dependencies = [ 30868 31250 sources."nopt-4.0.1" 30869 - sources."request-2.81.0" 31251 + sources."request-2.82.0" 31252 + sources."aws-sign2-0.7.0" 30870 31253 sources."caseless-0.12.0" 30871 - sources."form-data-2.1.4" 30872 - sources."har-validator-4.2.1" 31254 + sources."form-data-2.3.1" 31255 + sources."har-validator-5.0.3" 31256 + sources."hawk-6.0.2" 31257 + sources."http-signature-1.2.0" 31258 + sources."qs-6.5.1" 30873 31259 sources."tunnel-agent-0.6.0" 31260 + sources."hoek-4.2.0" 31261 + sources."boom-4.3.1" 31262 + (sources."cryptiles-3.1.2" // { 31263 + dependencies = [ 31264 + sources."boom-5.2.0" 31265 + ]; 31266 + }) 31267 + sources."sntp-2.0.2" 31268 + sources."assert-plus-1.0.0" 30874 31269 ]; 30875 31270 }) 30876 31271 sources."npmlog-4.1.2" 30877 31272 sources."rc-1.2.1" 30878 - sources."rimraf-2.6.1" 31273 + sources."rimraf-2.6.2" 30879 31274 sources."tar-2.2.1" 30880 31275 sources."tar-pack-3.4.0" 30881 31276 sources."osenv-0.1.4" ··· 30886 31281 sources."gauge-2.7.4" 30887 31282 sources."set-blocking-2.0.0" 30888 31283 sources."delegates-1.0.0" 30889 - sources."aproba-1.1.2" 31284 + sources."aproba-1.2.0" 30890 31285 sources."has-unicode-2.0.1" 30891 31286 sources."signal-exit-3.0.2" 30892 31287 sources."string-width-1.0.2" ··· 31039 31434 npm = nodeEnv.buildNodePackage { 31040 31435 name = "npm"; 31041 31436 packageName = "npm"; 31042 - version = "5.4.1"; 31437 + version = "5.4.2"; 31043 31438 src = fetchurl { 31044 - url = "https://registry.npmjs.org/npm/-/npm-5.4.1.tgz"; 31045 - sha512 = "0vb3ad2wgv4y52jwbz8xpzg36hzimbbnlad594kblfq2mjfnaw9v4zzgd19ghan4a622s4zcrap51l2fww79lbl6n2qfv26allyg26z"; 31439 + url = "https://registry.npmjs.org/npm/-/npm-5.4.2.tgz"; 31440 + sha512 = "28m9zjiynb24b8bxikdaya27j87am88x1y8l70pvmh9fk3pfq0y6xvqjmpy72ld4csnz9s1hik1ff8a19sx6pyi8f5ar27b044cp8hp"; 31046 31441 }; 31047 31442 dependencies = [ 31048 31443 sources."JSONStream-1.3.1" ··· 31104 31499 sources."npm-install-checks-3.0.0" 31105 31500 sources."npm-lifecycle-1.0.3" 31106 31501 sources."npm-package-arg-5.1.2" 31107 - sources."npm-packlist-1.1.8" 31502 + sources."npm-packlist-1.1.9" 31108 31503 sources."npm-registry-client-8.4.0" 31109 31504 sources."npm-user-validate-1.0.0" 31110 31505 sources."npmlog-4.1.2" ··· 31122 31517 sources."readable-stream-2.3.3" 31123 31518 sources."request-2.81.0" 31124 31519 sources."retry-0.10.1" 31125 - sources."rimraf-2.6.1" 31520 + sources."rimraf-2.6.2" 31126 31521 sources."safe-buffer-5.1.1" 31127 31522 sources."semver-5.4.1" 31128 31523 sources."sha-2.0.1" ··· 31154 31549 sources."which-1.3.0" 31155 31550 sources."worker-farm-1.5.0" 31156 31551 sources."wrappy-1.0.2" 31157 - sources."write-file-atomic-2.3.0" 31552 + sources."write-file-atomic-2.1.0" 31158 31553 sources."debuglog-1.0.1" 31159 31554 sources."imurmurhash-0.1.4" 31160 31555 sources."lodash._baseindexof-3.1.0" ··· 31298 31693 sources."http-proxy-agent-2.0.0" 31299 31694 sources."https-proxy-agent-2.1.0" 31300 31695 sources."node-fetch-npm-2.0.2" 31301 - sources."socks-proxy-agent-3.0.0" 31696 + sources."socks-proxy-agent-3.0.1" 31302 31697 sources."humanize-ms-1.2.1" 31303 31698 sources."ms-2.0.0" 31304 31699 sources."agent-base-4.1.1" ··· 31307 31702 sources."es6-promise-4.1.1" 31308 31703 sources."encoding-0.1.12" 31309 31704 sources."json-parse-better-errors-1.0.1" 31310 - sources."iconv-lite-0.4.18" 31705 + sources."iconv-lite-0.4.19" 31311 31706 sources."socks-1.1.10" 31312 31707 sources."ip-1.1.5" 31313 31708 sources."smart-buffer-1.1.15" ··· 31517 31912 sources."coffee-script-1.12.7" 31518 31913 sources."underscore-1.4.4" 31519 31914 sources."underscore.string-2.3.3" 31520 - sources."request-2.81.0" 31915 + sources."request-2.82.0" 31521 31916 sources."graceful-fs-2.0.3" 31522 31917 sources."slide-1.1.6" 31523 31918 sources."chownr-0.0.2" 31524 31919 sources."mkdirp-0.3.5" 31525 - sources."rimraf-2.6.1" 31920 + sources."rimraf-2.6.2" 31526 31921 sources."retry-0.6.0" 31527 31922 sources."couch-login-0.1.20" 31528 31923 sources."npmlog-4.1.2" 31529 - sources."aws-sign2-0.6.0" 31924 + sources."aws-sign2-0.7.0" 31530 31925 sources."aws4-1.6.0" 31531 31926 sources."caseless-0.12.0" 31532 31927 sources."combined-stream-1.0.5" 31533 31928 sources."extend-3.0.1" 31534 31929 sources."forever-agent-0.6.1" 31535 - sources."form-data-2.1.4" 31536 - sources."har-validator-4.2.1" 31537 - sources."hawk-3.1.3" 31538 - sources."http-signature-1.1.1" 31930 + sources."form-data-2.3.1" 31931 + sources."har-validator-5.0.3" 31932 + sources."hawk-6.0.2" 31933 + sources."http-signature-1.2.0" 31539 31934 sources."is-typedarray-1.0.0" 31540 31935 sources."isstream-0.1.2" 31541 31936 sources."json-stringify-safe-5.0.1" 31542 31937 sources."mime-types-2.1.17" 31543 31938 sources."oauth-sign-0.8.2" 31544 - sources."performance-now-0.2.0" 31545 - sources."qs-6.4.0" 31939 + sources."performance-now-2.1.0" 31940 + sources."qs-6.5.1" 31546 31941 sources."safe-buffer-5.1.1" 31547 31942 sources."stringstream-0.0.5" 31548 31943 sources."tough-cookie-2.3.2" ··· 31550 31945 sources."uuid-3.1.0" 31551 31946 sources."delayed-stream-1.0.0" 31552 31947 sources."asynckit-0.4.0" 31553 - sources."ajv-4.11.8" 31554 - sources."har-schema-1.0.5" 31948 + sources."ajv-5.2.2" 31949 + sources."har-schema-2.0.0" 31555 31950 sources."co-4.6.0" 31951 + sources."fast-deep-equal-1.0.0" 31952 + sources."json-schema-traverse-0.3.1" 31556 31953 sources."json-stable-stringify-1.0.1" 31557 31954 sources."jsonify-0.0.0" 31558 - sources."hoek-2.16.3" 31559 - sources."boom-2.10.1" 31560 - sources."cryptiles-2.0.5" 31561 - sources."sntp-1.0.9" 31562 - sources."assert-plus-0.2.0" 31563 - (sources."jsprim-1.4.1" // { 31564 - dependencies = [ 31565 - sources."assert-plus-1.0.0" 31566 - ]; 31567 - }) 31568 - (sources."sshpk-1.13.1" // { 31955 + sources."hoek-4.2.0" 31956 + sources."boom-4.3.1" 31957 + (sources."cryptiles-3.1.2" // { 31569 31958 dependencies = [ 31570 - sources."assert-plus-1.0.0" 31959 + sources."boom-5.2.0" 31571 31960 ]; 31572 31961 }) 31962 + sources."sntp-2.0.2" 31963 + sources."assert-plus-1.0.0" 31964 + sources."jsprim-1.4.1" 31965 + sources."sshpk-1.13.1" 31573 31966 sources."extsprintf-1.3.0" 31574 31967 sources."json-schema-0.2.3" 31575 - (sources."verror-1.10.0" // { 31576 - dependencies = [ 31577 - sources."assert-plus-1.0.0" 31578 - ]; 31579 - }) 31968 + sources."verror-1.10.0" 31580 31969 sources."core-util-is-1.0.2" 31581 31970 sources."asn1-0.2.3" 31582 - (sources."dashdash-1.14.1" // { 31583 - dependencies = [ 31584 - sources."assert-plus-1.0.0" 31585 - ]; 31586 - }) 31587 - (sources."getpass-0.1.7" // { 31588 - dependencies = [ 31589 - sources."assert-plus-1.0.0" 31590 - ]; 31591 - }) 31971 + sources."dashdash-1.14.1" 31972 + sources."getpass-0.1.7" 31592 31973 sources."jsbn-0.1.1" 31593 31974 sources."tweetnacl-0.14.5" 31594 31975 sources."ecc-jsbn-0.1.1" ··· 31616 31997 sources."process-nextick-args-1.0.7" 31617 31998 sources."string_decoder-1.0.3" 31618 31999 sources."util-deprecate-1.0.2" 31619 - sources."aproba-1.1.2" 32000 + sources."aproba-1.2.0" 31620 32001 sources."has-unicode-2.0.1" 31621 32002 sources."object-assign-4.1.1" 31622 32003 sources."signal-exit-3.0.2" ··· 31677 32058 sources."cint-8.2.1" 31678 32059 sources."cli-table-0.3.1" 31679 32060 sources."commander-2.11.0" 31680 - sources."fast-diff-1.1.1" 32061 + sources."fast-diff-1.1.2" 31681 32062 sources."find-up-1.1.2" 31682 32063 sources."get-stdin-5.0.1" 31683 32064 sources."json-parse-helpfulerror-1.0.3" ··· 31696 32077 sources."require-dir-0.3.2" 31697 32078 sources."semver-5.4.1" 31698 32079 sources."semver-utils-1.1.1" 31699 - (sources."snyk-1.40.2" // { 32080 + (sources."snyk-1.41.0" // { 31700 32081 dependencies = [ 31701 32082 sources."update-notifier-0.5.0" 31702 32083 sources."latest-version-1.0.1" ··· 31997 32378 sources."mute-stream-0.0.6" 31998 32379 ]; 31999 32380 }) 32381 + sources."needle-2.0.1" 32000 32382 sources."open-0.0.5" 32001 32383 sources."os-name-1.0.3" 32002 32384 sources."snyk-config-1.0.1" 32003 - sources."snyk-go-plugin-1.1.3" 32385 + sources."snyk-go-plugin-1.2.1" 32004 32386 sources."snyk-gradle-plugin-1.1.2" 32005 32387 sources."snyk-module-1.8.1" 32006 - sources."snyk-mvn-plugin-1.0.1" 32388 + sources."snyk-mvn-plugin-1.0.3" 32007 32389 sources."snyk-policy-1.7.1" 32008 32390 sources."snyk-python-plugin-1.2.4" 32009 32391 (sources."snyk-recursive-readdir-2.0.0" // { ··· 32045 32427 sources."exit-hook-1.1.1" 32046 32428 sources."onetime-1.1.0" 32047 32429 sources."is-promise-2.1.0" 32430 + sources."iconv-lite-0.4.19" 32048 32431 (sources."osx-release-1.1.0" // { 32049 32432 dependencies = [ 32050 32433 sources."minimist-1.2.0" ··· 32070 32453 sources."longest-1.0.1" 32071 32454 sources."repeat-string-1.6.1" 32072 32455 sources."is-buffer-1.1.5" 32073 - sources."fs-0.0.1-security" 32074 32456 sources."toml-2.3.3" 32075 32457 sources."clone-deep-0.3.0" 32076 32458 sources."for-own-1.0.0" ··· 32089 32471 sources."for-in-0.1.8" 32090 32472 ]; 32091 32473 }) 32092 - sources."js-yaml-3.9.1" 32474 + sources."js-yaml-3.10.0" 32093 32475 sources."argparse-1.0.9" 32094 32476 sources."esprima-4.0.0" 32095 32477 sources."sprintf-js-1.0.3" ··· 32215 32597 ocaml-language-server = nodeEnv.buildNodePackage { 32216 32598 name = "ocaml-language-server"; 32217 32599 packageName = "ocaml-language-server"; 32218 - version = "0.2.0"; 32600 + version = "1.0.0"; 32219 32601 src = fetchurl { 32220 - url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-0.2.0.tgz"; 32221 - sha1 = "f9ae38396f893863ed52c1a29fb45b42236e1a36"; 32602 + url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.0.tgz"; 32603 + sha512 = "32glgr9c42bz2yp3k7kff9skkvrm1zrvcvv2pkifjmzbl3kca3bmapgz598jdm64hi3y0jbby4s90bv8838q40ni5lfh35863c57i0n"; 32222 32604 }; 32223 32605 dependencies = [ 32224 - sources."async-2.1.5" 32225 - sources."glob-7.1.1" 32606 + sources."async-2.4.1" 32607 + sources."glob-7.1.2" 32226 32608 sources."lodash-4.17.4" 32227 32609 sources."lokijs-1.4.3" 32228 32610 sources."pegjs-0.10.0" 32229 - sources."vscode-jsonrpc-3.0.4" 32230 - sources."vscode-languageclient-3.0.4" 32231 - sources."vscode-languageserver-3.0.5" 32232 - sources."vscode-languageserver-types-3.0.3" 32611 + sources."vscode-jsonrpc-3.2.0" 32612 + sources."vscode-languageclient-3.2.2" 32613 + sources."vscode-languageserver-3.2.2" 32614 + sources."vscode-languageserver-types-3.2.0" 32615 + sources."vscode-uri-1.0.1" 32233 32616 sources."fs.realpath-1.0.0" 32234 32617 sources."inflight-1.0.6" 32235 32618 sources."inherits-2.0.3" ··· 32260 32643 dependencies = [ 32261 32644 sources."async-0.9.2" 32262 32645 sources."babybird-0.0.1" 32263 - (sources."body-parser-1.17.2" // { 32646 + (sources."body-parser-1.18.1" // { 32264 32647 dependencies = [ 32265 - sources."content-type-1.0.2" 32648 + sources."content-type-1.0.4" 32266 32649 ]; 32267 32650 }) 32268 32651 (sources."compression-1.7.0" // { 32269 32652 dependencies = [ 32270 32653 sources."bytes-2.5.0" 32271 - sources."debug-2.6.8" 32272 32654 ]; 32273 32655 }) 32274 32656 sources."connect-busboy-0.0.2" ··· 32279 32661 sources."entities-1.1.1" 32280 32662 (sources."express-4.15.4" // { 32281 32663 dependencies = [ 32282 - sources."content-type-1.0.2" 32283 - sources."debug-2.6.8" 32284 - sources."finalhandler-1.0.4" 32664 + sources."content-type-1.0.4" 32665 + sources."finalhandler-1.0.5" 32285 32666 sources."qs-6.5.0" 32286 32667 ]; 32287 32668 }) ··· 32292 32673 sources."ms-0.7.1" 32293 32674 ]; 32294 32675 }) 32295 - sources."js-yaml-3.9.1" 32676 + sources."js-yaml-3.10.0" 32296 32677 sources."mediawiki-title-0.5.6" 32297 32678 sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" 32298 32679 sources."node-uuid-1.4.8" 32299 32680 sources."pegjs-git+https://github.com/tstarling/pegjs.git#fork" 32300 32681 sources."prfun-2.1.4" 32301 - sources."request-2.81.0" 32682 + sources."request-2.82.0" 32302 32683 sources."semver-5.4.1" 32303 - (sources."serve-favicon-2.4.3" // { 32684 + (sources."serve-favicon-2.4.4" // { 32304 32685 dependencies = [ 32305 - sources."safe-buffer-5.0.1" 32686 + sources."fresh-0.5.1" 32306 32687 ]; 32307 32688 }) 32308 32689 (sources."service-runner-2.3.0" // { ··· 32323 32704 }) 32324 32705 sources."asap-2.0.6" 32325 32706 sources."is-arguments-1.0.2" 32326 - sources."bytes-2.4.0" 32327 - sources."debug-2.6.7" 32707 + sources."bytes-3.0.0" 32708 + sources."debug-2.6.8" 32328 32709 sources."depd-1.1.1" 32329 32710 sources."http-errors-1.6.2" 32330 - sources."iconv-lite-0.4.15" 32711 + sources."iconv-lite-0.4.19" 32331 32712 sources."on-finished-2.3.0" 32332 - sources."qs-6.4.0" 32333 - sources."raw-body-2.2.0" 32713 + sources."qs-6.5.1" 32714 + sources."raw-body-2.3.2" 32334 32715 sources."type-is-1.6.15" 32335 32716 sources."ms-2.0.0" 32336 32717 sources."inherits-2.0.3" ··· 32359 32740 sources."cookie-signature-1.0.6" 32360 32741 sources."encodeurl-1.0.1" 32361 32742 sources."escape-html-1.0.3" 32362 - sources."etag-1.8.0" 32743 + sources."etag-1.8.1" 32363 32744 sources."fresh-0.5.0" 32364 32745 sources."merge-descriptors-1.0.1" 32365 32746 sources."methods-1.1.2" 32366 - sources."parseurl-1.3.1" 32747 + sources."parseurl-1.3.2" 32367 32748 sources."path-to-regexp-0.1.7" 32368 32749 sources."proxy-addr-1.1.5" 32369 32750 sources."range-parser-1.2.0" 32370 - (sources."send-0.15.4" // { 32371 - dependencies = [ 32372 - sources."debug-2.6.8" 32373 - ]; 32374 - }) 32751 + sources."send-0.15.4" 32375 32752 sources."serve-static-1.12.4" 32376 32753 sources."utils-merge-1.0.0" 32377 - sources."forwarded-0.1.0" 32754 + sources."forwarded-0.1.2" 32378 32755 sources."ipaddr.js-1.4.0" 32379 32756 sources."destroy-1.0.4" 32380 32757 sources."mime-1.3.4" ··· 32430 32807 sources."argparse-1.0.9" 32431 32808 sources."esprima-4.0.0" 32432 32809 sources."sprintf-js-1.0.3" 32433 - sources."aws-sign2-0.6.0" 32810 + sources."aws-sign2-0.7.0" 32434 32811 sources."aws4-1.6.0" 32435 32812 sources."caseless-0.12.0" 32436 32813 sources."combined-stream-1.0.5" 32437 32814 sources."extend-3.0.1" 32438 32815 sources."forever-agent-0.6.1" 32439 - sources."form-data-2.1.4" 32440 - sources."har-validator-4.2.1" 32441 - sources."hawk-3.1.3" 32442 - sources."http-signature-1.1.1" 32816 + sources."form-data-2.3.1" 32817 + sources."har-validator-5.0.3" 32818 + sources."hawk-6.0.2" 32819 + sources."http-signature-1.2.0" 32443 32820 sources."is-typedarray-1.0.0" 32444 32821 sources."isstream-0.1.2" 32445 32822 sources."json-stringify-safe-5.0.1" 32446 32823 sources."oauth-sign-0.8.2" 32447 - sources."performance-now-0.2.0" 32824 + sources."performance-now-2.1.0" 32448 32825 sources."stringstream-0.0.5" 32449 32826 sources."tough-cookie-2.3.2" 32450 32827 sources."tunnel-agent-0.6.0" 32451 32828 sources."uuid-3.1.0" 32452 32829 sources."delayed-stream-1.0.0" 32453 32830 sources."asynckit-0.4.0" 32454 - sources."ajv-4.11.8" 32455 - sources."har-schema-1.0.5" 32831 + sources."ajv-5.2.2" 32832 + sources."har-schema-2.0.0" 32456 32833 sources."co-4.6.0" 32834 + sources."fast-deep-equal-1.0.0" 32835 + sources."json-schema-traverse-0.3.1" 32457 32836 sources."json-stable-stringify-1.0.1" 32458 32837 sources."jsonify-0.0.0" 32459 - sources."hoek-2.16.3" 32460 - sources."boom-2.10.1" 32461 - sources."cryptiles-2.0.5" 32462 - sources."sntp-1.0.9" 32463 - sources."assert-plus-0.2.0" 32464 - (sources."jsprim-1.4.1" // { 32838 + sources."hoek-4.2.0" 32839 + sources."boom-4.3.1" 32840 + (sources."cryptiles-3.1.2" // { 32465 32841 dependencies = [ 32466 - sources."assert-plus-1.0.0" 32842 + sources."boom-5.2.0" 32467 32843 ]; 32468 32844 }) 32469 - (sources."sshpk-1.13.1" // { 32470 - dependencies = [ 32471 - sources."assert-plus-1.0.0" 32472 - ]; 32473 - }) 32845 + sources."sntp-2.0.2" 32846 + sources."assert-plus-1.0.0" 32847 + sources."jsprim-1.4.1" 32848 + sources."sshpk-1.13.1" 32474 32849 sources."extsprintf-1.3.0" 32475 32850 sources."json-schema-0.2.3" 32476 - (sources."verror-1.10.0" // { 32477 - dependencies = [ 32478 - sources."assert-plus-1.0.0" 32479 - ]; 32480 - }) 32851 + sources."verror-1.10.0" 32481 32852 sources."asn1-0.2.3" 32482 - (sources."dashdash-1.14.1" // { 32483 - dependencies = [ 32484 - sources."assert-plus-1.0.0" 32485 - ]; 32486 - }) 32487 - (sources."getpass-0.1.7" // { 32488 - dependencies = [ 32489 - sources."assert-plus-1.0.0" 32490 - ]; 32491 - }) 32853 + sources."dashdash-1.14.1" 32854 + sources."getpass-0.1.7" 32492 32855 sources."jsbn-0.1.1" 32493 32856 sources."tweetnacl-0.14.5" 32494 32857 sources."ecc-jsbn-0.1.1" ··· 32498 32861 sources."bunyan-1.8.12" 32499 32862 sources."bunyan-syslog-udp-0.1.0" 32500 32863 sources."gelf-stream-1.1.1" 32501 - sources."hot-shots-4.5.0" 32864 + sources."hot-shots-4.7.0" 32502 32865 (sources."limitation-0.2.0" // { 32503 32866 dependencies = [ 32504 32867 sources."readable-stream-2.3.3" ··· 32808 33171 sources."ip-set-1.0.1" 32809 33172 sources."mkdirp-0.3.5" 32810 33173 sources."peer-wire-swarm-0.12.1" 32811 - sources."rimraf-2.6.1" 33174 + sources."rimraf-2.6.2" 32812 33175 sources."torrent-discovery-5.4.0" 32813 33176 sources."torrent-piece-1.1.1" 32814 33177 (sources."random-access-file-1.8.1" // { ··· 32947 33310 ]; 32948 33311 }) 32949 33312 sources."content-disposition-0.5.0" 32950 - sources."content-type-1.0.2" 33313 + sources."content-type-1.0.4" 32951 33314 sources."commander-2.6.0" 32952 33315 sources."cookie-0.1.3" 32953 33316 sources."cookie-signature-1.0.6" ··· 32958 33321 sources."fresh-0.3.0" 32959 33322 sources."merge-descriptors-1.0.0" 32960 33323 sources."methods-1.1.2" 32961 - sources."parseurl-1.3.1" 33324 + sources."parseurl-1.3.2" 32962 33325 sources."proxy-addr-1.0.10" 32963 33326 (sources."send-0.13.0" // { 32964 33327 dependencies = [ ··· 33054 33417 sources."batch-0.5.3" 33055 33418 sources."destroy-1.0.4" 33056 33419 sources."mime-1.3.4" 33057 - sources."forwarded-0.1.0" 33420 + sources."forwarded-0.1.2" 33058 33421 sources."ipaddr.js-1.0.5" 33059 33422 sources."minimist-0.0.8" 33060 33423 sources."end-of-stream-1.4.0" ··· 33167 33530 sources."immediate-chunk-store-1.0.8" 33168 33531 sources."ip-set-1.0.1" 33169 33532 sources."peer-wire-swarm-0.12.1" 33170 - sources."rimraf-2.6.1" 33533 + sources."rimraf-2.6.2" 33171 33534 sources."torrent-discovery-5.4.0" 33172 33535 sources."torrent-piece-1.1.1" 33173 33536 (sources."random-access-file-1.8.1" // { ··· 33299 33662 sources."jsonfile-2.4.0" 33300 33663 sources."klaw-1.3.1" 33301 33664 sources."path-is-absolute-1.0.1" 33302 - sources."rimraf-2.6.1" 33665 + sources."rimraf-2.6.2" 33303 33666 sources."glob-7.1.2" 33304 33667 sources."fs.realpath-1.0.0" 33305 33668 sources."inflight-1.0.6" ··· 33401 33764 prettier = nodeEnv.buildNodePackage { 33402 33765 name = "prettier"; 33403 33766 packageName = "prettier"; 33404 - version = "1.6.1"; 33767 + version = "1.7.0"; 33405 33768 src = fetchurl { 33406 - url = "https://registry.npmjs.org/prettier/-/prettier-1.6.1.tgz"; 33407 - sha512 = "31al4m6n59a0mr6q8fn231zn4navr252z2pgq7dhcxdpp5a1aqaqmvx0sgamv97pkygswlcpbsj7a1dg2ijb9n0zr623ai2hh36mkkz"; 33769 + url = "https://registry.npmjs.org/prettier/-/prettier-1.7.0.tgz"; 33770 + sha512 = "1ib30g1a6lq7pn1ajpmvajs3y4q94yb0xz53zp1s6gbbmihfn1zr8imp8vydlmh1cj41s2ymdkddq8hfq7mlr9caji83c9x87fw11lh"; 33408 33771 }; 33409 33772 buildInputs = globalBuildInputs; 33410 33773 meta = { ··· 33414 33777 }; 33415 33778 production = true; 33416 33779 }; 33780 + pulp = nodeEnv.buildNodePackage { 33781 + name = "pulp"; 33782 + packageName = "pulp"; 33783 + version = "12.0.1"; 33784 + src = fetchurl { 33785 + url = "https://registry.npmjs.org/pulp/-/pulp-12.0.1.tgz"; 33786 + sha512 = "3n09lgnyd4p3h3jlhgcvbh6n6m9h89hwvbhli5ic32fkl5y4g7yi61m1vw483479jxkif2zyqs89l6j6hq4iy15jdknx1lcp9qbyvwy"; 33787 + }; 33788 + dependencies = [ 33789 + (sources."browserify-13.3.0" // { 33790 + dependencies = [ 33791 + (sources."concat-stream-1.5.2" // { 33792 + dependencies = [ 33793 + sources."readable-stream-2.0.6" 33794 + ]; 33795 + }) 33796 + ]; 33797 + }) 33798 + (sources."browserify-incremental-3.1.1" // { 33799 + dependencies = [ 33800 + sources."JSONStream-0.10.0" 33801 + sources."jsonparse-0.0.5" 33802 + ]; 33803 + }) 33804 + sources."concat-stream-1.6.0" 33805 + sources."glob-7.1.2" 33806 + sources."minimatch-3.0.4" 33807 + sources."node-static-0.7.10" 33808 + sources."read-1.0.7" 33809 + sources."string-stream-0.0.7" 33810 + sources."temp-0.8.3" 33811 + sources."through-2.3.8" 33812 + sources."tree-kill-1.2.0" 33813 + (sources."watchpack-1.4.0" // { 33814 + dependencies = [ 33815 + sources."async-2.5.0" 33816 + ]; 33817 + }) 33818 + sources."which-1.3.0" 33819 + sources."wordwrap-1.0.0" 33820 + sources."JSONStream-1.3.1" 33821 + sources."assert-1.4.1" 33822 + sources."browser-pack-6.0.2" 33823 + (sources."browser-resolve-1.11.2" // { 33824 + dependencies = [ 33825 + sources."resolve-1.1.7" 33826 + ]; 33827 + }) 33828 + sources."browserify-zlib-0.1.4" 33829 + sources."buffer-4.9.1" 33830 + sources."cached-path-relative-1.0.1" 33831 + sources."console-browserify-1.1.0" 33832 + sources."constants-browserify-1.0.0" 33833 + sources."crypto-browserify-3.11.1" 33834 + sources."defined-1.0.0" 33835 + sources."deps-sort-2.0.0" 33836 + sources."domain-browser-1.1.7" 33837 + sources."duplexer2-0.1.4" 33838 + sources."events-1.1.1" 33839 + sources."has-1.0.1" 33840 + sources."htmlescape-1.1.1" 33841 + sources."https-browserify-0.0.1" 33842 + sources."inherits-2.0.3" 33843 + (sources."insert-module-globals-7.0.1" // { 33844 + dependencies = [ 33845 + sources."concat-stream-1.5.2" 33846 + sources."readable-stream-2.0.6" 33847 + ]; 33848 + }) 33849 + (sources."labeled-stream-splicer-2.0.0" // { 33850 + dependencies = [ 33851 + sources."isarray-0.0.1" 33852 + ]; 33853 + }) 33854 + (sources."module-deps-4.1.1" // { 33855 + dependencies = [ 33856 + (sources."concat-stream-1.5.2" // { 33857 + dependencies = [ 33858 + sources."readable-stream-2.0.6" 33859 + ]; 33860 + }) 33861 + ]; 33862 + }) 33863 + sources."os-browserify-0.1.2" 33864 + sources."parents-1.0.1" 33865 + sources."path-browserify-0.0.0" 33866 + sources."process-0.11.10" 33867 + sources."punycode-1.4.1" 33868 + sources."querystring-es3-0.2.1" 33869 + sources."read-only-stream-2.0.0" 33870 + (sources."readable-stream-2.3.3" // { 33871 + dependencies = [ 33872 + sources."string_decoder-1.0.3" 33873 + ]; 33874 + }) 33875 + sources."resolve-1.4.0" 33876 + sources."shasum-1.0.2" 33877 + sources."shell-quote-1.6.1" 33878 + sources."stream-browserify-2.0.1" 33879 + sources."stream-http-2.7.2" 33880 + sources."string_decoder-0.10.31" 33881 + sources."subarg-1.0.0" 33882 + sources."syntax-error-1.3.0" 33883 + sources."through2-2.0.3" 33884 + sources."timers-browserify-1.4.2" 33885 + sources."tty-browserify-0.0.0" 33886 + (sources."url-0.11.0" // { 33887 + dependencies = [ 33888 + sources."punycode-1.3.2" 33889 + ]; 33890 + }) 33891 + (sources."util-0.10.3" // { 33892 + dependencies = [ 33893 + sources."inherits-2.0.1" 33894 + ]; 33895 + }) 33896 + sources."vm-browserify-0.0.4" 33897 + sources."xtend-4.0.1" 33898 + sources."jsonparse-1.3.1" 33899 + sources."combine-source-map-0.7.2" 33900 + sources."umd-3.0.1" 33901 + sources."convert-source-map-1.1.3" 33902 + sources."inline-source-map-0.6.2" 33903 + sources."lodash.memoize-3.0.4" 33904 + sources."source-map-0.5.7" 33905 + sources."pako-0.2.9" 33906 + sources."base64-js-1.2.1" 33907 + sources."ieee754-1.1.8" 33908 + sources."isarray-1.0.0" 33909 + sources."typedarray-0.0.6" 33910 + sources."core-util-is-1.0.2" 33911 + sources."process-nextick-args-1.0.7" 33912 + sources."util-deprecate-1.0.2" 33913 + sources."date-now-0.1.4" 33914 + sources."browserify-cipher-1.0.0" 33915 + sources."browserify-sign-4.0.4" 33916 + sources."create-ecdh-4.0.0" 33917 + sources."create-hash-1.1.3" 33918 + sources."create-hmac-1.1.6" 33919 + sources."diffie-hellman-5.0.2" 33920 + sources."pbkdf2-3.0.14" 33921 + sources."public-encrypt-4.0.0" 33922 + sources."randombytes-2.0.5" 33923 + sources."browserify-aes-1.0.8" 33924 + sources."browserify-des-1.0.0" 33925 + sources."evp_bytestokey-1.0.3" 33926 + sources."buffer-xor-1.0.3" 33927 + sources."cipher-base-1.0.4" 33928 + sources."safe-buffer-5.1.1" 33929 + sources."des.js-1.0.0" 33930 + sources."minimalistic-assert-1.0.0" 33931 + sources."md5.js-1.3.4" 33932 + sources."hash-base-3.0.4" 33933 + sources."bn.js-4.11.8" 33934 + sources."browserify-rsa-4.0.1" 33935 + sources."elliptic-6.4.0" 33936 + sources."parse-asn1-5.1.0" 33937 + sources."brorand-1.1.0" 33938 + sources."hash.js-1.1.3" 33939 + sources."hmac-drbg-1.0.1" 33940 + sources."minimalistic-crypto-utils-1.0.1" 33941 + sources."asn1.js-4.9.1" 33942 + (sources."ripemd160-2.0.1" // { 33943 + dependencies = [ 33944 + sources."hash-base-2.0.2" 33945 + ]; 33946 + }) 33947 + sources."sha.js-2.4.8" 33948 + sources."miller-rabin-4.0.0" 33949 + sources."function-bind-1.1.1" 33950 + sources."is-buffer-1.1.5" 33951 + sources."lexical-scope-1.2.0" 33952 + sources."astw-2.2.0" 33953 + sources."acorn-4.0.13" 33954 + sources."stream-splicer-2.0.0" 33955 + sources."detective-4.5.0" 33956 + sources."stream-combiner2-1.1.1" 33957 + sources."path-platform-0.11.15" 33958 + sources."path-parse-1.0.5" 33959 + sources."json-stable-stringify-0.0.1" 33960 + sources."jsonify-0.0.0" 33961 + sources."array-filter-0.0.1" 33962 + sources."array-reduce-0.0.0" 33963 + sources."array-map-0.0.0" 33964 + sources."builtin-status-codes-3.0.0" 33965 + sources."to-arraybuffer-1.0.1" 33966 + sources."minimist-1.2.0" 33967 + sources."querystring-0.2.0" 33968 + sources."indexof-0.0.1" 33969 + sources."browserify-cache-api-3.0.1" 33970 + sources."async-1.5.2" 33971 + sources."fs.realpath-1.0.0" 33972 + sources."inflight-1.0.6" 33973 + sources."once-1.4.0" 33974 + sources."path-is-absolute-1.0.1" 33975 + sources."wrappy-1.0.2" 33976 + sources."brace-expansion-1.1.8" 33977 + sources."balanced-match-1.0.0" 33978 + sources."concat-map-0.0.1" 33979 + (sources."optimist-0.6.1" // { 33980 + dependencies = [ 33981 + sources."wordwrap-0.0.3" 33982 + sources."minimist-0.0.10" 33983 + ]; 33984 + }) 33985 + sources."colors-1.1.2" 33986 + sources."mime-1.4.0" 33987 + sources."mute-stream-0.0.7" 33988 + sources."os-tmpdir-1.0.2" 33989 + sources."rimraf-2.2.8" 33990 + sources."chokidar-1.7.0" 33991 + sources."graceful-fs-4.1.11" 33992 + sources."lodash-4.17.4" 33993 + sources."anymatch-1.3.2" 33994 + sources."async-each-1.0.1" 33995 + sources."glob-parent-2.0.0" 33996 + sources."is-binary-path-1.0.1" 33997 + sources."is-glob-2.0.1" 33998 + sources."readdirp-2.1.0" 33999 + sources."fsevents-1.1.2" 34000 + sources."micromatch-2.3.11" 34001 + sources."normalize-path-2.1.1" 34002 + sources."arr-diff-2.0.0" 34003 + sources."array-unique-0.2.1" 34004 + sources."braces-1.8.5" 34005 + sources."expand-brackets-0.1.5" 34006 + sources."extglob-0.3.2" 34007 + sources."filename-regex-2.0.1" 34008 + sources."is-extglob-1.0.0" 34009 + sources."kind-of-3.2.2" 34010 + sources."object.omit-2.0.1" 34011 + sources."parse-glob-3.0.4" 34012 + sources."regex-cache-0.4.4" 34013 + sources."arr-flatten-1.1.0" 34014 + sources."expand-range-1.8.2" 34015 + sources."preserve-0.2.0" 34016 + sources."repeat-element-1.1.2" 34017 + sources."fill-range-2.2.3" 34018 + sources."is-number-2.1.0" 34019 + sources."isobject-2.1.0" 34020 + (sources."randomatic-1.1.7" // { 34021 + dependencies = [ 34022 + (sources."is-number-3.0.0" // { 34023 + dependencies = [ 34024 + sources."kind-of-3.2.2" 34025 + ]; 34026 + }) 34027 + sources."kind-of-4.0.0" 34028 + ]; 34029 + }) 34030 + sources."repeat-string-1.6.1" 34031 + sources."is-posix-bracket-0.1.1" 34032 + sources."for-own-0.1.5" 34033 + sources."is-extendable-0.1.1" 34034 + sources."for-in-1.0.2" 34035 + sources."glob-base-0.3.0" 34036 + sources."is-dotfile-1.0.3" 34037 + sources."is-equal-shallow-0.1.3" 34038 + sources."is-primitive-2.0.0" 34039 + sources."remove-trailing-separator-1.1.0" 34040 + sources."binary-extensions-1.10.0" 34041 + sources."set-immediate-shim-1.0.1" 34042 + sources."nan-2.7.0" 34043 + (sources."node-pre-gyp-0.6.37" // { 34044 + dependencies = [ 34045 + sources."rimraf-2.6.2" 34046 + ]; 34047 + }) 34048 + (sources."mkdirp-0.5.1" // { 34049 + dependencies = [ 34050 + sources."minimist-0.0.8" 34051 + ]; 34052 + }) 34053 + sources."nopt-4.0.1" 34054 + sources."npmlog-4.1.2" 34055 + sources."rc-1.2.1" 34056 + sources."request-2.82.0" 34057 + sources."semver-5.4.1" 34058 + sources."tape-4.8.0" 34059 + sources."tar-2.2.1" 34060 + (sources."tar-pack-3.4.0" // { 34061 + dependencies = [ 34062 + sources."rimraf-2.6.2" 34063 + ]; 34064 + }) 34065 + sources."abbrev-1.1.0" 34066 + sources."osenv-0.1.4" 34067 + sources."os-homedir-1.0.2" 34068 + sources."are-we-there-yet-1.1.4" 34069 + sources."console-control-strings-1.1.0" 34070 + sources."gauge-2.7.4" 34071 + sources."set-blocking-2.0.0" 34072 + sources."delegates-1.0.0" 34073 + sources."aproba-1.2.0" 34074 + sources."has-unicode-2.0.1" 34075 + sources."object-assign-4.1.1" 34076 + sources."signal-exit-3.0.2" 34077 + sources."string-width-1.0.2" 34078 + sources."strip-ansi-3.0.1" 34079 + sources."wide-align-1.1.2" 34080 + sources."code-point-at-1.1.0" 34081 + sources."is-fullwidth-code-point-1.0.0" 34082 + sources."number-is-nan-1.0.1" 34083 + sources."ansi-regex-2.1.1" 34084 + sources."deep-extend-0.4.2" 34085 + sources."ini-1.3.4" 34086 + sources."strip-json-comments-2.0.1" 34087 + sources."aws-sign2-0.7.0" 34088 + sources."aws4-1.6.0" 34089 + sources."caseless-0.12.0" 34090 + sources."combined-stream-1.0.5" 34091 + sources."extend-3.0.1" 34092 + sources."forever-agent-0.6.1" 34093 + sources."form-data-2.3.1" 34094 + sources."har-validator-5.0.3" 34095 + sources."hawk-6.0.2" 34096 + sources."http-signature-1.2.0" 34097 + sources."is-typedarray-1.0.0" 34098 + sources."isstream-0.1.2" 34099 + sources."json-stringify-safe-5.0.1" 34100 + sources."mime-types-2.1.17" 34101 + sources."oauth-sign-0.8.2" 34102 + sources."performance-now-2.1.0" 34103 + sources."qs-6.5.1" 34104 + sources."stringstream-0.0.5" 34105 + sources."tough-cookie-2.3.2" 34106 + sources."tunnel-agent-0.6.0" 34107 + sources."uuid-3.1.0" 34108 + sources."delayed-stream-1.0.0" 34109 + sources."asynckit-0.4.0" 34110 + (sources."ajv-5.2.2" // { 34111 + dependencies = [ 34112 + sources."json-stable-stringify-1.0.1" 34113 + ]; 34114 + }) 34115 + sources."har-schema-2.0.0" 34116 + sources."co-4.6.0" 34117 + sources."fast-deep-equal-1.0.0" 34118 + sources."json-schema-traverse-0.3.1" 34119 + sources."hoek-4.2.0" 34120 + sources."boom-4.3.1" 34121 + (sources."cryptiles-3.1.2" // { 34122 + dependencies = [ 34123 + sources."boom-5.2.0" 34124 + ]; 34125 + }) 34126 + sources."sntp-2.0.2" 34127 + sources."assert-plus-1.0.0" 34128 + sources."jsprim-1.4.1" 34129 + sources."sshpk-1.13.1" 34130 + sources."extsprintf-1.3.0" 34131 + sources."json-schema-0.2.3" 34132 + sources."verror-1.10.0" 34133 + sources."asn1-0.2.3" 34134 + sources."dashdash-1.14.1" 34135 + sources."getpass-0.1.7" 34136 + sources."jsbn-0.1.1" 34137 + sources."tweetnacl-0.14.5" 34138 + sources."ecc-jsbn-0.1.1" 34139 + sources."bcrypt-pbkdf-1.0.1" 34140 + sources."mime-db-1.30.0" 34141 + sources."deep-equal-1.0.1" 34142 + sources."for-each-0.3.2" 34143 + sources."object-inspect-1.3.0" 34144 + sources."resumer-0.0.0" 34145 + sources."string.prototype.trim-1.1.2" 34146 + sources."is-function-1.0.1" 34147 + sources."define-properties-1.1.2" 34148 + sources."es-abstract-1.8.2" 34149 + sources."foreach-2.0.5" 34150 + sources."object-keys-1.0.11" 34151 + sources."es-to-primitive-1.1.1" 34152 + sources."is-callable-1.1.3" 34153 + sources."is-regex-1.0.4" 34154 + sources."is-date-object-1.0.1" 34155 + sources."is-symbol-1.0.1" 34156 + sources."block-stream-0.0.9" 34157 + sources."fstream-1.0.11" 34158 + sources."debug-2.6.8" 34159 + sources."fstream-ignore-1.0.5" 34160 + sources."uid-number-0.0.6" 34161 + sources."ms-2.0.0" 34162 + sources."isexe-2.0.0" 34163 + ]; 34164 + buildInputs = globalBuildInputs; 34165 + meta = { 34166 + description = "A build system for PureScript projects"; 34167 + homepage = https://github.com/bodil/pulp; 34168 + license = "LGPL-3.0+"; 34169 + }; 34170 + production = true; 34171 + }; 33417 34172 react-tools = nodeEnv.buildNodePackage { 33418 34173 name = "react-tools"; 33419 34174 packageName = "react-tools"; ··· 33433 34188 sources."detective-4.5.0" 33434 34189 sources."glob-5.0.15" 33435 34190 sources."graceful-fs-4.1.11" 33436 - sources."iconv-lite-0.4.18" 34191 + sources."iconv-lite-0.4.19" 33437 34192 sources."mkdirp-0.5.1" 33438 34193 sources."private-0.1.7" 33439 34194 sources."q-1.5.0" ··· 33536 34291 sources."request-2.9.203" 33537 34292 (sources."openid-2.0.6" // { 33538 34293 dependencies = [ 33539 - sources."request-2.81.0" 33540 - sources."qs-6.4.0" 34294 + sources."request-2.82.0" 34295 + sources."qs-6.5.1" 33541 34296 ]; 33542 34297 }) 33543 34298 sources."node-swt-0.1.1" 33544 34299 sources."node-wsfederation-0.1.1" 33545 34300 sources."formidable-1.0.11" 33546 34301 sources."crc-0.2.0" 33547 - sources."aws-sign2-0.6.0" 34302 + sources."aws-sign2-0.7.0" 33548 34303 sources."aws4-1.6.0" 33549 34304 sources."caseless-0.12.0" 33550 34305 sources."combined-stream-1.0.5" 33551 34306 sources."extend-3.0.1" 33552 34307 sources."forever-agent-0.6.1" 33553 - sources."form-data-2.1.4" 33554 - sources."har-validator-4.2.1" 33555 - sources."hawk-3.1.3" 33556 - sources."http-signature-1.1.1" 34308 + sources."form-data-2.3.1" 34309 + sources."har-validator-5.0.3" 34310 + sources."hawk-6.0.2" 34311 + sources."http-signature-1.2.0" 33557 34312 sources."is-typedarray-1.0.0" 33558 34313 sources."isstream-0.1.2" 33559 34314 sources."json-stringify-safe-5.0.1" 33560 34315 sources."mime-types-2.1.17" 33561 34316 sources."oauth-sign-0.8.2" 33562 - sources."performance-now-0.2.0" 34317 + sources."performance-now-2.1.0" 33563 34318 sources."safe-buffer-5.1.1" 33564 34319 sources."stringstream-0.0.5" 33565 34320 sources."tough-cookie-2.3.2" ··· 33567 34322 sources."uuid-3.1.0" 33568 34323 sources."delayed-stream-1.0.0" 33569 34324 sources."asynckit-0.4.0" 33570 - sources."ajv-4.11.8" 33571 - sources."har-schema-1.0.5" 34325 + sources."ajv-5.2.2" 34326 + sources."har-schema-2.0.0" 33572 34327 sources."co-4.6.0" 34328 + sources."fast-deep-equal-1.0.0" 34329 + sources."json-schema-traverse-0.3.1" 33573 34330 sources."json-stable-stringify-1.0.1" 33574 34331 sources."jsonify-0.0.0" 33575 - sources."hoek-2.16.3" 33576 - sources."boom-2.10.1" 33577 - sources."cryptiles-2.0.5" 33578 - sources."sntp-1.0.9" 33579 - sources."assert-plus-0.2.0" 33580 - (sources."jsprim-1.4.1" // { 34332 + sources."hoek-4.2.0" 34333 + sources."boom-4.3.1" 34334 + (sources."cryptiles-3.1.2" // { 33581 34335 dependencies = [ 33582 - sources."assert-plus-1.0.0" 34336 + sources."boom-5.2.0" 33583 34337 ]; 33584 34338 }) 33585 - (sources."sshpk-1.13.1" // { 33586 - dependencies = [ 33587 - sources."assert-plus-1.0.0" 33588 - ]; 33589 - }) 34339 + sources."sntp-2.0.2" 34340 + sources."assert-plus-1.0.0" 34341 + sources."jsprim-1.4.1" 34342 + sources."sshpk-1.13.1" 33590 34343 sources."extsprintf-1.3.0" 33591 34344 sources."json-schema-0.2.3" 33592 - (sources."verror-1.10.0" // { 33593 - dependencies = [ 33594 - sources."assert-plus-1.0.0" 33595 - ]; 33596 - }) 34345 + sources."verror-1.10.0" 33597 34346 sources."asn1-0.2.3" 33598 - (sources."dashdash-1.14.1" // { 33599 - dependencies = [ 33600 - sources."assert-plus-1.0.0" 33601 - ]; 33602 - }) 33603 - (sources."getpass-0.1.7" // { 33604 - dependencies = [ 33605 - sources."assert-plus-1.0.0" 33606 - ]; 33607 - }) 34347 + sources."dashdash-1.14.1" 34348 + sources."getpass-0.1.7" 33608 34349 sources."jsbn-0.1.1" 33609 34350 sources."tweetnacl-0.14.5" 33610 34351 sources."ecc-jsbn-0.1.1" ··· 33637 34378 serve = nodeEnv.buildNodePackage { 33638 34379 name = "serve"; 33639 34380 packageName = "serve"; 33640 - version = "6.0.6"; 34381 + version = "6.1.0"; 33641 34382 src = fetchurl { 33642 - url = "https://registry.npmjs.org/serve/-/serve-6.0.6.tgz"; 33643 - sha512 = "1r8g02k4ab6rr6mbh0pib7wg2q08nmydkz5mgvg5mjlq41q7cqi3gsxw85d9qw891rmrhx66zm0h7m85y7mldp3b7nhqqgmqblsl9h2"; 34383 + url = "https://registry.npmjs.org/serve/-/serve-6.1.0.tgz"; 34384 + sha512 = "3hrp79lvglwci8nbyxqwy38f27xfa2axsb5nzqy6hsg4sjs1fpn0va22zv01jgdxjqs9lhpisc47y5aidd699mnrxpvp787gsgvx8ic"; 33644 34385 }; 33645 34386 dependencies = [ 33646 - sources."args-3.0.4" 33647 - sources."basic-auth-1.1.0" 34387 + (sources."args-3.0.4" // { 34388 + dependencies = [ 34389 + sources."chalk-2.0.1" 34390 + ]; 34391 + }) 34392 + sources."basic-auth-2.0.0" 33648 34393 sources."bluebird-3.5.0" 33649 34394 sources."boxen-1.2.1" 33650 - sources."chalk-2.0.1" 34395 + sources."chalk-2.1.0" 33651 34396 (sources."clipboardy-1.1.4" // { 33652 34397 dependencies = [ 33653 34398 sources."execa-0.6.3" ··· 33656 34401 sources."dargs-5.1.0" 33657 34402 sources."detect-port-1.2.1" 33658 34403 sources."filesize-3.5.10" 33659 - sources."fs-extra-4.0.1" 34404 + sources."fs-extra-4.0.2" 33660 34405 sources."handlebars-4.0.10" 33661 34406 sources."ip-1.1.5" 33662 - sources."micro-8.0.1" 34407 + sources."micro-9.0.0" 33663 34408 sources."micro-compress-1.0.0" 33664 - (sources."mime-types-2.1.16" // { 33665 - dependencies = [ 33666 - sources."mime-db-1.29.0" 33667 - ]; 33668 - }) 34409 + sources."mime-types-2.1.17" 33669 34410 sources."node-version-1.1.0" 33670 34411 sources."opn-5.1.0" 33671 34412 sources."path-type-3.0.0" 33672 - (sources."send-0.15.3" // { 33673 - dependencies = [ 33674 - sources."debug-2.6.7" 33675 - ]; 33676 - }) 34413 + sources."send-0.15.4" 33677 34414 (sources."update-notifier-2.2.0" // { 33678 34415 dependencies = [ 33679 34416 sources."chalk-1.1.3" ··· 33687 34424 sources."minimist-1.2.0" 33688 34425 sources."pkginfo-0.4.0" 33689 34426 sources."string-similarity-1.2.0" 34427 + sources."ansi-styles-3.2.0" 34428 + sources."escape-string-regexp-1.0.5" 34429 + sources."supports-color-4.4.0" 34430 + sources."color-convert-1.9.0" 34431 + sources."color-name-1.1.3" 34432 + sources."has-flag-2.0.0" 33690 34433 sources."lodash-4.17.4" 34434 + sources."safe-buffer-5.1.1" 33691 34435 sources."ansi-align-2.0.0" 33692 34436 sources."cli-boxes-1.0.0" 33693 34437 sources."string-width-2.1.1" ··· 33721 34465 sources."path-key-2.0.1" 33722 34466 sources."code-point-at-1.1.0" 33723 34467 sources."number-is-nan-1.0.1" 33724 - sources."ansi-styles-3.2.0" 33725 - sources."escape-string-regexp-1.0.5" 33726 - sources."supports-color-4.4.0" 33727 - sources."color-convert-1.9.0" 33728 - sources."color-name-1.1.3" 33729 - sources."has-flag-2.0.0" 33730 34468 sources."address-1.0.3" 33731 34469 sources."debug-2.6.8" 33732 34470 sources."ms-2.0.0" 33733 34471 sources."graceful-fs-4.1.11" 33734 - sources."jsonfile-3.0.1" 34472 + sources."jsonfile-4.0.0" 33735 34473 sources."universalify-0.1.1" 33736 34474 sources."async-1.5.2" 33737 34475 (sources."optimist-0.6.1" // { ··· 33770 34508 sources."is-buffer-1.1.5" 33771 34509 sources."media-typer-0.3.0" 33772 34510 sources."mri-1.1.0" 33773 - sources."raw-body-2.2.0" 33774 - sources."bytes-2.4.0" 33775 - sources."iconv-lite-0.4.15" 34511 + sources."raw-body-2.3.2" 34512 + sources."bytes-3.0.0" 34513 + sources."http-errors-1.6.2" 34514 + sources."iconv-lite-0.4.19" 33776 34515 sources."unpipe-1.0.0" 34516 + sources."depd-1.1.1" 34517 + sources."inherits-2.0.3" 34518 + sources."setprototypeof-1.0.3" 34519 + sources."statuses-1.3.1" 33777 34520 (sources."compression-1.7.0" // { 33778 34521 dependencies = [ 33779 34522 sources."bytes-2.5.0" ··· 33782 34525 sources."accepts-1.3.4" 33783 34526 sources."compressible-2.0.11" 33784 34527 sources."on-headers-1.0.1" 33785 - sources."safe-buffer-5.1.1" 33786 34528 sources."vary-1.1.1" 33787 34529 sources."negotiator-0.6.1" 33788 34530 sources."mime-db-1.30.0" 33789 34531 sources."is-wsl-1.1.0" 33790 34532 sources."pify-3.0.0" 33791 - sources."depd-1.1.1" 33792 34533 sources."destroy-1.0.4" 33793 34534 sources."encodeurl-1.0.1" 33794 34535 sources."escape-html-1.0.3" 33795 - sources."etag-1.8.0" 34536 + sources."etag-1.8.1" 33796 34537 sources."fresh-0.5.0" 33797 - sources."http-errors-1.6.2" 33798 34538 sources."mime-1.3.4" 33799 34539 sources."on-finished-2.3.0" 33800 34540 sources."range-parser-1.2.0" 33801 - sources."statuses-1.3.1" 33802 - sources."inherits-2.0.3" 33803 - sources."setprototypeof-1.0.3" 33804 34541 sources."ee-first-1.1.1" 33805 34542 sources."configstore-3.1.1" 33806 34543 sources."import-lazy-2.1.0" ··· 33863 34600 dependencies = [ 33864 34601 sources."express-5.0.0-alpha.5" 33865 34602 sources."express-json5-0.1.0" 33866 - (sources."body-parser-1.17.2" // { 34603 + (sources."body-parser-1.18.1" // { 33867 34604 dependencies = [ 33868 - sources."bytes-2.4.0" 33869 - sources."debug-2.6.7" 33870 - sources."iconv-lite-0.4.15" 33871 - sources."raw-body-2.2.0" 34605 + sources."bytes-3.0.0" 34606 + sources."debug-2.6.8" 34607 + sources."iconv-lite-0.4.19" 34608 + sources."qs-6.5.1" 34609 + sources."raw-body-2.3.2" 33872 34610 sources."ms-2.0.0" 33873 34611 ]; 33874 34612 }) ··· 33880 34618 ]; 33881 34619 }) 33882 34620 sources."commander-2.11.0" 33883 - sources."js-yaml-3.9.1" 34621 + sources."js-yaml-3.10.0" 33884 34622 sources."cookies-0.7.1" 33885 - sources."request-2.81.0" 34623 + (sources."request-2.82.0" // { 34624 + dependencies = [ 34625 + sources."qs-6.5.1" 34626 + ]; 34627 + }) 33886 34628 sources."async-0.9.2" 33887 34629 sources."es6-shim-0.21.1" 33888 34630 sources."semver-4.3.6" ··· 33908 34650 sources."accepts-1.3.4" 33909 34651 sources."array-flatten-2.1.1" 33910 34652 sources."content-disposition-0.5.2" 33911 - sources."content-type-1.0.2" 34653 + sources."content-type-1.0.4" 33912 34654 sources."cookie-0.3.1" 33913 34655 sources."cookie-signature-1.0.6" 33914 34656 sources."debug-2.6.1" 33915 34657 sources."depd-1.1.1" 33916 34658 sources."encodeurl-1.0.1" 33917 34659 sources."escape-html-1.0.3" 33918 - sources."etag-1.8.0" 33919 - (sources."finalhandler-1.0.4" // { 34660 + sources."etag-1.8.1" 34661 + (sources."finalhandler-1.0.5" // { 33920 34662 dependencies = [ 33921 34663 sources."debug-2.6.8" 33922 34664 sources."ms-2.0.0" ··· 33926 34668 sources."merge-descriptors-1.0.1" 33927 34669 sources."methods-1.1.2" 33928 34670 sources."on-finished-2.3.0" 33929 - sources."parseurl-1.3.1" 34671 + sources."parseurl-1.3.2" 33930 34672 sources."path-is-absolute-1.0.1" 33931 34673 sources."path-to-regexp-0.1.7" 33932 34674 sources."proxy-addr-1.1.5" ··· 33951 34693 sources."ms-0.7.2" 33952 34694 sources."unpipe-1.0.0" 33953 34695 sources."ee-first-1.1.1" 33954 - sources."forwarded-0.1.0" 34696 + sources."forwarded-0.1.2" 33955 34697 sources."ipaddr.js-1.4.0" 33956 34698 sources."destroy-1.0.4" 33957 34699 sources."mime-1.3.4" ··· 33966 34708 sources."esprima-4.0.0" 33967 34709 sources."sprintf-js-1.0.3" 33968 34710 sources."keygrip-1.0.2" 33969 - sources."aws-sign2-0.6.0" 34711 + sources."aws-sign2-0.7.0" 33970 34712 sources."aws4-1.6.0" 33971 34713 sources."caseless-0.12.0" 33972 34714 sources."combined-stream-1.0.5" 33973 34715 sources."extend-3.0.1" 33974 34716 sources."forever-agent-0.6.1" 33975 - sources."form-data-2.1.4" 33976 - sources."har-validator-4.2.1" 33977 - sources."hawk-3.1.3" 33978 - sources."http-signature-1.1.1" 34717 + sources."form-data-2.3.1" 34718 + sources."har-validator-5.0.3" 34719 + sources."hawk-6.0.2" 34720 + sources."http-signature-1.2.0" 33979 34721 sources."is-typedarray-1.0.0" 33980 34722 sources."isstream-0.1.2" 33981 34723 sources."json-stringify-safe-5.0.1" 33982 34724 sources."oauth-sign-0.8.2" 33983 - sources."performance-now-0.2.0" 34725 + sources."performance-now-2.1.0" 33984 34726 sources."stringstream-0.0.5" 33985 34727 sources."tough-cookie-2.3.2" 33986 34728 sources."tunnel-agent-0.6.0" 33987 34729 sources."uuid-3.1.0" 33988 34730 sources."delayed-stream-1.0.0" 33989 34731 sources."asynckit-0.4.0" 33990 - sources."ajv-4.11.8" 33991 - sources."har-schema-1.0.5" 34732 + sources."ajv-5.2.2" 34733 + sources."har-schema-2.0.0" 33992 34734 sources."co-4.6.0" 34735 + sources."fast-deep-equal-1.0.0" 34736 + sources."json-schema-traverse-0.3.1" 33993 34737 sources."json-stable-stringify-1.0.1" 33994 34738 sources."jsonify-0.0.0" 33995 - sources."hoek-2.16.3" 33996 - sources."boom-2.10.1" 33997 - sources."cryptiles-2.0.5" 33998 - sources."sntp-1.0.9" 33999 - sources."assert-plus-0.2.0" 34000 - (sources."jsprim-1.4.1" // { 34739 + sources."hoek-4.2.0" 34740 + sources."boom-4.3.1" 34741 + (sources."cryptiles-3.1.2" // { 34001 34742 dependencies = [ 34002 - sources."assert-plus-1.0.0" 34743 + sources."boom-5.2.0" 34003 34744 ]; 34004 34745 }) 34005 - (sources."sshpk-1.13.1" // { 34006 - dependencies = [ 34007 - sources."assert-plus-1.0.0" 34008 - ]; 34009 - }) 34746 + sources."sntp-2.0.2" 34747 + sources."assert-plus-1.0.0" 34748 + sources."jsprim-1.4.1" 34749 + sources."sshpk-1.13.1" 34010 34750 sources."extsprintf-1.3.0" 34011 34751 sources."json-schema-0.2.3" 34012 - (sources."verror-1.10.0" // { 34013 - dependencies = [ 34014 - sources."assert-plus-1.0.0" 34015 - ]; 34016 - }) 34752 + sources."verror-1.10.0" 34017 34753 sources."core-util-is-1.0.2" 34018 34754 sources."asn1-0.2.3" 34019 - (sources."dashdash-1.14.1" // { 34020 - dependencies = [ 34021 - sources."assert-plus-1.0.0" 34022 - ]; 34023 - }) 34024 - (sources."getpass-0.1.7" // { 34025 - dependencies = [ 34026 - sources."assert-plus-1.0.0" 34027 - ]; 34028 - }) 34755 + sources."dashdash-1.14.1" 34756 + sources."getpass-0.1.7" 34029 34757 sources."jsbn-0.1.1" 34030 34758 sources."tweetnacl-0.14.5" 34031 34759 sources."ecc-jsbn-0.1.1" ··· 34220 34948 sources."dtrace-provider-0.6.0" 34221 34949 sources."precond-0.2.3" 34222 34950 sources."csv-generate-0.0.6" 34223 - sources."csv-parse-1.2.1" 34951 + sources."csv-parse-1.2.2" 34224 34952 sources."stream-transform-0.1.2" 34225 34953 sources."csv-stringify-0.0.8" 34226 34954 sources."asn1-0.1.11" ··· 34338 35066 sources."esprima-2.7.3" 34339 35067 sources."sprintf-js-1.0.3" 34340 35068 sources."minimist-0.0.8" 34341 - sources."clap-1.2.0" 35069 + sources."clap-1.2.3" 34342 35070 sources."source-map-0.5.7" 34343 35071 sources."chalk-1.1.3" 34344 35072 sources."ansi-styles-2.2.1" ··· 34420 35148 uglify-js = nodeEnv.buildNodePackage { 34421 35149 name = "uglify-js"; 34422 35150 packageName = "uglify-js"; 34423 - version = "3.0.28"; 35151 + version = "3.1.1"; 34424 35152 src = fetchurl { 34425 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.0.28.tgz"; 34426 - sha512 = "0c2lanpm4sac5iz6mybcdxyh2y1hrgjghlggjh1wq2nr19lr9yig6j2hgjvghm1pzv5r3lm7pfhbgnpndrbynjmva3a3mxlmhcyl7yj"; 35153 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.1.1.tgz"; 35154 + sha512 = "324ss2wqxsz86ih8hy14lkaqaq32kck3mkka79nj7v3bk9288c9a1x7pc88na5g17ch83qvg9j5hwlzl7v72crl5c01dz9d92cfkc3z"; 34427 35155 }; 34428 35156 dependencies = [ 34429 35157 sources."commander-2.11.0" ··· 34520 35248 }) 34521 35249 (sources."npm-registry-client-8.4.0" // { 34522 35250 dependencies = [ 34523 - sources."request-2.81.0" 35251 + sources."request-2.82.0" 35252 + sources."aws-sign2-0.7.0" 34524 35253 sources."combined-stream-1.0.5" 34525 35254 sources."extend-3.0.1" 34526 35255 sources."forever-agent-0.6.1" 34527 - sources."form-data-2.1.4" 34528 - sources."hawk-3.1.3" 35256 + sources."form-data-2.3.1" 35257 + sources."har-validator-5.0.3" 35258 + sources."hawk-6.0.2" 35259 + sources."http-signature-1.2.0" 34529 35260 sources."json-stringify-safe-5.0.1" 34530 35261 sources."oauth-sign-0.8.2" 35262 + sources."performance-now-2.1.0" 35263 + sources."qs-6.5.1" 34531 35264 sources."tunnel-agent-0.6.0" 35265 + sources."uuid-3.1.0" 34532 35266 sources."delayed-stream-1.0.0" 34533 - sources."hoek-2.16.3" 34534 - sources."boom-2.10.1" 34535 - sources."cryptiles-2.0.5" 34536 - sources."sntp-1.0.9" 35267 + sources."ajv-5.2.2" 35268 + sources."har-schema-2.0.0" 35269 + sources."hoek-4.2.0" 35270 + sources."boom-4.3.1" 35271 + (sources."cryptiles-3.1.2" // { 35272 + dependencies = [ 35273 + sources."boom-5.2.0" 35274 + ]; 35275 + }) 35276 + sources."sntp-2.0.2" 35277 + sources."assert-plus-1.0.0" 34537 35278 ]; 34538 35279 }) 34539 35280 sources."octicons-3.5.0" ··· 34553 35294 sources."minimist-1.2.0" 34554 35295 ]; 34555 35296 }) 34556 - sources."rimraf-2.6.1" 35297 + sources."rimraf-2.6.2" 34557 35298 sources."semver-5.4.1" 34558 35299 sources."serve-static-1.12.4" 34559 35300 sources."signals-1.0.0" ··· 34593 35334 ]; 34594 35335 }) 34595 35336 sources."bytes-2.4.0" 34596 - sources."content-type-1.0.2" 35337 + sources."content-type-1.0.4" 34597 35338 sources."debug-2.6.7" 34598 35339 sources."depd-1.1.1" 34599 35340 sources."http-errors-1.6.2" ··· 34632 35373 sources."content-disposition-0.5.2" 34633 35374 sources."encodeurl-1.0.1" 34634 35375 sources."escape-html-1.0.3" 34635 - sources."etag-1.8.0" 34636 - (sources."finalhandler-1.0.4" // { 35376 + sources."etag-1.8.1" 35377 + (sources."finalhandler-1.0.5" // { 34637 35378 dependencies = [ 34638 35379 sources."debug-2.6.8" 34639 35380 ]; ··· 34641 35382 sources."fresh-0.5.0" 34642 35383 sources."merge-descriptors-1.0.1" 34643 35384 sources."methods-1.1.2" 34644 - sources."parseurl-1.3.1" 35385 + sources."parseurl-1.3.2" 34645 35386 sources."path-to-regexp-0.1.7" 34646 35387 sources."proxy-addr-1.1.5" 34647 35388 sources."range-parser-1.2.0" ··· 34653 35394 sources."utils-merge-1.0.0" 34654 35395 sources."vary-1.1.1" 34655 35396 sources."negotiator-0.6.1" 34656 - sources."forwarded-0.1.0" 35397 + sources."forwarded-0.1.2" 34657 35398 sources."ipaddr.js-1.4.0" 34658 35399 sources."destroy-1.0.4" 34659 35400 sources."mime-1.3.4" ··· 35100 35841 sources."spdx-expression-parse-1.0.4" 35101 35842 sources."spdx-license-ids-1.2.2" 35102 35843 sources."ssri-4.1.6" 35844 + sources."fast-deep-equal-1.0.0" 35845 + sources."json-schema-traverse-0.3.1" 35103 35846 sources."passport-strategy-1.0.0" 35104 35847 sources."pause-0.0.1" 35105 35848 sources."lsmod-1.0.0" ··· 35261 36004 sources."jsonfile-2.4.0" 35262 36005 sources."klaw-1.3.1" 35263 36006 sources."path-is-absolute-1.0.1" 35264 - sources."rimraf-2.6.1" 36007 + sources."rimraf-2.6.2" 35265 36008 sources."glob-7.1.2" 35266 36009 sources."fs.realpath-1.0.0" 35267 36010 sources."inflight-1.0.6" ··· 35363 36106 webpack = nodeEnv.buildNodePackage { 35364 36107 name = "webpack"; 35365 36108 packageName = "webpack"; 35366 - version = "3.5.6"; 36109 + version = "3.6.0"; 35367 36110 src = fetchurl { 35368 - url = "https://registry.npmjs.org/webpack/-/webpack-3.5.6.tgz"; 35369 - sha512 = "074qvc0afzqmgizpxih7yhbp3bzf77l3jf91zssaqlilvz56jkgj6mnyw5r2qv2y8kgqc8q147ys00b8bc8v2q12imrb8ca3rzz2ydi"; 36111 + url = "https://registry.npmjs.org/webpack/-/webpack-3.6.0.tgz"; 36112 + sha512 = "12fzgy04c0gwlpr5bn66q92kbnv8wn4sm6xd2mmhc3dwq0fkrl2h1pmad3wh56x8zia8v7s4jcwxndhv8pb9d0y7s7skl0n7pfd7h9s"; 35370 36113 }; 35371 36114 dependencies = [ 35372 36115 sources."acorn-5.1.2" ··· 35380 36123 sources."async-2.5.0" 35381 36124 sources."enhanced-resolve-3.4.1" 35382 36125 sources."escope-3.6.0" 35383 - sources."interpret-1.0.3" 36126 + sources."interpret-1.0.4" 35384 36127 sources."json-loader-0.5.7" 35385 36128 sources."json5-0.5.1" 35386 36129 sources."loader-runner-2.3.0" ··· 35430 36173 sources."es6-set-0.1.5" 35431 36174 sources."es6-symbol-3.1.1" 35432 36175 sources."event-emitter-0.3.5" 35433 - sources."big.js-3.1.3" 36176 + sources."big.js-3.2.0" 35434 36177 sources."emojis-list-2.1.0" 35435 36178 sources."errno-0.1.4" 35436 36179 sources."readable-stream-2.3.3" ··· 35482 36225 sources."create-hash-1.1.3" 35483 36226 sources."create-hmac-1.1.6" 35484 36227 sources."diffie-hellman-5.0.2" 35485 - sources."pbkdf2-3.0.13" 36228 + sources."pbkdf2-3.0.14" 35486 36229 sources."public-encrypt-4.0.0" 35487 36230 sources."randombytes-2.0.5" 35488 36231 sources."browserify-aes-1.0.8" ··· 35590 36333 sources."balanced-match-1.0.0" 35591 36334 sources."concat-map-0.0.1" 35592 36335 sources."nan-2.7.0" 35593 - sources."node-pre-gyp-0.6.36" 36336 + sources."node-pre-gyp-0.6.37" 35594 36337 sources."nopt-4.0.1" 35595 36338 sources."npmlog-4.1.2" 35596 36339 (sources."rc-1.2.1" // { ··· 35598 36341 sources."minimist-1.2.0" 35599 36342 ]; 35600 36343 }) 35601 - sources."request-2.81.0" 35602 - sources."rimraf-2.6.1" 36344 + sources."request-2.82.0" 36345 + sources."rimraf-2.6.2" 35603 36346 sources."semver-5.4.1" 36347 + (sources."tape-4.8.0" // { 36348 + dependencies = [ 36349 + sources."minimist-1.2.0" 36350 + ]; 36351 + }) 35604 36352 sources."tar-2.2.1" 35605 36353 sources."tar-pack-3.4.0" 35606 36354 sources."abbrev-1.1.0" ··· 35612 36360 sources."gauge-2.7.4" 35613 36361 sources."set-blocking-2.0.0" 35614 36362 sources."delegates-1.0.0" 35615 - sources."aproba-1.1.2" 36363 + sources."aproba-1.2.0" 35616 36364 sources."has-unicode-2.0.1" 35617 36365 sources."signal-exit-3.0.2" 35618 36366 sources."string-width-1.0.2" ··· 35625 36373 sources."deep-extend-0.4.2" 35626 36374 sources."ini-1.3.4" 35627 36375 sources."strip-json-comments-2.0.1" 35628 - sources."aws-sign2-0.6.0" 36376 + sources."aws-sign2-0.7.0" 35629 36377 sources."aws4-1.6.0" 35630 36378 sources."caseless-0.12.0" 35631 36379 sources."combined-stream-1.0.5" 35632 36380 sources."extend-3.0.1" 35633 36381 sources."forever-agent-0.6.1" 35634 - sources."form-data-2.1.4" 35635 - (sources."har-validator-4.2.1" // { 35636 - dependencies = [ 35637 - sources."ajv-4.11.8" 35638 - ]; 35639 - }) 35640 - sources."hawk-3.1.3" 35641 - sources."http-signature-1.1.1" 36382 + sources."form-data-2.3.1" 36383 + sources."har-validator-5.0.3" 36384 + sources."hawk-6.0.2" 36385 + sources."http-signature-1.2.0" 35642 36386 sources."is-typedarray-1.0.0" 35643 36387 sources."isstream-0.1.2" 35644 36388 sources."json-stringify-safe-5.0.1" 35645 36389 sources."mime-types-2.1.17" 35646 36390 sources."oauth-sign-0.8.2" 35647 - sources."performance-now-0.2.0" 35648 - sources."qs-6.4.0" 36391 + sources."performance-now-2.1.0" 36392 + sources."qs-6.5.1" 35649 36393 sources."stringstream-0.0.5" 35650 36394 sources."tough-cookie-2.3.2" 35651 36395 sources."tunnel-agent-0.6.0" 35652 36396 sources."uuid-3.1.0" 35653 36397 sources."delayed-stream-1.0.0" 35654 36398 sources."asynckit-0.4.0" 35655 - sources."har-schema-1.0.5" 35656 - sources."hoek-2.16.3" 35657 - sources."boom-2.10.1" 35658 - sources."cryptiles-2.0.5" 35659 - sources."sntp-1.0.9" 35660 - sources."assert-plus-0.2.0" 35661 - (sources."jsprim-1.4.1" // { 36399 + sources."har-schema-2.0.0" 36400 + sources."hoek-4.2.0" 36401 + sources."boom-4.3.1" 36402 + (sources."cryptiles-3.1.2" // { 35662 36403 dependencies = [ 35663 - sources."assert-plus-1.0.0" 36404 + sources."boom-5.2.0" 35664 36405 ]; 35665 36406 }) 35666 - (sources."sshpk-1.13.1" // { 35667 - dependencies = [ 35668 - sources."assert-plus-1.0.0" 35669 - ]; 35670 - }) 36407 + sources."sntp-2.0.2" 36408 + sources."assert-plus-1.0.0" 36409 + sources."jsprim-1.4.1" 36410 + sources."sshpk-1.13.1" 35671 36411 sources."extsprintf-1.3.0" 35672 36412 sources."json-schema-0.2.3" 35673 - (sources."verror-1.10.0" // { 35674 - dependencies = [ 35675 - sources."assert-plus-1.0.0" 35676 - ]; 35677 - }) 36413 + sources."verror-1.10.0" 35678 36414 sources."asn1-0.2.3" 35679 - (sources."dashdash-1.14.1" // { 35680 - dependencies = [ 35681 - sources."assert-plus-1.0.0" 35682 - ]; 35683 - }) 35684 - (sources."getpass-0.1.7" // { 35685 - dependencies = [ 35686 - sources."assert-plus-1.0.0" 35687 - ]; 35688 - }) 36415 + sources."dashdash-1.14.1" 36416 + sources."getpass-0.1.7" 35689 36417 sources."jsbn-0.1.1" 35690 36418 sources."tweetnacl-0.14.5" 35691 36419 sources."ecc-jsbn-0.1.1" ··· 35696 36424 sources."inflight-1.0.6" 35697 36425 sources."once-1.4.0" 35698 36426 sources."wrappy-1.0.2" 36427 + sources."deep-equal-1.0.1" 36428 + sources."defined-1.0.0" 36429 + sources."for-each-0.3.2" 36430 + sources."function-bind-1.1.1" 36431 + sources."has-1.0.1" 36432 + sources."object-inspect-1.3.0" 36433 + sources."resolve-1.4.0" 36434 + sources."resumer-0.0.0" 36435 + sources."string.prototype.trim-1.1.2" 36436 + sources."through-2.3.8" 36437 + sources."is-function-1.0.1" 36438 + sources."path-parse-1.0.5" 36439 + sources."define-properties-1.1.2" 36440 + sources."es-abstract-1.8.2" 36441 + sources."foreach-2.0.5" 36442 + sources."object-keys-1.0.11" 36443 + sources."es-to-primitive-1.1.1" 36444 + sources."is-callable-1.1.3" 36445 + sources."is-regex-1.0.4" 36446 + sources."is-date-object-1.0.1" 36447 + sources."is-symbol-1.0.1" 35699 36448 sources."block-stream-0.0.9" 35700 36449 sources."fstream-1.0.11" 35701 36450 sources."debug-2.6.8" ··· 35784 36533 yarn = nodeEnv.buildNodePackage { 35785 36534 name = "yarn"; 35786 36535 packageName = "yarn"; 35787 - version = "0.27.5"; 36536 + version = "1.0.2"; 35788 36537 src = fetchurl { 35789 - url = "https://registry.npmjs.org/yarn/-/yarn-0.27.5.tgz"; 35790 - sha1 = "06fe67d8040802993f9f1e1923d671cbf9ead5d1"; 36538 + url = "https://registry.npmjs.org/yarn/-/yarn-1.0.2.tgz"; 36539 + sha1 = "d1b8f4b6d3b0684e86f63a072ac630995b8b7b0a"; 35791 36540 }; 35792 - dependencies = [ 35793 - sources."babel-runtime-6.26.0" 35794 - sources."bytes-2.5.0" 35795 - sources."camelcase-4.1.0" 35796 - sources."chalk-1.1.3" 35797 - sources."cmd-shim-2.0.2" 35798 - sources."commander-2.11.0" 35799 - sources."death-1.1.0" 35800 - sources."debug-2.6.8" 35801 - sources."detect-indent-5.0.0" 35802 - sources."glob-7.1.2" 35803 - sources."gunzip-maybe-1.4.1" 35804 - sources."ini-1.3.4" 35805 - (sources."inquirer-3.2.3" // { 35806 - dependencies = [ 35807 - sources."chalk-2.1.0" 35808 - sources."strip-ansi-4.0.0" 35809 - sources."ansi-styles-3.2.0" 35810 - sources."supports-color-4.4.0" 35811 - sources."ansi-regex-3.0.0" 35812 - ]; 35813 - }) 35814 - sources."invariant-2.2.2" 35815 - sources."is-builtin-module-1.0.0" 35816 - sources."is-ci-1.0.10" 35817 - sources."leven-2.1.0" 35818 - sources."loud-rejection-1.6.0" 35819 - sources."micromatch-2.3.11" 35820 - sources."mkdirp-0.5.1" 35821 - sources."node-emoji-1.8.1" 35822 - sources."object-path-0.11.4" 35823 - sources."proper-lockfile-2.0.1" 35824 - sources."read-1.0.7" 35825 - sources."request-2.81.0" 35826 - sources."request-capture-har-1.2.2" 35827 - sources."rimraf-2.6.1" 35828 - sources."semver-5.4.1" 35829 - sources."strip-bom-3.0.0" 35830 - sources."tar-fs-1.15.3" 35831 - sources."tar-stream-1.5.4" 35832 - sources."uuid-3.1.0" 35833 - sources."v8-compile-cache-1.1.0" 35834 - sources."validate-npm-package-license-3.0.1" 35835 - sources."core-js-2.5.1" 35836 - sources."regenerator-runtime-0.11.0" 35837 - sources."ansi-styles-2.2.1" 35838 - sources."escape-string-regexp-1.0.5" 35839 - sources."has-ansi-2.0.0" 35840 - sources."strip-ansi-3.0.1" 35841 - sources."supports-color-2.0.0" 35842 - sources."ansi-regex-2.1.1" 35843 - sources."graceful-fs-4.1.11" 35844 - sources."ms-2.0.0" 35845 - sources."fs.realpath-1.0.0" 35846 - sources."inflight-1.0.6" 35847 - sources."inherits-2.0.3" 35848 - sources."minimatch-3.0.4" 35849 - sources."once-1.4.0" 35850 - sources."path-is-absolute-1.0.1" 35851 - sources."wrappy-1.0.2" 35852 - sources."brace-expansion-1.1.8" 35853 - sources."balanced-match-1.0.0" 35854 - sources."concat-map-0.0.1" 35855 - sources."browserify-zlib-0.1.4" 35856 - sources."is-deflate-1.0.0" 35857 - sources."is-gzip-1.0.0" 35858 - sources."peek-stream-1.1.2" 35859 - sources."pumpify-1.3.5" 35860 - sources."through2-2.0.3" 35861 - sources."pako-0.2.9" 35862 - sources."duplexify-3.5.1" 35863 - sources."end-of-stream-1.4.0" 35864 - sources."readable-stream-2.3.3" 35865 - sources."stream-shift-1.0.0" 35866 - sources."core-util-is-1.0.2" 35867 - sources."isarray-1.0.0" 35868 - sources."process-nextick-args-1.0.7" 35869 - sources."safe-buffer-5.1.1" 35870 - sources."string_decoder-1.0.3" 35871 - sources."util-deprecate-1.0.2" 35872 - sources."pump-1.0.2" 35873 - sources."xtend-4.0.1" 35874 - sources."ansi-escapes-2.0.0" 35875 - sources."cli-cursor-2.1.0" 35876 - sources."cli-width-2.2.0" 35877 - sources."external-editor-2.0.4" 35878 - sources."figures-2.0.0" 35879 - sources."lodash-4.17.4" 35880 - sources."mute-stream-0.0.7" 35881 - sources."run-async-2.3.0" 35882 - sources."rx-lite-4.0.8" 35883 - sources."rx-lite-aggregates-4.0.8" 35884 - (sources."string-width-2.1.1" // { 35885 - dependencies = [ 35886 - sources."strip-ansi-4.0.0" 35887 - sources."ansi-regex-3.0.0" 35888 - ]; 35889 - }) 35890 - sources."through-2.3.8" 35891 - sources."color-convert-1.9.0" 35892 - sources."color-name-1.1.3" 35893 - sources."has-flag-2.0.0" 35894 - sources."restore-cursor-2.0.0" 35895 - sources."onetime-2.0.1" 35896 - sources."signal-exit-3.0.2" 35897 - sources."mimic-fn-1.1.0" 35898 - sources."iconv-lite-0.4.18" 35899 - sources."jschardet-1.5.1" 35900 - sources."tmp-0.0.31" 35901 - sources."os-tmpdir-1.0.2" 35902 - sources."is-promise-2.1.0" 35903 - sources."is-fullwidth-code-point-2.0.0" 35904 - sources."loose-envify-1.3.1" 35905 - sources."js-tokens-3.0.2" 35906 - sources."builtin-modules-1.1.1" 35907 - sources."ci-info-1.1.1" 35908 - sources."currently-unhandled-0.4.1" 35909 - sources."array-find-index-1.0.2" 35910 - sources."arr-diff-2.0.0" 35911 - sources."array-unique-0.2.1" 35912 - sources."braces-1.8.5" 35913 - sources."expand-brackets-0.1.5" 35914 - sources."extglob-0.3.2" 35915 - sources."filename-regex-2.0.1" 35916 - sources."is-extglob-1.0.0" 35917 - sources."is-glob-2.0.1" 35918 - sources."kind-of-3.2.2" 35919 - sources."normalize-path-2.1.1" 35920 - sources."object.omit-2.0.1" 35921 - sources."parse-glob-3.0.4" 35922 - sources."regex-cache-0.4.4" 35923 - sources."arr-flatten-1.1.0" 35924 - sources."expand-range-1.8.2" 35925 - sources."preserve-0.2.0" 35926 - sources."repeat-element-1.1.2" 35927 - sources."fill-range-2.2.3" 35928 - sources."is-number-2.1.0" 35929 - sources."isobject-2.1.0" 35930 - (sources."randomatic-1.1.7" // { 35931 - dependencies = [ 35932 - (sources."is-number-3.0.0" // { 35933 - dependencies = [ 35934 - sources."kind-of-3.2.2" 35935 - ]; 35936 - }) 35937 - sources."kind-of-4.0.0" 35938 - ]; 35939 - }) 35940 - sources."repeat-string-1.6.1" 35941 - sources."is-buffer-1.1.5" 35942 - sources."is-posix-bracket-0.1.1" 35943 - sources."remove-trailing-separator-1.1.0" 35944 - sources."for-own-0.1.5" 35945 - sources."is-extendable-0.1.1" 35946 - sources."for-in-1.0.2" 35947 - sources."glob-base-0.3.0" 35948 - sources."is-dotfile-1.0.3" 35949 - sources."glob-parent-2.0.0" 35950 - sources."is-equal-shallow-0.1.3" 35951 - sources."is-primitive-2.0.0" 35952 - sources."minimist-0.0.8" 35953 - sources."lodash.toarray-4.4.0" 35954 - sources."retry-0.10.1" 35955 - sources."aws-sign2-0.6.0" 35956 - sources."aws4-1.6.0" 35957 - sources."caseless-0.12.0" 35958 - sources."combined-stream-1.0.5" 35959 - sources."extend-3.0.1" 35960 - sources."forever-agent-0.6.1" 35961 - sources."form-data-2.1.4" 35962 - sources."har-validator-4.2.1" 35963 - sources."hawk-3.1.3" 35964 - sources."http-signature-1.1.1" 35965 - sources."is-typedarray-1.0.0" 35966 - sources."isstream-0.1.2" 35967 - sources."json-stringify-safe-5.0.1" 35968 - sources."mime-types-2.1.17" 35969 - sources."oauth-sign-0.8.2" 35970 - sources."performance-now-0.2.0" 35971 - sources."qs-6.4.0" 35972 - sources."stringstream-0.0.5" 35973 - sources."tough-cookie-2.3.2" 35974 - sources."tunnel-agent-0.6.0" 35975 - sources."delayed-stream-1.0.0" 35976 - sources."asynckit-0.4.0" 35977 - sources."ajv-4.11.8" 35978 - sources."har-schema-1.0.5" 35979 - sources."co-4.6.0" 35980 - sources."json-stable-stringify-1.0.1" 35981 - sources."jsonify-0.0.0" 35982 - sources."hoek-2.16.3" 35983 - sources."boom-2.10.1" 35984 - sources."cryptiles-2.0.5" 35985 - sources."sntp-1.0.9" 35986 - sources."assert-plus-0.2.0" 35987 - (sources."jsprim-1.4.1" // { 35988 - dependencies = [ 35989 - sources."assert-plus-1.0.0" 35990 - ]; 35991 - }) 35992 - (sources."sshpk-1.13.1" // { 35993 - dependencies = [ 35994 - sources."assert-plus-1.0.0" 35995 - ]; 35996 - }) 35997 - sources."extsprintf-1.3.0" 35998 - sources."json-schema-0.2.3" 35999 - (sources."verror-1.10.0" // { 36000 - dependencies = [ 36001 - sources."assert-plus-1.0.0" 36002 - ]; 36003 - }) 36004 - sources."asn1-0.2.3" 36005 - (sources."dashdash-1.14.1" // { 36006 - dependencies = [ 36007 - sources."assert-plus-1.0.0" 36008 - ]; 36009 - }) 36010 - (sources."getpass-0.1.7" // { 36011 - dependencies = [ 36012 - sources."assert-plus-1.0.0" 36013 - ]; 36014 - }) 36015 - sources."jsbn-0.1.1" 36016 - sources."tweetnacl-0.14.5" 36017 - sources."ecc-jsbn-0.1.1" 36018 - sources."bcrypt-pbkdf-1.0.1" 36019 - sources."mime-db-1.30.0" 36020 - sources."punycode-1.4.1" 36021 - sources."chownr-1.0.1" 36022 - sources."bl-1.2.1" 36023 - sources."spdx-correct-1.0.2" 36024 - sources."spdx-expression-parse-1.0.4" 36025 - sources."spdx-license-ids-1.2.2" 36026 - ]; 36027 36541 buildInputs = globalBuildInputs; 36028 36542 meta = { 36029 36543 description = "📦🐈 Fast, reliable, and secure dependency management."; ··· 36050 36564 sources."fullname-3.3.0" 36051 36565 sources."got-6.7.1" 36052 36566 sources."humanize-string-1.0.1" 36053 - (sources."inquirer-3.2.3" // { 36567 + (sources."inquirer-3.3.0" // { 36054 36568 dependencies = [ 36055 36569 sources."chalk-2.1.0" 36056 36570 sources."strip-ansi-4.0.0" ··· 36212 36726 sources."capture-stack-trace-1.0.0" 36213 36727 sources."prepend-http-1.0.4" 36214 36728 sources."decamelize-1.2.0" 36215 - sources."ansi-escapes-2.0.0" 36729 + sources."ansi-escapes-3.0.0" 36216 36730 sources."cli-cursor-2.1.0" 36217 36731 sources."cli-width-2.2.0" 36218 - sources."external-editor-2.0.4" 36732 + sources."external-editor-2.0.5" 36219 36733 sources."mute-stream-0.0.7" 36220 36734 sources."run-async-2.3.0" 36221 36735 sources."rx-lite-4.0.8" ··· 36232 36746 sources."has-flag-2.0.0" 36233 36747 sources."restore-cursor-2.0.0" 36234 36748 sources."onetime-2.0.1" 36235 - sources."iconv-lite-0.4.18" 36749 + sources."iconv-lite-0.4.19" 36236 36750 sources."jschardet-1.5.1" 36237 - sources."tmp-0.0.31" 36751 + sources."tmp-0.0.33" 36238 36752 sources."os-tmpdir-1.0.2" 36239 36753 sources."is-promise-2.1.0" 36240 36754 sources."is-fullwidth-code-point-2.0.0" 36241 36755 sources."lodash.debounce-3.1.1" 36242 36756 sources."os-name-1.0.3" 36243 - sources."request-2.81.0" 36757 + sources."request-2.82.0" 36244 36758 sources."tough-cookie-2.3.2" 36245 36759 sources."uuid-3.1.0" 36246 36760 (sources."mkdirp-0.5.1" // { ··· 36266 36780 sources."osx-release-1.1.0" 36267 36781 sources."win-release-1.1.1" 36268 36782 sources."semver-5.4.1" 36269 - sources."aws-sign2-0.6.0" 36783 + sources."aws-sign2-0.7.0" 36270 36784 sources."aws4-1.6.0" 36271 36785 sources."caseless-0.12.0" 36272 36786 sources."combined-stream-1.0.5" 36273 36787 sources."extend-3.0.1" 36274 36788 sources."forever-agent-0.6.1" 36275 - sources."form-data-2.1.4" 36276 - sources."har-validator-4.2.1" 36277 - sources."hawk-3.1.3" 36278 - sources."http-signature-1.1.1" 36789 + sources."form-data-2.3.1" 36790 + sources."har-validator-5.0.3" 36791 + sources."hawk-6.0.2" 36792 + sources."http-signature-1.2.0" 36279 36793 sources."is-typedarray-1.0.0" 36280 36794 sources."isstream-0.1.2" 36281 36795 sources."json-stringify-safe-5.0.1" 36282 36796 sources."mime-types-2.1.17" 36283 36797 sources."oauth-sign-0.8.2" 36284 - sources."performance-now-0.2.0" 36285 - sources."qs-6.4.0" 36798 + sources."performance-now-2.1.0" 36799 + sources."qs-6.5.1" 36286 36800 sources."stringstream-0.0.5" 36287 36801 sources."tunnel-agent-0.6.0" 36288 36802 sources."delayed-stream-1.0.0" 36289 36803 sources."asynckit-0.4.0" 36290 - sources."ajv-4.11.8" 36291 - sources."har-schema-1.0.5" 36804 + sources."ajv-5.2.2" 36805 + sources."har-schema-2.0.0" 36292 36806 sources."co-4.6.0" 36807 + sources."fast-deep-equal-1.0.0" 36808 + sources."json-schema-traverse-0.3.1" 36293 36809 sources."json-stable-stringify-1.0.1" 36294 36810 sources."jsonify-0.0.0" 36295 - sources."hoek-2.16.3" 36296 - sources."boom-2.10.1" 36297 - sources."cryptiles-2.0.5" 36298 - sources."sntp-1.0.9" 36299 - sources."assert-plus-0.2.0" 36300 - (sources."jsprim-1.4.1" // { 36811 + sources."hoek-4.2.0" 36812 + sources."boom-4.3.1" 36813 + (sources."cryptiles-3.1.2" // { 36301 36814 dependencies = [ 36302 - sources."assert-plus-1.0.0" 36815 + sources."boom-5.2.0" 36303 36816 ]; 36304 36817 }) 36305 - (sources."sshpk-1.13.1" // { 36306 - dependencies = [ 36307 - sources."assert-plus-1.0.0" 36308 - ]; 36309 - }) 36818 + sources."sntp-2.0.2" 36819 + sources."assert-plus-1.0.0" 36820 + sources."jsprim-1.4.1" 36821 + sources."sshpk-1.13.1" 36310 36822 sources."extsprintf-1.3.0" 36311 36823 sources."json-schema-0.2.3" 36312 - (sources."verror-1.10.0" // { 36313 - dependencies = [ 36314 - sources."assert-plus-1.0.0" 36315 - ]; 36316 - }) 36824 + sources."verror-1.10.0" 36317 36825 sources."core-util-is-1.0.2" 36318 36826 sources."asn1-0.2.3" 36319 - (sources."dashdash-1.14.1" // { 36320 - dependencies = [ 36321 - sources."assert-plus-1.0.0" 36322 - ]; 36323 - }) 36324 - (sources."getpass-0.1.7" // { 36325 - dependencies = [ 36326 - sources."assert-plus-1.0.0" 36327 - ]; 36328 - }) 36827 + sources."dashdash-1.14.1" 36828 + sources."getpass-0.1.7" 36329 36829 sources."jsbn-0.1.1" 36330 36830 sources."tweetnacl-0.14.5" 36331 36831 sources."ecc-jsbn-0.1.1"
+21
pkgs/development/python-modules/blessed/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, six, wcwidth }: 2 + 3 + buildPythonPackage rec { 4 + name = "${pname}-${version}"; 5 + pname = "blessed"; 6 + version = "1.14.2"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "0fv9f0074kxy1849h0kwwxw12sifpq3bv63pcz900zzjsigi4hi3"; 11 + }; 12 + 13 + propagatedBuildInputs = [ wcwidth six ]; 14 + 15 + meta = with stdenv.lib; { 16 + homepage = https://github.com/jquast/blessed; 17 + description = "A thin, practical wrapper around terminal capabilities in Python."; 18 + maintainers = with maintainers; [ eqyiel ]; 19 + license = licenses.mit; 20 + }; 21 + }
+23
pkgs/development/python-modules/cement/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "cement"; 5 + name = "${pname}-${version}"; 6 + version = "2.8.2"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "1li2whjzfhbpg6fjb6r1r92fb3967p1xv6hqs3j787865h2ysrc7"; 11 + }; 12 + 13 + # Disable test tests since they depend on a memcached server running on 14 + # 127.0.0.1:11211. 15 + doCheck = false; 16 + 17 + meta = with stdenv.lib; { 18 + homepage = http://builtoncement.com/; 19 + description = "A CLI Application Framework for Python."; 20 + maintainers = with maintainers; [ eqyiel ]; 21 + license = licenses.bsd3; 22 + }; 23 + }
+3 -3
pkgs/development/qtcreator/default.nix
··· 6 6 with stdenv.lib; 7 7 8 8 let 9 - baseVersion = "4.3"; 10 - revision = "1"; 9 + baseVersion = "4.4"; 10 + revision = "0"; 11 11 in 12 12 13 13 stdenv.mkDerivation rec { ··· 16 16 17 17 src = fetchurl { 18 18 url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.xz"; 19 - sha256 = "1bd4wxvp8b5imsmrbnn8rkiln38g74g2545x07pmihc8z51qh2h6"; 19 + sha256 = "00k2bb2pamqlq0i619wz8chii8yp884qnrjngzzxrdffk05d95wc"; 20 20 }; 21 21 22 22 buildInputs = [ qtbase qtscript qtquickcontrols qtdeclarative ];
+26
pkgs/development/tools/haskell/vaultenv/default.nix
··· 1 + { mkDerivation, fetchurl, async, base, bytestring, http-conduit, lens 2 + , lens-aeson, optparse-applicative, retry, stdenv, text, unix 3 + , unordered-containers, utf8-string 4 + }: 5 + 6 + mkDerivation rec { 7 + pname = "vaultenv"; 8 + version = "0.5.0"; 9 + 10 + src = fetchurl { 11 + url = "https://github.com/channable/vaultenv/archive/v${version}.tar.gz"; 12 + sha256 = "0hdcxq88cf3ygnikkppyg3fcf7xmwm9zif7274j3n34p9vd8xci3"; 13 + }; 14 + 15 + isLibrary = false; 16 + isExecutable = true; 17 + executableHaskellDepends = [ 18 + async base bytestring http-conduit lens lens-aeson 19 + optparse-applicative retry text unix unordered-containers 20 + utf8-string 21 + ]; 22 + homepage = "https://github.com/channable/vaultenv"; 23 + description = "Runs processes with secrets from HashiCorp Vault"; 24 + license = stdenv.lib.licenses.bsd3; 25 + maintainers = with stdenv.lib.maintainers; [ lnl7 ]; 26 + }
+3 -3
pkgs/development/tools/misc/hydra/default.nix
··· 62 62 }; 63 63 in releaseTools.nixBuild rec { 64 64 name = "hydra-${version}"; 65 - version = "2017-07-27"; 65 + version = "2017-09-14"; 66 66 67 67 inherit stdenv; 68 68 69 69 src = fetchFromGitHub { 70 70 owner = "NixOS"; 71 71 repo = "hydra"; 72 - rev = "3fc320db320c9aa5180c54e77513f1bcb7407079"; 73 - sha256 = "0kml2rvy5pz8pzl23vfib5vrwxccff9j1jmyq926qv7f5kbzy61b"; 72 + rev = "b828224fee451ad26e87cfe4eeb9c0704ee1062b"; 73 + sha256 = "05xv10ldsa1rahxbbgh5kwvl1dv4yvc8idczpifgb55fgqj8zazm"; 74 74 }; 75 75 76 76 buildInputs =
+3 -3
pkgs/development/tools/misc/tokei/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 name = "tokei-${version}"; 5 - version = "6.0.1"; 5 + version = "6.1.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Aaronepower"; 9 9 repo = "tokei"; 10 10 rev = "v${version}"; 11 - sha256 = "1v9h45vspsqsy86fm78bc2g5byqa4cd9b9fbmv7imi87yjbm8i7x"; 11 + sha256 = "1bzs3mr6f9bna39b9ddwwq0raas07nbn106mnq3widxg59i0gxhd"; 12 12 }; 13 13 14 - depsSha256 = "0jqzk5qlrc7pm3s7jf8130vgnrcd54izw3mx84m9b5lhf3rz98hm"; 14 + depsSha256 = "1cz93mrpxmyrza0ipdyg2a6mynl66plpsb446wxnmmy7y7zd6xbf"; 15 15 16 16 installPhase = '' 17 17 mkdir -p $out/bin
+5 -1
pkgs/development/tools/textql/default.nix
··· 4 4 name = "textql-${version}"; 5 5 version = "2.0.3"; 6 6 rev = "${version}"; 7 - 7 + 8 8 goPackagePath = "github.com/dinedal/textql"; 9 9 10 10 src = fetchFromGitHub { ··· 15 15 }; 16 16 17 17 goDeps = ./deps.nix; 18 + 19 + preFixup = stdenv.lib.optionalString stdenv.isDarwin '' 20 + install_name_tool -delete_rpath $out/lib $bin/bin/textql 21 + ''; 18 22 19 23 meta = with stdenv.lib; { 20 24 description = "Execute SQL against structured text like CSV or TSV";
+2 -2
pkgs/development/web/nodejs/v8.nix
··· 10 10 baseName = if enableNpm then "nodejs" else "nodejs-slim"; 11 11 in 12 12 stdenv.mkDerivation (nodejs // rec { 13 - version = "8.4.0"; 13 + version = "8.5.0"; 14 14 name = "${baseName}-${version}"; 15 15 src = fetchurl { 16 16 url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz"; 17 - sha256 = "0qgkccsldpdrjxwwq78z94hsqz6qivmi4n2738iiginw06hs4njx"; 17 + sha256 = "0g2wyy9zdjzm9c0vbjn8bn49s1b2c7r2iwdfc4dpx7h4wpcfbkg1"; 18 18 }; 19 19 20 20 patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
+11 -24
pkgs/games/trackballs/default.nix
··· 1 - { stdenv, fetchurl, SDL, mesa, SDL_ttf, gettext, zlib, SDL_mixer, SDL_image, guile 2 - , debug ? false }: 1 + { stdenv, fetchFromGitHub, cmake, SDL2, SDL2_ttf, gettext, zlib, SDL2_mixer, SDL2_image, guile, mesa }: 3 2 4 3 with stdenv.lib; 5 4 6 5 stdenv.mkDerivation rec { 7 - name = "trackballs-1.1.4"; 8 - 9 - src = fetchurl { 10 - url = mirror://sourceforge/trackballs/trackballs-1.1.4.tar.gz; 11 - sha256 = "19ilnif59sxa8xmfisk90wngrd11pj8s86ixzypv8krm4znbm7a5"; 6 + name = "trackballs-${version}"; 7 + version = "1.2.3"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "trackballs"; 11 + repo = "trackballs"; 12 + rev = "v${version}"; 13 + sha256 = "13f28frni7fkalxx4wqvmkzz7ba3d8pic9f9sd2z9wa6gbjs9zrf"; 12 14 }; 13 15 14 - buildInputs = [ zlib mesa SDL SDL_ttf SDL_mixer SDL_image guile gettext ]; 15 - 16 - hardeningDisable = [ "format" ]; 17 - 18 - CFLAGS = optionalString debug "-g -O0"; 19 - CXXFLAGS = CFLAGS; 20 - dontStrip = debug; 21 - postUnpack = optionalString debug 22 - "mkdir -p $out/src; cp -R * $out/src ; cd $out/src"; 23 - 24 - NIX_CFLAGS_COMPILE = "-iquote ${SDL.dev}/include/SDL"; 25 - configureFlags = optionalString debug "--enable-debug"; 26 - 27 - patchPhase = '' 28 - sed -i -e 's/images icons music/images music/' share/Makefile.in 29 - ''; 16 + buildInputs = [ cmake zlib SDL2 SDL2_ttf SDL2_mixer SDL2_image guile gettext mesa ]; 30 17 31 18 meta = { 32 - homepage = http://trackballs.sourceforge.net/; 19 + homepage = https://trackballs.github.io/; 33 20 description = "3D Marble Madness clone"; 34 21 platforms = stdenv.lib.platforms.linux; 35 22 };
+3 -3
pkgs/misc/emulators/wine/sources.nix
··· 32 32 33 33 unstable = fetchurl rec { 34 34 # NOTE: Don't forget to change the SHA256 for staging as well. 35 - version = "2.16"; 35 + version = "2.17"; 36 36 url = "https://dl.winehq.org/wine/source/2.x/wine-${version}.tar.xz"; 37 - sha256 = "089cvb7gvhcq5kx1h114fmr09fmj84cz2bjvisa48v6dpv5fsqd5"; 37 + sha256 = "0sgazjn30ki2y3bjrd0xbpf870ii22wkyrmgaxcwbk23j1rrbp3y"; 38 38 inherit (stable) mono gecko32 gecko64; 39 39 }; 40 40 41 41 staging = fetchFromGitHub rec { 42 42 inherit (unstable) version; 43 - sha256 = "1q9dnifz02l96s1bafb4w2z779k8ancl37zd7wxbkf0ks2vrnln0"; 43 + sha256 = "11jm39g1kc77fvn02j9g8syyc095b6w2jashyr28v4gi7g0fqv6h"; 44 44 owner = "wine-compholio"; 45 45 repo = "wine-staging"; 46 46 rev = "v${version}";
+4 -2
pkgs/misc/tw-rs/default.nix
··· 1 - { stdenv, fetchFromGitHub, rustPlatform, perl, zlib, openssl }: 1 + { stdenv, fetchFromGitHub, rustPlatform, perl, zlib, openssl, curl }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 name = "tw-rs-${version}"; ··· 10 10 rev = "${version}"; 11 11 sha256 = "1s1gk2wcs3792gdzrngksczz3gma5kv02ni2jqrhib8l6z8mg9ia"; 12 12 }; 13 - buildInputs = [ perl zlib openssl ]; 13 + 14 + buildInputs = [ perl zlib openssl ] 15 + ++ stdenv.lib.optional stdenv.isDarwin curl; 14 16 15 17 depsSha256 = "1lg1jh6f9w28i94vaj62r859g6raalxmxabvw7av6sqr0hr56p05"; 16 18
+72
pkgs/os-specific/linux/fuse/common.nix
··· 1 + { version, sha256Hash, maintainers }: 2 + 3 + { stdenv, fetchFromGitHub, fetchpatch 4 + , utillinux, autoconf, automake, libtool, gettext 5 + , fusePackages }: 6 + 7 + let 8 + isFuse3 = stdenv.lib.hasPrefix "3" version; 9 + in stdenv.mkDerivation rec { 10 + name = "fuse-${version}"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "libfuse"; 14 + repo = "libfuse"; 15 + rev = name; 16 + sha256 = sha256Hash; 17 + }; 18 + 19 + patches = stdenv.lib.optional 20 + (!isFuse3 && stdenv.isAarch64) 21 + (fetchpatch { 22 + url = "https://github.com/libfuse/libfuse/commit/914871b20a901e3e1e981c92bc42b1c93b7ab81b.patch"; 23 + sha256 = "1w4j6f1awjrycycpvmlv0x5v9gprllh4dnbjxl4dyl2jgbkaw6pa"; 24 + }); 25 + 26 + nativeBuildInputs = [ libtool autoconf automake ]; 27 + buildInputs = [ gettext utillinux ]; 28 + 29 + outputs = [ "out" ] ++ stdenv.lib.optional isFuse3 "common"; 30 + 31 + preConfigure = '' 32 + export MOUNT_FUSE_PATH=$out/sbin 33 + export INIT_D_PATH=$TMPDIR/etc/init.d 34 + export UDEV_RULES_PATH=$out/etc/udev/rules.d 35 + 36 + # Ensure that FUSE calls the setuid wrapper, not 37 + # $out/bin/fusermount. It falls back to calling fusermount in 38 + # $PATH, so it should also work on non-NixOS systems. 39 + export NIX_CFLAGS_COMPILE="-DFUSERMOUNT_DIR=\"/run/wrappers/bin\"" 40 + 41 + sed -e 's@/bin/@${utillinux}/bin/@g' -i lib/mount_util.c 42 + sed -e 's@CONFIG_RPATH=/usr/share/gettext/config.rpath@CONFIG_RPATH=${gettext}/share/gettext/config.rpath@' -i makeconf.sh 43 + 44 + ./makeconf.sh 45 + ''; 46 + 47 + postFixup = if isFuse3 then '' 48 + cd $out 49 + 50 + mv bin/mount.fuse3 bin/mount.fuse 51 + mv etc/udev/rules.d/99-fuse3.rules etc/udev/rules.d/99-fuse.rules 52 + 53 + install -D -m555 bin/mount.fuse $common/bin/mount.fuse 54 + install -D -m444 etc/udev/rules.d/99-fuse.rules $common/etc/udev/rules.d/99-fuse.rules 55 + install -D -m444 share/man/man8/mount.fuse.8.gz $common/share/man/man8/mount.fuse.8.gz 56 + '' else '' 57 + cd $out 58 + 59 + cp ${fusePackages.fuse_3.common}/bin/mount.fuse bin/mount.fuse 60 + cp ${fusePackages.fuse_3.common}/etc/udev/rules.d/99-fuse.rules etc/udev/rules.d/99-fuse.rules 61 + cp ${fusePackages.fuse_3.common}/share/man/man8/mount.fuse.8.gz share/man/man8/mount.fuse.8.gz 62 + ''; 63 + 64 + enableParallelBuilding = true; 65 + 66 + meta = { 67 + inherit (src.meta) homepage; 68 + description = "Kernel module and library that allows filesystems to be implemented in user space"; 69 + platforms = stdenv.lib.platforms.linux; 70 + inherit maintainers; 71 + }; 72 + }
+15 -42
pkgs/os-specific/linux/fuse/default.nix
··· 1 - { stdenv, fetchFromGitHub, fetchpatch, utillinux 2 - , autoconf, automake, libtool, gettext }: 1 + { stdenv, callPackage, utillinux }: 3 2 4 - stdenv.mkDerivation rec { 5 - name = "fuse-${version}"; 6 - version = "2.9.7"; 7 - 8 - src = fetchFromGitHub { 9 - owner = "libfuse"; 10 - repo = "libfuse"; 11 - rev = name; 12 - sha256 = "1wyjjfb7p4jrkk15zryzv33096a5fmsdyr2p4b00dd819wnly2n2"; 3 + let 4 + mkFuse = args: callPackage (import ./common.nix args) { 5 + inherit utillinux; 6 + }; 7 + maintainers = stdenv.lib.maintainers; 8 + in { 9 + fuse_2 = mkFuse { 10 + version = "2.9.7"; 11 + sha256Hash = "1wyjjfb7p4jrkk15zryzv33096a5fmsdyr2p4b00dd819wnly2n2"; 12 + maintainers = [ maintainers.mornfall ]; 13 13 }; 14 14 15 - buildInputs = [ utillinux autoconf automake libtool gettext ]; 16 - 17 - patches = stdenv.lib.optional stdenv.isAarch64 (fetchpatch { 18 - url = "https://github.com/libfuse/libfuse/commit/914871b20a901e3e1e981c92bc42b1c93b7ab81b.patch"; 19 - sha256 = "1w4j6f1awjrycycpvmlv0x5v9gprllh4dnbjxl4dyl2jgbkaw6pa"; 20 - }); 21 - 22 - preConfigure = 23 - '' 24 - export MOUNT_FUSE_PATH=$out/sbin 25 - export INIT_D_PATH=$TMPDIR/etc/init.d 26 - export UDEV_RULES_PATH=$out/etc/udev/rules.d 27 - 28 - # Ensure that FUSE calls the setuid wrapper, not 29 - # $out/bin/fusermount. It falls back to calling fusermount in 30 - # $PATH, so it should also work on non-NixOS systems. 31 - export NIX_CFLAGS_COMPILE="-DFUSERMOUNT_DIR=\"/run/wrappers/bin\"" 32 - 33 - sed -e 's@/bin/@${utillinux}/bin/@g' -i lib/mount_util.c 34 - sed -e 's@CONFIG_RPATH=/usr/share/gettext/config.rpath@CONFIG_RPATH=${gettext}/share/gettext/config.rpath@' -i makeconf.sh 35 - 36 - ./makeconf.sh 37 - ''; 38 - 39 - enableParallelBuilding = true; 40 - 41 - meta = with stdenv.lib; { 42 - homepage = https://github.com/libfuse/libfuse; 43 - description = "Kernel module and library that allows filesystems to be implemented in user space"; 44 - platforms = platforms.linux; 45 - maintainers = [ maintainers.mornfall ]; 15 + fuse_3 = mkFuse { 16 + version = "3.1.1"; 17 + sha256Hash = "14mazl2i55fp4vjphwgcmk3mp2x3mhqwh9nci0rd0jl5lhpdmpq6"; 18 + maintainers = [ maintainers.primeos ]; 46 19 }; 47 20 }
+1 -1
pkgs/os-specific/linux/nfs-utils/default.nix
··· 39 39 sed -i "s,^PATH=.*,PATH=$out/bin:${statdPath}," utils/statd/start-statd 40 40 41 41 configureFlags="--with-start-statd=$out/bin/start-statd $configureFlags" 42 - 42 + 43 43 substituteInPlace systemd/nfs-utils.service \ 44 44 --replace "/bin/true" "${coreutils}/bin/true" 45 45
+27 -25
pkgs/servers/dns/knot-resolver/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, hexdump, which 2 - , knot-dns, luajit, libuv, lmdb 3 - , cmocka, systemd, hiredis, libmemcached 4 - , gnutls, nettle 5 - , luajitPackages, makeWrapper 2 + , knot-dns, luajit, libuv, lmdb, gnutls, nettle 3 + , cmocka, systemd, dns-root-data, makeWrapper 4 + , extraFeatures ? false /* catch-all if defaults aren't enough */ 5 + , hiredis, libmemcached, luajitPackages 6 6 }: 7 7 8 8 let 9 - inherit (stdenv.lib) optional; 9 + inherit (stdenv.lib) optional optionals optionalString; 10 10 in 11 11 stdenv.mkDerivation rec { 12 12 name = "knot-resolver-${version}"; 13 - version = "1.3.3"; 13 + version = "1.4.0"; 14 14 15 15 src = fetchurl { 16 16 url = "http://secure.nic.cz/files/knot-resolver/${name}.tar.xz"; 17 - sha256 = "c679238bea5744de8a99f4402a61e9e58502bc42b40ecfa370e53679ed5d5b80"; 17 + sha256 = "ac19c121fd687c7e4f5f907b46932d26f8f9d9e01626c4dadb3847e25ea31ceb"; 18 18 }; 19 19 20 20 outputs = [ "out" "dev" ]; ··· 23 23 24 24 nativeBuildInputs = [ pkgconfig which makeWrapper hexdump ]; 25 25 26 - buildInputs = [ knot-dns luajit libuv gnutls ] 26 + # http://knot-resolver.readthedocs.io/en/latest/build.html#requirements 27 + buildInputs = [ knot-dns luajit libuv gnutls nettle ] 27 28 ++ optional stdenv.isLinux lmdb # system lmdb causes some problems on Darwin 28 - ## optional dependencies; TODO: libedit, dnstap? 29 29 ++ optional doInstallCheck cmocka 30 - ++ optional stdenv.isLinux systemd # socket activation 31 - ++ [ 32 - nettle # DNS cookies 30 + ++ optional stdenv.isLinux systemd # sd_notify 31 + ++ optionals extraFeatures [ 33 32 hiredis libmemcached # additional cache backends 34 - # http://knot-resolver.readthedocs.io/en/latest/build.html#requirements 35 33 ]; 34 + ## optional dependencies; TODO: libedit, dnstap, http2 module? 36 35 37 - makeFlags = [ "PREFIX=$(out)" ]; 36 + makeFlags = [ "PREFIX=$(out)" "ROOTHINTS=${dns-root-data}/root.hints" ]; 38 37 CFLAGS = [ "-O2" "-DNDEBUG" ]; 39 38 40 39 enableParallelBuilding = true; ··· 45 44 export LD_LIBRARY_PATH="$out/lib" 46 45 ''; 47 46 47 + postInstall = '' 48 + rm "$out"/etc/kresd/root.hints # using system-wide instead 49 + '' 48 50 # optional: to allow auto-bootstrapping root trust anchor via https 49 - postInstall = with luajitPackages; '' 50 - wrapProgram "$out/sbin/kresd" \ 51 - --set LUA_PATH '${ 52 - stdenv.lib.concatStringsSep ";" 53 - (map getLuaPath [ luasec luasocket ]) 54 - }' \ 55 - --set LUA_CPATH '${ 56 - stdenv.lib.concatStringsSep ";" 57 - (map getLuaCPath [ luasec luasocket ]) 58 - }' 59 - ''; 51 + + (with luajitPackages; '' 52 + wrapProgram "$out/sbin/kresd" \ 53 + --set LUA_PATH '${ 54 + stdenv.lib.concatStringsSep ";" 55 + (map getLuaPath [ luasec luasocket ]) 56 + }' \ 57 + --set LUA_CPATH '${ 58 + stdenv.lib.concatStringsSep ";" 59 + (map getLuaCPath [ luasec luasocket ]) 60 + }' 61 + ''); 60 62 61 63 meta = with stdenv.lib; { 62 64 description = "Caching validating DNS resolver, from .cz domain registry";
+2 -2
pkgs/servers/web-apps/piwik/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "piwik-${version}"; 5 - version = "3.1.0"; 5 + version = "3.1.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://builds.piwik.org/${name}.tar.gz"; 9 - sha512 = "175300ibf0lg4xnyn5v47czi3vd6i7yqf1im3br4975f6k7w8q22m2mk2mi006795js5q52x48g4sc7wb47wac7wbla8wp98al48gfb"; 9 + sha512 = "2mqzk12959j9xqb9cqz8np35zcs1313zjx9pikbjw9z9mfcqgv0ccvrnl2ymmwll333drr9qaxs54n0mkk66xbhz04nmzmib0kp9k8h"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+10 -6
pkgs/tools/filesystems/sshfs-fuse/default.nix
··· 1 - { stdenv, fetchFromGitHub, pkgconfig, glib, fuse, autoreconfHook }: 1 + { stdenv, fetchFromGitHub, pkgconfig, glib, fuse3, autoreconfHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.10"; # Temporary (need to add libfuse 3.x first) 4 + version = "3.2.0"; 5 5 name = "sshfs-fuse-${version}"; 6 - 6 + 7 7 src = fetchFromGitHub { 8 8 owner = "libfuse"; 9 9 repo = "sshfs"; 10 10 rev = "sshfs-${version}"; 11 - sha256 = "1dmw4kx6vyawcywiv8drrajnam0m29mxfswcp4209qafzx3mjlp1"; 11 + sha256 = "09pqdibhcj1p7m6vxkqiprvbcxp9iq2lm1hb6w7p8iarmvp80rlv"; 12 12 }; 13 - 14 - buildInputs = [ pkgconfig glib fuse autoreconfHook ]; 13 + 14 + buildInputs = [ pkgconfig glib fuse3 autoreconfHook ]; 15 + 16 + NIX_CFLAGS_COMPILE = stdenv.lib.optional 17 + (stdenv.system == "i686-linux") 18 + "-D_FILE_OFFSET_BITS=64"; 15 19 16 20 postInstall = '' 17 21 mkdir -p $out/sbin
-38
pkgs/tools/graphics/transfig/builder.sh
··· 1 - source $stdenv/setup 2 - 3 - patchPhase() { 4 - for i in $patches; do 5 - header "applying patch $i" 3 6 - patch -p0 < $i 7 - stopNest 8 - done 9 - 10 - configureImakefiles "s:__PREFIX_PNG:$libpng:" 11 - configureImakefiles "s:__PREFIX:$out:" 12 - } 13 - 14 - configureImakefiles() { 15 - local sedcmd=$1 16 - 17 - sed "${sedcmd}" fig2dev/Imakefile > tmpsed 18 - cp tmpsed fig2dev/Imakefile 19 - 20 - sed "${sedcmd}" fig2dev/dev/Imakefile > tmpsed 21 - cp tmpsed fig2dev/dev/Imakefile 22 - 23 - sed "${sedcmd}" transfig/Imakefile > tmpsed 24 - cp tmpsed transfig/Imakefile 25 - } 26 - 27 - buildPhase() { 28 - xmkmf 29 - make Makefiles 30 - make 31 - } 32 - 33 - preInstall() { 34 - mkdir -p $out 35 - mkdir -p $out/lib 36 - } 37 - 38 - genericBuild
+43 -14
pkgs/tools/graphics/transfig/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "transfig-3.2.4"; 5 - builder = ./builder.sh; 6 5 src = fetchurl { 7 6 url = ftp://ftp.tex.ac.uk/pub/archive/graphics/transfig/transfig.3.2.4.tar.gz; 8 7 sha256 = "0429snhp5acbz61pvblwlrwv8nxr6gf12p37f9xxwrkqv4ir7dd4"; 9 8 }; 10 9 11 10 buildInputs = [zlib libjpeg libpng imake]; 12 - inherit libpng; 11 + 12 + patches = [ 13 + ./patch-fig2dev-dev-Imakefile 14 + ./patch-fig2dev-Imakefile 15 + ./patch-transfig-Imakefile 16 + ./patch-fig2dev-fig2dev.h 17 + ./patch-fig2dev-dev-gensvg.c 18 + ]; 19 + 20 + patchPhase = '' 21 + runHook prePatch 22 + 23 + configureImakefiles() { 24 + local sedcmd=$1 25 + 26 + sed "$sedcmd" fig2dev/Imakefile > tmpsed 27 + cp tmpsed fig2dev/Imakefile 28 + 29 + sed "$sedcmd" fig2dev/dev/Imakefile > tmpsed 30 + cp tmpsed fig2dev/dev/Imakefile 13 31 14 - hardeningDisable = [ "format" ]; 32 + sed "$sedcmd" transfig/Imakefile > tmpsed 33 + cp tmpsed transfig/Imakefile 34 + } 35 + 36 + for i in $patches; do 37 + header "applying patch $i" 3 38 + patch -p0 < $i 39 + stopNest 40 + done 15 41 16 - patches = [prefixPatch1 prefixPatch2 prefixPatch3 varargsPatch gensvgPatch]; 42 + configureImakefiles "s:__PREFIX_PNG:${libpng}:" 43 + configureImakefiles "s:__PREFIX:$out:" 17 44 18 - prefixPatch1 = 19 - ./patch-fig2dev-dev-Imakefile; 45 + runHook postPatch 46 + ''; 20 47 21 - prefixPatch2 = 22 - ./patch-fig2dev-Imakefile; 48 + preBuild = '' 49 + xmkmf 50 + make Makefiles 51 + ''; 23 52 24 - prefixPatch3 = 25 - ./patch-transfig-Imakefile; 53 + makeFlags = [ "CC=cc" ]; 26 54 27 - varargsPatch = 28 - ./patch-fig2dev-fig2dev.h; 55 + preInstall = '' 56 + mkdir -p $out 57 + mkdir -p $out/lib 58 + ''; 29 59 30 - gensvgPatch = 31 - ./patch-fig2dev-dev-gensvg.c; 60 + hardeningDisable = [ "format" ]; 32 61 33 62 meta = { 34 63 platforms = stdenv.lib.platforms.unix;
+1 -1
pkgs/tools/misc/osm2pgsql/default.nix
··· 23 23 version = "0.92.1-unstable"; 24 24 homepage = https://github.com/openstreetmap/osm2pgsql; 25 25 license = stdenv.lib.licenses.gpl2; 26 - platforms = stdenv.lib.platforms.unix; 26 + platforms = stdenv.lib.platforms.linux; 27 27 }; 28 28 }
+1 -1
pkgs/tools/misc/shallot/default.nix
··· 27 27 28 28 license = stdenv.lib.licenses.mit; 29 29 homepage = https://github.com/katmagic/Shallot; 30 - platforms = stdenv.lib.platforms.unix; 30 + platforms = stdenv.lib.platforms.linux; 31 31 }; 32 32 }
+2 -2
pkgs/tools/misc/snapper/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "snapper-${version}"; 8 - version = "0.3.3"; 8 + version = "0.5.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "openSUSE"; 12 12 repo = "snapper"; 13 13 rev = "v${version}"; 14 - sha256 = "12c2ygaanr4gny4ixnly4vpi0kv7snbg3khr3i5zwridhmdzz9hm"; 14 + sha256 = "14hrv23film4iihyclcvc2r2dgxl8w3as50r81xjjc85iyp6yxkm"; 15 15 }; 16 16 17 17 nativeBuildInputs = [
+28
pkgs/tools/misc/ttwatch/default.nix
··· 1 + { stdenv, fetchFromGitHub, cmake, perl, openssl, curl, libusb1 }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "ttwatch-${version}"; 5 + version = "2017-04-20"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ryanbinns"; 9 + repo = "ttwatch"; 10 + rev = "f07a12712ed331f1530db3846828641eb0e2f5c5"; 11 + sha256 = "0y27bldmp6w02pjhr2cmy9g6n23vi0q26pil3rd7vbg4qjahxz27"; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake perl ]; 15 + buildInputs = [ openssl curl libusb1 ]; 16 + 17 + preFixup = '' 18 + chmod +x $out/bin/ttbin2mysports 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + homepage = https://github.com/ryanbinns/ttwatch; 23 + description = "Linux TomTom GPS Watch Utilities"; 24 + maintainers = with maintainers; [ dotlambda ]; 25 + license = licenses.mit; 26 + platforms = with platforms; linux; 27 + }; 28 + }
+33
pkgs/tools/networking/assh/default.nix
··· 1 + { stdenv, lib, buildGoPackage, fetchFromGitHub, openssh, makeWrapper }: 2 + 3 + buildGoPackage rec { 4 + name = "assh-${version}"; 5 + version = "2.6.0"; 6 + 7 + goPackagePath = "github.com/moul/advanced-ssh-config"; 8 + subPackages = [ "cmd/assh" ]; 9 + 10 + nativeBuildInputs = [ makeWrapper ]; 11 + 12 + postInstall = stdenv.lib.optionalString (stdenv.isDarwin) '' 13 + install_name_tool -delete_rpath $out/lib $bin/bin/assh 14 + '' + '' 15 + wrapProgram "$bin/bin/assh" \ 16 + --prefix PATH : ${openssh}/bin 17 + ''; 18 + 19 + src = fetchFromGitHub { 20 + repo = "advanced-ssh-config"; 21 + owner = "moul"; 22 + rev = "v${version}"; 23 + sha256 = "1vv98dz5822k51xklnmky0lwfjw8nc6ryvn8lmv9n63ppwh9s2s6"; 24 + }; 25 + 26 + meta = with stdenv.lib; { 27 + description = "Advanced SSH config - Regex, aliases, gateways, includes and dynamic hosts"; 28 + homepage = https://github.com/moul/advanced-ssh-config; 29 + license = licenses.mit; 30 + maintainers = with maintainers; [ zzamboni ]; 31 + platforms = with platforms; linux ++ darwin; 32 + }; 33 + }
+1 -1
pkgs/tools/networking/cjdns/default.nix
··· 31 31 description = "Encrypted networking for regular people"; 32 32 license = licenses.gpl3; 33 33 maintainers = with maintainers; [ ehmry ]; 34 - platforms = platforms.unix; 34 + platforms = platforms.linux; 35 35 }; 36 36 }
+3 -3
pkgs/tools/networking/ferm/default.nix
··· 1 1 { stdenv, fetchurl, makeWrapper, perl, ebtables, ipset, iptables }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.3.1"; 4 + version = "2.4.1"; 5 5 name = "ferm-${version}"; 6 6 7 7 src = fetchurl { 8 - url = "http://ferm.foo-projects.org/download/2.3/ferm-${version}.tar.gz"; 9 - sha256 = "1scdnd2jk4787jyr6fxav2598g0x7hjic5b8bj77j8s0hki48m4a"; 8 + url = "http://ferm.foo-projects.org/download/2.4/ferm-${version}.tar.xz"; 9 + sha256 = "1fv8wk513yysp4q0i65rl2m0hg2lxwwgk9ppprsca1xcxrdpsvwa"; 10 10 }; 11 11 12 12 buildInputs = [ perl ipset ebtables iptables makeWrapper ];
+1 -1
pkgs/tools/networking/packetdrill/default.nix
··· 19 19 description = "Quick, precise tests for entire TCP/UDP/IPv4/IPv6 network stacks"; 20 20 homepage = https://github.com/google/packetdrill; 21 21 license = stdenv.lib.licenses.gpl2; 22 - platforms = stdenv.lib.platforms.unix; 22 + platforms = stdenv.lib.platforms.linux; 23 23 maintainers = with stdenv.lib.maintainers; [ dmjio cleverca22 ]; 24 24 }; 25 25 }
+1 -1
pkgs/tools/networking/redsocks/default.nix
··· 28 28 homepage = http://darkk.net.ru/redsocks/; 29 29 license = stdenv.lib.licenses.asl20; 30 30 maintainers = [ ]; 31 - platforms = stdenv.lib.platforms.all; 31 + platforms = stdenv.lib.platforms.linux; 32 32 }; 33 33 }
+2
pkgs/tools/package-management/nox/default.nix
··· 10 10 sha256 = "1qcbhdnhdhhv7q6cqdgv0q55ic8fk18526zn2yb12x9r1s0lfp9z"; 11 11 }; 12 12 13 + patches = [ ./nox-review-wip.patch ]; 14 + 13 15 buildInputs = [ pythonPackages.pbr git ]; 14 16 15 17 propagatedBuildInputs = with pythonPackages; [
+11
pkgs/tools/package-management/nox/nox-review-wip.patch
··· 1 + --- a/nox/review.py 2017-09-23 04:04:37.322484753 +0200 2 + +++ a/nox/review.py 2017-09-23 04:18:31.582692181 +0200 3 + @@ -84,7 +84,7 @@ 4 + ctx.obj['dry_run'] = dry_run 5 + 6 + 7 + -@cli.command(short_help='difference between working tree and a commit') 8 + +@cli.command('wip', short_help='difference between working tree and a commit') 9 + @click.option('--against', default='HEAD') 10 + @click.pass_context 11 + @setup_nixpkgs_config
+2
pkgs/tools/security/tor/default.nix
··· 12 12 13 13 outputs = [ "out" "geoip" ]; 14 14 15 + enableParallelBuilding = true; 16 + 15 17 nativeBuildInputs = [ pkgconfig ]; 16 18 buildInputs = [ libevent openssl zlib ] ++ 17 19 stdenv.lib.optionals stdenv.isLinux [ libseccomp systemd libcap ];
+1 -1
pkgs/tools/security/trousers/default.nix
··· 29 29 homepage = http://trousers.sourceforge.net/; 30 30 license = licenses.cpl10; 31 31 maintainers = [ maintainers.ak ]; 32 - platforms = platforms.unix; 32 + platforms = platforms.linux; 33 33 }; 34 34 } 35 35
+1 -1
pkgs/tools/system/gdmap/default.nix
··· 18 18 homepage = http://gdmap.sourceforge.net; 19 19 description = "Recursive rectangle map of disk usage"; 20 20 license = licenses.gpl2; 21 - platforms = platforms.all; 21 + platforms = platforms.linux; 22 22 maintainers = [ maintainers.bjornfor ]; 23 23 }; 24 24 }
+1 -1
pkgs/tools/text/nawk/default.nix
··· 36 36 homepage = https://www.cs.princeton.edu/~bwk/btl.mirror/; 37 37 license = stdenv.lib.licenses.mit; 38 38 maintainers = [ stdenv.lib.maintainers.konimex ]; 39 - platforms = stdenv.lib.platforms.all; 39 + platforms = stdenv.lib.platforms.linux; 40 40 }; 41 41 }
+99
pkgs/tools/virtualization/awsebcli/default.nix
··· 1 + { stdenv, python }: 2 + let 3 + 4 + localPython = python.override { 5 + packageOverrides = self: super: rec { 6 + colorama = super.colorama.overridePythonAttrs (oldAttrs: rec { 7 + version = "0.3.7"; 8 + 9 + src = super.fetchPypi { 10 + inherit (oldAttrs) pname; 11 + inherit version; 12 + sha256 = "0avqkn6362v7k2kg3afb35g4sfdvixjgy890clip4q174p9whhz0"; 13 + }; 14 + }); 15 + 16 + docker = super.docker.overridePythonAttrs (oldAttrs: rec { 17 + pname = "docker-py"; 18 + version = "1.7.2"; 19 + name = "${pname}-${version}"; 20 + 21 + src = super.fetchPypi { 22 + inherit pname version; 23 + sha256 = "0k6hm3vmqh1d3wr9rryyif5n4rzvcffdlb1k4jvzp7g4996d3ccm"; 24 + }; 25 + }); 26 + 27 + pathspec = super.pathspec.overridePythonAttrs (oldAttrs: rec { 28 + version = "0.5.0"; 29 + 30 + src = super.fetchPypi { 31 + inherit (oldAttrs) pname; 32 + inherit version; 33 + sha256 = "07yx1gxj9v1iyyiy5fhq2wsmh4qfbrx158wi7jb0nx6lah80ffma"; 34 + }; 35 + }); 36 + 37 + requests = super.requests.overridePythonAttrs (oldAttrs: rec { 38 + version = "2.9.1"; 39 + 40 + src = super.fetchPypi { 41 + inherit (oldAttrs) pname; 42 + inherit version; 43 + sha256 = "0zsqrzlybf25xscgi7ja4s48y2abf9wvjkn47wh984qgs1fq2xy5"; 44 + }; 45 + }); 46 + 47 + semantic-version = super.semantic-version.overridePythonAttrs (oldAttrs: rec { 48 + version = "2.5.0"; 49 + 50 + src = super.fetchPypi { 51 + inherit (oldAttrs) pname; inherit version; 52 + sha256 = "0p5n3d6blgkncxdz00yxqav0cis87fisdkirjm0ljjh7rdfx7aiv"; 53 + }; 54 + }); 55 + 56 + tabulate = super.tabulate.overridePythonAttrs (oldAttrs: rec { 57 + version = "0.7.5"; 58 + 59 + src = super.fetchPypi { 60 + inherit (oldAttrs) pname; 61 + inherit version; 62 + sha256 = "03l1r7ddd1a0j2snv1yd0hlnghjad3fg1an1jr8936ksv75slwch"; 63 + }; 64 + }); 65 + }; 66 + }; 67 + in with localPython.pkgs; buildPythonApplication rec { 68 + name = "${pname}-${version}"; 69 + pname = "awsebcli"; 70 + version = "3.10.5"; 71 + 72 + src = fetchPypi { 73 + inherit pname version; 74 + sha256 = "1g53z2flhp3navdf8lw6rgh99akf3k0ng1zkkqswvh66zswkxnwn"; 75 + }; 76 + 77 + checkInputs = [ 78 + pytest mock nose pathspec colorama requests docutils 79 + ]; 80 + 81 + doCheck = false; 82 + 83 + propagatedBuildInputs = [ 84 + blessed botocore cement colorama docker dockerpty docopt pathspec pyyaml 85 + requests semantic-version setuptools tabulate termcolor websocket_client 86 + ]; 87 + 88 + postInstall = '' 89 + mkdir -p $out/etc/bash_completion.d 90 + mv $out/bin/eb_completion.bash $out/etc/bash_completion.d 91 + ''; 92 + 93 + meta = with stdenv.lib; { 94 + homepage = http://aws.amazon.com/elasticbeanstalk/; 95 + description = "A command line interface for Elastic Beanstalk."; 96 + maintainers = with maintainers; [ eqyiel ]; 97 + license = licenses.asl20; 98 + }; 99 + }
+1
pkgs/top-level/aliases.nix
··· 135 135 spaceOrbit = space-orbit; # addewd 2016-05-23 136 136 speedtest_cli = speedtest-cli; # added 2015-02-17 137 137 sqliteInteractive = sqlite-interactive; # added 2014-12-06 138 + sshfs = sshfs-fuse; # added 2017-08-14 138 139 sshfsFuse = sshfs-fuse; # added 2016-09 139 140 surf-webkit2 = surf; # added 2017-04-02 140 141 system_config_printer = system-config-printer; # added 2016-01-03
+47 -18
pkgs/top-level/all-packages.nix
··· 511 511 512 512 awscli = pythonPackages.awscli; # Should be moved out of python-packages.nix 513 513 514 + awsebcli = callPackage ../tools/virtualization/awsebcli {}; 515 + 514 516 awslogs = callPackage ../tools/admin/awslogs { }; 515 517 516 518 aws_shell = python2Packages.aws_shell; # Should be moved out of python-packages.nix ··· 1234 1236 asunder = callPackage ../applications/audio/asunder { }; 1235 1237 1236 1238 autossh = callPackage ../tools/networking/autossh { }; 1239 + 1240 + assh = callPackage ../tools/networking/assh { }; 1237 1241 1238 1242 asynk = callPackage ../tools/networking/asynk { }; 1239 1243 ··· 4894 4898 4895 4899 ttmkfdir = callPackage ../tools/misc/ttmkfdir { }; 4896 4900 4901 + ttwatch = callPackage ../tools/misc/ttwatch { }; 4902 + 4897 4903 udunits = callPackage ../development/libraries/udunits { }; 4898 4904 4899 4905 uemacs = callPackage ../applications/editors/uemacs { }; ··· 5822 5828 inherit (gnome2) GConf gnome_vfs; 5823 5829 }; 5824 5830 5831 + openjdk9 = 5832 + # if stdenv.isDarwin then 5833 + # callPackage ../development/compilers/openjdk-darwin/9.nix { } 5834 + # else 5835 + callPackage ../development/compilers/openjdk/9.nix { 5836 + bootjdk = openjdk8; 5837 + inherit (gnome2) GConf gnome_vfs; 5838 + }; 5839 + 5825 5840 openjdk = openjdk8; 5826 5841 5827 5842 jdk7 = openjdk7 // { outputs = [ "out" ]; }; ··· 5838 5853 lib.setName "openjre-${lib.getVersion pkgs.openjdk8.jre}-headless" 5839 5854 (lib.addMetaAttrs { outputsToInstall = [ "jre" ]; } 5840 5855 ((openjdk8.override { minimal = true; }).jre // { outputs = [ "jre" ]; })); 5856 + 5857 + jdk9 = openjdk9 // { outputs = [ "out" ]; }; 5858 + jre9 = lib.setName "openjre-${lib.getVersion pkgs.openjdk9.jre}" 5859 + (lib.addMetaAttrs { outputsToInstall = [ "jre" ]; } 5860 + (openjdk9.jre // { outputs = [ "jre" ]; })); 5861 + jre9_headless = 5862 + if stdenv.isDarwin then jre9 else 5863 + lib.setName "openjre-${lib.getVersion pkgs.openjdk9.jre}-headless" 5864 + (lib.addMetaAttrs { outputsToInstall = [ "jre" ]; } 5865 + ((openjdk9.override { minimal = true; }).jre // { outputs = [ "jre" ]; })); 5841 5866 5842 5867 jdk = jdk8; 5843 5868 jre = jre8; ··· 6292 6317 beam = callPackage ./beam-packages.nix { }; 6293 6318 6294 6319 inherit (beam.interpreters) 6295 - erlang erlang_odbc erlang_javac erlang_odbc_javac 6320 + erlang erlangR17 erlangR18 erlangR19 erlangR20 6321 + erlang_odbc erlang_javac erlang_odbc_javac erlang_nox erlang_basho_R16B02 6296 6322 elixir elixir_1_5 elixir_1_4 elixir_1_3 6297 - lfe lfe_1_2 6298 - erlangR16 erlangR16_odbc 6299 - erlang_basho_R16B02 erlang_basho_R16B02_odbc 6300 - erlangR17 erlangR17_odbc erlangR17_javac erlangR17_odbc_javac 6301 - erlangR18 erlangR18_odbc erlangR18_javac erlangR18_odbc_javac 6302 - erlangR19 erlangR19_odbc erlangR19_javac erlangR19_odbc_javac 6303 - erlangR20 erlangR20_odbc erlangR20_javac erlangR20_odbc_javac; 6323 + lfe lfe_1_2; 6304 6324 6305 6325 inherit (beam.packages.erlang) 6306 6326 rebar rebar3-open rebar3 ··· 7909 7929 7910 7930 eigen2 = callPackage ../development/libraries/eigen/2.0.nix {}; 7911 7931 7912 - vmmlib = callPackage ../development/libraries/vmmlib {}; 7932 + vmmlib = callPackage ../development/libraries/vmmlib { 7933 + inherit (darwin.apple_sdk.frameworks) Accelerate CoreGraphics CoreVideo; 7934 + }; 7913 7935 7914 7936 elastix = callPackage ../development/libraries/science/biology/elastix { }; 7915 7937 ··· 8236 8258 # A GMP fork 8237 8259 mpir = callPackage ../development/libraries/mpir {}; 8238 8260 8239 - gns3-gui = callPackage ../applications/networking/gns3/gui.nix { }; 8240 - gns3-server = callPackage ../applications/networking/gns3/server.nix { }; 8261 + gns3Packages = callPackage ../applications/networking/gns3 { }; 8262 + gns3-gui = gns3Packages.guiStable; 8263 + gns3-server = gns3Packages.serverStable; 8241 8264 8242 8265 gobjectIntrospection = callPackage ../development/libraries/gobject-introspection { 8243 8266 nixStoreDir = config.nix.storeDir or builtins.storeDir; ··· 12057 12080 inherit (linuxPackages) kernel; 12058 12081 }; 12059 12082 12060 - fuse = callPackage ../os-specific/linux/fuse { 12083 + fusePackages = callPackage ../os-specific/linux/fuse { 12061 12084 utillinux = utillinuxMinimal; 12062 12085 }; 12086 + fuse = lowPrio fusePackages.fuse_2; 12087 + fuse3 = fusePackages.fuse_3; 12088 + fuse-common = hiPrio fusePackages.fuse_3.common; 12063 12089 12064 12090 fusionio-util = callPackage ../os-specific/linux/fusionio/util.nix { }; 12065 12091 ··· 15727 15753 15728 15754 pavucontrol = callPackage ../applications/audio/pavucontrol { }; 15729 15755 15730 - paraview = callPackage ../applications/graphics/paraview { }; 15756 + paraview = libsForQt5.callPackage ../applications/graphics/paraview { }; 15731 15757 15732 15758 packet = callPackage ../development/tools/packet { }; 15733 15759 ··· 16526 16552 enableTelepathy = config.tomahawk.enableTelepathy or false; 16527 16553 quazip = quazip_qt4; 16528 16554 }; 16555 + 16556 + topydo = callPackage ../applications/misc/topydo {}; 16529 16557 16530 16558 torchPackages = recurseIntoAttrs ( callPackage ../applications/science/machine-learning/torch { 16531 16559 lua = luajit ; ··· 17765 17793 17766 17794 tome4 = callPackage ../games/tome4 { }; 17767 17795 17768 - trackballs = callPackage ../games/trackballs { 17769 - debug = false; 17770 - guile = guile_1_8; 17771 - }; 17796 + trackballs = callPackage ../games/trackballs { }; 17772 17797 17773 17798 tremulous = callPackage ../games/tremulous { }; 17774 17799 ··· 17812 17837 17813 17838 vapor = callPackage ../games/vapor { love = love_0_8; }; 17814 17839 17815 - vapoursynth = callPackage ../development/libraries/vapoursynth { }; 17840 + vapoursynth = callPackage ../development/libraries/vapoursynth { 17841 + inherit (darwin.apple_sdk.frameworks) ApplicationServices; 17842 + }; 17816 17843 17817 17844 vapoursynth-mvtools = callPackage ../development/libraries/vapoursynth-mvtools { }; 17818 17845 ··· 19159 19186 valauncher = callPackage ../applications/misc/valauncher { }; 19160 19187 19161 19188 vault = callPackage ../tools/security/vault { }; 19189 + 19190 + vaultenv = haskellPackages.vaultenv; 19162 19191 19163 19192 vbam = callPackage ../misc/emulators/vbam { 19164 19193 ffmpeg = ffmpeg_2;
+6 -1
pkgs/top-level/beam-packages.nix
··· 6 6 # Each 7 7 interpreters = rec { 8 8 9 - # R18 is the default version. 9 + # R19 is the default version. 10 10 erlang = erlangR19; # The main switch to change default Erlang version. 11 11 erlang_odbc = erlangR19_odbc; 12 12 erlang_javac = erlangR19_javac; 13 13 erlang_odbc_javac = erlangR19_odbc_javac; 14 + erlang_nox = erlangR19_nox; 14 15 15 16 # These are standard Erlang versions, using the generic builder. 16 17 erlangR16 = lib.callErlang ../development/interpreters/erlang/R16.nix {}; ··· 21 22 erlangR17_odbc_javac = erlangR17.override { 22 23 javacSupport = true; odbcSupport = true; 23 24 }; 25 + erlangR17_nox = erlangR17.override { wxSupport = false; }; 24 26 erlangR18 = lib.callErlang ../development/interpreters/erlang/R18.nix { 25 27 wxGTK = wxGTK30; 26 28 }; ··· 29 31 erlangR18_odbc_javac = erlangR18.override { 30 32 javacSupport = true; odbcSupport = true; 31 33 }; 34 + erlangR18_nox = erlangR18.override { wxSupport = false; }; 32 35 erlangR19 = lib.callErlang ../development/interpreters/erlang/R19.nix { 33 36 wxGTK = wxGTK30; 34 37 }; ··· 37 40 erlangR19_odbc_javac = erlangR19.override { 38 41 javacSupport = true; odbcSupport = true; 39 42 }; 43 + erlangR19_nox = erlangR19.override { wxSupport = false; }; 40 44 erlangR20 = lib.callErlang ../development/interpreters/erlang/R20.nix { 41 45 wxGTK = wxGTK30; 42 46 }; ··· 45 49 erlangR20_odbc_javac = erlangR20.override { 46 50 javacSupport = true; odbcSupport = true; 47 51 }; 52 + erlangR20_nox = erlangR20.override { wxSupport = false; }; 48 53 49 54 # Bash fork, using custom builder. 50 55 erlang_basho_R16B02 = lib.callErlang ../development/interpreters/erlang/R16B02-8-basho.nix {
+29 -38
pkgs/top-level/python-packages.nix
··· 1470 1470 }; 1471 1471 }; 1472 1472 1473 + blessed = callPackage ../development/python-modules/blessed {}; 1474 + 1473 1475 # Build boost for this specific Python version 1474 1476 # TODO: use separate output for libboost_python.so 1475 1477 boost = pkgs.boost.override {inherit python;}; ··· 1557 1559 maintainers = with maintainers; [ bennofs ]; 1558 1560 }; 1559 1561 }; 1562 + 1563 + cement = callPackage ../development/python-modules/cement {}; 1560 1564 1561 1565 cgroup-utils = callPackage ../development/python-modules/cgroup-utils {}; 1562 1566 postPatch = '' ··· 2152 2156 sha256 = "1fgg28halsy4g43wjpkbd6l0wqiwyzkd4zjrzbbyzw4dxbsf3xfm"; 2153 2157 }; 2154 2158 2155 - propagatedBuildInputs = 2156 - [ self.dateutil 2157 - self.requests 2158 - self.jmespath 2159 - ]; 2159 + propagatedBuildInputs = with self; [ 2160 + dateutil 2161 + jmespath 2162 + docutils 2163 + ordereddict 2164 + simplejson 2165 + ]; 2160 2166 2161 - buildInputs = with self; [ docutils mock nose ]; 2167 + checkInputs = with self; [ mock nose ]; 2162 2168 2163 2169 checkPhase = '' 2164 2170 nosetests -v ··· 4663 4669 }; 4664 4670 }; 4665 4671 4666 - dateutil = callPackage ../development/python-modules/dateutil { }; 4672 + # Actual name of package 4673 + python-dateutil = callPackage ../development/python-modules/dateutil { }; 4674 + # Alias that we should deprecate 4675 + dateutil = self.python-dateutil; 4667 4676 4668 4677 # Buildbot 0.8.7p1 needs dateutil==1.5 4669 4678 dateutil_1_5 = buildPythonPackage (rec { ··· 7516 7525 }; 7517 7526 7518 7527 raven = buildPythonPackage rec { 7519 - name = "raven-6.1.0"; 7528 + name = "raven-6.2.0"; 7520 7529 7521 7530 src = pkgs.fetchurl { 7522 7531 url = "mirror://pypi/r/raven/${name}.tar.gz"; 7523 - sha256 = "1158fsjjl8byzl9nw52jhhdssjl6n7l0hjaxm5hdi69v2zxvzjh2"; 7532 + sha256 = "1jmr9kpajfh6fvxbym6fdybmlr14216y0dkbial7ris9pi1pwhf5"; 7524 7533 }; 7525 7534 7526 7535 # way too many dependencies to run tests ··· 20314 20323 }; 20315 20324 20316 20325 semantic-version = buildPythonPackage rec { 20317 - name = "semantic_version-2.4.2"; 20318 - src = pkgs.fetchurl { 20319 - url = "mirror://pypi/s/semantic_version/${name}.tar.gz"; 20326 + pname = "semantic_version"; 20327 + version = "2.4.2"; 20328 + name = "${pname}${version}"; 20329 + 20330 + src = self.fetchPypi { 20331 + inherit pname version; 20320 20332 sha256 = "7e8b7fa74a3bc9b6e90b15b83b9bc2377c78eaeae3447516425f475d5d6932d2"; 20321 20333 }; 20322 20334 ··· 21077 21089 21078 21090 tabulate = buildPythonPackage rec { 21079 21091 version = "0.7.7"; 21080 - name = "tabulate-${version}"; 21092 + pname = "tabulate"; 21093 + name = "${pname}-${version}"; 21081 21094 21082 - src = pkgs.fetchurl { 21083 - url = "mirror://pypi/t/tabulate/${name}.tar.gz"; 21095 + src = fetchPypi { 21096 + inherit pname version; 21084 21097 sha256 = "83a0b8e17c09f012090a50e1e97ae897300a72b35e0c86c0b53d3bd2ae86d8c6"; 21085 21098 }; 21086 21099 ··· 25762 25775 }; 25763 25776 }; 25764 25777 25765 - topydo = buildPythonPackage rec { 25766 - name = "topydo-${version}"; 25767 - version = "0.9"; 25768 - disabled = (!isPy3k); 25769 - 25770 - src = pkgs.fetchFromGitHub { 25771 - owner = "bram85"; 25772 - repo = "topydo"; 25773 - rev = version; 25774 - sha256 = "0vmfr2cxn3r5zc0c4q3a94xy1r0cv177b9zrm9hkkjcmhgq42s3h"; 25775 - }; 25776 - 25777 - propagatedBuildInputs = with self; [ arrow icalendar ]; 25778 - buildInputs = with self; [ mock freezegun coverage pkgs.glibcLocales ]; 25779 - 25780 - LC_ALL="en_US.UTF-8"; 25781 - 25782 - meta = { 25783 - description = "A cli todo application compatible with the todo.txt format"; 25784 - homepage = "https://github.com/bram85/topydo"; 25785 - license = licenses.gpl3; 25786 - }; 25787 - }; 25778 + topydo = throw "python3Packages.topydo was moved to topydo"; # 2017-09-22 25788 25779 25789 25780 w3lib = buildPythonPackage rec { 25790 25781 name = "w3lib-${version}";