Merge branch 'master' into staging

Thousands of rebuilds from master :-/

+5510 -3349
+2
lib/maintainers.nix
··· 186 ellis = "Ellis Whitehead <nixos@ellisw.net>"; 187 eperuffo = "Emanuele Peruffo <info@emanueleperuffo.com>"; 188 epitrochoid = "Mabry Cervin <mpcervin@uncg.edu>"; 189 ericbmerritt = "Eric Merritt <eric@afiniate.com>"; 190 ericsagnes = "Eric Sagnes <eric.sagnes@gmail.com>"; 191 erikryb = "Erik Rybakken <erik.rybakken@math.ntnu.no>"; ··· 663 zoomulator = "Kim Simmons <zoomulator@gmail.com>"; 664 zraexy = "David Mell <zraexy@gmail.com>"; 665 zx2c4 = "Jason A. Donenfeld <Jason@zx2c4.com>"; 666 }
··· 186 ellis = "Ellis Whitehead <nixos@ellisw.net>"; 187 eperuffo = "Emanuele Peruffo <info@emanueleperuffo.com>"; 188 epitrochoid = "Mabry Cervin <mpcervin@uncg.edu>"; 189 + eqyiel = "Ruben Maher <r@rkm.id.au>"; 190 ericbmerritt = "Eric Merritt <eric@afiniate.com>"; 191 ericsagnes = "Eric Sagnes <eric.sagnes@gmail.com>"; 192 erikryb = "Erik Rybakken <erik.rybakken@math.ntnu.no>"; ··· 664 zoomulator = "Kim Simmons <zoomulator@gmail.com>"; 665 zraexy = "David Mell <zraexy@gmail.com>"; 666 zx2c4 = "Jason A. Donenfeld <Jason@zx2c4.com>"; 667 + zzamboni = "Diego Zamboni <diego@zzamboni.org>"; 668 }
+1
nixos/modules/profiles/base.nix
··· 20 21 # Some networking tools. 22 pkgs.fuse 23 pkgs.sshfs-fuse 24 pkgs.socat 25 pkgs.screen
··· 20 21 # Some networking tools. 22 pkgs.fuse 23 + pkgs.fuse3 24 pkgs.sshfs-fuse 25 pkgs.socat 26 pkgs.screen
+10 -2
nixos/modules/security/lock-kernel-modules.nix
··· 17 }; 18 19 config = mkIf config.security.lockKernelModules { 20 systemd.services.disable-kernel-module-loading = rec { 21 description = "Disable kernel module loading"; 22 23 wantedBy = [ config.systemd.defaultUnit ]; 24 - after = [ "systemd-udev-settle.service" "firewall.service" "systemd-modules-load.service" ] ++ wantedBy; 25 26 - script = "echo -n 1 > /proc/sys/kernel/modules_disabled"; 27 28 unitConfig.ConditionPathIsReadWrite = "/proc/sys/kernel"; 29 30 serviceConfig = { 31 Type = "oneshot"; 32 RemainAfterExit = true; 33 }; 34 }; 35 };
··· 17 }; 18 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 + 28 systemd.services.disable-kernel-module-loading = rec { 29 description = "Disable kernel module loading"; 30 31 wantedBy = [ config.systemd.defaultUnit ]; 32 33 + after = [ "systemd-udev-settle.service" "firewall.service" "systemd-modules-load.service" ] ++ wantedBy; 34 35 unitConfig.ConditionPathIsReadWrite = "/proc/sys/kernel"; 36 37 serviceConfig = { 38 Type = "oneshot"; 39 RemainAfterExit = true; 40 + ExecStart = "/bin/sh -c 'echo -n 1 >/proc/sys/kernel/modules_disabled'"; 41 }; 42 }; 43 };
+4 -1
nixos/modules/security/wrappers/default.nix
··· 155 ###### implementation 156 config = { 157 158 - security.wrappers.fusermount.source = "${pkgs.fuse}/bin/fusermount"; 159 160 boot.specialFileSystems.${parentWrapperDir} = { 161 fsType = "tmpfs";
··· 155 ###### implementation 156 config = { 157 158 + security.wrappers = { 159 + fusermount.source = "${pkgs.fuse}/bin/fusermount"; 160 + fusermount3.source = "${pkgs.fuse3}/bin/fusermount3"; 161 + }; 162 163 boot.specialFileSystems.${parentWrapperDir} = { 164 fsType = "tmpfs";
+111 -15
nixos/modules/services/misc/gitolite.nix
··· 49 ''; 50 }; 51 52 user = mkOption { 53 type = types.str; 54 default = "gitolite"; ··· 59 }; 60 }; 61 62 - config = mkIf cfg.enable { 63 users.extraUsers.${cfg.user} = { 64 description = "Gitolite user"; 65 home = cfg.dataDir; ··· 77 serviceConfig.Type = "oneshot"; 78 serviceConfig.RemainAfterExit = true; 79 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 - ''; 93 }; 94 95 environment.systemPackages = [ pkgs.gitolite pkgs.git ]; 96 - }; 97 }
··· 49 ''; 50 }; 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 + 81 user = mkOption { 82 type = types.str; 83 default = "gitolite"; ··· 88 }; 89 }; 90 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 { 119 users.extraUsers.${cfg.user} = { 120 description = "Gitolite user"; 121 home = cfg.dataDir; ··· 133 serviceConfig.Type = "oneshot"; 134 serviceConfig.RemainAfterExit = true; 135 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 + ''; 189 }; 190 191 environment.systemPackages = [ pkgs.gitolite pkgs.git ]; 192 + }); 193 }
+1 -1
nixos/modules/services/monitoring/prometheus/node-exporter.nix
··· 33 default = []; 34 example = ''[ "systemd" ]''; 35 description = '' 36 - Collectors to enable, additionally to the defaults. 37 ''; 38 }; 39
··· 33 default = []; 34 example = ''[ "systemd" ]''; 35 description = '' 36 + Collectors to enable. Only collectors explicitly listed here will be enabled. 37 ''; 38 }; 39
+61
nixos/modules/services/network-filesystems/glusterfs.nix
··· 5 let 6 inherit (pkgs) glusterfs rsync; 7 8 cfg = config.services.glusterfs; 9 10 in ··· 30 description = "Extra flags passed to the GlusterFS daemon"; 31 default = []; 32 }; 33 }; 34 }; 35 ··· 40 41 services.rpcbind.enable = true; 42 43 systemd.services.glusterd = { 44 45 description = "GlusterFS, a clustered file-system server"; 46 ··· 57 + '' 58 mkdir -p /var/lib/glusterd/hooks/ 59 ${rsync}/bin/rsync -a ${glusterfs}/var/lib/glusterd/hooks/ /var/lib/glusterd/hooks/ 60 '' 61 # `glusterfind` needs dirs that upstream installs at `make install` phase 62 # https://github.com/gluster/glusterfs/blob/v3.10.2/tools/glusterfind/Makefile.am#L16-L17 ··· 75 }; 76 77 systemd.services.glustereventsd = { 78 79 description = "Gluster Events Notifier"; 80
··· 5 let 6 inherit (pkgs) glusterfs rsync; 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 + 24 cfg = config.services.glusterfs; 25 26 in ··· 46 description = "Extra flags passed to the GlusterFS daemon"; 47 default = []; 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 + }; 84 }; 85 }; 86 ··· 91 92 services.rpcbind.enable = true; 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 + 100 systemd.services.glusterd = { 101 + inherit restartTriggers; 102 103 description = "GlusterFS, a clustered file-system server"; 104 ··· 115 + '' 116 mkdir -p /var/lib/glusterd/hooks/ 117 ${rsync}/bin/rsync -a ${glusterfs}/var/lib/glusterd/hooks/ /var/lib/glusterd/hooks/ 118 + 119 + ${tlsCmd} 120 '' 121 # `glusterfind` needs dirs that upstream installs at `make install` phase 122 # https://github.com/gluster/glusterfs/blob/v3.10.2/tools/glusterfind/Makefile.am#L16-L17 ··· 135 }; 136 137 systemd.services.glustereventsd = { 138 + inherit restartTriggers; 139 140 description = "Gluster Events Notifier"; 141
+11 -1
nixos/modules/system/boot/luksroot.nix
··· 235 ''; 236 }; 237 238 boot.initrd.luks.devices = mkOption { 239 default = { }; 240 example = { "luksroot".device = "/dev/disk/by-uuid/430e9eff-d852-4f68-aa3b-2fa3599ebe08"; }; ··· 417 }; 418 }; 419 420 - config = mkIf (luks.devices != {}) { 421 422 # actually, sbp2 driver is the one enabling the DMA attack, but this needs to be tested 423 boot.blacklistedKernelModules = optionals luks.mitigateDMAAttacks
··· 235 ''; 236 }; 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 + 248 boot.initrd.luks.devices = mkOption { 249 default = { }; 250 example = { "luksroot".device = "/dev/disk/by-uuid/430e9eff-d852-4f68-aa3b-2fa3599ebe08"; }; ··· 427 }; 428 }; 429 430 + config = mkIf (luks.devices != {} || luks.forceLuksSupportInInitrd) { 431 432 # actually, sbp2 driver is the one enabling the DMA attack, but this needs to be tested 433 boot.blacklistedKernelModules = optionals luks.mitigateDMAAttacks
+1
nixos/modules/tasks/encrypted-devices.nix
··· 61 devices = 62 map (dev: { name = dev.encrypted.label; device = dev.encrypted.blkDev; } ) keylessEncDevs; 63 cryptoModules = [ "aes" "sha256" "sha1" "xts" ]; 64 }; 65 postMountCommands = 66 concatMapStrings (dev: "cryptsetup luksOpen --key-file ${dev.encrypted.keyFile} ${dev.encrypted.blkDev} ${dev.encrypted.label};\n") keyedEncDevs;
··· 61 devices = 62 map (dev: { name = dev.encrypted.label; device = dev.encrypted.blkDev; } ) keylessEncDevs; 63 cryptoModules = [ "aes" "sha256" "sha1" "xts" ]; 64 + forceLuksSupportInInitrd = true; 65 }; 66 postMountCommands = 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 # Add the mount helpers to the system path so that `mount' can find them. 218 system.fsPackages = [ pkgs.dosfstools ]; 219 220 - environment.systemPackages = [ pkgs.fuse ] ++ config.system.fsPackages; 221 222 environment.etc.fstab.text = 223 let
··· 217 # Add the mount helpers to the system path so that `mount' can find them. 218 system.fsPackages = [ pkgs.dosfstools ]; 219 220 + environment.systemPackages = with pkgs; [ fuse3 fuse ] ++ config.system.fsPackages; 221 222 environment.etc.fstab.text = 223 let
+6
nixos/modules/tasks/filesystems/nfs.nix
··· 85 enable = mkDefault false; 86 }; 87 88 systemd.services.rpc-gssd = 89 { restartTriggers = [ nfsConfFile ]; 90 }; 91 92 systemd.services.rpc-statd =
··· 85 enable = mkDefault false; 86 }; 87 88 + systemd.services.auth-rpcgss-module = 89 + { 90 + unitConfig.ConditionPathExists = [ "" "/etc/krb5.keytab" ]; 91 + }; 92 + 93 systemd.services.rpc-gssd = 94 { restartTriggers = [ nfsConfFile ]; 95 + unitConfig.ConditionPathExists = [ "" "/etc/krb5.keytab" ]; 96 }; 97 98 systemd.services.rpc-statd =
+19
nixos/tests/hardened.nix
··· 10 { users.users.alice = { isNormalUser = true; extraGroups = [ "proc" ]; }; 11 users.users.sybil = { isNormalUser = true; group = "wheel"; }; 12 imports = [ ../modules/profiles/hardened.nix ]; 13 }; 14 15 testScript = ··· 41 # Test access to kcore 42 subtest "kcore", sub { 43 $machine->fail("cat /proc/kcore"); 44 }; 45 ''; 46 })
··· 10 { users.users.alice = { isNormalUser = true; extraGroups = [ "proc" ]; }; 11 users.users.sybil = { isNormalUser = true; group = "wheel"; }; 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 + }; 24 }; 25 26 testScript = ··· 52 # Test access to kcore 53 subtest "kcore", sub { 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 63 }; 64 ''; 65 })
+3 -5
pkgs/applications/altcoins/bitcoin.nix
··· 5 with stdenv.lib; 6 stdenv.mkDerivation rec{ 7 name = "bitcoin" + (toString (optional (!withGui) "d")) + "-" + version; 8 - version = "0.15.0"; 9 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"; 15 }; 16 17 nativeBuildInputs = [ pkgconfig autoreconfHook ];
··· 5 with stdenv.lib; 6 stdenv.mkDerivation rec{ 7 name = "bitcoin" + (toString (optional (!withGui) "d")) + "-" + version; 8 + version = "0.15.0.1"; 9 10 src = fetchurl { 11 + url = "https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"; 12 + sha256 = "16si3skhm6jhw1pkniv2b9y1kkdhjmhj392palphir0qc1srwzmm"; 13 }; 14 15 nativeBuildInputs = [ pkgconfig autoreconfHook ];
+1 -1
pkgs/applications/audio/mp3info/default.nix
··· 39 license = stdenv.lib.licenses.gpl2Plus; 40 41 maintainers = [ ]; 42 - platforms = stdenv.lib.platforms.unix; 43 }; 44 }
··· 39 license = stdenv.lib.licenses.gpl2Plus; 40 41 maintainers = [ ]; 42 + platforms = stdenv.lib.platforms.linux; 43 }; 44 }
+6 -3
pkgs/applications/editors/jetbrains/default.nix
··· 53 patchelf --set-interpreter $interp \ 54 --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib zlib ]}:$lldbLibPath" \ 55 bin/clang/clang-tidy 56 ) 57 ''; 58 }); ··· 229 230 datagrip = buildDataGrip rec { 231 name = "datagrip-${version}"; 232 - version = "2017.1.5"; /* updated by script */ 233 description = "Your Swiss Army Knife for Databases and SQL"; 234 license = stdenv.lib.licenses.unfree; 235 src = fetchurl { 236 url = "https://download.jetbrains.com/datagrip/${name}.tar.gz"; 237 - sha256 = "8847c35761fcf6fc7a1d3f2bed0fa3971fbf28721c144f41d21feb473bb212dc"; /* updated by script */ 238 }; 239 wmClass = "jetbrains-datagrip"; 240 - update-channel = "datagrip_2017_1"; 241 }; 242 243 gogland = buildGogland rec {
··· 53 patchelf --set-interpreter $interp \ 54 --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc.lib zlib ]}:$lldbLibPath" \ 55 bin/clang/clang-tidy 56 + 57 + wrapProgram $out/bin/clion \ 58 + --set CL_JDK "${jdk}" 59 ) 60 ''; 61 }); ··· 232 233 datagrip = buildDataGrip rec { 234 name = "datagrip-${version}"; 235 + version = "2017.2.2"; /* updated by script */ 236 description = "Your Swiss Army Knife for Databases and SQL"; 237 license = stdenv.lib.licenses.unfree; 238 src = fetchurl { 239 url = "https://download.jetbrains.com/datagrip/${name}.tar.gz"; 240 + sha256 = "1l8y65fw9g5ckzwpcgigm2qwy8fhpw2hil576rphsnx6qvnh4swn"; /* updated by script */ 241 }; 242 wmClass = "jetbrains-datagrip"; 243 + update-channel = "datagrip_2017_2"; 244 }; 245 246 gogland = buildGogland rec {
+39 -24
pkgs/applications/editors/jetbrains/update.pl
··· 27 next unless $latest_build; 28 29 # version as in download url 30 my ($latest_version) = $latest_build =~ /^<build [^>]*version="([^"]+)"/; 31 ($latest_version) = $latest_build =~ /^<build [^>]*fullNumber="([^"]+)"/ if $latest_version =~ / /; 32 33 $h{$id} = $latest_version; 34 } 35 return %h; 36 } 37 38 my %latest_versions = get_latest_versions(); 39 - #for my $ch (sort keys %latest_versions) { 40 # print("$ch $latest_versions{$ch}\n"); 41 - #} 42 43 sub update_nix_block { 44 my ($block) = @_; 45 my ($channel) = $block =~ /update-channel\s*=\s*"([^"]+)"/; 46 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"); 52 } 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; 70 } 71 } 72 return $block;
··· 27 next unless $latest_build; 28 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 + 35 my ($latest_version) = $latest_build =~ /^<build [^>]*version="([^"]+)"/; 36 ($latest_version) = $latest_build =~ /^<build [^>]*fullNumber="([^"]+)"/ if $latest_version =~ / /; 37 38 $h{$id} = $latest_version; 39 + $h{"full1_" . $id} = $latest_version_full1; 40 } 41 return %h; 42 } 43 44 my %latest_versions = get_latest_versions(); 45 + # for my $ch (sort keys %latest_versions) { 46 # print("$ch $latest_versions{$ch}\n"); 47 + # } 48 49 sub update_nix_block { 50 my ($block) = @_; 51 my ($channel) = $block =~ /update-channel\s*=\s*"([^"]+)"/; 52 if ($channel) { 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 + } 83 } else { 84 + warn "unknown update-channel $channel"; 85 } 86 } 87 return $block;
+1 -1
pkgs/applications/editors/tecoc/default.nix
··· 50 ''; 51 homepage = https://github.com/blakemcbride/TECOC; 52 maintainers = [ maintainers.AndersonTorres ]; 53 - platforms = platforms.unix; 54 }; 55 } 56 # TODO: test in other platforms - especially Darwin
··· 50 ''; 51 homepage = https://github.com/blakemcbride/TECOC; 52 maintainers = [ maintainers.AndersonTorres ]; 53 + platforms = platforms.linux; 54 }; 55 } 56 # TODO: test in other platforms - especially Darwin
+11 -6
pkgs/applications/graphics/giv/build.patch
··· 2 a typedef of size_t that failed at least on x86_64-linux. 3 4 diff --git a/SConstruct b/SConstruct 5 - index 16eccd9..603e931 100644 6 --- a/SConstruct 7 +++ b/SConstruct 8 - @@ -7,8 +7,7 @@ else: 9 - cppflags = ['-O2'] 10 - variant = 'Release' 11 12 -env = Environment(LIBPATH=[], 13 - - CPPFLAGS = cppflags) 14 +env = Environment(ENV = os.environ) 15 16 env['SBOX'] = False 17 -
··· 2 a typedef of size_t that failed at least on x86_64-linux. 3 4 diff --git a/SConstruct b/SConstruct 5 + index 9e752d6..f93f27f 100644 6 --- a/SConstruct 7 +++ b/SConstruct 8 + @@ -9,13 +9,7 @@ else: 9 + 10 + commit_id = os.popen('git rev-parse HEAD').read().replace('\n','') 11 12 -env = Environment(LIBPATH=[], 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 + - ) 19 +env = Environment(ENV = os.environ) 20 21 env['SBOX'] = False 22 + env['COMMITIDSHORT'] = commit_id[0:6]
+4 -3
pkgs/applications/graphics/giv/default.nix
··· 2 pcre, cfitsio, perl, gob2, vala_0_23, libtiff, json_glib }: 3 4 stdenv.mkDerivation rec { 5 - name = "giv-20150811-git"; 6 7 src = fetchFromGitHub { 8 owner = "dov"; 9 repo = "giv"; 10 - rev = "64648bfbbf10ec4a9adfbc939c96c7d1dbdce57a"; 11 - sha256 = "1sz2n7jbmg3g97bs613xxjpzqbsl5rvpg6v7g3x3ycyd35r8vsfp"; 12 }; 13 14 hardeningDisable = [ "format" ];
··· 2 pcre, cfitsio, perl, gob2, vala_0_23, libtiff, json_glib }: 3 4 stdenv.mkDerivation rec { 5 + name = "giv-${version}"; 6 + version = "0.9.26"; 7 8 src = fetchFromGitHub { 9 owner = "dov"; 10 repo = "giv"; 11 + rev = "v${version}"; 12 + sha256 = "1sfm8j3hvqij6z3h8xz724d7hjqqbzljl2a6pp4yjpnnrxksnic2"; 13 }; 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 - }: 8 9 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"; 14 }; 15 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 - ]; 31 32 - # https://bugzilla.redhat.com/show_bug.cgi?id=1138466 33 - NIX_CFLAGS_COMPILE = "-DGLX_GLXEXT_LEGACY"; 34 35 enableParallelBuilding = true; 36 37 - buildInputs = [ cmake qt4 hdf5 mpich2 python libxml2 mesa libXt ]; 38 39 meta = { 40 homepage = http://www.paraview.org/;
··· 1 + {stdenv, fetchFromGitHub, cmake 2 + ,full, python, mesa, libXt }: 3 4 stdenv.mkDerivation rec { 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; 16 }; 17 18 + cmakeFlags = [ 19 + "-DPARAVIEW_ENABLE_PYTHON=ON" 20 + "-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON" 21 + ]; 22 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 + ''; 29 30 enableParallelBuilding = true; 31 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 + 44 45 meta = { 46 homepage = http://www.paraview.org/;
+1 -1
pkgs/applications/graphics/pqiv/default.nix
··· 21 homepage = http://www.pberndt.com/Programme/Linux/pqiv; 22 license = licenses.gpl3; 23 maintainers = [ maintainers.ndowens ]; 24 - platforms = platforms.unix; 25 }; 26 })
··· 21 homepage = http://www.pberndt.com/Programme/Linux/pqiv; 22 license = licenses.gpl3; 23 maintainers = [ maintainers.ndowens ]; 24 + platforms = platforms.linux; 25 }; 26 })
+1
pkgs/applications/kde/default.nix
··· 145 okteta = callPackage ./okteta.nix {}; 146 okular = callPackage ./okular.nix {}; 147 pimcommon = callPackage ./pimcommon.nix {}; 148 pim-sieve-editor = callPackage ./pim-sieve-editor.nix {}; 149 print-manager = callPackage ./print-manager.nix {}; 150 spectacle = callPackage ./spectacle.nix {};
··· 145 okteta = callPackage ./okteta.nix {}; 146 okular = callPackage ./okular.nix {}; 147 pimcommon = callPackage ./pimcommon.nix {}; 148 + pim-data-exporter = callPackage ./pim-data-exporter.nix {}; 149 pim-sieve-editor = callPackage ./pim-sieve-editor.nix {}; 150 print-manager = callPackage ./print-manager.nix {}; 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 , hicolor_icon_theme 45 , shared_mime_info 46 47 # Extra preferences 48 , extraPrefs ? "" 49 }: ··· 209 // Defaults to creating $TBB_HOME/TorBrowser/Data/Tor/{socks,control}.socket 210 lockPref("extensions.torlauncher.control_port_use_ipc", true); 211 lockPref("extensions.torlauncher.socks_port_use_ipc", true); 212 213 ${optionalString (extraPrefs != "") '' 214 ${extraPrefs}
··· 44 , hicolor_icon_theme 45 , shared_mime_info 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 + 51 # Extra preferences 52 , extraPrefs ? "" 53 }: ··· 213 // Defaults to creating $TBB_HOME/TorBrowser/Data/Tor/{socks,control}.socket 214 lockPref("extensions.torlauncher.control_port_use_ipc", true); 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"}); 220 221 ${optionalString (extraPrefs != "") '' 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 }: 2 3 - # TODO: Python 3.6 was failing 4 - python34Packages.buildPythonPackage rec { 5 name = "${pname}-${version}"; 6 pname = "gns3-gui"; 7 - version = "2.0.3"; 8 9 src = fetchFromGitHub { 10 owner = "GNS3"; 11 repo = pname; 12 rev = "v${version}"; 13 - sha256 = "10qp6430md8d0h2wamgfaq7pai59mqmcw6sw3i1gvb20m0avvsvb"; 14 }; 15 16 - propagatedBuildInputs = with python34Packages; [ 17 raven psutil jsonschema # tox for check 18 # Runtime dependencies 19 sip pyqt5 ··· 22 doCheck = false; # Failing 23 24 meta = with stdenv.lib; { 25 - description = "Graphical Network Simulator"; 26 - #longDescription = '' 27 - # ... 28 - #''; 29 - homepage = "https://www.gns3.com/"; 30 license = licenses.gpl3Plus; 31 platforms = platforms.linux; 32 maintainers = with maintainers; [ primeos ];
··· 1 + { stable, branch, version, sha256Hash }: 2 + 3 + { stdenv, python3Packages, fetchFromGitHub }: 4 5 + let 6 + pythonPackages = python3Packages; 7 + 8 + in pythonPackages.buildPythonPackage rec { 9 name = "${pname}-${version}"; 10 pname = "gns3-gui"; 11 12 src = fetchFromGitHub { 13 owner = "GNS3"; 14 repo = pname; 15 rev = "v${version}"; 16 + sha256 = sha256Hash; 17 }; 18 19 + propagatedBuildInputs = with pythonPackages; [ 20 raven psutil jsonschema # tox for check 21 # Runtime dependencies 22 sip pyqt5 ··· 25 doCheck = false; # Failing 26 27 meta = with stdenv.lib; { 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/; 35 license = licenses.gpl3Plus; 36 platforms = platforms.linux; 37 maintainers = with maintainers; [ primeos ];
+51 -11
pkgs/applications/networking/gns3/server.nix
··· 1 - { stdenv, python3Packages, fetchFromGitHub }: 2 3 - python3Packages.buildPythonPackage rec { 4 name = "${pname}-${version}"; 5 pname = "gns3-server"; 6 - version = "2.1.0rc1"; 7 8 src = fetchFromGitHub { 9 owner = "GNS3"; 10 repo = pname; 11 rev = "v${version}"; 12 - sha256 = "181689fpjxq4hy2lyxk4zciqhgnhj5srvb4xsxdlbf68n89fj2zf"; 13 }; 14 15 - propagatedBuildInputs = with python3Packages; [ 16 - aiohttp jinja2 psutil zipstream aiohttp-cors raven jsonschema yarl typing 17 - prompt_toolkit 18 - ]; 19 20 - postPatch = '' 21 sed -i 's/yarl>=0.11,<0.12/yarl/g' requirements.txt 22 ''; 23 ··· 28 rm $out/bin/gns3loopback # For windows only 29 ''; 30 meta = with stdenv.lib; { 31 - description = "Graphical Network Simulator 3 server"; 32 longDescription = '' 33 The GNS3 server manages emulators such as Dynamips, VirtualBox or 34 Qemu/KVM. Clients like the GNS3 GUI control the server using a HTTP REST 35 API. 36 ''; 37 - homepage = "https://www.gns3.com/"; 38 license = licenses.gpl3Plus; 39 platforms = platforms.linux; 40 maintainers = with maintainers; [ primeos ];
··· 1 + { stable, branch, version, sha256Hash }: 2 + 3 + { stdenv, python3Packages, fetchFromGitHub, fetchurl }: 4 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 { 44 name = "${pname}-${version}"; 45 pname = "gns3-server"; 46 47 src = fetchFromGitHub { 48 owner = "GNS3"; 49 repo = pname; 50 rev = "v${version}"; 51 + sha256 = sha256Hash; 52 }; 53 54 + propagatedBuildInputs = [ yarl aiohttp aiohttp-cors ] 55 + ++ (with pythonPackages; [ 56 + jinja2 psutil zipstream raven jsonschema typing 57 + prompt_toolkit 58 + ]); 59 60 + postPatch = stdenv.lib.optionalString (!stable) '' 61 sed -i 's/yarl>=0.11,<0.12/yarl/g' requirements.txt 62 ''; 63 ··· 68 rm $out/bin/gns3loopback # For windows only 69 ''; 70 meta = with stdenv.lib; { 71 + description = "Graphical Network Simulator 3 server (${branch} release)"; 72 longDescription = '' 73 The GNS3 server manages emulators such as Dynamips, VirtualBox or 74 Qemu/KVM. Clients like the GNS3 GUI control the server using a HTTP REST 75 API. 76 ''; 77 + homepage = https://www.gns3.com/; 78 license = licenses.gpl3Plus; 79 platforms = platforms.linux; 80 maintainers = with maintainers; [ primeos ];
+11 -7
pkgs/applications/networking/google-drive-ocamlfuse/default.nix
··· 1 - { stdenv, fetchurl, zlib 2 , ocaml, ocamlbuild, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }: 3 4 stdenv.mkDerivation rec { 5 - name = "google-drive-ocamlfuse-${version}"; 6 - version = "0.6.17"; 7 8 - src = fetchurl { 9 - url = "https://forge.ocamlcore.org/frs/download.php/1674/${name}.tar.gz"; 10 - sha256 = "1ldja7080pnjaibrbdvfqwakp4mac8yw1lkb95f7lgldmy96lxas"; 11 }; 12 13 - buildInputs = [ zlib ocaml ocamlbuild ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl]; 14 15 configurePhase = "ocaml setup.ml -configure --prefix \"$out\""; 16 buildPhase = "ocaml setup.ml -build";
··· 1 + { stdenv, fetchFromGitHub, zlib 2 , ocaml, ocamlbuild, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }: 3 4 stdenv.mkDerivation rec { 5 + name = "google-drive-ocamlfuse-${version}"; 6 + version = "0.6.21"; 7 8 + src = fetchFromGitHub { 9 + owner = "astrada"; 10 + repo = "google-drive-ocamlfuse"; 11 + rev = "v${version}"; 12 + sha256 = "14qvhz18pzxdgxk5vcs024ajbkxccfwc9p3z5r6vfkc9mm851v59"; 13 }; 14 15 + nativeBuildInputs = [ ocamlbuild ]; 16 + 17 + buildInputs = [ zlib ocaml ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl ]; 18 19 configurePhase = "ocaml setup.ml -configure --prefix \"$out\""; 20 buildPhase = "ocaml setup.ml -build";
+2 -2
pkgs/applications/networking/instant-messengers/riot/riot-web.nix
··· 2 3 stdenv.mkDerivation rec { 4 name= "riot-web-${version}"; 5 - version = "0.12.3"; 6 7 src = fetchurl { 8 url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz"; 9 - sha256 = "1v9k9rna9rziis5ld4x4lw3rhgm504cnnafiwk175jpjbbd8h4b3"; 10 }; 11 12 installPhase = ''
··· 2 3 stdenv.mkDerivation rec { 4 name= "riot-web-${version}"; 5 + version = "0.12.5"; 6 7 src = fetchurl { 8 url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz"; 9 + sha256 = "1g30gl4b5fk1h13r2v4rspcqic9jg99717lxplk5birg3wi3b2d3"; 10 }; 11 12 installPhase = ''
+5
pkgs/applications/networking/mailreaders/neomutt/default.nix
··· 42 "ac_cv_path_SENDMAIL=sendmail" 43 ]; 44 45 configureScript = "./prepare"; 46 47 enableParallelBuilding = true;
··· 42 "ac_cv_path_SENDMAIL=sendmail" 43 ]; 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 + 50 configureScript = "./prepare"; 51 52 enableParallelBuilding = true;
+1 -1
pkgs/applications/networking/sniffers/wireshark/default.nix
··· 66 experts. It runs on UNIX, macOS and Windows. 67 ''; 68 69 - platforms = platforms.unix; 70 maintainers = with maintainers; [ bjornfor fpletz ]; 71 }; 72 }
··· 66 experts. It runs on UNIX, macOS and Windows. 67 ''; 68 69 + platforms = platforms.linux; 70 maintainers = with maintainers; [ bjornfor fpletz ]; 71 }; 72 }
+10 -7
pkgs/applications/science/biology/ants/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 _name = "ANTs"; 5 - _version = "2.1.0"; 6 name = "${_name}-${_version}"; 7 8 src = fetchFromGitHub { 9 - owner = "stnava"; 10 repo = "ANTs"; 11 - rev = "4e02aa76621698e3513330dd9e863e22917e14b7"; 12 - sha256 = "0gyys1lf69bl3569cskxc8r5llwcr0dsyzvlby5skhfpsyw0dh8r"; 13 }; 14 15 nativeBuildInputs = [ cmake makeWrapper ]; 16 buildInputs = [ itk vtk ]; 17 18 - cmakeFlags = [ "-DANTS_SUPERBUILD=FALSE" "-DUSE_VTK=TRUE" ]; 19 20 checkPhase = "ctest"; 21 - doCheck = false; 22 23 postInstall = '' 24 for file in $out/bin/*; do ··· 27 ''; 28 29 meta = with stdenv.lib; { 30 - homepage = https://github.com/stnava/ANTs; 31 description = "Advanced normalization toolkit for medical image registration and other processing"; 32 maintainers = with maintainers; [ bcdarwin ]; 33 platforms = platforms.unix;
··· 2 3 stdenv.mkDerivation rec { 4 _name = "ANTs"; 5 + _version = "2.2.0"; 6 name = "${_name}-${_version}"; 7 8 src = fetchFromGitHub { 9 + owner = "ANTsX"; 10 repo = "ANTs"; 11 + rev = "37ad4e20be3a5ecd26c2e4e41b49e778a0246c3d"; 12 + sha256 = "1hrdwv3m9xh3yf7l0rm2ggxc2xzckfb8srs88g485ibfszx7i03q"; 13 }; 14 15 nativeBuildInputs = [ cmake makeWrapper ]; 16 buildInputs = [ itk vtk ]; 17 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; 23 24 checkPhase = "ctest"; 25 26 postInstall = '' 27 for file in $out/bin/*; do ··· 30 ''; 31 32 meta = with stdenv.lib; { 33 + homepage = https://github.com/ANTxS/ANTs; 34 description = "Advanced normalization toolkit for medical image registration and other processing"; 35 maintainers = with maintainers; [ bcdarwin ]; 36 platforms = platforms.unix;
+2 -2
pkgs/applications/science/logic/abella/default.nix
··· 1 - { stdenv, fetchurl, rsync, ocaml }: 2 3 stdenv.mkDerivation rec { 4 name = "abella-${version}"; ··· 9 sha256 = "b56d865ebdb198111f1dcd5b6fbcc0d7fc6dd1294f7601903ba4e3c3322c099c"; 10 }; 11 12 - buildInputs = [ rsync ocaml ]; 13 14 installPhase = '' 15 mkdir -p $out/bin
··· 1 + { stdenv, fetchurl, rsync, ocamlPackages }: 2 3 stdenv.mkDerivation rec { 4 name = "abella-${version}"; ··· 9 sha256 = "b56d865ebdb198111f1dcd5b6fbcc0d7fc6dd1294f7601903ba4e3c3322c099c"; 10 }; 11 12 + buildInputs = [ rsync ] ++ (with ocamlPackages; [ ocaml ocamlbuild ]); 13 14 installPhase = '' 15 mkdir -p $out/bin
+1 -1
pkgs/applications/science/logic/jonprl/default.nix
··· 29 homepage = http://www.jonprl.org/; 30 license = stdenv.lib.licenses.mit; 31 maintainers = with stdenv.lib.maintainers; [ puffnfresh ]; 32 - platforms = stdenv.lib.platforms.unix; 33 }; 34 }
··· 29 homepage = http://www.jonprl.org/; 30 license = stdenv.lib.licenses.mit; 31 maintainers = with stdenv.lib.maintainers; [ puffnfresh ]; 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+2 -2
pkgs/applications/science/math/calc/default.nix
··· 12 stdenv.mkDerivation rec { 13 14 name = "calc-${version}"; 15 - version = "2.12.6.1"; 16 17 src = fetchurl { 18 url = "https://github.com/lcn2/calc/releases/download/${version}/${name}.tar.bz2"; 19 - sha256 = "1vy4jmhmpl3gzgpkpv0kqwjv8hn1cza8cn1g8c69gq3inqvr4fvd"; 20 }; 21 22 buildInputs = [ makeWrapper readline ncurses utillinux ];
··· 12 stdenv.mkDerivation rec { 13 14 name = "calc-${version}"; 15 + version = "2.12.6.3"; 16 17 src = fetchurl { 18 url = "https://github.com/lcn2/calc/releases/download/${version}/${name}.tar.bz2"; 19 + sha256 = "01m20s5zs74zyb23x6zg6i13gc30a2ay2iz1rdbkxram01cblzky"; 20 }; 21 22 buildInputs = [ makeWrapper readline ncurses utillinux ];
+1 -1
pkgs/applications/video/ogmtools/default.nix
··· 19 ''; 20 homepage = http://www.bunkus.org/videotools/ogmtools/; 21 license = stdenv.lib.licenses.gpl2; 22 - platforms = stdenv.lib.platforms.all; 23 }; 24 }
··· 19 ''; 20 homepage = http://www.bunkus.org/videotools/ogmtools/; 21 license = stdenv.lib.licenses.gpl2; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+49 -1
pkgs/build-support/docker/default.nix
··· 10 lib, 11 pkgs, 12 pigz, 13 runCommand, 14 rsync, 15 shadow, ··· 27 rec { 28 29 examples = import ./examples.nix { 30 - inherit pkgs buildImage pullImage shadowSetup; 31 }; 32 33 pullImage = ··· 237 set -e 238 export PATH=${coreutils}/bin:/bin 239 ${text} 240 ''; 241 242 # Create a "layer" (set of files). ··· 544 545 in 546 result; 547 }
··· 10 lib, 11 pkgs, 12 pigz, 13 + nixUnstable, 14 + perl, 15 runCommand, 16 rsync, 17 shadow, ··· 29 rec { 30 31 examples = import ./examples.nix { 32 + inherit pkgs buildImage pullImage shadowSetup buildImageWithNixDb; 33 }; 34 35 pullImage = ··· 239 set -e 240 export PATH=${coreutils}/bin:/bin 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 255 ''; 256 257 # Create a "layer" (set of files). ··· 559 560 in 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 + }); 595 }
+15 -2
pkgs/build-support/docker/examples.nix
··· 7 # $ nix-build '<nixpkgs>' -A dockerTools.examples.redis 8 # $ docker load < result 9 10 - { pkgs, buildImage, pullImage, shadowSetup }: 11 12 rec { 13 # 1. basic example ··· 83 }; 84 85 # 4. example of pulling an image. could be used as a base for other images 86 - nix = pullImage { 87 imageName = "nixos/nix"; 88 imageTag = "1.11"; 89 # this hash will need change if the tag is updated at docker hub ··· 99 pkgs.emacs 100 pkgs.vim 101 pkgs.nano 102 ]; 103 }; 104 }
··· 7 # $ nix-build '<nixpkgs>' -A dockerTools.examples.redis 8 # $ docker load < result 9 10 + { pkgs, buildImage, pullImage, shadowSetup, buildImageWithNixDb }: 11 12 rec { 13 # 1. basic example ··· 83 }; 84 85 # 4. example of pulling an image. could be used as a base for other images 86 + nixFromDockerHub = pullImage { 87 imageName = "nixos/nix"; 88 imageTag = "1.11"; 89 # this hash will need change if the tag is updated at docker hub ··· 99 pkgs.emacs 100 pkgs.vim 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 115 ]; 116 }; 117 }
+1 -1
pkgs/desktops/lxde/core/lxappearance/default.nix
··· 20 description = "A lightweight program for configuring the theme and fonts of gtk applications"; 21 homepage = http://lxde.org/; 22 maintainers = [ stdenv.lib.maintainers.hinton ]; 23 - platforms = stdenv.lib.platforms.all; 24 license = stdenv.lib.licenses.gpl2; 25 }; 26 }
··· 20 description = "A lightweight program for configuring the theme and fonts of gtk applications"; 21 homepage = http://lxde.org/; 22 maintainers = [ stdenv.lib.maintainers.hinton ]; 23 + platforms = stdenv.lib.platforms.linux; 24 license = stdenv.lib.licenses.gpl2; 25 }; 26 }
+1 -1
pkgs/desktops/mate/libmatemixer/default.nix
··· 27 description = "Mixer library for MATE"; 28 homepage = https://github.com/mate-desktop/libmatemixer; 29 license = with licenses; [ gpl2 lgpl2 ]; 30 - platforms = platforms.unix; 31 maintainers = [ maintainers.romildo ]; 32 }; 33 }
··· 27 description = "Mixer library for MATE"; 28 homepage = https://github.com/mate-desktop/libmatemixer; 29 license = with licenses; [ gpl2 lgpl2 ]; 30 + platforms = platforms.linux; 31 maintainers = [ maintainers.romildo ]; 32 }; 33 }
+1 -1
pkgs/desktops/mate/mate-desktop/default.nix
··· 26 description = "Library with common API for various MATE modules"; 27 homepage = http://mate-desktop.org; 28 license = licenses.gpl2; 29 - platforms = platforms.unix; 30 maintainers = [ maintainers.romildo ]; 31 }; 32 }
··· 26 description = "Library with common API for various MATE modules"; 27 homepage = http://mate-desktop.org; 28 license = licenses.gpl2; 29 + platforms = platforms.linux; 30 maintainers = [ maintainers.romildo ]; 31 }; 32 }
+18 -12
pkgs/development/compilers/dmd/2.067.1.nix
··· 43 # Compile with PIC to prevent colliding modules with binutils 2.28. 44 # https://issues.dlang.org/show_bug.cgi?id=17375 45 usePIC = "-fPIC"; 46 47 postPatch = '' 48 # Ugly hack so the dlopen call has a chance to succeed. ··· 67 --replace g++ $CXX 68 '' 69 70 - + stdenv.lib.optionalString stdenv.hostPlatform.isLinux '' 71 - substituteInPlace dmd/src/root/port.c \ 72 - --replace "#include <bits/mathdef.h>" "#include <complex.h>" 73 - '' 74 75 - + stdenv.lib.optionalString stdenv.hostPlatform.isDarwin '' 76 - substituteInPlace dmd/src/posix.mak \ 77 - --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_ 78 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 - ''; 83 84 nativeBuildInputs = [ makeWrapper unzip which ]; 85 buildInputs = [ curl tzdata ]; ··· 96 cd .. 97 ''; 98 99 - doCheck = true; 100 101 checkPhase = '' 102 cd dmd
··· 43 # Compile with PIC to prevent colliding modules with binutils 2.28. 44 # https://issues.dlang.org/show_bug.cgi?id=17375 45 usePIC = "-fPIC"; 46 + ROOT_HOME_DIR = "$(echo ~root)"; 47 48 postPatch = '' 49 # Ugly hack so the dlopen call has a chance to succeed. ··· 68 --replace g++ $CXX 69 '' 70 71 + + stdenv.lib.optionalString stdenv.hostPlatform.isLinux '' 72 + substituteInPlace dmd/src/root/port.c \ 73 + --replace "#include <bits/mathdef.h>" "#include <complex.h>" 74 75 + # See https://github.com/NixOS/nixpkgs/issues/29443 76 + substituteInPlace phobos/std/path.d \ 77 + --replace "\"/root" "\"${ROOT_HOME_DIR}" 78 + '' 79 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 + ''; 88 89 nativeBuildInputs = [ makeWrapper unzip which ]; 90 buildInputs = [ curl tzdata ]; ··· 101 cd .. 102 ''; 103 104 + # disable check phase because some tests are not working with sandboxing 105 + doCheck = false; 106 107 checkPhase = '' 108 cd dmd
+9 -3
pkgs/development/compilers/dmd/default.nix
··· 1 { stdenv, fetchFromGitHub 2 , makeWrapper, unzip, which 3 - , curl, tzdata, gdb 4 # Versions 2.070.2 and up require a working dmd compiler to build: 5 , bootstrapDmd }: 6 ··· 73 --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_ 74 ''; 75 76 - nativeBuildInputs = [ bootstrapDmd makeWrapper unzip which gdb ]; 77 buildInputs = [ curl tzdata ]; 78 79 # Buid and install are based on http://wiki.dlang.org/Building_DMD ··· 92 cd .. 93 ''; 94 95 - doCheck = true; 96 97 checkPhase = '' 98 cd dmd
··· 1 { stdenv, fetchFromGitHub 2 , makeWrapper, unzip, which 3 + , curl, tzdata, gdb, darwin 4 # Versions 2.070.2 and up require a working dmd compiler to build: 5 , bootstrapDmd }: 6 ··· 73 --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_ 74 ''; 75 76 + nativeBuildInputs = [ bootstrapDmd makeWrapper unzip which gdb ] 77 + 78 + ++ stdenv.lib.optional stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [ 79 + Foundation 80 + ]); 81 + 82 buildInputs = [ curl tzdata ]; 83 84 # Buid and install are based on http://wiki.dlang.org/Building_DMD ··· 97 cd .. 98 ''; 99 100 + # disable check phase because some tests are not working with sandboxing 101 + doCheck = false; 102 103 checkPhase = '' 104 cd dmd
+2 -1
pkgs/development/compilers/ldc/default.nix
··· 81 82 makeFlags = [ "DMD=$DMD" ]; 83 84 - doCheck = true; 85 86 checkPhase = '' 87 ctest -j $NIX_BUILD_CORES -V DMD=$DMD
··· 81 82 makeFlags = [ "DMD=$DMD" ]; 83 84 + # disable check phase because some tests are not working with sandboxing 85 + doCheck = false; 86 87 checkPhase = '' 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 2 , alsaLib, bootjdk, cacert, perl, liberation_ttf, fontconfig, zlib, lndir 3 , libX11, libICE, libXrender, libXext, libXt, libXtst, libXi, libXinerama, libXcursor 4 , libjpeg, giflib ··· 75 gtk2 gnome_vfs GConf glib 76 ]; 77 78 prePatch = '' 79 - ls | grep jdk | grep -v '^jdk8u' | awk -F- '{print $1}' | while read p; do 80 - mv $p-* $(ls | grep '^jdk8u')/$p 81 done 82 - cd $(ls | grep '^jdk8u') 83 ''; 84 85 patches = [ ··· 95 96 preConfigure = '' 97 chmod +x configure 98 - substituteInPlace configure --replace /bin/bash "$shell" 99 substituteInPlace hotspot/make/linux/adlc_updater --replace /bin/sh "$shell" 100 substituteInPlace hotspot/make/linux/makefiles/dtrace.make --replace /usr/include/sys/sdt.h "/no-such-path" 101 '' ··· 188 done 189 190 # 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 195 196 ln -s $out/lib/openjdk/bin $out/bin 197 ln -s $jre/lib/openjdk/jre/bin $jre/bin ··· 221 # Build the set of output library directories to rpath against 222 LIBDIRS="" 223 for output in $outputs; do 224 - LIBDIRS="$(find $(eval echo \$$output) -name \*.so\* -exec dirname {} \; | sort | uniq | tr '\n' ':'):$LIBDIRS" 225 done 226 227 # Add the local library paths to remove dependencies on the bootstrap 228 for output in $outputs; do 229 - OUTPUTDIR="$(eval echo \$$output)" 230 - BINLIBS="$(find $OUTPUTDIR/bin/ -type f; find $OUTPUTDIR -name \*.so\*)" 231 echo "$BINLIBS" | while read i; do 232 patchelf --set-rpath "$LIBDIRS:$(patchelf --print-rpath "$i")" "$i" || true 233 patchelf --shrink-rpath "$i" || true
··· 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 ··· 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 jdk8u\*); 82 + find . -maxdepth 1 -name \*jdk\* -not -name jdk8u\* | awk -F- '{print $1}' | while read p; do 83 + mv $p-* $mainDir/$p 84 done 85 + cd $mainDir 86 ''; 87 88 patches = [ ··· 98 99 preConfigure = '' 100 chmod +x configure 101 + substituteInPlace configure --replace /bin/bash "${bash}/bin/bash" 102 substituteInPlace hotspot/make/linux/adlc_updater --replace /bin/sh "$shell" 103 substituteInPlace hotspot/make/linux/makefiles/dtrace.make --replace /usr/include/sys/sdt.h "/no-such-path" 104 '' ··· 191 done 192 193 # Generate certificates. 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 + ) 199 200 ln -s $out/lib/openjdk/bin $out/bin 201 ln -s $jre/lib/openjdk/jre/bin $jre/bin ··· 225 # Build the set of output library directories to rpath against 226 LIBDIRS="" 227 for output in $outputs; do 228 + LIBDIRS="$(find $(eval echo \$$output) -name \*.so\* -exec dirname {} \+ | sort | uniq | tr '\n' ':'):$LIBDIRS" 229 done 230 231 # Add the local library paths to remove dependencies on the bootstrap 232 for output in $outputs; do 233 + OUTPUTDIR=$(eval echo \$$output) 234 + BINLIBS=$(find $OUTPUTDIR/bin/ -type f; find $OUTPUTDIR -name \*.so\*) 235 echo "$BINLIBS" | while read i; do 236 patchelf --set-rpath "$LIBDIRS:$(patchelf --print-rpath "$i")" "$i" || true 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 # It makes no sense to have intero-nix-shim in Hackage, so we publish it here only. 721 intero-nix-shim = self.callPackage ../tools/haskell/intero-nix-shim {}; 722 723 # https://github.com/Philonous/hs-stun/pull/1 724 # Remove if a version > 0.1.0.1 ever gets released. 725 stunclient = overrideCabal super.stunclient (drv: {
··· 720 # It makes no sense to have intero-nix-shim in Hackage, so we publish it here only. 721 intero-nix-shim = self.callPackage ../tools/haskell/intero-nix-shim {}; 722 723 + # vaultenv is not available from Hackage. 724 + vaultenv = self.callPackage ../tools/haskell/vaultenv { }; 725 + 726 # https://github.com/Philonous/hs-stun/pull/1 727 # Remove if a version > 0.1.0.1 ever gets released. 728 stunclient = overrideCabal super.stunclient (drv: {
+1 -1
pkgs/development/libraries/dirac/default.nix
··· 24 meta = with stdenv.lib; { 25 homepage = http://sourceforge.net/projects/dirac; 26 description = "A general-purpose video codec based on wavelets"; 27 - platforms = platforms.all; 28 license = with licenses; [ mpl11 gpl2 lgpl21 ]; 29 maintainer = maintainers.igsha; 30 };
··· 24 meta = with stdenv.lib; { 25 homepage = http://sourceforge.net/projects/dirac; 26 description = "A general-purpose video codec based on wavelets"; 27 + platforms = platforms.linux; 28 license = with licenses; [ mpl11 gpl2 lgpl21 ]; 29 maintainer = maintainers.igsha; 30 };
+1 -1
pkgs/development/libraries/idnkit/default.nix
··· 14 homepage = https://www.nic.ad.jp/ja/idn/idnkit; 15 description = "Provides functionalities about i18n domain name processing"; 16 license = "idnkit-2 license"; 17 - platforms = platforms.unix; 18 maintainers = with maintainers; [ wkennington ]; 19 }; 20 }
··· 14 homepage = https://www.nic.ad.jp/ja/idn/idnkit; 15 description = "Provides functionalities about i18n domain name processing"; 16 license = "idnkit-2 license"; 17 + platforms = platforms.linux; 18 maintainers = with maintainers; [ wkennington ]; 19 }; 20 }
+2 -2
pkgs/development/libraries/libuv/default.nix
··· 2 , ApplicationServices, CoreServices }: 3 4 stdenv.mkDerivation rec { 5 - version = "1.13.1"; 6 name = "libuv-${version}"; 7 8 src = fetchFromGitHub { 9 owner = "libuv"; 10 repo = "libuv"; 11 rev = "v${version}"; 12 - sha256 = "0k348kgdphha1w4cw78zngq3gqcrhcn0az7k0k4w2bgmdf4ip8z8"; 13 }; 14 15 postPatch = let
··· 2 , ApplicationServices, CoreServices }: 3 4 stdenv.mkDerivation rec { 5 + version = "1.14.1"; 6 name = "libuv-${version}"; 7 8 src = fetchFromGitHub { 9 owner = "libuv"; 10 repo = "libuv"; 11 rev = "v${version}"; 12 + sha256 = "1121qvnvpcabq1bl2k41jq8r2hn2x123csiaf7s9vrq66bbxgfdx"; 13 }; 14 15 postPatch = let
+3 -9
pkgs/development/libraries/lmdb/default.nix
··· 1 { stdenv, fetchFromGitHub }: 2 3 - let optional = stdenv.lib.optional; 4 - in stdenv.mkDerivation rec { 5 name = "lmdb-${version}"; 6 version = "0.9.21"; 7 ··· 16 17 outputs = [ "bin" "out" "dev" ]; 18 19 - makeFlags = [ "prefix=$(out)" "CC=cc" ]; 20 21 doCheck = true; 22 checkPhase = "make test"; ··· 25 moveToOutput bin "$bin" 26 moveToOutput "lib/*.a" REMOVE # until someone needs it 27 '' 28 - 29 - # fix bogus library name 30 - + stdenv.lib.optionalString stdenv.isDarwin '' 31 - mv "$out"/lib/liblmdb.{so,dylib} 32 - '' 33 - 34 # add lmdb.pc (dynamic only) 35 + '' 36 mkdir -p "$dev/lib/pkgconfig"
··· 1 { stdenv, fetchFromGitHub }: 2 3 + stdenv.mkDerivation rec { 4 name = "lmdb-${version}"; 5 version = "0.9.21"; 6 ··· 15 16 outputs = [ "bin" "out" "dev" ]; 17 18 + makeFlags = [ "prefix=$(out)" "CC=cc" ] 19 + ++ stdenv.lib.optional stdenv.isDarwin "LDFLAGS=-Wl,-install_name,$(out)/lib/liblmdb.so"; 20 21 doCheck = true; 22 checkPhase = "make test"; ··· 25 moveToOutput bin "$bin" 26 moveToOutput "lib/*.a" REMOVE # until someone needs it 27 '' 28 # add lmdb.pc (dynamic only) 29 + '' 30 mkdir -p "$dev/lib/pkgconfig"
+1 -1
pkgs/development/libraries/qt-5/qtbase-setup-hook.sh
··· 123 124 mkdir -p "$NIX_QT5_TMP/nix-support" 125 for subdir in bin include lib mkspecs share; do 126 - mkdir "$NIX_QT5_TMP/$subdir" 127 echo "$subdir/" >> "$NIX_QT5_TMP/nix-support/qt-inputs" 128 done 129
··· 123 124 mkdir -p "$NIX_QT5_TMP/nix-support" 125 for subdir in bin include lib mkspecs share; do 126 + mkdir -p "$NIX_QT5_TMP/$subdir" 127 echo "$subdir/" >> "$NIX_QT5_TMP/nix-support/qt-inputs" 128 done 129
+1 -1
pkgs/development/libraries/resolv_wrapper/default.nix
··· 15 homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;"; 16 license = licenses.bsd3; 17 maintainers = with maintainers; [ wkennington ]; 18 - platforms = platforms.all; 19 }; 20 }
··· 15 homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;"; 16 license = licenses.bsd3; 17 maintainers = with maintainers; [ wkennington ]; 18 + platforms = platforms.linux; 19 }; 20 }
+4 -3
pkgs/development/libraries/vapoursynth/default.nix
··· 1 { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, 2 - zimg, libass, yasm, python3, 3 ocrSupport ? false, tesseract, 4 imwriSupport? true, imagemagick7 5 }: ··· 20 sha256 = "0nabl6949s7awy7rnr4ck52v50xr0hwr280fyzsqixgp8w369jn0"; 21 }; 22 23 buildInputs = [ 24 - pkgconfig autoreconfHook 25 zimg libass tesseract yasm 26 (python3.withPackages (ps: with ps; [ sphinx cython ])) 27 - ] ++ optional ocrSupport tesseract 28 ++ optional imwriSupport imagemagick7; 29 30 configureFlags = [
··· 1 { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, 2 + zimg, libass, yasm, python3, libiconv, ApplicationServices, 3 ocrSupport ? false, tesseract, 4 imwriSupport? true, imagemagick7 5 }: ··· 20 sha256 = "0nabl6949s7awy7rnr4ck52v50xr0hwr280fyzsqixgp8w369jn0"; 21 }; 22 23 + nativeBuildInputs = [ pkgconfig autoreconfHook ]; 24 buildInputs = [ 25 zimg libass tesseract yasm 26 (python3.withPackages (ps: with ps; [ sphinx cython ])) 27 + ] ++ optionals stdenv.isDarwin [ libiconv ApplicationServices ] 28 + ++ optional ocrSupport tesseract 29 ++ optional imwriSupport imagemagick7; 30 31 configureFlags = [
+13 -8
pkgs/development/libraries/vmmlib/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, pkgconfig, boost, blas }: 2 3 stdenv.mkDerivation rec { 4 version = "1.6.2"; 5 name = "vmmlib-${version}"; 6 - buildInputs = [ stdenv pkgconfig cmake boost blas ]; 7 8 src = fetchFromGitHub { 9 owner = "VMML"; ··· 12 sha256 = "0sn6jl1r5k6ka0vkjsdnn14hb95dqq8158dapby6jk72wqj9kdml"; 13 }; 14 15 - patches = [ 16 - ./disable-cpack.patch #disable the need of cpack/rpm 17 - ]; 18 - 19 enableParallelBuilding = true; 20 21 - doCheck = true; 22 23 checkTarget = "test"; 24 ··· 36 homepage = http://github.com/VMML/vmmlib/; 37 maintainers = [ maintainers.adev ]; 38 platforms = platforms.all; 39 - }; 40 } 41
··· 1 + { stdenv, fetchFromGitHub, cmake, pkgconfig, boost, blas 2 + , Accelerate, CoreGraphics, CoreVideo 3 + }: 4 5 stdenv.mkDerivation rec { 6 version = "1.6.2"; 7 name = "vmmlib-${version}"; 8 9 src = fetchFromGitHub { 10 owner = "VMML"; ··· 13 sha256 = "0sn6jl1r5k6ka0vkjsdnn14hb95dqq8158dapby6jk72wqj9kdml"; 14 }; 15 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 + 24 enableParallelBuilding = true; 25 26 + doCheck = !stdenv.isDarwin; 27 28 checkTarget = "test"; 29 ··· 41 homepage = http://github.com/VMML/vmmlib/; 42 maintainers = [ maintainers.adev ]; 43 platforms = platforms.all; 44 + }; 45 } 46
+10 -3
pkgs/development/libraries/vsqlite/default.nix
··· 11 12 buildInputs = [ boost sqlite ]; 13 14 - meta = { 15 homepage = http://vsqlite.virtuosic-bytes.com/; 16 description = "C++ wrapper library for sqlite."; 17 - license = stdenv.lib.licenses.bsd3; 18 - platforms = stdenv.lib.platforms.unix; 19 }; 20 }
··· 11 12 buildInputs = [ boost sqlite ]; 13 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; { 22 homepage = http://vsqlite.virtuosic-bytes.com/; 23 description = "C++ wrapper library for sqlite."; 24 + license = licenses.bsd3; 25 + platforms = platforms.unix; 26 }; 27 }
+805 -249
pkgs/development/node-packages/node-packages-v4.nix
··· 175 sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f"; 176 }; 177 }; 178 - "interpret-1.0.3" = { 179 name = "interpret"; 180 packageName = "interpret"; 181 - version = "1.0.3"; 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz"; 184 - sha1 = "cbc35c62eeee73f19ab7b10a801511401afc0f90"; 185 }; 186 }; 187 "liftoff-2.3.0" = { ··· 337 sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; 338 }; 339 }; 340 - "dateformat-2.0.0" = { 341 name = "dateformat"; 342 packageName = "dateformat"; 343 - version = "2.0.0"; 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/dateformat/-/dateformat-2.0.0.tgz"; 346 - sha1 = "2743e3abb5c3fc2462e527dca445e04e9f4dee17"; 347 }; 348 }; 349 "fancy-log-1.3.0" = { ··· 1741 sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644"; 1742 }; 1743 }; 1744 - "request-2.81.0" = { 1745 name = "request"; 1746 packageName = "request"; 1747 - version = "2.81.0"; 1748 src = fetchurl { 1749 - url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; 1750 - sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; 1751 }; 1752 }; 1753 - "rimraf-2.6.1" = { 1754 name = "rimraf"; 1755 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 "semver-5.3.0" = { ··· 1831 sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; 1832 }; 1833 }; 1834 - "aproba-1.1.2" = { 1835 name = "aproba"; 1836 packageName = "aproba"; 1837 - version = "1.1.2"; 1838 src = fetchurl { 1839 - url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz"; 1840 - sha512 = "0zmgm7vf91vxk5hdvkwhfnzjxz9r6hwpn8dlbpasaax8rxx7z1qqdmh8l631vawj7y1bkpsd0v0mhjh9agggkjl72f3vlnfhy61m5k6"; 1841 }; 1842 }; 1843 "has-unicode-2.0.1" = { ··· 1921 sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 1922 }; 1923 }; 1924 - "aws-sign2-0.6.0" = { 1925 name = "aws-sign2"; 1926 packageName = "aws-sign2"; 1927 - version = "0.6.0"; 1928 src = fetchurl { 1929 - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; 1930 - sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; 1931 }; 1932 }; 1933 "aws4-1.6.0" = { ··· 1966 sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; 1967 }; 1968 }; 1969 - "form-data-2.1.4" = { 1970 name = "form-data"; 1971 packageName = "form-data"; 1972 - version = "2.1.4"; 1973 src = fetchurl { 1974 - url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz"; 1975 - sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1"; 1976 }; 1977 }; 1978 - "har-validator-4.2.1" = { 1979 name = "har-validator"; 1980 packageName = "har-validator"; 1981 - version = "4.2.1"; 1982 src = fetchurl { 1983 - url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; 1984 - sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; 1985 }; 1986 }; 1987 - "hawk-3.1.3" = { 1988 name = "hawk"; 1989 packageName = "hawk"; 1990 - version = "3.1.3"; 1991 src = fetchurl { 1992 - url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; 1993 - sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; 1994 }; 1995 }; 1996 - "http-signature-1.1.1" = { 1997 name = "http-signature"; 1998 packageName = "http-signature"; 1999 - version = "1.1.1"; 2000 src = fetchurl { 2001 - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; 2002 - sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; 2003 }; 2004 }; 2005 "is-typedarray-1.0.0" = { ··· 2047 sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"; 2048 }; 2049 }; 2050 - "performance-now-0.2.0" = { 2051 name = "performance-now"; 2052 packageName = "performance-now"; 2053 - version = "0.2.0"; 2054 src = fetchurl { 2055 - url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; 2056 - sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; 2057 }; 2058 }; 2059 - "qs-6.4.0" = { 2060 name = "qs"; 2061 packageName = "qs"; 2062 - version = "6.4.0"; 2063 src = fetchurl { 2064 - url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; 2065 - sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; 2066 }; 2067 }; 2068 "stringstream-0.0.5" = { ··· 2119 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 2120 }; 2121 }; 2122 - "ajv-4.11.8" = { 2123 name = "ajv"; 2124 packageName = "ajv"; 2125 - version = "4.11.8"; 2126 src = fetchurl { 2127 - url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; 2128 - sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; 2129 }; 2130 }; 2131 - "har-schema-1.0.5" = { 2132 name = "har-schema"; 2133 packageName = "har-schema"; 2134 - version = "1.0.5"; 2135 src = fetchurl { 2136 - url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; 2137 - sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; 2138 }; 2139 }; 2140 "co-4.6.0" = { ··· 2146 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; 2147 }; 2148 }; 2149 "json-stable-stringify-1.0.1" = { 2150 name = "json-stable-stringify"; 2151 packageName = "json-stable-stringify"; ··· 2164 sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; 2165 }; 2166 }; 2167 - "hoek-2.16.3" = { 2168 name = "hoek"; 2169 packageName = "hoek"; 2170 - version = "2.16.3"; 2171 src = fetchurl { 2172 - url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; 2173 - sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; 2174 }; 2175 }; 2176 - "boom-2.10.1" = { 2177 name = "boom"; 2178 packageName = "boom"; 2179 - version = "2.10.1"; 2180 src = fetchurl { 2181 - url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; 2182 - sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; 2183 }; 2184 }; 2185 - "cryptiles-2.0.5" = { 2186 name = "cryptiles"; 2187 packageName = "cryptiles"; 2188 - version = "2.0.5"; 2189 src = fetchurl { 2190 - url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; 2191 - sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; 2192 }; 2193 }; 2194 - "sntp-1.0.9" = { 2195 name = "sntp"; 2196 packageName = "sntp"; 2197 - version = "1.0.9"; 2198 src = fetchurl { 2199 - url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; 2200 - sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; 2201 }; 2202 }; 2203 - "assert-plus-0.2.0" = { 2204 name = "assert-plus"; 2205 packageName = "assert-plus"; 2206 - version = "0.2.0"; 2207 src = fetchurl { 2208 - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; 2209 - sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; 2210 }; 2211 }; 2212 "jsprim-1.4.1" = { ··· 2225 src = fetchurl { 2226 url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz"; 2227 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 }; 2238 }; 2239 "extsprintf-1.3.0" = { ··· 2398 sha1 = "2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"; 2399 }; 2400 }; 2401 - "serve-favicon-2.4.3" = { 2402 name = "serve-favicon"; 2403 packageName = "serve-favicon"; 2404 - version = "2.4.3"; 2405 src = fetchurl { 2406 - url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.3.tgz"; 2407 - sha1 = "5986b17b0502642b641c21f818b1acce32025d23"; 2408 }; 2409 }; 2410 "strong-data-uri-1.0.4" = { ··· 2974 sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; 2975 }; 2976 }; 2977 - "content-type-1.0.2" = { 2978 name = "content-type"; 2979 packageName = "content-type"; 2980 - version = "1.0.2"; 2981 src = fetchurl { 2982 - url = "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz"; 2983 - sha1 = "b7d113aee7a8dd27bd21133c4dc2529df1721eed"; 2984 }; 2985 }; 2986 "cookie-0.3.1" = { ··· 3028 sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 3029 }; 3030 }; 3031 - "etag-1.8.0" = { 3032 name = "etag"; 3033 packageName = "etag"; 3034 - version = "1.8.0"; 3035 src = fetchurl { 3036 - url = "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz"; 3037 - sha1 = "6f631aef336d6c46362b51764044ce216be3c051"; 3038 }; 3039 }; 3040 - "finalhandler-1.0.4" = { 3041 name = "finalhandler"; 3042 packageName = "finalhandler"; 3043 - version = "1.0.4"; 3044 src = fetchurl { 3045 - url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.4.tgz"; 3046 - sha512 = "2vbps6iw562i2zxd973z5mmbs8ggx3wbz4g1jqwvkjibiwrk9ym8bxcvvwnlmxqad92x120x5xz5nyfq68nd8akk355bkk0qjppzafp"; 3047 }; 3048 }; 3049 "fresh-0.5.0" = { ··· 3082 sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 3083 }; 3084 }; 3085 - "parseurl-1.3.1" = { 3086 name = "parseurl"; 3087 packageName = "parseurl"; 3088 - version = "1.3.1"; 3089 src = fetchurl { 3090 - url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz"; 3091 - sha1 = "c8ab8c9223ba34888aa64a297b28853bec18da56"; 3092 }; 3093 }; 3094 "path-to-regexp-0.1.7" = { ··· 3217 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 3218 }; 3219 }; 3220 - "forwarded-0.1.0" = { 3221 name = "forwarded"; 3222 packageName = "forwarded"; 3223 - version = "0.1.0"; 3224 src = fetchurl { 3225 - url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz"; 3226 - sha1 = "19ef9874c4ae1c297bcf078fde63a09b66a84363"; 3227 }; 3228 }; 3229 "ipaddr.js-1.4.0" = { ··· 3289 sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 3290 }; 3291 }; 3292 - "safe-buffer-5.0.1" = { 3293 - name = "safe-buffer"; 3294 - packageName = "safe-buffer"; 3295 - version = "5.0.1"; 3296 src = fetchurl { 3297 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz"; 3298 - sha1 = "d263ca54696cd8a306b5ca6551e92de57918fbe7"; 3299 }; 3300 }; 3301 "truncate-1.0.5" = { ··· 3316 sha1 = "d95bf721ec877e08db276ed3fc6eb78f9083ad46"; 3317 }; 3318 }; 3319 - "node-pre-gyp-0.6.36" = { 3320 name = "node-pre-gyp"; 3321 packageName = "node-pre-gyp"; 3322 - version = "0.6.36"; 3323 src = fetchurl { 3324 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; 3325 - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; 3326 }; 3327 }; 3328 "nopt-4.0.1" = { ··· 3343 sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar"; 3344 }; 3345 }; 3346 "tar-pack-3.4.0" = { 3347 name = "tar-pack"; 3348 packageName = "tar-pack"; ··· 3352 sha1 = "23be2d7f671a8339376cbdb0b8fe3fdebf317984"; 3353 }; 3354 }; 3355 "fstream-ignore-1.0.5" = { 3356 name = "fstream-ignore"; 3357 packageName = "fstream-ignore"; ··· 3485 src = fetchurl { 3486 url = "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"; 3487 sha1 = "5de60415bda071bb37127854c864f41b23254539"; 3488 }; 3489 }; 3490 "bluebird-3.5.0" = { ··· 3766 sha512 = "36g1gm57qcvdgb4lm6ibl9pgma8lgx8l8i2jzap6w3v36wfzsqa7vb411zd26yp9rgcq23951vl5j6pac22qd5h9x7jm9raznnnr460"; 3767 }; 3768 }; 3769 - "npm-packlist-1.1.8" = { 3770 name = "npm-packlist"; 3771 packageName = "npm-packlist"; 3772 - version = "1.1.8"; 3773 src = fetchurl { 3774 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.8.tgz"; 3775 - sha512 = "3wbyrf8k8ziygg8lyaj5v0kfpw9mhz4an8hqznapf7n0g2ik02shn91607274zvvayl5zcgmfkf17yy4vgz67lsdjmhzwi8rmrzapv4"; 3776 }; 3777 }; 3778 "npm-registry-client-8.4.0" = { ··· 3872 src = fetchurl { 3873 url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz"; 3874 sha512 = "0v1k32zqj8bnqzyp5h0jxnkvpgpzpa6z7iyqbpm3p0ylqafbb2zm656mw6gs16zf98l7y218ygpx2kzks00qcycwwx2cny67mlza98l"; 3875 }; 3876 }; 3877 "retry-0.10.1" = { ··· 4000 sha512 = "2lrlysxfbyzywla6i1q07xncmw30w1icgq18c4bra25dl6wvcd3mxg1lqbf88w5h7mqnf98j8ll657wnqwjq9rwd7pbmd9i11964x0c"; 4001 }; 4002 }; 4003 - "write-file-atomic-2.3.0" = { 4004 name = "write-file-atomic"; 4005 packageName = "write-file-atomic"; 4006 - version = "2.3.0"; 4007 src = fetchurl { 4008 - url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz"; 4009 - sha512 = "2sgqxmcqzjd7nq9gjh6jz7vfb0gs0ag4jvqzdq93afq3bw3jrm88mhxql9sryyb04f3ipw5jkgjfiigsmdwlz9fgsnnm3cxhcmxxqy6"; 4010 }; 4011 }; 4012 "debuglog-1.0.1" = { ··· 4079 src = fetchurl { 4080 url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"; 4081 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 }; 4092 }; 4093 "wcwidth-1.0.1" = { ··· 4675 sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw"; 4676 }; 4677 }; 4678 - "socks-proxy-agent-3.0.0" = { 4679 name = "socks-proxy-agent"; 4680 packageName = "socks-proxy-agent"; 4681 - version = "3.0.0"; 4682 src = fetchurl { 4683 - url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.0.tgz"; 4684 - sha512 = "3zn9cz2ry5m1akapj7hvhgkxfq7ffwynia46lmwipsw2jk5sv8dvs32dc4hfx3xvp34i1jff1bg870a1xnknsgk5dl021jd4gwi75v0"; 4685 }; 4686 }; 4687 "humanize-ms-1.2.1" = { ··· 4738 sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967"; 4739 }; 4740 }; 4741 - "iconv-lite-0.4.18" = { 4742 name = "iconv-lite"; 4743 packageName = "iconv-lite"; 4744 - version = "0.4.18"; 4745 src = fetchurl { 4746 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz"; 4747 - sha512 = "2l97vd6kax8syr9aggcqhiyhd3b2rf506wdq6wapfrc74qwpdzqf2a3891kq9ri3g5sdzayph2sz4zkr8kbbps58z9h2lvpk115kgdj"; 4748 }; 4749 }; 4750 "socks-1.1.10" = { ··· 4819 sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; 4820 }; 4821 }; 4822 "from2-1.3.0" = { 4823 name = "from2"; 4824 packageName = "from2"; ··· 5844 sources."array-differ-1.0.0" 5845 sources."array-uniq-1.0.3" 5846 sources."beeper-1.1.1" 5847 - sources."dateformat-2.0.0" 5848 (sources."fancy-log-1.3.0" // { 5849 dependencies = [ 5850 sources."time-stamp-1.1.0" ··· 5931 }) 5932 ]; 5933 }) 5934 - sources."interpret-1.0.3" 5935 (sources."liftoff-2.3.0" // { 5936 dependencies = [ 5937 sources."extend-3.0.1" ··· 6360 sources."console-control-strings-1.1.0" 6361 (sources."gauge-2.7.4" // { 6362 dependencies = [ 6363 - sources."aproba-1.1.2" 6364 sources."has-unicode-2.0.1" 6365 sources."object-assign-4.1.1" 6366 sources."signal-exit-3.0.2" ··· 6391 sources."os-tmpdir-1.0.2" 6392 ]; 6393 }) 6394 - (sources."request-2.81.0" // { 6395 dependencies = [ 6396 - sources."aws-sign2-0.6.0" 6397 sources."aws4-1.6.0" 6398 sources."caseless-0.12.0" 6399 (sources."combined-stream-1.0.5" // { ··· 6403 }) 6404 sources."extend-3.0.1" 6405 sources."forever-agent-0.6.1" 6406 - (sources."form-data-2.1.4" // { 6407 dependencies = [ 6408 sources."asynckit-0.4.0" 6409 ]; 6410 }) 6411 - (sources."har-validator-4.2.1" // { 6412 dependencies = [ 6413 - (sources."ajv-4.11.8" // { 6414 dependencies = [ 6415 sources."co-4.6.0" 6416 (sources."json-stable-stringify-1.0.1" // { 6417 dependencies = [ 6418 sources."jsonify-0.0.0" ··· 6420 }) 6421 ]; 6422 }) 6423 - sources."har-schema-1.0.5" 6424 ]; 6425 }) 6426 - (sources."hawk-3.1.3" // { 6427 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" 6432 ]; 6433 }) 6434 - (sources."http-signature-1.1.1" // { 6435 dependencies = [ 6436 - sources."assert-plus-0.2.0" 6437 (sources."jsprim-1.4.1" // { 6438 dependencies = [ 6439 - sources."assert-plus-1.0.0" 6440 sources."extsprintf-1.3.0" 6441 sources."json-schema-0.2.3" 6442 (sources."verror-1.10.0" // { ··· 6449 (sources."sshpk-1.13.1" // { 6450 dependencies = [ 6451 sources."asn1-0.2.3" 6452 - sources."assert-plus-1.0.0" 6453 sources."dashdash-1.14.1" 6454 sources."getpass-0.1.7" 6455 sources."jsbn-0.1.1" ··· 6469 ]; 6470 }) 6471 sources."oauth-sign-0.8.2" 6472 - sources."performance-now-0.2.0" 6473 - sources."qs-6.4.0" 6474 sources."safe-buffer-5.1.1" 6475 sources."stringstream-0.0.5" 6476 (sources."tough-cookie-2.3.2" // { ··· 6482 sources."uuid-3.1.0" 6483 ]; 6484 }) 6485 - sources."rimraf-2.6.1" 6486 sources."semver-5.3.0" 6487 (sources."tar-2.2.1" // { 6488 dependencies = [ ··· 6713 }) 6714 sources."array-flatten-1.1.1" 6715 sources."content-disposition-0.5.2" 6716 - sources."content-type-1.0.2" 6717 sources."cookie-0.3.1" 6718 sources."cookie-signature-1.0.6" 6719 sources."depd-1.1.1" 6720 sources."encodeurl-1.0.1" 6721 sources."escape-html-1.0.3" 6722 - sources."etag-1.8.0" 6723 - (sources."finalhandler-1.0.4" // { 6724 dependencies = [ 6725 sources."unpipe-1.0.0" 6726 ]; ··· 6733 sources."ee-first-1.1.1" 6734 ]; 6735 }) 6736 - sources."parseurl-1.3.1" 6737 sources."path-to-regexp-0.1.7" 6738 (sources."proxy-addr-1.1.5" // { 6739 dependencies = [ 6740 - sources."forwarded-0.1.0" 6741 sources."ipaddr.js-1.4.0" 6742 ]; 6743 }) ··· 6807 ]; 6808 }) 6809 sources."semver-4.3.6" 6810 - (sources."serve-favicon-2.4.3" // { 6811 dependencies = [ 6812 - sources."etag-1.8.0" 6813 - sources."fresh-0.5.0" 6814 sources."ms-2.0.0" 6815 - sources."parseurl-1.3.1" 6816 - sources."safe-buffer-5.0.1" 6817 ]; 6818 }) 6819 (sources."strong-data-uri-1.0.4" // { ··· 6824 (sources."v8-debug-1.0.1" // { 6825 dependencies = [ 6826 sources."nan-2.7.0" 6827 - (sources."node-pre-gyp-0.6.36" // { 6828 dependencies = [ 6829 (sources."mkdirp-0.5.1" // { 6830 dependencies = [ ··· 6863 sources."console-control-strings-1.1.0" 6864 (sources."gauge-2.7.4" // { 6865 dependencies = [ 6866 - sources."aproba-1.1.2" 6867 sources."has-unicode-2.0.1" 6868 sources."object-assign-4.1.1" 6869 sources."signal-exit-3.0.2" ··· 6888 sources."set-blocking-2.0.0" 6889 ]; 6890 }) 6891 - (sources."request-2.81.0" // { 6892 dependencies = [ 6893 - sources."aws-sign2-0.6.0" 6894 sources."aws4-1.6.0" 6895 sources."caseless-0.12.0" 6896 (sources."combined-stream-1.0.5" // { ··· 6900 }) 6901 sources."extend-3.0.1" 6902 sources."forever-agent-0.6.1" 6903 - (sources."form-data-2.1.4" // { 6904 dependencies = [ 6905 sources."asynckit-0.4.0" 6906 ]; 6907 }) 6908 - (sources."har-validator-4.2.1" // { 6909 dependencies = [ 6910 - (sources."ajv-4.11.8" // { 6911 dependencies = [ 6912 sources."co-4.6.0" 6913 (sources."json-stable-stringify-1.0.1" // { 6914 dependencies = [ 6915 sources."jsonify-0.0.0" ··· 6917 }) 6918 ]; 6919 }) 6920 - sources."har-schema-1.0.5" 6921 ]; 6922 }) 6923 - (sources."hawk-3.1.3" // { 6924 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" 6929 ]; 6930 }) 6931 - (sources."http-signature-1.1.1" // { 6932 dependencies = [ 6933 - sources."assert-plus-0.2.0" 6934 (sources."jsprim-1.4.1" // { 6935 dependencies = [ 6936 - sources."assert-plus-1.0.0" 6937 sources."extsprintf-1.3.0" 6938 sources."json-schema-0.2.3" 6939 (sources."verror-1.10.0" // { ··· 6946 (sources."sshpk-1.13.1" // { 6947 dependencies = [ 6948 sources."asn1-0.2.3" 6949 - sources."assert-plus-1.0.0" 6950 sources."dashdash-1.14.1" 6951 sources."getpass-0.1.7" 6952 sources."jsbn-0.1.1" ··· 6966 ]; 6967 }) 6968 sources."oauth-sign-0.8.2" 6969 - sources."performance-now-0.2.0" 6970 - sources."qs-6.4.0" 6971 sources."safe-buffer-5.1.1" 6972 sources."stringstream-0.0.5" 6973 (sources."tough-cookie-2.3.2" // { ··· 6979 sources."uuid-3.1.0" 6980 ]; 6981 }) 6982 - (sources."rimraf-2.6.1" // { 6983 dependencies = [ 6984 (sources."glob-7.1.2" // { 6985 dependencies = [ ··· 7010 ]; 7011 }) 7012 sources."semver-5.4.1" 7013 (sources."tar-2.2.1" // { 7014 dependencies = [ 7015 sources."block-stream-0.0.9" ··· 7070 (sources."v8-profiler-5.7.0" // { 7071 dependencies = [ 7072 sources."nan-2.7.0" 7073 - (sources."node-pre-gyp-0.6.36" // { 7074 dependencies = [ 7075 (sources."mkdirp-0.5.1" // { 7076 dependencies = [ ··· 7109 sources."console-control-strings-1.1.0" 7110 (sources."gauge-2.7.4" // { 7111 dependencies = [ 7112 - sources."aproba-1.1.2" 7113 sources."has-unicode-2.0.1" 7114 sources."object-assign-4.1.1" 7115 sources."signal-exit-3.0.2" ··· 7134 sources."set-blocking-2.0.0" 7135 ]; 7136 }) 7137 - (sources."request-2.81.0" // { 7138 dependencies = [ 7139 - sources."aws-sign2-0.6.0" 7140 sources."aws4-1.6.0" 7141 sources."caseless-0.12.0" 7142 (sources."combined-stream-1.0.5" // { ··· 7146 }) 7147 sources."extend-3.0.1" 7148 sources."forever-agent-0.6.1" 7149 - (sources."form-data-2.1.4" // { 7150 dependencies = [ 7151 sources."asynckit-0.4.0" 7152 ]; 7153 }) 7154 - (sources."har-validator-4.2.1" // { 7155 dependencies = [ 7156 - (sources."ajv-4.11.8" // { 7157 dependencies = [ 7158 sources."co-4.6.0" 7159 (sources."json-stable-stringify-1.0.1" // { 7160 dependencies = [ 7161 sources."jsonify-0.0.0" ··· 7163 }) 7164 ]; 7165 }) 7166 - sources."har-schema-1.0.5" 7167 ]; 7168 }) 7169 - (sources."hawk-3.1.3" // { 7170 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" 7175 ]; 7176 }) 7177 - (sources."http-signature-1.1.1" // { 7178 dependencies = [ 7179 - sources."assert-plus-0.2.0" 7180 (sources."jsprim-1.4.1" // { 7181 dependencies = [ 7182 - sources."assert-plus-1.0.0" 7183 sources."extsprintf-1.3.0" 7184 sources."json-schema-0.2.3" 7185 (sources."verror-1.10.0" // { ··· 7192 (sources."sshpk-1.13.1" // { 7193 dependencies = [ 7194 sources."asn1-0.2.3" 7195 - sources."assert-plus-1.0.0" 7196 sources."dashdash-1.14.1" 7197 sources."getpass-0.1.7" 7198 sources."jsbn-0.1.1" ··· 7212 ]; 7213 }) 7214 sources."oauth-sign-0.8.2" 7215 - sources."performance-now-0.2.0" 7216 - sources."qs-6.4.0" 7217 sources."safe-buffer-5.1.1" 7218 sources."stringstream-0.0.5" 7219 (sources."tough-cookie-2.3.2" // { ··· 7225 sources."uuid-3.1.0" 7226 ]; 7227 }) 7228 - (sources."rimraf-2.6.1" // { 7229 dependencies = [ 7230 (sources."glob-7.1.2" // { 7231 dependencies = [ ··· 7256 ]; 7257 }) 7258 sources."semver-5.4.1" 7259 (sources."tar-2.2.1" // { 7260 dependencies = [ 7261 sources."block-stream-0.0.9" ··· 7377 node-pre-gyp = nodeEnv.buildNodePackage { 7378 name = "node-pre-gyp"; 7379 packageName = "node-pre-gyp"; 7380 - version = "0.6.36"; 7381 src = fetchurl { 7382 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; 7383 - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; 7384 }; 7385 dependencies = [ 7386 (sources."mkdirp-0.5.1" // { ··· 7420 sources."console-control-strings-1.1.0" 7421 (sources."gauge-2.7.4" // { 7422 dependencies = [ 7423 - sources."aproba-1.1.2" 7424 sources."has-unicode-2.0.1" 7425 sources."object-assign-4.1.1" 7426 sources."signal-exit-3.0.2" ··· 7453 sources."strip-json-comments-2.0.1" 7454 ]; 7455 }) 7456 - (sources."request-2.81.0" // { 7457 dependencies = [ 7458 - sources."aws-sign2-0.6.0" 7459 sources."aws4-1.6.0" 7460 sources."caseless-0.12.0" 7461 (sources."combined-stream-1.0.5" // { ··· 7465 }) 7466 sources."extend-3.0.1" 7467 sources."forever-agent-0.6.1" 7468 - (sources."form-data-2.1.4" // { 7469 dependencies = [ 7470 sources."asynckit-0.4.0" 7471 ]; 7472 }) 7473 - (sources."har-validator-4.2.1" // { 7474 dependencies = [ 7475 - (sources."ajv-4.11.8" // { 7476 dependencies = [ 7477 sources."co-4.6.0" 7478 (sources."json-stable-stringify-1.0.1" // { 7479 dependencies = [ 7480 sources."jsonify-0.0.0" ··· 7482 }) 7483 ]; 7484 }) 7485 - sources."har-schema-1.0.5" 7486 ]; 7487 }) 7488 - (sources."hawk-3.1.3" // { 7489 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" 7494 ]; 7495 }) 7496 - (sources."http-signature-1.1.1" // { 7497 dependencies = [ 7498 - sources."assert-plus-0.2.0" 7499 (sources."jsprim-1.4.1" // { 7500 dependencies = [ 7501 - sources."assert-plus-1.0.0" 7502 sources."extsprintf-1.3.0" 7503 sources."json-schema-0.2.3" 7504 (sources."verror-1.10.0" // { ··· 7511 (sources."sshpk-1.13.1" // { 7512 dependencies = [ 7513 sources."asn1-0.2.3" 7514 - sources."assert-plus-1.0.0" 7515 sources."dashdash-1.14.1" 7516 sources."getpass-0.1.7" 7517 sources."jsbn-0.1.1" ··· 7531 ]; 7532 }) 7533 sources."oauth-sign-0.8.2" 7534 - sources."performance-now-0.2.0" 7535 - sources."qs-6.4.0" 7536 sources."safe-buffer-5.1.1" 7537 sources."stringstream-0.0.5" 7538 (sources."tough-cookie-2.3.2" // { ··· 7544 sources."uuid-3.1.0" 7545 ]; 7546 }) 7547 - (sources."rimraf-2.6.1" // { 7548 dependencies = [ 7549 (sources."glob-7.1.2" // { 7550 dependencies = [ ··· 7576 ]; 7577 }) 7578 sources."semver-5.4.1" 7579 (sources."tar-2.2.1" // { 7580 dependencies = [ 7581 sources."block-stream-0.0.9" ··· 7646 npm = nodeEnv.buildNodePackage { 7647 name = "npm"; 7648 packageName = "npm"; 7649 - version = "5.4.1"; 7650 src = fetchurl { 7651 - url = "https://registry.npmjs.org/npm/-/npm-5.4.1.tgz"; 7652 - sha512 = "0vb3ad2wgv4y52jwbz8xpzg36hzimbbnlad594kblfq2mjfnaw9v4zzgd19ghan4a622s4zcrap51l2fww79lbl6n2qfv26allyg26z"; 7653 }; 7654 dependencies = [ 7655 (sources."JSONStream-1.3.1" // { ··· 7955 sources."npm-install-checks-3.0.0" 7956 sources."npm-lifecycle-1.0.3" 7957 sources."npm-package-arg-5.1.2" 7958 - (sources."npm-packlist-1.1.8" // { 7959 dependencies = [ 7960 (sources."ignore-walk-3.0.0" // { 7961 dependencies = [ ··· 8079 dependencies = [ 8080 (sources."encoding-0.1.12" // { 8081 dependencies = [ 8082 - sources."iconv-lite-0.4.18" 8083 ]; 8084 }) 8085 sources."json-parse-better-errors-1.0.1" 8086 ]; 8087 }) 8088 - (sources."socks-proxy-agent-3.0.0" // { 8089 dependencies = [ 8090 (sources."agent-base-4.1.1" // { 8091 dependencies = [ ··· 8248 ]; 8249 }) 8250 sources."retry-0.10.1" 8251 - sources."rimraf-2.6.1" 8252 sources."safe-buffer-5.1.1" 8253 sources."semver-5.4.1" 8254 sources."sha-2.0.1" ··· 8487 ]; 8488 }) 8489 sources."wrappy-1.0.2" 8490 - (sources."write-file-atomic-2.3.0" // { 8491 - dependencies = [ 8492 - sources."signal-exit-3.0.2" 8493 - ]; 8494 - }) 8495 sources."debuglog-1.0.1" 8496 sources."imurmurhash-0.1.4" 8497 sources."lodash._baseindexof-3.1.0"
··· 175 sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f"; 176 }; 177 }; 178 + "interpret-1.0.4" = { 179 name = "interpret"; 180 packageName = "interpret"; 181 + version = "1.0.4"; 182 src = fetchurl { 183 + url = "https://registry.npmjs.org/interpret/-/interpret-1.0.4.tgz"; 184 + sha1 = "820cdd588b868ffb191a809506d6c9c8f212b1b0"; 185 }; 186 }; 187 "liftoff-2.3.0" = { ··· 337 sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; 338 }; 339 }; 340 + "dateformat-2.2.0" = { 341 name = "dateformat"; 342 packageName = "dateformat"; 343 + version = "2.2.0"; 344 src = fetchurl { 345 + url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; 346 + sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062"; 347 }; 348 }; 349 "fancy-log-1.3.0" = { ··· 1741 sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644"; 1742 }; 1743 }; 1744 + "request-2.82.0" = { 1745 name = "request"; 1746 packageName = "request"; 1747 + version = "2.82.0"; 1748 src = fetchurl { 1749 + url = "https://registry.npmjs.org/request/-/request-2.82.0.tgz"; 1750 + sha512 = "079947pnxi0h8jdiv5wb64rj3gnq4a02dfj47c41wsdi3g6pp1v3yfg3m1rphib7igf6vkisrgjq16vc4fq916fc870wzckdizal1gx"; 1751 }; 1752 }; 1753 + "rimraf-2.6.2" = { 1754 name = "rimraf"; 1755 packageName = "rimraf"; 1756 + version = "2.6.2"; 1757 src = fetchurl { 1758 + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"; 1759 + sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn"; 1760 }; 1761 }; 1762 "semver-5.3.0" = { ··· 1831 sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; 1832 }; 1833 }; 1834 + "aproba-1.2.0" = { 1835 name = "aproba"; 1836 packageName = "aproba"; 1837 + version = "1.2.0"; 1838 src = fetchurl { 1839 + url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; 1840 + sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3"; 1841 }; 1842 }; 1843 "has-unicode-2.0.1" = { ··· 1921 sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 1922 }; 1923 }; 1924 + "aws-sign2-0.7.0" = { 1925 name = "aws-sign2"; 1926 packageName = "aws-sign2"; 1927 + version = "0.7.0"; 1928 src = fetchurl { 1929 + url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; 1930 + sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 1931 }; 1932 }; 1933 "aws4-1.6.0" = { ··· 1966 sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; 1967 }; 1968 }; 1969 + "form-data-2.3.1" = { 1970 name = "form-data"; 1971 packageName = "form-data"; 1972 + version = "2.3.1"; 1973 src = fetchurl { 1974 + url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz"; 1975 + sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"; 1976 }; 1977 }; 1978 + "har-validator-5.0.3" = { 1979 name = "har-validator"; 1980 packageName = "har-validator"; 1981 + version = "5.0.3"; 1982 src = fetchurl { 1983 + url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz"; 1984 + sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd"; 1985 }; 1986 }; 1987 + "hawk-6.0.2" = { 1988 name = "hawk"; 1989 packageName = "hawk"; 1990 + version = "6.0.2"; 1991 src = fetchurl { 1992 + url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz"; 1993 + sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als"; 1994 }; 1995 }; 1996 + "http-signature-1.2.0" = { 1997 name = "http-signature"; 1998 packageName = "http-signature"; 1999 + version = "1.2.0"; 2000 src = fetchurl { 2001 + url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; 2002 + sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 2003 }; 2004 }; 2005 "is-typedarray-1.0.0" = { ··· 2047 sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"; 2048 }; 2049 }; 2050 + "performance-now-2.1.0" = { 2051 name = "performance-now"; 2052 packageName = "performance-now"; 2053 + version = "2.1.0"; 2054 src = fetchurl { 2055 + url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; 2056 + sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 2057 }; 2058 }; 2059 + "qs-6.5.1" = { 2060 name = "qs"; 2061 packageName = "qs"; 2062 + version = "6.5.1"; 2063 src = fetchurl { 2064 + url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz"; 2065 + sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r"; 2066 }; 2067 }; 2068 "stringstream-0.0.5" = { ··· 2119 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 2120 }; 2121 }; 2122 + "ajv-5.2.2" = { 2123 name = "ajv"; 2124 packageName = "ajv"; 2125 + version = "5.2.2"; 2126 src = fetchurl { 2127 + url = "https://registry.npmjs.org/ajv/-/ajv-5.2.2.tgz"; 2128 + sha1 = "47c68d69e86f5d953103b0074a9430dc63da5e39"; 2129 }; 2130 }; 2131 + "har-schema-2.0.0" = { 2132 name = "har-schema"; 2133 packageName = "har-schema"; 2134 + version = "2.0.0"; 2135 src = fetchurl { 2136 + url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; 2137 + sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 2138 }; 2139 }; 2140 "co-4.6.0" = { ··· 2146 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; 2147 }; 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 + }; 2167 "json-stable-stringify-1.0.1" = { 2168 name = "json-stable-stringify"; 2169 packageName = "json-stable-stringify"; ··· 2182 sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; 2183 }; 2184 }; 2185 + "hoek-4.2.0" = { 2186 name = "hoek"; 2187 packageName = "hoek"; 2188 + version = "4.2.0"; 2189 src = fetchurl { 2190 + url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz"; 2191 + sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz"; 2192 }; 2193 }; 2194 + "boom-4.3.1" = { 2195 name = "boom"; 2196 packageName = "boom"; 2197 + version = "4.3.1"; 2198 src = fetchurl { 2199 + url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz"; 2200 + sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31"; 2201 }; 2202 }; 2203 + "cryptiles-3.1.2" = { 2204 name = "cryptiles"; 2205 packageName = "cryptiles"; 2206 + version = "3.1.2"; 2207 src = fetchurl { 2208 + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz"; 2209 + sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"; 2210 }; 2211 }; 2212 + "sntp-2.0.2" = { 2213 name = "sntp"; 2214 packageName = "sntp"; 2215 + version = "2.0.2"; 2216 src = fetchurl { 2217 + url = "https://registry.npmjs.org/sntp/-/sntp-2.0.2.tgz"; 2218 + sha1 = "5064110f0af85f7cfdb7d6b67a40028ce52b4b2b"; 2219 }; 2220 }; 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" = { 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 }; 2238 }; 2239 "jsprim-1.4.1" = { ··· 2252 src = fetchurl { 2253 url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz"; 2254 sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3"; 2255 }; 2256 }; 2257 "extsprintf-1.3.0" = { ··· 2416 sha1 = "2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"; 2417 }; 2418 }; 2419 + "serve-favicon-2.4.4" = { 2420 name = "serve-favicon"; 2421 packageName = "serve-favicon"; 2422 + version = "2.4.4"; 2423 src = fetchurl { 2424 + url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.4.tgz"; 2425 + sha1 = "412ddd74965151c9f74c0828f35d50c5250210de"; 2426 }; 2427 }; 2428 "strong-data-uri-1.0.4" = { ··· 2992 sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; 2993 }; 2994 }; 2995 + "content-type-1.0.4" = { 2996 name = "content-type"; 2997 packageName = "content-type"; 2998 + version = "1.0.4"; 2999 src = fetchurl { 3000 + url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; 3001 + sha512 = "1f4y61wc913jrnga7nny83gzf9l2488q6sl1ry9lbwgh5x5d3va0xcc0xrmjk6gdxl6d4r6rsk800xp5bazhjrx05yx1wpc8c8gg0w4"; 3002 }; 3003 }; 3004 "cookie-0.3.1" = { ··· 3046 sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 3047 }; 3048 }; 3049 + "etag-1.8.1" = { 3050 name = "etag"; 3051 packageName = "etag"; 3052 + version = "1.8.1"; 3053 src = fetchurl { 3054 + url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; 3055 + sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 3056 }; 3057 }; 3058 + "finalhandler-1.0.5" = { 3059 name = "finalhandler"; 3060 packageName = "finalhandler"; 3061 + version = "1.0.5"; 3062 src = fetchurl { 3063 + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.5.tgz"; 3064 + sha1 = "a701303d257a1bc82fea547a33e5ae89531723df"; 3065 }; 3066 }; 3067 "fresh-0.5.0" = { ··· 3100 sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 3101 }; 3102 }; 3103 + "parseurl-1.3.2" = { 3104 name = "parseurl"; 3105 packageName = "parseurl"; 3106 + version = "1.3.2"; 3107 src = fetchurl { 3108 + url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz"; 3109 + sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3"; 3110 }; 3111 }; 3112 "path-to-regexp-0.1.7" = { ··· 3235 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 3236 }; 3237 }; 3238 + "forwarded-0.1.2" = { 3239 name = "forwarded"; 3240 packageName = "forwarded"; 3241 + version = "0.1.2"; 3242 src = fetchurl { 3243 + url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; 3244 + sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; 3245 }; 3246 }; 3247 "ipaddr.js-1.4.0" = { ··· 3307 sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 3308 }; 3309 }; 3310 + "fresh-0.5.1" = { 3311 + name = "fresh"; 3312 + packageName = "fresh"; 3313 + version = "0.5.1"; 3314 src = fetchurl { 3315 + url = "https://registry.npmjs.org/fresh/-/fresh-0.5.1.tgz"; 3316 + sha1 = "c3a08bcec0fcdcc223edf3b23eb327f1f9fcbf5c"; 3317 }; 3318 }; 3319 "truncate-1.0.5" = { ··· 3334 sha1 = "d95bf721ec877e08db276ed3fc6eb78f9083ad46"; 3335 }; 3336 }; 3337 + "node-pre-gyp-0.6.37" = { 3338 name = "node-pre-gyp"; 3339 packageName = "node-pre-gyp"; 3340 + version = "0.6.37"; 3341 src = fetchurl { 3342 + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz"; 3343 + sha1 = "3c872b236b2e266e4140578fe1ee88f693323a05"; 3344 }; 3345 }; 3346 "nopt-4.0.1" = { ··· 3361 sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar"; 3362 }; 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 + }; 3373 "tar-pack-3.4.0" = { 3374 name = "tar-pack"; 3375 packageName = "tar-pack"; ··· 3379 sha1 = "23be2d7f671a8339376cbdb0b8fe3fdebf317984"; 3380 }; 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 + }; 3553 "fstream-ignore-1.0.5" = { 3554 name = "fstream-ignore"; 3555 packageName = "fstream-ignore"; ··· 3683 src = fetchurl { 3684 url = "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"; 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"; 3695 }; 3696 }; 3697 "bluebird-3.5.0" = { ··· 3973 sha512 = "36g1gm57qcvdgb4lm6ibl9pgma8lgx8l8i2jzap6w3v36wfzsqa7vb411zd26yp9rgcq23951vl5j6pac22qd5h9x7jm9raznnnr460"; 3974 }; 3975 }; 3976 + "npm-packlist-1.1.9" = { 3977 name = "npm-packlist"; 3978 packageName = "npm-packlist"; 3979 + version = "1.1.9"; 3980 src = fetchurl { 3981 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.9.tgz"; 3982 + sha512 = "1d1l5hasnw67hczgcwbc8534n1hgvx87hin1yr14yz70b4yzp06gfrj97lhh0qfmk5p1lqfrzajhs5wywx98hj75g00mqmir54050gm"; 3983 }; 3984 }; 3985 "npm-registry-client-8.4.0" = { ··· 4079 src = fetchurl { 4080 url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz"; 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"; 4091 }; 4092 }; 4093 "retry-0.10.1" = { ··· 4216 sha512 = "2lrlysxfbyzywla6i1q07xncmw30w1icgq18c4bra25dl6wvcd3mxg1lqbf88w5h7mqnf98j8ll657wnqwjq9rwd7pbmd9i11964x0c"; 4217 }; 4218 }; 4219 + "write-file-atomic-2.1.0" = { 4220 name = "write-file-atomic"; 4221 packageName = "write-file-atomic"; 4222 + version = "2.1.0"; 4223 src = fetchurl { 4224 + url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.1.0.tgz"; 4225 + sha512 = "0jpbx5znf640m7icywa21hdgyss5h6c811z27mzk7mh1yhv8sqcqd2y0cwgkrnigx57k2chv5cqwv0z8ff8z32gpdw8jw5imz8pcdni"; 4226 }; 4227 }; 4228 "debuglog-1.0.1" = { ··· 4295 src = fetchurl { 4296 url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"; 4297 sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280"; 4298 }; 4299 }; 4300 "wcwidth-1.0.1" = { ··· 4882 sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw"; 4883 }; 4884 }; 4885 + "socks-proxy-agent-3.0.1" = { 4886 name = "socks-proxy-agent"; 4887 packageName = "socks-proxy-agent"; 4888 + version = "3.0.1"; 4889 src = fetchurl { 4890 + url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.1.tgz"; 4891 + sha512 = "2a5lsw4fry6nqk3jdxvwqrnpasypvl8c4d0kg32912820lc72l7s9jzidfsrn2an9c66xqicspxb2vnir5cjspprs9qklxnd75060b7"; 4892 }; 4893 }; 4894 "humanize-ms-1.2.1" = { ··· 4945 sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967"; 4946 }; 4947 }; 4948 + "iconv-lite-0.4.19" = { 4949 name = "iconv-lite"; 4950 packageName = "iconv-lite"; 4951 + version = "0.4.19"; 4952 src = fetchurl { 4953 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz"; 4954 + sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1"; 4955 }; 4956 }; 4957 "socks-1.1.10" = { ··· 5026 sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; 5027 }; 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 + }; 5155 "from2-1.3.0" = { 5156 name = "from2"; 5157 packageName = "from2"; ··· 6177 sources."array-differ-1.0.0" 6178 sources."array-uniq-1.0.3" 6179 sources."beeper-1.1.1" 6180 + sources."dateformat-2.2.0" 6181 (sources."fancy-log-1.3.0" // { 6182 dependencies = [ 6183 sources."time-stamp-1.1.0" ··· 6264 }) 6265 ]; 6266 }) 6267 + sources."interpret-1.0.4" 6268 (sources."liftoff-2.3.0" // { 6269 dependencies = [ 6270 sources."extend-3.0.1" ··· 6693 sources."console-control-strings-1.1.0" 6694 (sources."gauge-2.7.4" // { 6695 dependencies = [ 6696 + sources."aproba-1.2.0" 6697 sources."has-unicode-2.0.1" 6698 sources."object-assign-4.1.1" 6699 sources."signal-exit-3.0.2" ··· 6724 sources."os-tmpdir-1.0.2" 6725 ]; 6726 }) 6727 + (sources."request-2.82.0" // { 6728 dependencies = [ 6729 + sources."aws-sign2-0.7.0" 6730 sources."aws4-1.6.0" 6731 sources."caseless-0.12.0" 6732 (sources."combined-stream-1.0.5" // { ··· 6736 }) 6737 sources."extend-3.0.1" 6738 sources."forever-agent-0.6.1" 6739 + (sources."form-data-2.3.1" // { 6740 dependencies = [ 6741 sources."asynckit-0.4.0" 6742 ]; 6743 }) 6744 + (sources."har-validator-5.0.3" // { 6745 dependencies = [ 6746 + (sources."ajv-5.2.2" // { 6747 dependencies = [ 6748 sources."co-4.6.0" 6749 + sources."fast-deep-equal-1.0.0" 6750 + sources."json-schema-traverse-0.3.1" 6751 (sources."json-stable-stringify-1.0.1" // { 6752 dependencies = [ 6753 sources."jsonify-0.0.0" ··· 6755 }) 6756 ]; 6757 }) 6758 + sources."har-schema-2.0.0" 6759 ]; 6760 }) 6761 + (sources."hawk-6.0.2" // { 6762 dependencies = [ 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" 6771 ]; 6772 }) 6773 + (sources."http-signature-1.2.0" // { 6774 dependencies = [ 6775 + sources."assert-plus-1.0.0" 6776 (sources."jsprim-1.4.1" // { 6777 dependencies = [ 6778 sources."extsprintf-1.3.0" 6779 sources."json-schema-0.2.3" 6780 (sources."verror-1.10.0" // { ··· 6787 (sources."sshpk-1.13.1" // { 6788 dependencies = [ 6789 sources."asn1-0.2.3" 6790 sources."dashdash-1.14.1" 6791 sources."getpass-0.1.7" 6792 sources."jsbn-0.1.1" ··· 6806 ]; 6807 }) 6808 sources."oauth-sign-0.8.2" 6809 + sources."performance-now-2.1.0" 6810 + sources."qs-6.5.1" 6811 sources."safe-buffer-5.1.1" 6812 sources."stringstream-0.0.5" 6813 (sources."tough-cookie-2.3.2" // { ··· 6819 sources."uuid-3.1.0" 6820 ]; 6821 }) 6822 + sources."rimraf-2.6.2" 6823 sources."semver-5.3.0" 6824 (sources."tar-2.2.1" // { 6825 dependencies = [ ··· 7050 }) 7051 sources."array-flatten-1.1.1" 7052 sources."content-disposition-0.5.2" 7053 + sources."content-type-1.0.4" 7054 sources."cookie-0.3.1" 7055 sources."cookie-signature-1.0.6" 7056 sources."depd-1.1.1" 7057 sources."encodeurl-1.0.1" 7058 sources."escape-html-1.0.3" 7059 + sources."etag-1.8.1" 7060 + (sources."finalhandler-1.0.5" // { 7061 dependencies = [ 7062 sources."unpipe-1.0.0" 7063 ]; ··· 7070 sources."ee-first-1.1.1" 7071 ]; 7072 }) 7073 + sources."parseurl-1.3.2" 7074 sources."path-to-regexp-0.1.7" 7075 (sources."proxy-addr-1.1.5" // { 7076 dependencies = [ 7077 + sources."forwarded-0.1.2" 7078 sources."ipaddr.js-1.4.0" 7079 ]; 7080 }) ··· 7144 ]; 7145 }) 7146 sources."semver-4.3.6" 7147 + (sources."serve-favicon-2.4.4" // { 7148 dependencies = [ 7149 + sources."etag-1.8.1" 7150 + sources."fresh-0.5.1" 7151 sources."ms-2.0.0" 7152 + sources."parseurl-1.3.2" 7153 + sources."safe-buffer-5.1.1" 7154 ]; 7155 }) 7156 (sources."strong-data-uri-1.0.4" // { ··· 7161 (sources."v8-debug-1.0.1" // { 7162 dependencies = [ 7163 sources."nan-2.7.0" 7164 + (sources."node-pre-gyp-0.6.37" // { 7165 dependencies = [ 7166 (sources."mkdirp-0.5.1" // { 7167 dependencies = [ ··· 7200 sources."console-control-strings-1.1.0" 7201 (sources."gauge-2.7.4" // { 7202 dependencies = [ 7203 + sources."aproba-1.2.0" 7204 sources."has-unicode-2.0.1" 7205 sources."object-assign-4.1.1" 7206 sources."signal-exit-3.0.2" ··· 7225 sources."set-blocking-2.0.0" 7226 ]; 7227 }) 7228 + (sources."request-2.82.0" // { 7229 dependencies = [ 7230 + sources."aws-sign2-0.7.0" 7231 sources."aws4-1.6.0" 7232 sources."caseless-0.12.0" 7233 (sources."combined-stream-1.0.5" // { ··· 7237 }) 7238 sources."extend-3.0.1" 7239 sources."forever-agent-0.6.1" 7240 + (sources."form-data-2.3.1" // { 7241 dependencies = [ 7242 sources."asynckit-0.4.0" 7243 ]; 7244 }) 7245 + (sources."har-validator-5.0.3" // { 7246 dependencies = [ 7247 + (sources."ajv-5.2.2" // { 7248 dependencies = [ 7249 sources."co-4.6.0" 7250 + sources."fast-deep-equal-1.0.0" 7251 + sources."json-schema-traverse-0.3.1" 7252 (sources."json-stable-stringify-1.0.1" // { 7253 dependencies = [ 7254 sources."jsonify-0.0.0" ··· 7256 }) 7257 ]; 7258 }) 7259 + sources."har-schema-2.0.0" 7260 ]; 7261 }) 7262 + (sources."hawk-6.0.2" // { 7263 dependencies = [ 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" 7272 ]; 7273 }) 7274 + (sources."http-signature-1.2.0" // { 7275 dependencies = [ 7276 + sources."assert-plus-1.0.0" 7277 (sources."jsprim-1.4.1" // { 7278 dependencies = [ 7279 sources."extsprintf-1.3.0" 7280 sources."json-schema-0.2.3" 7281 (sources."verror-1.10.0" // { ··· 7288 (sources."sshpk-1.13.1" // { 7289 dependencies = [ 7290 sources."asn1-0.2.3" 7291 sources."dashdash-1.14.1" 7292 sources."getpass-0.1.7" 7293 sources."jsbn-0.1.1" ··· 7307 ]; 7308 }) 7309 sources."oauth-sign-0.8.2" 7310 + sources."performance-now-2.1.0" 7311 + sources."qs-6.5.1" 7312 sources."safe-buffer-5.1.1" 7313 sources."stringstream-0.0.5" 7314 (sources."tough-cookie-2.3.2" // { ··· 7320 sources."uuid-3.1.0" 7321 ]; 7322 }) 7323 + (sources."rimraf-2.6.2" // { 7324 dependencies = [ 7325 (sources."glob-7.1.2" // { 7326 dependencies = [ ··· 7351 ]; 7352 }) 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 + }) 7424 (sources."tar-2.2.1" // { 7425 dependencies = [ 7426 sources."block-stream-0.0.9" ··· 7481 (sources."v8-profiler-5.7.0" // { 7482 dependencies = [ 7483 sources."nan-2.7.0" 7484 + (sources."node-pre-gyp-0.6.37" // { 7485 dependencies = [ 7486 (sources."mkdirp-0.5.1" // { 7487 dependencies = [ ··· 7520 sources."console-control-strings-1.1.0" 7521 (sources."gauge-2.7.4" // { 7522 dependencies = [ 7523 + sources."aproba-1.2.0" 7524 sources."has-unicode-2.0.1" 7525 sources."object-assign-4.1.1" 7526 sources."signal-exit-3.0.2" ··· 7545 sources."set-blocking-2.0.0" 7546 ]; 7547 }) 7548 + (sources."request-2.82.0" // { 7549 dependencies = [ 7550 + sources."aws-sign2-0.7.0" 7551 sources."aws4-1.6.0" 7552 sources."caseless-0.12.0" 7553 (sources."combined-stream-1.0.5" // { ··· 7557 }) 7558 sources."extend-3.0.1" 7559 sources."forever-agent-0.6.1" 7560 + (sources."form-data-2.3.1" // { 7561 dependencies = [ 7562 sources."asynckit-0.4.0" 7563 ]; 7564 }) 7565 + (sources."har-validator-5.0.3" // { 7566 dependencies = [ 7567 + (sources."ajv-5.2.2" // { 7568 dependencies = [ 7569 sources."co-4.6.0" 7570 + sources."fast-deep-equal-1.0.0" 7571 + sources."json-schema-traverse-0.3.1" 7572 (sources."json-stable-stringify-1.0.1" // { 7573 dependencies = [ 7574 sources."jsonify-0.0.0" ··· 7576 }) 7577 ]; 7578 }) 7579 + sources."har-schema-2.0.0" 7580 ]; 7581 }) 7582 + (sources."hawk-6.0.2" // { 7583 dependencies = [ 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" 7592 ]; 7593 }) 7594 + (sources."http-signature-1.2.0" // { 7595 dependencies = [ 7596 + sources."assert-plus-1.0.0" 7597 (sources."jsprim-1.4.1" // { 7598 dependencies = [ 7599 sources."extsprintf-1.3.0" 7600 sources."json-schema-0.2.3" 7601 (sources."verror-1.10.0" // { ··· 7608 (sources."sshpk-1.13.1" // { 7609 dependencies = [ 7610 sources."asn1-0.2.3" 7611 sources."dashdash-1.14.1" 7612 sources."getpass-0.1.7" 7613 sources."jsbn-0.1.1" ··· 7627 ]; 7628 }) 7629 sources."oauth-sign-0.8.2" 7630 + sources."performance-now-2.1.0" 7631 + sources."qs-6.5.1" 7632 sources."safe-buffer-5.1.1" 7633 sources."stringstream-0.0.5" 7634 (sources."tough-cookie-2.3.2" // { ··· 7640 sources."uuid-3.1.0" 7641 ]; 7642 }) 7643 + (sources."rimraf-2.6.2" // { 7644 dependencies = [ 7645 (sources."glob-7.1.2" // { 7646 dependencies = [ ··· 7671 ]; 7672 }) 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 + }) 7744 (sources."tar-2.2.1" // { 7745 dependencies = [ 7746 sources."block-stream-0.0.9" ··· 7862 node-pre-gyp = nodeEnv.buildNodePackage { 7863 name = "node-pre-gyp"; 7864 packageName = "node-pre-gyp"; 7865 + version = "0.6.37"; 7866 src = fetchurl { 7867 + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz"; 7868 + sha1 = "3c872b236b2e266e4140578fe1ee88f693323a05"; 7869 }; 7870 dependencies = [ 7871 (sources."mkdirp-0.5.1" // { ··· 7905 sources."console-control-strings-1.1.0" 7906 (sources."gauge-2.7.4" // { 7907 dependencies = [ 7908 + sources."aproba-1.2.0" 7909 sources."has-unicode-2.0.1" 7910 sources."object-assign-4.1.1" 7911 sources."signal-exit-3.0.2" ··· 7938 sources."strip-json-comments-2.0.1" 7939 ]; 7940 }) 7941 + (sources."request-2.82.0" // { 7942 dependencies = [ 7943 + sources."aws-sign2-0.7.0" 7944 sources."aws4-1.6.0" 7945 sources."caseless-0.12.0" 7946 (sources."combined-stream-1.0.5" // { ··· 7950 }) 7951 sources."extend-3.0.1" 7952 sources."forever-agent-0.6.1" 7953 + (sources."form-data-2.3.1" // { 7954 dependencies = [ 7955 sources."asynckit-0.4.0" 7956 ]; 7957 }) 7958 + (sources."har-validator-5.0.3" // { 7959 dependencies = [ 7960 + (sources."ajv-5.2.2" // { 7961 dependencies = [ 7962 sources."co-4.6.0" 7963 + sources."fast-deep-equal-1.0.0" 7964 + sources."json-schema-traverse-0.3.1" 7965 (sources."json-stable-stringify-1.0.1" // { 7966 dependencies = [ 7967 sources."jsonify-0.0.0" ··· 7969 }) 7970 ]; 7971 }) 7972 + sources."har-schema-2.0.0" 7973 ]; 7974 }) 7975 + (sources."hawk-6.0.2" // { 7976 dependencies = [ 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" 7985 ]; 7986 }) 7987 + (sources."http-signature-1.2.0" // { 7988 dependencies = [ 7989 + sources."assert-plus-1.0.0" 7990 (sources."jsprim-1.4.1" // { 7991 dependencies = [ 7992 sources."extsprintf-1.3.0" 7993 sources."json-schema-0.2.3" 7994 (sources."verror-1.10.0" // { ··· 8001 (sources."sshpk-1.13.1" // { 8002 dependencies = [ 8003 sources."asn1-0.2.3" 8004 sources."dashdash-1.14.1" 8005 sources."getpass-0.1.7" 8006 sources."jsbn-0.1.1" ··· 8020 ]; 8021 }) 8022 sources."oauth-sign-0.8.2" 8023 + sources."performance-now-2.1.0" 8024 + sources."qs-6.5.1" 8025 sources."safe-buffer-5.1.1" 8026 sources."stringstream-0.0.5" 8027 (sources."tough-cookie-2.3.2" // { ··· 8033 sources."uuid-3.1.0" 8034 ]; 8035 }) 8036 + (sources."rimraf-2.6.2" // { 8037 dependencies = [ 8038 (sources."glob-7.1.2" // { 8039 dependencies = [ ··· 8065 ]; 8066 }) 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 + }) 8139 (sources."tar-2.2.1" // { 8140 dependencies = [ 8141 sources."block-stream-0.0.9" ··· 8206 npm = nodeEnv.buildNodePackage { 8207 name = "npm"; 8208 packageName = "npm"; 8209 + version = "5.4.2"; 8210 src = fetchurl { 8211 + url = "https://registry.npmjs.org/npm/-/npm-5.4.2.tgz"; 8212 + sha512 = "28m9zjiynb24b8bxikdaya27j87am88x1y8l70pvmh9fk3pfq0y6xvqjmpy72ld4csnz9s1hik1ff8a19sx6pyi8f5ar27b044cp8hp"; 8213 }; 8214 dependencies = [ 8215 (sources."JSONStream-1.3.1" // { ··· 8515 sources."npm-install-checks-3.0.0" 8516 sources."npm-lifecycle-1.0.3" 8517 sources."npm-package-arg-5.1.2" 8518 + (sources."npm-packlist-1.1.9" // { 8519 dependencies = [ 8520 (sources."ignore-walk-3.0.0" // { 8521 dependencies = [ ··· 8639 dependencies = [ 8640 (sources."encoding-0.1.12" // { 8641 dependencies = [ 8642 + sources."iconv-lite-0.4.19" 8643 ]; 8644 }) 8645 sources."json-parse-better-errors-1.0.1" 8646 ]; 8647 }) 8648 + (sources."socks-proxy-agent-3.0.1" // { 8649 dependencies = [ 8650 (sources."agent-base-4.1.1" // { 8651 dependencies = [ ··· 8808 ]; 8809 }) 8810 sources."retry-0.10.1" 8811 + sources."rimraf-2.6.2" 8812 sources."safe-buffer-5.1.1" 8813 sources."semver-5.4.1" 8814 sources."sha-2.0.1" ··· 9047 ]; 9048 }) 9049 sources."wrappy-1.0.2" 9050 + sources."write-file-atomic-2.1.0" 9051 sources."debuglog-1.0.1" 9052 sources."imurmurhash-0.1.4" 9053 sources."lodash._baseindexof-3.1.0"
+1
pkgs/development/node-packages/node-packages-v6.json
··· 65 , "peerflix-server" 66 , "phantomjs" 67 , "prettier" 68 , "react-tools" 69 , "s3http" 70 , "semver"
··· 65 , "peerflix-server" 66 , "phantomjs" 67 , "prettier" 68 + , "pulp" 69 , "react-tools" 70 , "s3http" 71 , "semver"
+3158 -2658
pkgs/development/node-packages/node-packages-v6.nix
··· 4 5 let 6 sources = { 7 "colors-0.6.0-1" = { 8 name = "colors"; 9 packageName = "colors"; ··· 13 sha1 = "6dbb68ceb8bc60f2b313dcc5ce1599f06d19e67a"; 14 }; 15 }; 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 "commander-0.6.1" = { 35 name = "commander"; 36 packageName = "commander"; ··· 40 sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; 41 }; 42 }; 43 - "wrench-1.3.9" = { 44 - name = "wrench"; 45 - packageName = "wrench"; 46 - version = "1.3.9"; 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/wrench/-/wrench-1.3.9.tgz"; 49 - sha1 = "6f13ec35145317eb292ca5f6531391b244111411"; 50 }; 51 }; 52 - "xmldom-0.1.19" = { 53 - name = "xmldom"; 54 - packageName = "xmldom"; 55 - version = "0.1.19"; 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz"; 58 - sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc"; 59 }; 60 }; 61 "jsonlint-1.5.1" = { ··· 67 sha1 = "3cf436dcc9f3477ef3d7fa55a5bdf6d893f1c6c6"; 68 }; 69 }; 70 - "uglify-js-2.6.1" = { 71 - name = "uglify-js"; 72 - packageName = "uglify-js"; 73 - version = "2.6.1"; 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.1.tgz"; 76 - sha1 = "edbbe1888ba3525ded3a7bf836b30b3405d3161b"; 77 }; 78 }; 79 "resolve-1.4.0" = { ··· 85 sha512 = "3aygixvrv5l6jm5n2dfgzyx4z86l3q2v7c2rln6znai3877q0r5ajlxgdaj4qm9h70yp7grmg9kmvr77ww2zckc7bm22zzfldafqvk9"; 86 }; 87 }; 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 "source-map-0.1.9" = { 98 name = "source-map"; 99 packageName = "source-map"; ··· 101 src = fetchurl { 102 url = "https://registry.npmjs.org/source-map/-/source-map-0.1.9.tgz"; 103 sha1 = "250224e4e9ef7e91f4cad76cae714b90f6218599"; 104 }; 105 }; 106 "xml2tss-0.0.5" = { ··· 112 sha1 = "d76a310d6b8a7ba9e4825bb3d43f5427e9fe8f6e"; 113 }; 114 }; 115 - "moment-2.17.1" = { 116 - name = "moment"; 117 - packageName = "moment"; 118 - version = "2.17.1"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/moment/-/moment-2.17.1.tgz"; 121 - sha1 = "fed9506063f36b10f066c8b59a144d7faebe1d82"; 122 }; 123 }; 124 - "node.extend-1.0.10" = { 125 - name = "node.extend"; 126 - packageName = "node.extend"; 127 - version = "1.0.10"; 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/node.extend/-/node.extend-1.0.10.tgz"; 130 - sha1 = "3269bddf81c54535f408abc784c32b0d2bd55f6f"; 131 }; 132 }; 133 - "nomnom-1.8.1" = { 134 - name = "nomnom"; 135 - packageName = "nomnom"; 136 - version = "1.8.1"; 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz"; 139 - sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"; 140 }; 141 }; 142 - "JSV-4.0.2" = { 143 - name = "JSV"; 144 - packageName = "JSV"; 145 - version = "4.0.2"; 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz"; 148 - sha1 = "d077f6825571f82132f9dffaed587b4029feff57"; 149 }; 150 }; 151 - "underscore-1.6.0" = { 152 - name = "underscore"; 153 - packageName = "underscore"; 154 - version = "1.6.0"; 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; 157 - sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; 158 }; 159 }; 160 - "chalk-0.4.0" = { 161 name = "chalk"; 162 packageName = "chalk"; 163 - version = "0.4.0"; 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; 166 - sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; 167 }; 168 }; 169 - "has-color-0.1.7" = { 170 - name = "has-color"; 171 - packageName = "has-color"; 172 - version = "0.1.7"; 173 src = fetchurl { 174 - url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz"; 175 - sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f"; 176 }; 177 }; 178 - "ansi-styles-1.0.0" = { 179 name = "ansi-styles"; 180 packageName = "ansi-styles"; 181 - version = "1.0.0"; 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz"; 184 - sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178"; 185 }; 186 }; 187 - "strip-ansi-0.1.1" = { 188 name = "strip-ansi"; 189 packageName = "strip-ansi"; 190 - version = "0.1.1"; 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; 193 - sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; 194 }; 195 }; 196 - "async-0.2.10" = { 197 - name = "async"; 198 - packageName = "async"; 199 - version = "0.2.10"; 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz"; 202 - sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1"; 203 }; 204 }; 205 - "source-map-0.5.7" = { 206 - name = "source-map"; 207 - packageName = "source-map"; 208 - version = "0.5.7"; 209 src = fetchurl { 210 - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; 211 - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 212 }; 213 }; 214 - "uglify-to-browserify-1.0.2" = { 215 - name = "uglify-to-browserify"; 216 - packageName = "uglify-to-browserify"; 217 version = "1.0.2"; 218 src = fetchurl { 219 - url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz"; 220 - sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7"; 221 }; 222 }; 223 - "yargs-3.10.0" = { 224 - name = "yargs"; 225 - packageName = "yargs"; 226 - version = "3.10.0"; 227 src = fetchurl { 228 - url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; 229 - sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; 230 }; 231 }; 232 - "camelcase-1.2.1" = { 233 - name = "camelcase"; 234 - packageName = "camelcase"; 235 - version = "1.2.1"; 236 src = fetchurl { 237 - url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"; 238 - sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"; 239 }; 240 }; 241 - "cliui-2.1.0" = { 242 - name = "cliui"; 243 - packageName = "cliui"; 244 - version = "2.1.0"; 245 src = fetchurl { 246 - url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz"; 247 - sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1"; 248 }; 249 }; 250 - "decamelize-1.2.0" = { 251 - name = "decamelize"; 252 - packageName = "decamelize"; 253 - version = "1.2.0"; 254 src = fetchurl { 255 - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 256 - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 257 }; 258 }; 259 - "window-size-0.1.0" = { 260 - name = "window-size"; 261 - packageName = "window-size"; 262 - version = "0.1.0"; 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz"; 265 - sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; 266 }; 267 }; 268 - "center-align-0.1.3" = { 269 - name = "center-align"; 270 - packageName = "center-align"; 271 - version = "0.1.3"; 272 src = fetchurl { 273 - url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"; 274 - sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad"; 275 }; 276 }; 277 - "right-align-0.1.3" = { 278 - name = "right-align"; 279 - packageName = "right-align"; 280 - version = "0.1.3"; 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz"; 283 - sha1 = "61339b722fe6a3515689210d24e14c96148613ef"; 284 }; 285 }; 286 - "wordwrap-0.0.2" = { 287 - name = "wordwrap"; 288 - packageName = "wordwrap"; 289 - version = "0.0.2"; 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz"; 292 - sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; 293 }; 294 }; 295 - "align-text-0.1.4" = { 296 - name = "align-text"; 297 - packageName = "align-text"; 298 - version = "0.1.4"; 299 src = fetchurl { 300 - url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz"; 301 - sha1 = "0cd90a561093f35d0a99256c22b7069433fad117"; 302 }; 303 }; 304 - "lazy-cache-1.0.4" = { 305 - name = "lazy-cache"; 306 - packageName = "lazy-cache"; 307 - version = "1.0.4"; 308 src = fetchurl { 309 - url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz"; 310 - sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"; 311 }; 312 }; 313 - "kind-of-3.2.2" = { 314 - name = "kind-of"; 315 - packageName = "kind-of"; 316 - version = "3.2.2"; 317 src = fetchurl { 318 - url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"; 319 - sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; 320 }; 321 }; 322 - "longest-1.0.1" = { 323 - name = "longest"; 324 - packageName = "longest"; 325 version = "1.0.1"; 326 src = fetchurl { 327 - url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz"; 328 - sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; 329 }; 330 }; 331 - "repeat-string-1.6.1" = { 332 - name = "repeat-string"; 333 - packageName = "repeat-string"; 334 - version = "1.6.1"; 335 src = fetchurl { 336 - url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"; 337 - sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 338 }; 339 }; 340 - "is-buffer-1.1.5" = { 341 - name = "is-buffer"; 342 - packageName = "is-buffer"; 343 - version = "1.1.5"; 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz"; 346 - sha1 = "1f3b26ef613b214b88cbca23cc6c01d87961eecc"; 347 }; 348 }; 349 - "path-parse-1.0.5" = { 350 - name = "path-parse"; 351 - packageName = "path-parse"; 352 - version = "1.0.5"; 353 src = fetchurl { 354 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz"; 355 - sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"; 356 }; 357 }; 358 "array-unique-0.2.1" = { ··· 445 sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 446 }; 447 }; 448 "amdefine-1.0.1" = { 449 name = "amdefine"; 450 packageName = "amdefine"; ··· 454 sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5"; 455 }; 456 }; 457 "xml2js-0.2.8" = { 458 name = "xml2js"; 459 packageName = "xml2js"; ··· 470 src = fetchurl { 471 url = "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz"; 472 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 }; 483 }; 484 "adal-node-0.1.21" = { ··· 1012 sha1 = "be191c4fbdff2e208bda440933436af80e7425b9"; 1013 }; 1014 }; 1015 - "ms-rest-azure-2.3.0" = { 1016 name = "ms-rest-azure"; 1017 packageName = "ms-rest-azure"; 1018 - version = "2.3.0"; 1019 src = fetchurl { 1020 - url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.3.0.tgz"; 1021 - sha1 = "526b4c39a3c02e50913b92787a9e95ce833b37f1"; 1022 }; 1023 }; 1024 "node-forge-0.6.23" = { ··· 1181 src = fetchurl { 1182 url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz"; 1183 sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e"; 1184 }; 1185 }; 1186 "xml2js-0.1.14" = { ··· 1615 sha1 = "0e3c4f24a3f052b231b12d5049085a0a099be782"; 1616 }; 1617 }; 1618 - "@types/node-8.0.27" = { 1619 name = "@types/node"; 1620 packageName = "@types/node"; 1621 - version = "8.0.27"; 1622 src = fetchurl { 1623 - url = "https://registry.npmjs.org/@types/node/-/node-8.0.27.tgz"; 1624 - sha512 = "26y8ngdixrwyzyas9bbb4cq9gpb2mawnp4j94vi035hzajrskcp48nm90pcx1ma0gv5x8qkibskyjqpvmsn62x8qd7djzks63jrs8rj"; 1625 }; 1626 }; 1627 "@types/request-2.0.3" = { ··· 1640 src = fetchurl { 1641 url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.2.tgz"; 1642 sha512 = "2k89p1xsllidfwgic0qklzdp1lpvyzw22z7xlphii062jm6rh58xajz11r4lby49kghc5zrmmqrsi1mkmzm6ix8x3rhcrj1rnixhykx"; 1643 }; 1644 }; 1645 "is-stream-1.1.0" = { ··· 1714 sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0"; 1715 }; 1716 }; 1717 "deep-equal-1.0.1" = { 1718 name = "deep-equal"; 1719 packageName = "deep-equal"; ··· 1732 sha1 = "1d2b854158ec8169113c6cb7f6b6801e99e211d5"; 1733 }; 1734 }; 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 "ncp-0.4.2" = { 1745 name = "ncp"; 1746 packageName = "ncp"; ··· 1750 sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574"; 1751 }; 1752 }; 1753 - "rimraf-2.6.1" = { 1754 name = "rimraf"; 1755 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"; 1766 src = fetchurl { 1767 - url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; 1768 - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 1769 }; 1770 }; 1771 "glob-7.1.2" = { ··· 1795 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 1796 }; 1797 }; 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 "once-1.4.0" = { 1808 name = "once"; 1809 packageName = "once"; ··· 1811 src = fetchurl { 1812 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 1813 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 }; 1824 }; 1825 "wrappy-1.0.2" = { ··· 1831 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 1832 }; 1833 }; 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 "colors-0.6.2" = { 1862 name = "colors"; 1863 packageName = "colors"; ··· 2083 sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; 2084 }; 2085 }; 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 "commander-2.11.0" = { 2114 name = "commander"; 2115 packageName = "commander"; ··· 2137 sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 2138 }; 2139 }; 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 "generate-function-2.0.0" = { 2195 name = "generate-function"; 2196 packageName = "generate-function"; ··· 2551 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; 2552 }; 2553 }; 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 "async-1.0.0" = { 2564 name = "async"; 2565 packageName = "async"; ··· 2596 sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4"; 2597 }; 2598 }; 2599 - "bower-1.8.0" = { 2600 name = "bower"; 2601 packageName = "bower"; 2602 - version = "1.8.0"; 2603 src = fetchurl { 2604 - url = "https://registry.npmjs.org/bower/-/bower-1.8.0.tgz"; 2605 - sha1 = "55dbebef0ad9155382d9e9d3e497c1372345b44a"; 2606 }; 2607 }; 2608 "bower-endpoint-parser-0.2.1" = { ··· 2774 src = fetchurl { 2775 url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; 2776 sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7"; 2777 }; 2778 }; 2779 "loud-rejection-1.6.0" = { ··· 2992 sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; 2993 }; 2994 }; 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 "parse-json-2.2.0" = { 3005 name = "parse-json"; 3006 packageName = "parse-json"; ··· 3073 sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2"; 3074 }; 3075 }; 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 "get-stdin-4.0.1" = { 3104 name = "get-stdin"; 3105 packageName = "get-stdin"; ··· 3163 sha1 = "dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"; 3164 }; 3165 }; 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 "rimraf-2.2.8" = { 3194 name = "rimraf"; 3195 packageName = "rimraf"; ··· 3721 sha1 = "b5835739270cfe26acf632099fded2a07f209e5e"; 3722 }; 3723 }; 3724 - "pbkdf2-3.0.13" = { 3725 name = "pbkdf2"; 3726 packageName = "pbkdf2"; 3727 - version = "3.0.13"; 3728 src = fetchurl { 3729 - url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.13.tgz"; 3730 - sha512 = "3crgpf13g3zshm39jjfgnp4lfg5jilllwk6ixi07nzyf4yghmxrhrdmhsgr5jr855ma790a21hd4bcvpx8bv9h5irnk6xpy6728gl7r"; 3731 }; 3732 }; 3733 "public-encrypt-4.0.0" = { ··· 6232 sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e"; 6233 }; 6234 }; 6235 - "interpret-1.0.3" = { 6236 name = "interpret"; 6237 packageName = "interpret"; 6238 - version = "1.0.3"; 6239 src = fetchurl { 6240 - url = "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz"; 6241 - sha1 = "cbc35c62eeee73f19ab7b10a801511401afc0f90"; 6242 }; 6243 }; 6244 "rechoir-0.6.2" = { ··· 6367 sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; 6368 }; 6369 }; 6370 - "content-type-1.0.2" = { 6371 name = "content-type"; 6372 packageName = "content-type"; 6373 - version = "1.0.2"; 6374 src = fetchurl { 6375 - url = "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz"; 6376 - sha1 = "b7d113aee7a8dd27bd21133c4dc2529df1721eed"; 6377 }; 6378 }; 6379 "cookie-0.3.1" = { ··· 6421 sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 6422 }; 6423 }; 6424 - "etag-1.8.0" = { 6425 name = "etag"; 6426 packageName = "etag"; 6427 - version = "1.8.0"; 6428 src = fetchurl { 6429 - url = "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz"; 6430 - sha1 = "6f631aef336d6c46362b51764044ce216be3c051"; 6431 }; 6432 }; 6433 - "finalhandler-1.0.4" = { 6434 name = "finalhandler"; 6435 packageName = "finalhandler"; 6436 - version = "1.0.4"; 6437 src = fetchurl { 6438 - url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.4.tgz"; 6439 - sha512 = "2vbps6iw562i2zxd973z5mmbs8ggx3wbz4g1jqwvkjibiwrk9ym8bxcvvwnlmxqad92x120x5xz5nyfq68nd8akk355bkk0qjppzafp"; 6440 }; 6441 }; 6442 "fresh-0.5.0" = { ··· 6475 sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 6476 }; 6477 }; 6478 - "parseurl-1.3.1" = { 6479 name = "parseurl"; 6480 packageName = "parseurl"; 6481 - version = "1.3.1"; 6482 src = fetchurl { 6483 - url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz"; 6484 - sha1 = "c8ab8c9223ba34888aa64a297b28853bec18da56"; 6485 }; 6486 }; 6487 "path-to-regexp-0.1.7" = { ··· 6583 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 6584 }; 6585 }; 6586 - "forwarded-0.1.0" = { 6587 name = "forwarded"; 6588 packageName = "forwarded"; 6589 - version = "0.1.0"; 6590 src = fetchurl { 6591 - url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz"; 6592 - sha1 = "19ef9874c4ae1c297bcf078fde63a09b66a84363"; 6593 }; 6594 }; 6595 "ipaddr.js-1.4.0" = { ··· 6691 sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967"; 6692 }; 6693 }; 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 "builtins-1.0.3" = { 6704 name = "builtins"; 6705 packageName = "builtins"; ··· 6779 src = fetchurl { 6780 url = "https://registry.npmjs.org/char-spinner/-/char-spinner-1.0.1.tgz"; 6781 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 }; 6792 }; 6793 "chownr-1.0.1" = { ··· 8186 sha512 = "15lvjac4av3h7xmks8jgd56vryz5xb27r8xcpfwhfyr9dv305lms5llc1x6nx6nfvha873d4vg04nfi89aj4jkxplrnjiyc9kjf34hf"; 8187 }; 8188 }; 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 "jsonparse-0.0.6" = { 8199 name = "jsonparse"; 8200 packageName = "jsonparse"; ··· 8258 sha1 = "38f716b24c8cee07a262abc41c22c314e20e3869"; 8259 }; 8260 }; 8261 - "websocket-driver-0.6.5" = { 8262 name = "websocket-driver"; 8263 packageName = "websocket-driver"; 8264 - version = "0.6.5"; 8265 src = fetchurl { 8266 - url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz"; 8267 - sha1 = "5cb2556ceb85f4373c6d8238aa691c8454e13a36"; 8268 }; 8269 }; 8270 - "websocket-extensions-0.1.1" = { 8271 name = "websocket-extensions"; 8272 packageName = "websocket-extensions"; 8273 - version = "0.1.1"; 8274 src = fetchurl { 8275 - url = "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.1.tgz"; 8276 - sha1 = "76899499c184b6ef754377c2dbb0cd6cb55d29e7"; 8277 }; 8278 }; 8279 "native-dns-cache-git+https://github.com/okTurtles/native-dns-cache.git#8714196bb9223cc9a4064a4fddf9e82ec50b7d4d" = { ··· 8675 sha1 = "9500635e257945d6feede185f5d7a24773455b17"; 8676 }; 8677 }; 8678 - "pull-stream-3.6.0" = { 8679 name = "pull-stream"; 8680 packageName = "pull-stream"; 8681 - version = "3.6.0"; 8682 src = fetchurl { 8683 - url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.0.tgz"; 8684 - sha1 = "59d033a6815d4e3097d47c3d2b1893a9e58a2351"; 8685 }; 8686 }; 8687 "typewiselite-1.0.0" = { ··· 8846 sha1 = "2efa54c3b1cbaba9b94aee2e5914b0be57fbb749"; 8847 }; 8848 }; 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 "nan-2.1.0" = { 8859 name = "nan"; 8860 packageName = "nan"; ··· 8918 sha1 = "cac328f7bee45730d404b692203fcb590e172d5e"; 8919 }; 8920 }; 8921 - "aws-sdk-2.110.0" = { 8922 name = "aws-sdk"; 8923 packageName = "aws-sdk"; 8924 - version = "2.110.0"; 8925 src = fetchurl { 8926 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.110.0.tgz"; 8927 - sha1 = "ef3a88b08e8100d984c307108e0617a56eb74fdb"; 8928 }; 8929 }; 8930 - "request-2.81.0" = { 8931 name = "request"; 8932 packageName = "request"; 8933 - version = "2.81.0"; 8934 src = fetchurl { 8935 - url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; 8936 - sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; 8937 }; 8938 }; 8939 "crypto-browserify-1.0.9" = { ··· 8990 sha1 = "aa58a3041a066f90eaa16c2f5389ff19f3f461a5"; 8991 }; 8992 }; 8993 "caseless-0.12.0" = { 8994 name = "caseless"; 8995 packageName = "caseless"; ··· 8999 sha1 = "1b681c21ff84033c826543090689420d187151dc"; 9000 }; 9001 }; 9002 - "har-validator-4.2.1" = { 9003 name = "har-validator"; 9004 packageName = "har-validator"; 9005 - version = "4.2.1"; 9006 src = fetchurl { 9007 - url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; 9008 - sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; 9009 }; 9010 }; 9011 - "performance-now-0.2.0" = { 9012 name = "performance-now"; 9013 packageName = "performance-now"; 9014 - version = "0.2.0"; 9015 src = fetchurl { 9016 - url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; 9017 - sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; 9018 }; 9019 }; 9020 - "qs-6.4.0" = { 9021 name = "qs"; 9022 packageName = "qs"; 9023 - version = "6.4.0"; 9024 src = fetchurl { 9025 - url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; 9026 - sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; 9027 }; 9028 }; 9029 "tunnel-agent-0.6.0" = { ··· 9035 sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; 9036 }; 9037 }; 9038 - "ajv-4.11.8" = { 9039 name = "ajv"; 9040 packageName = "ajv"; 9041 - version = "4.11.8"; 9042 src = fetchurl { 9043 - url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; 9044 - sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; 9045 }; 9046 }; 9047 - "har-schema-1.0.5" = { 9048 name = "har-schema"; 9049 packageName = "har-schema"; 9050 - version = "1.0.5"; 9051 src = fetchurl { 9052 - url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; 9053 - sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; 9054 }; 9055 }; 9056 "co-4.6.0" = { ··· 9062 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; 9063 }; 9064 }; 9065 "json-stable-stringify-1.0.1" = { 9066 name = "json-stable-stringify"; 9067 packageName = "json-stable-stringify"; ··· 9071 sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af"; 9072 }; 9073 }; 9074 "auto-bind-1.1.0" = { 9075 name = "auto-bind"; 9076 packageName = "auto-bind"; ··· 9089 sha1 = "51b17574fc682588e2dd295cfa6e6aa109eab5ee"; 9090 }; 9091 }; 9092 - "conf-1.2.0" = { 9093 name = "conf"; 9094 packageName = "conf"; 9095 - version = "1.2.0"; 9096 src = fetchurl { 9097 - url = "https://registry.npmjs.org/conf/-/conf-1.2.0.tgz"; 9098 - sha512 = "1sxfpzqlcpjj6cndz2h78xa9y8z5k9hw7nb7d1whd0044l78b2dqs93k9bfksqbn6s7vp472rk4w3qgggn58mraycs143pr6hh1zszl"; 9099 }; 9100 }; 9101 "got-7.1.0" = { ··· 9458 sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 9459 }; 9460 }; 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 "babel-plugin-transform-es2015-destructuring-6.23.0" = { 9471 name = "babel-plugin-transform-es2015-destructuring"; 9472 packageName = "babel-plugin-transform-es2015-destructuring"; ··· 9521 sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; 9522 }; 9523 }; 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 "babel-plugin-syntax-object-rest-spread-6.13.0" = { 9759 name = "babel-plugin-syntax-object-rest-spread"; 9760 packageName = "babel-plugin-syntax-object-rest-spread"; ··· 9989 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 9990 }; 9991 }; 9992 - "fbjs-0.8.14" = { 9993 name = "fbjs"; 9994 packageName = "fbjs"; 9995 - version = "0.8.14"; 9996 src = fetchurl { 9997 - url = "https://registry.npmjs.org/fbjs/-/fbjs-0.8.14.tgz"; 9998 - sha1 = "d1dbe2be254c35a91e09f31f9cd50a40b2a0ed1c"; 9999 }; 10000 }; 10001 "core-js-1.2.7" = { ··· 10034 sha1 = "110d53fa4c3f326c121292bbeac904d2e03387ca"; 10035 }; 10036 }; 10037 - "node-fetch-1.7.2" = { 10038 name = "node-fetch"; 10039 packageName = "node-fetch"; 10040 - version = "1.7.2"; 10041 src = fetchurl { 10042 - url = "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.2.tgz"; 10043 - sha512 = "250k1k343w8g1ndd16h1lqcdvp989id6agsppfqi9a6lcqk89ga56xjz78hhy1dqn86vha8n8s551pwpyd1n87mkw4a7143djmm95n5"; 10044 }; 10045 }; 10046 "whatwg-fetch-2.0.3" = { ··· 10061 sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb"; 10062 }; 10063 }; 10064 - "iconv-lite-0.4.18" = { 10065 name = "iconv-lite"; 10066 packageName = "iconv-lite"; 10067 - version = "0.4.18"; 10068 src = fetchurl { 10069 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz"; 10070 - sha512 = "2l97vd6kax8syr9aggcqhiyhd3b2rf506wdq6wapfrc74qwpdzqf2a3891kq9ri3g5sdzayph2sz4zkr8kbbps58z9h2lvpk115kgdj"; 10071 }; 10072 }; 10073 "unicode-emoji-modifier-base-1.0.0" = { ··· 10079 sha1 = "dbbd5b54ba30f287e2a8d5a249da6c0cef369459"; 10080 }; 10081 }; 10082 - "ajv-5.2.2" = { 10083 - name = "ajv"; 10084 - packageName = "ajv"; 10085 - version = "5.2.2"; 10086 src = fetchurl { 10087 - url = "https://registry.npmjs.org/ajv/-/ajv-5.2.2.tgz"; 10088 - sha1 = "47c68d69e86f5d953103b0074a9430dc63da5e39"; 10089 }; 10090 }; 10091 "doctrine-2.0.0" = { ··· 10106 sha1 = "3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"; 10107 }; 10108 }; 10109 - "espree-3.5.0" = { 10110 name = "espree"; 10111 packageName = "espree"; 10112 - version = "3.5.0"; 10113 src = fetchurl { 10114 - url = "https://registry.npmjs.org/espree/-/espree-3.5.0.tgz"; 10115 - sha1 = "98358625bdd055861ea27e2867ea729faf463d8d"; 10116 }; 10117 }; 10118 "esquery-1.0.0" = { ··· 10160 sha512 = "07qdg1b3fwg8b7zwq83rljcx2h0ybq8s43h5xkvsr252qij7ib2gcjamqsb25zv1nvxm94yrvf4fl41s1kyms8zhr86cspwcbggvc94"; 10161 }; 10162 }; 10163 - "inquirer-3.2.3" = { 10164 name = "inquirer"; 10165 packageName = "inquirer"; 10166 - version = "3.2.3"; 10167 src = fetchurl { 10168 - url = "https://registry.npmjs.org/inquirer/-/inquirer-3.2.3.tgz"; 10169 - sha512 = "1dncd0lws3fdvpgxzhi7y4lcfijrnhphn9bzxlhdl3c2aifqff1v6c6i85niwg9fim26ja1x0d6rfgy5g1dgqyh86g363d955pcmk85"; 10170 }; 10171 }; 10172 "is-resolvable-1.0.0" = { ··· 10178 sha1 = "8df57c61ea2e3c501408d100fb013cf8d6e0cc62"; 10179 }; 10180 }; 10181 - "js-yaml-3.9.1" = { 10182 name = "js-yaml"; 10183 packageName = "js-yaml"; 10184 - version = "3.9.1"; 10185 src = fetchurl { 10186 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.1.tgz"; 10187 - sha512 = "31wxw267vdf4nnjpksnzcb4i603366sjrw7g08bkxi3cwlrfl67458v7rvj72vbxcycq43z4ldkrfvqjrsvrjqrb2kfzmabpzghddq9"; 10188 }; 10189 }; 10190 "levn-0.3.0" = { ··· 10214 sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64"; 10215 }; 10216 }; 10217 - "pluralize-4.0.0" = { 10218 name = "pluralize"; 10219 packageName = "pluralize"; 10220 - version = "4.0.0"; 10221 src = fetchurl { 10222 - url = "https://registry.npmjs.org/pluralize/-/pluralize-4.0.0.tgz"; 10223 - sha1 = "59b708c1c0190a2f692f1c7618c446b052fd1762"; 10224 }; 10225 }; 10226 "progress-2.0.0" = { ··· 10248 src = fetchurl { 10249 url = "https://registry.npmjs.org/table/-/table-4.0.1.tgz"; 10250 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 }; 10270 }; 10271 "esrecurse-4.2.0" = { ··· 10385 sha1 = "fc06e5a1683fbda13de667aff717bbc10a48f37f"; 10386 }; 10387 }; 10388 "cli-width-2.2.0" = { 10389 name = "cli-width"; 10390 packageName = "cli-width"; ··· 10394 sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; 10395 }; 10396 }; 10397 - "external-editor-2.0.4" = { 10398 name = "external-editor"; 10399 packageName = "external-editor"; 10400 - version = "2.0.4"; 10401 src = fetchurl { 10402 - url = "https://registry.npmjs.org/external-editor/-/external-editor-2.0.4.tgz"; 10403 - sha1 = "1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972"; 10404 }; 10405 }; 10406 "figures-2.0.0" = { ··· 10448 sha512 = "3c44v9rz6j4z6i7gj2v3wmfcqv5i47psysgd1p4jcgz114vfk99fif1n1r08jbsdkp4g3smv1wx7x4ikwa7q9dp5i1bc77la17s2kdw"; 10449 }; 10450 }; 10451 - "tmp-0.0.31" = { 10452 name = "tmp"; 10453 packageName = "tmp"; 10454 - version = "0.0.31"; 10455 src = fetchurl { 10456 - url = "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz"; 10457 - sha1 = "8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7"; 10458 }; 10459 }; 10460 "is-promise-2.1.0" = { ··· 10565 sha1 = "afab96262910a7f33c19a5775825c69f34e350ca"; 10566 }; 10567 }; 10568 "ajv-keywords-1.5.1" = { 10569 name = "ajv-keywords"; 10570 packageName = "ajv-keywords"; ··· 10583 sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; 10584 }; 10585 }; 10586 - "eslint-4.6.1" = { 10587 name = "eslint"; 10588 packageName = "eslint"; 10589 - version = "4.6.1"; 10590 src = fetchurl { 10591 - url = "https://registry.npmjs.org/eslint/-/eslint-4.6.1.tgz"; 10592 - sha1 = "ddc7fc7fd70bf93205b0b3449bb16a1e9e7d4950"; 10593 }; 10594 }; 10595 "supports-color-3.2.3" = { ··· 10718 sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; 10719 }; 10720 }; 10721 "request-progress-2.0.1" = { 10722 name = "request-progress"; 10723 packageName = "request-progress"; ··· 10781 sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50"; 10782 }; 10783 }; 10784 "throttleit-1.0.0" = { 10785 name = "throttleit"; 10786 packageName = "throttleit"; ··· 10806 src = fetchurl { 10807 url = "https://registry.npmjs.org/node-phantom-simple/-/node-phantom-simple-2.2.4.tgz"; 10808 sha1 = "4fc4effbb02f241fb5082bd4fbab398e4aecb64d"; 10809 }; 10810 }; 10811 "glob-3.2.11" = { ··· 11103 src = fetchurl { 11104 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"; 11105 sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0"; 11106 }; 11107 }; 11108 "object.omit-2.0.1" = { ··· 11204 sha512 = "2is2kipfnz3hl4yxgqk07rll6956cq3zzf9cddai3f0lij5acq76v98qv14qkpljh1pqfsyb8p69xa9cyaww6p0j91s4vc9zj6594hg"; 11205 }; 11206 }; 11207 "is-number-3.0.0" = { 11208 name = "is-number"; 11209 packageName = "is-number"; ··· 11321 sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"; 11322 }; 11323 }; 11324 - "node-pre-gyp-0.6.36" = { 11325 name = "node-pre-gyp"; 11326 packageName = "node-pre-gyp"; 11327 - version = "0.6.36"; 11328 src = fetchurl { 11329 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; 11330 - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; 11331 }; 11332 }; 11333 "npmlog-4.1.2" = { ··· 11337 src = fetchurl { 11338 url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"; 11339 sha512 = "2967mavp7zw0aawf5fadqf4pmn7vy5gya1yx2s9wwppvivhd9q4mpdnszfqvd7p6yks649bwbpj8iviw86g0hpp4f93d5ca7dmjmrfs"; 11340 }; 11341 }; 11342 "tar-pack-3.4.0" = { ··· 11375 sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 11376 }; 11377 }; 11378 - "aproba-1.1.2" = { 11379 name = "aproba"; 11380 packageName = "aproba"; 11381 - version = "1.1.2"; 11382 src = fetchurl { 11383 - url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz"; 11384 - sha512 = "0zmgm7vf91vxk5hdvkwhfnzjxz9r6hwpn8dlbpasaax8rxx7z1qqdmh8l631vawj7y1bkpsd0v0mhjh9agggkjl72f3vlnfhy61m5k6"; 11385 }; 11386 }; 11387 "string-width-1.0.2" = { ··· 11402 sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a"; 11403 }; 11404 }; 11405 "event-stream-0.5.3" = { 11406 name = "event-stream"; 11407 packageName = "event-stream"; ··· 11472 src = fetchurl { 11473 url = "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz"; 11474 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 }; 11485 }; 11486 "lodash.groupby-4.6.0" = { ··· 11781 sha1 = "c90941ad59e4273328923074d2cf2e7cbc6ec0d9"; 11782 }; 11783 }; 11784 "acorn-1.2.2" = { 11785 name = "acorn"; 11786 packageName = "acorn"; ··· 11916 sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; 11917 }; 11918 }; 11919 - "dateformat-2.0.0" = { 11920 name = "dateformat"; 11921 packageName = "dateformat"; 11922 - version = "2.0.0"; 11923 src = fetchurl { 11924 - url = "https://registry.npmjs.org/dateformat/-/dateformat-2.0.0.tgz"; 11925 - sha1 = "2743e3abb5c3fc2462e527dca445e04e9f4dee17"; 11926 }; 11927 }; 11928 "fancy-log-1.3.0" = { ··· 12771 sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"; 12772 }; 12773 }; 12774 - "@ionic/cli-utils-1.9.2" = { 12775 name = "@ionic/cli-utils"; 12776 packageName = "@ionic/cli-utils"; 12777 - version = "1.9.2"; 12778 src = fetchurl { 12779 - url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-1.9.2.tgz"; 12780 - sha512 = "0swmlwdlxhnfb2bvkzg5vw9jpmgccp0frivlyiadakn0b6v2h9g0nlmfnmfk7sy8hazxlpd8z986i94mnkc53j5c7dqlmjq9l1ff29x"; 12781 }; 12782 }; 12783 "opn-5.1.0" = { ··· 12807 sha1 = "bc8004164691923a79fe8378bbeb3da2017538ec"; 12808 }; 12809 }; 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 "archiver-2.0.3" = { 12820 name = "archiver"; 12821 packageName = "archiver"; ··· 12825 sha1 = "b4360bb584af1437991942716f21d7c523d1dbbd"; 12826 }; 12827 }; 12828 "ci-info-1.1.1" = { 12829 name = "ci-info"; 12830 packageName = "ci-info"; ··· 12897 sha512 = "1xd3zsk02nck4y601rn98n8cicrphaw5bdix278mk1yizmjv9s0wpa6akcqggd7d99c55s3byf4ylqdxkshyfsfnfx7lvwbmq2b3siw"; 12898 }; 12899 }; 12900 - "ssh-config-1.1.0" = { 12901 name = "ssh-config"; 12902 packageName = "ssh-config"; 12903 - version = "1.1.0"; 12904 src = fetchurl { 12905 - url = "https://registry.npmjs.org/ssh-config/-/ssh-config-1.1.0.tgz"; 12906 - sha1 = "bbc7f92204a385b5dececec8f8b63be9c125079b"; 12907 }; 12908 }; 12909 "superagent-3.6.0" = { ··· 12924 sha512 = "2b8y1xdv7szw0hvad64rghp2zdahs6qhx0k79c0s9xa0a35zbcrb9b9gywixhcxqi1c9ab7ah8ibra22k8baakh7rvmhf904d559g32"; 12925 }; 12926 }; 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"; 12949 src = fetchurl { 12950 - url = "https://registry.npmjs.org/@types/q/-/q-0.0.37.tgz"; 12951 - sha512 = "1jsz2sb10m3vshfy9k9k7zkmzcnlafp76ivzp04yf9xda3h7kv75vdxf82lfd17jzfwlm0n8cp1a4vkr43wcxsaj7zwqk6cbiglccdy"; 12952 }; 12953 }; 12954 "archiver-utils-1.3.0" = { ··· 13023 sha1 = "9da1e980e3bd44fc5c93bf5ab3da3378d85e466b"; 13024 }; 13025 }; 13026 "sax-1.1.4" = { 13027 name = "sax"; 13028 packageName = "sax"; ··· 13185 sha1 = "3569ede8ba34315fab99c3e92cb04c7220de1fa8"; 13186 }; 13187 }; 13188 "is-wsl-1.1.0" = { 13189 name = "is-wsl"; 13190 packageName = "is-wsl"; ··· 13302 sha1 = "30a3989642ee3e8ea06d10c2b9f9e046d424d8ed"; 13303 }; 13304 }; 13305 - "mz-2.6.0" = { 13306 name = "mz"; 13307 packageName = "mz"; 13308 - version = "2.6.0"; 13309 src = fetchurl { 13310 - url = "https://registry.npmjs.org/mz/-/mz-2.6.0.tgz"; 13311 - sha1 = "c8b8521d958df0a4f2768025db69c719ee4ef1ce"; 13312 }; 13313 }; 13314 "object-hash-1.1.8" = { ··· 13356 sha1 = "3d38321828231e434f287514959c37a82b629f42"; 13357 }; 13358 }; 13359 - "vscode-jsonrpc-3.3.1" = { 13360 name = "vscode-jsonrpc"; 13361 packageName = "vscode-jsonrpc"; 13362 - version = "3.3.1"; 13363 src = fetchurl { 13364 - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.3.1.tgz"; 13365 - sha512 = "1dwznr02qr6wd7886k3i7y3vxgzqdm14gc5vs892vrc8azhh6hl79bvl5lgc05004lzqbazj9p7vdkbms62f1iys92h5w1xpvdldfc8"; 13366 }; 13367 }; 13368 - "vscode-languageserver-3.3.0" = { 13369 name = "vscode-languageserver"; 13370 packageName = "vscode-languageserver"; 13371 - version = "3.3.0"; 13372 src = fetchurl { 13373 - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.3.0.tgz"; 13374 - sha512 = "380fi37ifwdgndnglvymyrb844aybpm5mjpwmq4p3dm1b93iqdfr00pr2b692d15k5hn9x82h98zw0bs0k7287pwdvdkv3v75pc92zi"; 13375 }; 13376 }; 13377 - "vscode-languageserver-types-3.3.0" = { 13378 name = "vscode-languageserver-types"; 13379 packageName = "vscode-languageserver-types"; 13380 - version = "3.3.0"; 13381 src = fetchurl { 13382 - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.3.0.tgz"; 13383 - sha512 = "1xjiay30jyp6sj9nq55zwjmxyq5ajcdrv4bw9ypkplv7mg57h4skiqvcsd6wbizidpx3xanqmnl04l66491fmlrwijn9ph3rsa044z4"; 13384 }; 13385 }; 13386 "symbol-observable-1.0.4" = { ··· 13527 sha1 = "e69e38a1babe969b0108207978b9f62b88604839"; 13528 }; 13529 }; 13530 "when-3.4.6" = { 13531 name = "when"; 13532 packageName = "when"; ··· 13608 sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa"; 13609 }; 13610 }; 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 "punycode-2.1.0" = { 13621 name = "punycode"; 13622 packageName = "punycode"; ··· 13624 src = fetchurl { 13625 url = "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz"; 13626 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 }; 13637 }; 13638 "connect-pause-0.1.1" = { ··· 13761 sha1 = "782ec21ef403345f830a808ca3d513af56065208"; 13762 }; 13763 }; 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 "path-to-regexp-1.7.0" = { 13801 name = "path-to-regexp"; 13802 packageName = "path-to-regexp"; ··· 14076 sha1 = "458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6"; 14077 }; 14078 }; 14079 - "connect-3.6.3" = { 14080 name = "connect"; 14081 packageName = "connect"; 14082 - version = "3.6.3"; 14083 src = fetchurl { 14084 - url = "https://registry.npmjs.org/connect/-/connect-3.6.3.tgz"; 14085 - sha512 = "2fkfixwv0fqqxw5rhmzrczj8ayxccwnxwkgyv4w8sxnkz52sl6dsx2nirg1vryxxqdlwph4ag9vc17yzzydmzshc73gpi6m12m9kd0q"; 14086 }; 14087 }; 14088 "di-0.0.1" = { ··· 14166 sha1 = "cf593ef4f2d175875e8bb658ea92e18a4fd06d8e"; 14167 }; 14168 }; 14169 "custom-event-1.0.1" = { 14170 name = "custom-event"; 14171 packageName = "custom-event"; ··· 14850 sha1 = "adfeace2e4fb3098058014d08c072dcc59758774"; 14851 }; 14852 }; 14853 "iconv-lite-0.4.13" = { 14854 name = "iconv-lite"; 14855 packageName = "iconv-lite"; ··· 15084 sha1 = "d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"; 15085 }; 15086 }; 15087 - "fs-extra-4.0.1" = { 15088 name = "fs-extra"; 15089 packageName = "fs-extra"; 15090 - version = "4.0.1"; 15091 src = fetchurl { 15092 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.1.tgz"; 15093 - sha1 = "7fc0c6c8957f983f57f306a24e5b9ddd8d0dd880"; 15094 }; 15095 }; 15096 "get-port-3.2.0" = { ··· 15507 sha1 = "41d045f3851a5ea88f03f24ca1c6178114464b9b"; 15508 }; 15509 }; 15510 - "jsonfile-3.0.1" = { 15511 name = "jsonfile"; 15512 packageName = "jsonfile"; 15513 - version = "3.0.1"; 15514 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"; 15526 }; 15527 }; 15528 "is-glob-3.1.0" = { ··· 15876 sha1 = "7ed50d5e0f9a9fb0a573379259f2a77458d50192"; 15877 }; 15878 }; 15879 - "github-slugger-1.1.3" = { 15880 name = "github-slugger"; 15881 packageName = "github-slugger"; 15882 - version = "1.1.3"; 15883 src = fetchurl { 15884 - url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.1.3.tgz"; 15885 - sha1 = "314a6e759a18c2b0cc5760d512ccbab549c549a7"; 15886 }; 15887 }; 15888 "innertext-1.0.2" = { ··· 16020 sha1 = "945cfadd66521eaf8f7c84913d377d7b15f24e31"; 16021 }; 16022 }; 16023 "serve-index-1.9.0" = { 16024 name = "serve-index"; 16025 packageName = "serve-index"; ··· 16072 src = fetchurl { 16073 url = "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.0.0.tgz"; 16074 sha1 = "1c0824150481bc7a01d49e98f1ec668d82412f3b"; 16075 }; 16076 }; 16077 "batch-0.6.1" = { ··· 16236 sha1 = "0ea7743715db8d8de2c5ede1775e1b45ac85c02f"; 16237 }; 16238 }; 16239 "lodash.create-3.1.1" = { 16240 name = "lodash.create"; 16241 packageName = "lodash.create"; ··· 16434 sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4"; 16435 }; 16436 }; 16437 - "serve-favicon-2.4.3" = { 16438 name = "serve-favicon"; 16439 packageName = "serve-favicon"; 16440 - version = "2.4.3"; 16441 src = fetchurl { 16442 - url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.3.tgz"; 16443 - sha1 = "5986b17b0502642b641c21f818b1acce32025d23"; 16444 }; 16445 }; 16446 "strong-data-uri-1.0.4" = { ··· 16551 sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0"; 16552 }; 16553 }; 16554 "truncate-1.0.5" = { 16555 name = "truncate"; 16556 packageName = "truncate"; ··· 16749 sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97"; 16750 }; 16751 }; 16752 "cheerio-0.22.0" = { 16753 name = "cheerio"; 16754 packageName = "cheerio"; ··· 16920 sha1 = "4f378b678b92d16dbbd233a6c706520093e561ba"; 16921 }; 16922 }; 16923 "sentiment-2.1.0" = { 16924 name = "sentiment"; 16925 packageName = "sentiment"; ··· 16983 sha1 = "52c074f42a32140132baea108d42cbcd0ef397d2"; 16984 }; 16985 }; 16986 - "node-red-node-rbe-0.1.11" = { 16987 name = "node-red-node-rbe"; 16988 packageName = "node-red-node-rbe"; 16989 - version = "0.1.11"; 16990 src = fetchurl { 16991 - url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.1.11.tgz"; 16992 - sha1 = "a670c1542a6eaf5e06db45490c2a7edf8a9f70b6"; 16993 }; 16994 }; 16995 "bcrypt-1.0.3" = { ··· 17001 sha512 = "1zfn87155w6q9fsv5ls3gxwih7yvarrh16kzpfrpppblzpmp1cy9gjkknsf9lkixacza39h51jd7varqfg19w3qkdic62zpirv86755"; 17002 }; 17003 }; 17004 "css-select-1.2.0" = { 17005 name = "css-select"; 17006 packageName = "css-select"; ··· 17361 sha1 = "70c375805b9e3105e899ee8dbdd6a9aa108f407b"; 17362 }; 17363 }; 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 "append-field-0.1.0" = { 17374 name = "append-field"; 17375 packageName = "append-field"; ··· 17649 sha1 = "e4ff34e6c95fdfb5aecc08de6596f43605a7db45"; 17650 }; 17651 }; 17652 "mongoose-3.6.7" = { 17653 name = "mongoose"; 17654 packageName = "mongoose"; ··· 17908 src = fetchurl { 17909 url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz"; 17910 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 }; 17921 }; 17922 "qs-0.5.1" = { ··· 18243 sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"; 18244 }; 18245 }; 18246 "cacache-9.2.9" = { 18247 name = "cacache"; 18248 packageName = "cacache"; ··· 18369 sha512 = "0iapgirmdb46ia3apm6fsb9qv9c0hi4k9jflrxlgnrm0jhliqgas49lmpz06xafncx1sxgjngl0fw3gr472c7kapzdvpivf0fp5miqa"; 18370 }; 18371 }; 18372 - "npm-packlist-1.1.8" = { 18373 name = "npm-packlist"; 18374 packageName = "npm-packlist"; 18375 - version = "1.1.8"; 18376 src = fetchurl { 18377 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.8.tgz"; 18378 - sha512 = "3wbyrf8k8ziygg8lyaj5v0kfpw9mhz4an8hqznapf7n0g2ik02shn91607274zvvayl5zcgmfkf17yy4vgz67lsdjmhzwi8rmrzapv4"; 18379 }; 18380 }; 18381 "npm-user-validate-1.0.0" = { ··· 18459 sha512 = "2lrlysxfbyzywla6i1q07xncmw30w1icgq18c4bra25dl6wvcd3mxg1lqbf88w5h7mqnf98j8ll657wnqwjq9rwd7pbmd9i11964x0c"; 18460 }; 18461 }; 18462 "lodash._baseindexof-3.1.0" = { 18463 name = "lodash._baseindexof"; 18464 packageName = "lodash._baseindexof"; ··· 18666 sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw"; 18667 }; 18668 }; 18669 - "socks-proxy-agent-3.0.0" = { 18670 name = "socks-proxy-agent"; 18671 packageName = "socks-proxy-agent"; 18672 - version = "3.0.0"; 18673 src = fetchurl { 18674 - url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.0.tgz"; 18675 - sha512 = "3zn9cz2ry5m1akapj7hvhgkxfq7ffwynia46lmwipsw2jk5sv8dvs32dc4hfx3xvp34i1jff1bg870a1xnknsgk5dl021jd4gwi75v0"; 18676 }; 18677 }; 18678 "humanize-ms-1.2.1" = { ··· 18936 sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"; 18937 }; 18938 }; 18939 - "fast-diff-1.1.1" = { 18940 name = "fast-diff"; 18941 packageName = "fast-diff"; 18942 - version = "1.1.1"; 18943 src = fetchurl { 18944 - url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.1.tgz"; 18945 - sha1 = "0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b"; 18946 }; 18947 }; 18948 "node-alias-1.0.4" = { ··· 18990 sha1 = "27d92fec34d27cfa42707d3b40d025ae9855f2df"; 18991 }; 18992 }; 18993 - "snyk-1.40.2" = { 18994 name = "snyk"; 18995 packageName = "snyk"; 18996 - version = "1.40.2"; 18997 src = fetchurl { 18998 - url = "https://registry.npmjs.org/snyk/-/snyk-1.40.2.tgz"; 18999 - sha1 = "0084cdb969f0ee0282f5b1de562434d916c732c5"; 19000 }; 19001 }; 19002 "spawn-please-0.3.0" = { ··· 19161 sha1 = "ebe3a0948571bcc46ccccbe2f9bcec251e984bd0"; 19162 }; 19163 }; 19164 "snyk-config-1.0.1" = { 19165 name = "snyk-config"; 19166 packageName = "snyk-config"; ··· 19170 sha1 = "f27aec2498b24027ac719214026521591111508f"; 19171 }; 19172 }; 19173 - "snyk-go-plugin-1.1.3" = { 19174 name = "snyk-go-plugin"; 19175 packageName = "snyk-go-plugin"; 19176 - version = "1.1.3"; 19177 src = fetchurl { 19178 - url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.1.3.tgz"; 19179 - sha512 = "2yxrc9kh1i9xxa012g3gwx5hdv0df0d0jkqh5h9bm6lkjs567kyh116bfvk6y3gj2cy39a85gvm0dd9gc92fy8i6if8d0zgh9w5wj2i"; 19180 }; 19181 }; 19182 "snyk-gradle-plugin-1.1.2" = { ··· 19197 sha1 = "31d5080fb1c0dfd6fa8567dd34a523fd02bf1fca"; 19198 }; 19199 }; 19200 - "snyk-mvn-plugin-1.0.1" = { 19201 name = "snyk-mvn-plugin"; 19202 packageName = "snyk-mvn-plugin"; 19203 - version = "1.0.1"; 19204 src = fetchurl { 19205 - url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-1.0.1.tgz"; 19206 - sha512 = "2hyx0v53423yszxyxx41swndwqxya92iw3zjqaa35fl1ial9zxrmvrvlrc6jv4jaimv9ci7ni9jkascs1cgm85gqf1ifzkl9kfg0h3c"; 19207 }; 19208 }; 19209 "snyk-policy-1.7.1" = { ··· 19321 src = fetchurl { 19322 url = "https://registry.npmjs.org/yargs/-/yargs-3.15.0.tgz"; 19323 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 }; 19334 }; 19335 "toml-2.3.3" = { ··· 19485 sha1 = "85568de3cf150ff49fa51825f03a8c880ddcc5c4"; 19486 }; 19487 }; 19488 - "async-2.1.5" = { 19489 name = "async"; 19490 packageName = "async"; 19491 - version = "2.1.5"; 19492 src = fetchurl { 19493 - url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz"; 19494 - sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc"; 19495 }; 19496 }; 19497 "lokijs-1.4.3" = { ··· 19503 sha1 = "f2a47ba8d6991c92d6da6a5b35be79b674453abb"; 19504 }; 19505 }; 19506 - "vscode-jsonrpc-3.0.4" = { 19507 name = "vscode-jsonrpc"; 19508 packageName = "vscode-jsonrpc"; 19509 - version = "3.0.4"; 19510 src = fetchurl { 19511 - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.0.4.tgz"; 19512 - sha1 = "07fdae38e3122412faddf45756fba1d2cb1eb9c8"; 19513 }; 19514 }; 19515 - "vscode-languageclient-3.0.4" = { 19516 name = "vscode-languageclient"; 19517 packageName = "vscode-languageclient"; 19518 - version = "3.0.4"; 19519 src = fetchurl { 19520 - url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-3.0.4.tgz"; 19521 - sha1 = "d0a4ecf3e1c5bf486a49a161962f9189b0bd2bf7"; 19522 }; 19523 }; 19524 - "vscode-languageserver-3.0.5" = { 19525 name = "vscode-languageserver"; 19526 packageName = "vscode-languageserver"; 19527 - version = "3.0.5"; 19528 src = fetchurl { 19529 - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.0.5.tgz"; 19530 - sha1 = "080f7b7ce6d43a0785a21195e00068ac57558c85"; 19531 }; 19532 }; 19533 - "vscode-languageserver-types-3.0.3" = { 19534 name = "vscode-languageserver-types"; 19535 packageName = "vscode-languageserver-types"; 19536 - version = "3.0.3"; 19537 src = fetchurl { 19538 - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.0.3.tgz"; 19539 - sha1 = "303b2a307c20952ff5c1f5a608f3c91146028d47"; 19540 }; 19541 }; 19542 "babybird-0.0.1" = { ··· 19677 sha1 = "b1c9cc044ef1b9fe63606fc141abbb32e14730cc"; 19678 }; 19679 }; 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 "bunyan-1.8.12" = { 19690 name = "bunyan"; 19691 packageName = "bunyan"; ··· 19713 sha1 = "9cea9b6386ac301c741838ca3cb91e66dbfbf669"; 19714 }; 19715 }; 19716 - "hot-shots-4.5.0" = { 19717 name = "hot-shots"; 19718 packageName = "hot-shots"; 19719 - version = "4.5.0"; 19720 src = fetchurl { 19721 - url = "https://registry.npmjs.org/hot-shots/-/hot-shots-4.5.0.tgz"; 19722 - sha1 = "d0b7c2ad367cbb2f8c062b26151c0949ad9271f9"; 19723 }; 19724 }; 19725 "limitation-0.2.0" = { ··· 20263 sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"; 20264 }; 20265 }; 20266 "commoner-0.10.8" = { 20267 name = "commoner"; 20268 packageName = "commoner"; ··· 20651 sha512 = "2441a84bwxxm0zcn133ngf0aj1f8jidgfsvm40wa8ap98lkzyzv8fppfsl1dhxpni70mpgl8yik9anc2vrgh1n1immkhw3z6727r9ll"; 20652 }; 20653 }; 20654 - "chalk-2.0.1" = { 20655 - name = "chalk"; 20656 - packageName = "chalk"; 20657 - version = "2.0.1"; 20658 src = fetchurl { 20659 - url = "https://registry.npmjs.org/chalk/-/chalk-2.0.1.tgz"; 20660 - sha512 = "398mvhli8dvcn53xaqllyjzp19z8gh3j75fvp4gv5njnnkhsikx3byfb6lx432pl0073hn75prc8gb0ysbf65bnzlcbq5iy89f8b7rj"; 20661 }; 20662 }; 20663 "detect-port-1.2.1" = { ··· 20678 sha1 = "fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f"; 20679 }; 20680 }; 20681 - "micro-8.0.1" = { 20682 name = "micro"; 20683 packageName = "micro"; 20684 - version = "8.0.1"; 20685 src = fetchurl { 20686 - url = "https://registry.npmjs.org/micro/-/micro-8.0.1.tgz"; 20687 - sha512 = "3fbrk4yxb1bj097n2w8iqapyq5znp13p8lgc3kd6h53aakpp52779qicbfzd89dva5yj5pinb9swf92j8k5ksl82llahc0y8kg45q1z"; 20688 }; 20689 }; 20690 "micro-compress-1.0.0" = { ··· 20696 sha1 = "53f5a80b4ad0320ca165a559b6e3df145d4f704f"; 20697 }; 20698 }; 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 "node-version-1.1.0" = { 20709 name = "node-version"; 20710 packageName = "node-version"; ··· 20723 sha512 = "2z1csf4c3fmlwl0ahk533z5zqkjdf36ccfx11kakl9xran9f5asxm4cxjq4lx1kwqdp8gki786cgpldvgrkvfc7pcvh07j5ssqm8rjg"; 20724 }; 20725 }; 20726 "pkginfo-0.4.0" = { 20727 name = "pkginfo"; 20728 packageName = "pkginfo"; ··· 20748 src = fetchurl { 20749 url = "https://registry.npmjs.org/mri/-/mri-1.1.0.tgz"; 20750 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 }; 20761 }; 20762 "pify-3.0.0" = { ··· 20966 sha1 = "1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff"; 20967 }; 20968 }; 20969 "assert-plus-0.1.5" = { 20970 name = "assert-plus"; 20971 packageName = "assert-plus"; ··· 21155 sha1 = "97e4e63ae46b21912cd9475bc31469d26f5ade66"; 21156 }; 21157 }; 21158 - "csv-parse-1.2.1" = { 21159 name = "csv-parse"; 21160 packageName = "csv-parse"; 21161 - version = "1.2.1"; 21162 src = fetchurl { 21163 - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-1.2.1.tgz"; 21164 - sha1 = "9199c23f2490d98c4d9ab2a0167b06927498c9df"; 21165 }; 21166 }; 21167 "stream-transform-0.1.2" = { ··· 21236 sha1 = "0abf1af89a8f5129a81f18c2b35b21df22622f60"; 21237 }; 21238 }; 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 "once-1.3.0" = { 21249 name = "once"; 21250 packageName = "once"; ··· 21380 sha1 = "ddd52c587033f49e94b71fc55569f252e8ff5f85"; 21381 }; 21382 }; 21383 - "clap-1.2.0" = { 21384 name = "clap"; 21385 packageName = "clap"; 21386 - version = "1.2.0"; 21387 src = fetchurl { 21388 - url = "https://registry.npmjs.org/clap/-/clap-1.2.0.tgz"; 21389 - sha1 = "59c90fe3e137104746ff19469a27a634ff68c857"; 21390 }; 21391 }; 21392 "enhanced-resolve-2.3.0" = { ··· 21884 sha1 = "4424aca20e14d255c0b0889af6f6b8973da10e0d"; 21885 }; 21886 }; 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 "follow-redirects-0.0.3" = { 21897 name = "follow-redirects"; 21898 packageName = "follow-redirects"; ··· 21992 sha1 = "b951f4abb6bd617e66f63eb891498e391763e309"; 21993 }; 21994 }; 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 "webpack-sources-1.0.1" = { 22005 name = "webpack-sources"; 22006 packageName = "webpack-sources"; ··· 22046 sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39"; 22047 }; 22048 }; 22049 - "big.js-3.1.3" = { 22050 name = "big.js"; 22051 packageName = "big.js"; 22052 - version = "3.1.3"; 22053 src = fetchurl { 22054 - url = "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz"; 22055 - sha1 = "4cada2193652eb3ca9ec8e55c9015669c9806978"; 22056 }; 22057 }; 22058 "emojis-list-2.1.0" = { ··· 22091 sha512 = "3q09f2w67qqhl3lwiisj4422mj9nfldg4cxmidfrjcwn3k7spm9g46x4n1j6kv39bi9khmcpyvfa3fwski488ibivyg9bwijjw2cr93"; 22092 }; 22093 }; 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 "cli-list-0.2.0" = { 22212 name = "cli-list"; 22213 packageName = "cli-list"; ··· 22691 alloy = nodeEnv.buildNodePackage { 22692 name = "alloy"; 22693 packageName = "alloy"; 22694 - version = "1.9.13"; 22695 src = fetchurl { 22696 - url = "https://registry.npmjs.org/alloy/-/alloy-1.9.13.tgz"; 22697 - sha1 = "5ab8089cee9a9bf4ba46298d87c7039a4f2a7410"; 22698 }; 22699 dependencies = [ 22700 sources."colors-0.6.0-1" 22701 sources."ejs-2.3.4" 22702 sources."pkginfo-0.2.2" 22703 - sources."commander-0.6.1" 22704 - sources."wrench-1.3.9" 22705 sources."xmldom-0.1.19" 22706 - sources."jsonlint-1.5.1" 22707 - (sources."uglify-js-2.6.1" // { 22708 dependencies = [ 22709 sources."source-map-0.5.7" 22710 ]; 22711 }) 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" 22742 sources."array-unique-0.2.1" 22743 (sources."global-modules-0.2.3" // { 22744 dependencies = [ ··· 22756 sources."which-1.3.0" 22757 sources."parse-passwd-1.0.0" 22758 sources."isexe-2.0.0" 22759 sources."amdefine-1.0.1" 22760 sources."xml2js-0.2.8" 22761 sources."sax-0.5.8" 22762 - sources."is-0.3.0" 22763 ]; 22764 buildInputs = globalBuildInputs; 22765 meta = { ··· 22957 }) 22958 sources."moment-2.18.1" 22959 sources."ms-rest-2.2.2" 22960 - (sources."ms-rest-azure-2.3.0" // { 22961 dependencies = [ 22962 sources."async-0.2.7" 22963 ]; ··· 23057 sources."has-color-0.1.7" 23058 sources."ansi-styles-1.0.0" 23059 sources."strip-ansi-0.1.1" 23060 - sources."@types/node-8.0.27" 23061 sources."@types/request-2.0.3" 23062 sources."@types/uuid-3.4.2" 23063 sources."is-buffer-1.1.5" ··· 23076 sources."i-0.3.5" 23077 sources."mkdirp-0.5.1" 23078 sources."ncp-0.4.2" 23079 - sources."rimraf-2.6.1" 23080 sources."minimist-0.0.8" 23081 sources."glob-7.1.2" 23082 sources."fs.realpath-1.0.0" ··· 23207 bower = nodeEnv.buildNodePackage { 23208 name = "bower"; 23209 packageName = "bower"; 23210 - version = "1.8.0"; 23211 src = fetchurl { 23212 - url = "https://registry.npmjs.org/bower/-/bower-1.8.0.tgz"; 23213 - sha1 = "55dbebef0ad9155382d9e9d3e497c1372345b44a"; 23214 }; 23215 buildInputs = globalBuildInputs; 23216 meta = { ··· 23230 }; 23231 dependencies = [ 23232 sources."argparse-1.0.4" 23233 - sources."bower-1.8.0" 23234 sources."bower-endpoint-parser-0.2.1" 23235 sources."bower-json-0.6.0" 23236 sources."bower-logger-0.2.1" ··· 23320 ]; 23321 }) 23322 sources."path-is-absolute-1.0.1" 23323 - (sources."rimraf-2.6.1" // { 23324 dependencies = [ 23325 sources."glob-7.1.2" 23326 ]; ··· 23452 sources."create-hash-1.1.3" 23453 sources."create-hmac-1.1.6" 23454 sources."diffie-hellman-5.0.2" 23455 - sources."pbkdf2-3.0.13" 23456 sources."public-encrypt-4.0.0" 23457 sources."randombytes-2.0.5" 23458 sources."browserify-aes-1.0.8" ··· 23747 sources."ip-set-1.0.1" 23748 sources."mkdirp-0.3.5" 23749 sources."peer-wire-swarm-0.12.1" 23750 - sources."rimraf-2.6.1" 23751 sources."torrent-discovery-5.4.0" 23752 sources."torrent-piece-1.1.1" 23753 (sources."random-access-file-1.8.1" // { ··· 24069 ]; 24070 }) 24071 sources."is-url-1.2.2" 24072 - sources."interpret-1.0.3" 24073 sources."rechoir-0.6.2" 24074 sources."fs.realpath-1.0.0" 24075 sources."resolve-1.4.0" ··· 24177 sources."create-hash-1.1.3" 24178 sources."create-hmac-1.1.6" 24179 sources."diffie-hellman-5.0.2" 24180 - sources."pbkdf2-3.0.13" 24181 sources."public-encrypt-4.0.0" 24182 sources."randombytes-2.0.5" 24183 sources."browserify-aes-1.0.8" ··· 24252 sources."ms-2.0.0" 24253 sources."array-flatten-1.1.1" 24254 sources."content-disposition-0.5.2" 24255 - sources."content-type-1.0.2" 24256 sources."cookie-0.3.1" 24257 sources."cookie-signature-1.0.6" 24258 sources."depd-1.1.1" 24259 sources."encodeurl-1.0.1" 24260 sources."escape-html-1.0.3" 24261 - sources."etag-1.8.0" 24262 - sources."finalhandler-1.0.4" 24263 sources."fresh-0.5.0" 24264 sources."merge-descriptors-1.0.1" 24265 sources."methods-1.1.2" 24266 sources."on-finished-2.3.0" 24267 - sources."parseurl-1.3.1" 24268 sources."path-to-regexp-0.1.7" 24269 sources."proxy-addr-1.1.5" 24270 sources."qs-6.5.0" ··· 24277 sources."utils-merge-1.0.0" 24278 sources."unpipe-1.0.0" 24279 sources."ee-first-1.1.1" 24280 - sources."forwarded-0.1.0" 24281 sources."ipaddr.js-1.4.0" 24282 sources."destroy-1.0.4" 24283 sources."http-errors-1.6.2" ··· 24636 sources."media-typer-0.3.0" 24637 sources."methods-1.1.2" 24638 sources."on-finished-2.2.1" 24639 - sources."parseurl-1.3.1" 24640 sources."path-to-regexp-0.1.3" 24641 sources."proxy-addr-1.0.10" 24642 sources."qs-2.3.3" ··· 24659 sources."ms-0.7.0" 24660 sources."crc-3.2.1" 24661 sources."ee-first-1.1.0" 24662 - sources."forwarded-0.1.0" 24663 sources."ipaddr.js-1.0.5" 24664 sources."destroy-1.0.3" 24665 sources."mime-1.2.11" ··· 24670 sources."faye-websocket-0.11.1" 24671 sources."eventemitter3-0.1.6" 24672 sources."better-curry-1.6.0" 24673 - sources."websocket-driver-0.6.5" 24674 - sources."websocket-extensions-0.1.1" 24675 (sources."native-dns-cache-git+https://github.com/okTurtles/native-dns-cache.git#8714196bb9223cc9a4064a4fddf9e82ec50b7d4d" // { 24676 dependencies = [ 24677 sources."native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#307e77a47ebba57a5ae9118a284e916e5ebb305a" ··· 24821 sources."bytewise-1.1.0" 24822 sources."ltgt-2.1.3" 24823 sources."pull-level-2.0.3" 24824 - sources."pull-stream-3.6.0" 24825 sources."typewiselite-1.0.0" 24826 sources."bytewise-core-1.2.3" 24827 sources."typewise-1.0.3" ··· 24878 sources."JSONStream-1.3.1" 24879 sources."async-2.5.0" 24880 sources."aws4-1.6.0" 24881 - sources."aws-sdk-2.110.0" 24882 sources."ini-1.3.4" 24883 sources."optimist-0.6.1" 24884 - sources."request-2.81.0" 24885 sources."jsonparse-1.3.1" 24886 sources."through-2.3.8" 24887 sources."lodash-4.17.4" ··· 24901 sources."punycode-1.3.2" 24902 sources."wordwrap-0.0.3" 24903 sources."minimist-0.0.10" 24904 - sources."aws-sign2-0.6.0" 24905 sources."caseless-0.12.0" 24906 sources."combined-stream-1.0.5" 24907 sources."extend-3.0.1" 24908 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" 24913 sources."is-typedarray-1.0.0" 24914 sources."isstream-0.1.2" 24915 sources."json-stringify-safe-5.0.1" 24916 sources."mime-types-2.1.17" 24917 sources."oauth-sign-0.8.2" 24918 - sources."performance-now-0.2.0" 24919 - sources."qs-6.4.0" 24920 sources."safe-buffer-5.1.1" 24921 sources."stringstream-0.0.5" 24922 (sources."tough-cookie-2.3.2" // { ··· 24927 sources."tunnel-agent-0.6.0" 24928 sources."delayed-stream-1.0.0" 24929 sources."asynckit-0.4.0" 24930 - sources."ajv-4.11.8" 24931 - sources."har-schema-1.0.5" 24932 sources."co-4.6.0" 24933 sources."json-stable-stringify-1.0.1" 24934 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" // { 24941 dependencies = [ 24942 - sources."assert-plus-1.0.0" 24943 ]; 24944 }) 24945 - (sources."sshpk-1.13.1" // { 24946 - dependencies = [ 24947 - sources."assert-plus-1.0.0" 24948 - ]; 24949 - }) 24950 sources."extsprintf-1.3.0" 24951 sources."json-schema-0.2.3" 24952 - (sources."verror-1.10.0" // { 24953 - dependencies = [ 24954 - sources."assert-plus-1.0.0" 24955 - ]; 24956 - }) 24957 sources."core-util-is-1.0.2" 24958 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 - }) 24969 sources."jsbn-0.1.1" 24970 sources."tweetnacl-0.14.5" 24971 sources."ecc-jsbn-0.1.1" ··· 24991 dependencies = [ 24992 sources."auto-bind-1.1.0" 24993 sources."clipboardy-1.1.4" 24994 - sources."conf-1.2.0" 24995 sources."got-7.1.0" 24996 sources."has-ansi-3.0.0" 24997 sources."import-jsx-1.3.0" ··· 25110 sources."core-js-2.5.1" 25111 sources."home-or-tmp-2.0.0" 25112 sources."mkdirp-0.5.1" 25113 - sources."source-map-support-0.4.17" 25114 sources."os-homedir-1.0.2" 25115 sources."os-tmpdir-1.0.2" 25116 sources."minimist-0.0.8" ··· 25153 ]; 25154 }) 25155 sources."is-fullwidth-code-point-2.0.0" 25156 - (sources."fbjs-0.8.14" // { 25157 dependencies = [ 25158 sources."core-js-1.2.7" 25159 ]; ··· 25163 sources."promise-7.3.1" 25164 sources."setimmediate-1.0.5" 25165 sources."ua-parser-js-0.7.14" 25166 - sources."node-fetch-1.7.2" 25167 sources."whatwg-fetch-2.0.3" 25168 sources."encoding-0.1.12" 25169 - sources."iconv-lite-0.4.18" 25170 sources."asap-2.0.6" 25171 sources."camelcase-keys-2.1.0" 25172 sources."decamelize-1.2.0" ··· 25221 eslint = nodeEnv.buildNodePackage { 25222 name = "eslint"; 25223 packageName = "eslint"; 25224 - version = "4.6.1"; 25225 src = fetchurl { 25226 - url = "https://registry.npmjs.org/eslint/-/eslint-4.6.1.tgz"; 25227 - sha1 = "ddc7fc7fd70bf93205b0b3449bb16a1e9e7d4950"; 25228 }; 25229 dependencies = [ 25230 sources."ajv-5.2.2" ··· 25242 }) 25243 sources."concat-stream-1.6.0" 25244 sources."cross-spawn-5.1.0" 25245 - sources."debug-2.6.8" 25246 sources."doctrine-2.0.0" 25247 sources."eslint-scope-3.7.1" 25248 - sources."espree-3.5.0" 25249 sources."esquery-1.0.0" 25250 sources."estraverse-4.2.0" 25251 sources."esutils-2.0.2" ··· 25255 sources."globals-9.18.0" 25256 sources."ignore-3.3.5" 25257 sources."imurmurhash-0.1.4" 25258 - sources."inquirer-3.2.3" 25259 sources."is-resolvable-1.0.0" 25260 - sources."js-yaml-3.9.1" 25261 sources."json-stable-stringify-1.0.1" 25262 sources."levn-0.3.0" 25263 sources."lodash-4.17.4" ··· 25266 sources."natural-compare-1.4.0" 25267 sources."optionator-0.8.2" 25268 sources."path-is-inside-1.0.2" 25269 - sources."pluralize-4.0.0" 25270 sources."progress-2.0.0" 25271 sources."require-uncached-1.0.3" 25272 sources."semver-5.4.1" ··· 25331 sources."is-path-in-cwd-1.0.0" 25332 sources."pify-2.3.0" 25333 sources."pinkie-promise-2.0.1" 25334 - sources."rimraf-2.6.1" 25335 sources."array-union-1.0.2" 25336 sources."arrify-1.0.1" 25337 sources."array-uniq-1.0.3" ··· 25342 sources."once-1.4.0" 25343 sources."path-is-absolute-1.0.1" 25344 sources."wrappy-1.0.2" 25345 - sources."ansi-escapes-2.0.0" 25346 sources."cli-cursor-2.1.0" 25347 sources."cli-width-2.2.0" 25348 - sources."external-editor-2.0.4" 25349 sources."figures-2.0.0" 25350 sources."mute-stream-0.0.7" 25351 sources."run-async-2.3.0" ··· 25357 sources."onetime-2.0.1" 25358 sources."signal-exit-3.0.2" 25359 sources."mimic-fn-1.1.0" 25360 - sources."iconv-lite-0.4.18" 25361 sources."jschardet-1.5.1" 25362 - sources."tmp-0.0.31" 25363 sources."os-tmpdir-1.0.2" 25364 sources."is-promise-2.1.0" 25365 sources."is-fullwidth-code-point-2.0.0" ··· 25405 sources."supports-color-2.0.0" 25406 ]; 25407 }) 25408 - (sources."eslint-4.6.1" // { 25409 dependencies = [ 25410 sources."chalk-2.1.0" 25411 sources."strip-ansi-4.0.0" ··· 25430 sources."babel-code-frame-6.26.0" 25431 sources."concat-stream-1.6.0" 25432 sources."cross-spawn-5.1.0" 25433 - sources."debug-2.6.8" 25434 sources."doctrine-2.0.0" 25435 sources."eslint-scope-3.7.1" 25436 - sources."espree-3.5.0" 25437 sources."esquery-1.0.0" 25438 sources."estraverse-4.2.0" 25439 sources."esutils-2.0.2" ··· 25443 sources."globals-9.18.0" 25444 sources."ignore-3.3.5" 25445 sources."imurmurhash-0.1.4" 25446 - (sources."inquirer-3.2.3" // { 25447 dependencies = [ 25448 sources."chalk-2.1.0" 25449 sources."strip-ansi-4.0.0" ··· 25453 ]; 25454 }) 25455 sources."is-resolvable-1.0.0" 25456 - sources."js-yaml-3.9.1" 25457 sources."json-stable-stringify-1.0.1" 25458 sources."levn-0.3.0" 25459 sources."lodash-4.17.4" ··· 25461 sources."mkdirp-0.5.1" 25462 sources."natural-compare-1.4.0" 25463 sources."path-is-inside-1.0.2" 25464 - sources."pluralize-4.0.0" 25465 sources."progress-2.0.0" 25466 sources."require-uncached-1.0.3" 25467 sources."semver-5.4.1" ··· 25514 sources."is-path-in-cwd-1.0.0" 25515 sources."pify-2.3.0" 25516 sources."pinkie-promise-2.0.1" 25517 - sources."rimraf-2.6.1" 25518 sources."array-union-1.0.2" 25519 sources."arrify-1.0.1" 25520 sources."array-uniq-1.0.3" ··· 25525 sources."once-1.4.0" 25526 sources."path-is-absolute-1.0.1" 25527 sources."wrappy-1.0.2" 25528 - sources."ansi-escapes-2.0.0" 25529 sources."cli-cursor-2.1.0" 25530 sources."cli-width-2.2.0" 25531 - sources."external-editor-2.0.4" 25532 sources."figures-2.0.0" 25533 sources."mute-stream-0.0.7" 25534 sources."run-async-2.3.0" ··· 25545 sources."onetime-2.0.1" 25546 sources."signal-exit-3.0.2" 25547 sources."mimic-fn-1.1.0" 25548 - sources."iconv-lite-0.4.18" 25549 sources."jschardet-1.5.1" 25550 - sources."tmp-0.0.31" 25551 sources."os-tmpdir-1.0.2" 25552 sources."is-promise-2.1.0" 25553 sources."is-fullwidth-code-point-2.0.0" ··· 25798 dependencies = [ 25799 sources."bower-endpoint-parser-0.2.1" 25800 sources."bower-logger-0.2.1" 25801 - sources."bower-1.8.0" 25802 sources."glob-3.2.11" 25803 sources."inherits-2.0.3" 25804 sources."minimatch-0.3.0" ··· 25940 sources."string_decoder-1.0.3" 25941 sources."util-deprecate-1.0.2" 25942 sources."nan-2.7.0" 25943 - sources."node-pre-gyp-0.6.36" 25944 (sources."mkdirp-0.5.1" // { 25945 dependencies = [ 25946 sources."minimist-0.0.8" ··· 25953 sources."minimist-1.2.0" 25954 ]; 25955 }) 25956 - sources."request-2.81.0" 25957 - sources."rimraf-2.6.1" 25958 sources."semver-5.4.1" 25959 sources."tar-2.2.1" 25960 sources."tar-pack-3.4.0" 25961 sources."abbrev-1.1.0" ··· 25971 }) 25972 sources."set-blocking-2.0.0" 25973 sources."delegates-1.0.0" 25974 - sources."aproba-1.1.2" 25975 sources."has-unicode-2.0.1" 25976 sources."signal-exit-3.0.2" 25977 sources."string-width-1.0.2" ··· 25984 sources."deep-extend-0.4.2" 25985 sources."ini-1.3.4" 25986 sources."strip-json-comments-2.0.1" 25987 - sources."aws-sign2-0.6.0" 25988 sources."aws4-1.6.0" 25989 sources."caseless-0.12.0" 25990 sources."combined-stream-1.0.5" 25991 sources."extend-3.0.1" 25992 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" 25997 sources."is-typedarray-1.0.0" 25998 sources."isstream-0.1.2" 25999 sources."json-stringify-safe-5.0.1" 26000 sources."mime-types-2.1.17" 26001 sources."oauth-sign-0.8.2" 26002 - sources."performance-now-0.2.0" 26003 - sources."qs-6.4.0" 26004 sources."stringstream-0.0.5" 26005 sources."tough-cookie-2.3.2" 26006 sources."tunnel-agent-0.6.0" 26007 sources."uuid-3.1.0" 26008 sources."delayed-stream-1.0.0" 26009 sources."asynckit-0.4.0" 26010 - sources."ajv-4.11.8" 26011 - sources."har-schema-1.0.5" 26012 sources."co-4.6.0" 26013 sources."json-stable-stringify-1.0.1" 26014 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" // { 26021 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" 26028 ]; 26029 }) 26030 sources."extsprintf-1.3.0" 26031 sources."json-schema-0.2.3" 26032 - (sources."verror-1.10.0" // { 26033 - dependencies = [ 26034 - sources."assert-plus-1.0.0" 26035 - ]; 26036 - }) 26037 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 - }) 26048 sources."jsbn-0.1.1" 26049 sources."tweetnacl-0.14.5" 26050 sources."ecc-jsbn-0.1.1" ··· 26056 sources."inflight-1.0.6" 26057 sources."once-1.4.0" 26058 sources."wrappy-1.0.2" 26059 sources."block-stream-0.0.9" 26060 sources."fstream-1.0.11" 26061 sources."debug-2.6.8" ··· 26071 ]; 26072 }) 26073 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" 26080 sources."i-0.3.5" 26081 sources."ncp-0.4.2" 26082 ]; ··· 26270 sources."chalk-1.1.3" 26271 sources."deprecated-0.0.1" 26272 sources."gulp-util-3.0.8" 26273 - sources."interpret-1.0.3" 26274 sources."liftoff-2.3.0" 26275 sources."minimist-1.2.0" 26276 sources."orchestrator-0.3.8" ··· 26295 sources."array-differ-1.0.0" 26296 sources."array-uniq-1.0.3" 26297 sources."beeper-1.1.1" 26298 - sources."dateformat-2.0.0" 26299 sources."fancy-log-1.3.0" 26300 sources."gulplog-1.0.0" 26301 sources."has-gulplog-0.1.0" ··· 26596 ionic = nodeEnv.buildNodePackage { 26597 name = "ionic"; 26598 packageName = "ionic"; 26599 - version = "3.9.2"; 26600 src = fetchurl { 26601 - url = "https://registry.npmjs.org/ionic/-/ionic-3.9.2.tgz"; 26602 - sha512 = "0d5fbf59ri01dfn213cxbc7vb2z6c4i3sz4k9kji1p8xlcfxg5nj1aprjm4zvdmc6mgryp15g5kvsy7p1qdh2rcdvcqiyn1r70g834c"; 26603 }; 26604 dependencies = [ 26605 - sources."@ionic/cli-utils-1.9.2" 26606 sources."chalk-2.1.0" 26607 sources."opn-5.1.0" 26608 sources."os-name-2.0.1" 26609 - sources."rimraf-2.6.1" 26610 sources."semver-5.4.1" 26611 sources."tslib-1.7.1" 26612 - sources."@types/gulp-3.8.33" 26613 sources."archiver-2.0.3" 26614 sources."chokidar-1.7.0" 26615 sources."ci-info-1.1.1" 26616 sources."cross-spawn-5.1.0" ··· 26622 sources."qs-6.5.0" 26623 ]; 26624 }) 26625 - sources."inquirer-3.2.3" 26626 sources."leek-0.0.24" 26627 sources."lodash-4.17.4" 26628 sources."minimist-1.2.0" ··· 26633 sources."is-fullwidth-code-point-2.0.0" 26634 ]; 26635 }) 26636 - sources."ssh-config-1.1.0" 26637 (sources."string-width-2.1.1" // { 26638 dependencies = [ 26639 sources."is-fullwidth-code-point-2.0.0" ··· 26653 sources."tiny-lr-1.0.5" 26654 sources."uuid-3.1.0" 26655 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" 26660 sources."archiver-utils-1.3.0" 26661 sources."async-2.5.0" 26662 sources."buffer-crc32-0.2.13" ··· 26691 sources."compress-commons-1.2.0" 26692 sources."crc32-stream-2.0.0" 26693 sources."crc-3.4.4" 26694 sources."anymatch-1.3.2" 26695 sources."async-each-1.0.1" 26696 sources."glob-parent-2.0.0" ··· 26740 sources."binary-extensions-1.10.0" 26741 sources."set-immediate-shim-1.0.1" 26742 sources."nan-2.7.0" 26743 - sources."node-pre-gyp-0.6.36" 26744 (sources."mkdirp-0.5.1" // { 26745 dependencies = [ 26746 sources."minimist-0.0.8" ··· 26749 sources."nopt-4.0.1" 26750 sources."npmlog-4.1.2" 26751 sources."rc-1.2.1" 26752 - sources."request-2.81.0" 26753 sources."tar-pack-3.4.0" 26754 sources."abbrev-1.1.0" 26755 sources."osenv-0.1.4" ··· 26765 }) 26766 sources."set-blocking-2.0.0" 26767 sources."delegates-1.0.0" 26768 - sources."aproba-1.1.2" 26769 sources."has-unicode-2.0.1" 26770 sources."object-assign-4.1.1" 26771 sources."signal-exit-3.0.2" ··· 26782 sources."deep-extend-0.4.2" 26783 sources."ini-1.3.4" 26784 sources."strip-json-comments-2.0.1" 26785 - sources."aws-sign2-0.6.0" 26786 sources."aws4-1.6.0" 26787 sources."caseless-0.12.0" 26788 sources."combined-stream-1.0.5" 26789 sources."extend-3.0.1" 26790 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" 26795 sources."is-typedarray-1.0.0" 26796 sources."isstream-0.1.2" 26797 sources."json-stringify-safe-5.0.1" 26798 - sources."mime-types-2.1.17" 26799 sources."oauth-sign-0.8.2" 26800 - sources."performance-now-0.2.0" 26801 - sources."qs-6.4.0" 26802 sources."stringstream-0.0.5" 26803 sources."tough-cookie-2.3.2" 26804 sources."tunnel-agent-0.6.0" 26805 sources."delayed-stream-1.0.0" 26806 sources."asynckit-0.4.0" 26807 - sources."ajv-4.11.8" 26808 - sources."har-schema-1.0.5" 26809 sources."co-4.6.0" 26810 sources."json-stable-stringify-1.0.1" 26811 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" // { 26818 dependencies = [ 26819 - sources."assert-plus-1.0.0" 26820 ]; 26821 }) 26822 - (sources."sshpk-1.13.1" // { 26823 - dependencies = [ 26824 - sources."assert-plus-1.0.0" 26825 - ]; 26826 - }) 26827 sources."extsprintf-1.3.0" 26828 sources."json-schema-0.2.3" 26829 - (sources."verror-1.10.0" // { 26830 - dependencies = [ 26831 - sources."assert-plus-1.0.0" 26832 - ]; 26833 - }) 26834 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 - }) 26845 sources."jsbn-0.1.1" 26846 sources."tweetnacl-0.14.5" 26847 sources."ecc-jsbn-0.1.1" 26848 sources."bcrypt-pbkdf-1.0.1" 26849 - sources."mime-db-1.30.0" 26850 sources."punycode-1.4.1" 26851 - sources."debug-2.6.8" 26852 sources."fstream-1.0.11" 26853 sources."fstream-ignore-1.0.5" 26854 sources."uid-number-0.0.6" 26855 - sources."ms-2.0.0" 26856 sources."lru-cache-4.1.1" 26857 sources."shebang-command-1.2.0" 26858 sources."which-1.3.0" ··· 26864 sources."accepts-1.3.4" 26865 sources."array-flatten-1.1.1" 26866 sources."content-disposition-0.5.2" 26867 - sources."content-type-1.0.2" 26868 sources."cookie-0.3.1" 26869 sources."cookie-signature-1.0.6" 26870 - sources."depd-1.1.1" 26871 sources."encodeurl-1.0.1" 26872 sources."escape-html-1.0.3" 26873 - sources."etag-1.8.0" 26874 - sources."finalhandler-1.0.4" 26875 sources."fresh-0.5.0" 26876 sources."merge-descriptors-1.0.1" 26877 sources."methods-1.1.2" 26878 - sources."on-finished-2.3.0" 26879 - sources."parseurl-1.3.1" 26880 sources."path-to-regexp-0.1.7" 26881 sources."proxy-addr-1.1.5" 26882 sources."range-parser-1.2.0" 26883 sources."send-0.15.4" 26884 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 sources."utils-merge-1.0.0" 26889 sources."vary-1.1.1" 26890 sources."negotiator-0.6.1" 26891 - sources."unpipe-1.0.0" 26892 - sources."ee-first-1.1.1" 26893 - sources."forwarded-0.1.0" 26894 sources."ipaddr.js-1.4.0" 26895 sources."destroy-1.0.4" 26896 - sources."http-errors-1.6.2" 26897 sources."mime-1.3.4" 26898 - sources."media-typer-0.3.0" 26899 - sources."ansi-escapes-2.0.0" 26900 sources."cli-cursor-2.1.0" 26901 sources."cli-width-2.2.0" 26902 - sources."external-editor-2.0.4" 26903 sources."figures-2.0.0" 26904 sources."mute-stream-0.0.7" 26905 sources."run-async-2.3.0" 26906 sources."rx-lite-4.0.8" 26907 sources."rx-lite-aggregates-4.0.8" 26908 - sources."through-2.3.8" 26909 sources."restore-cursor-2.0.0" 26910 sources."onetime-2.0.1" 26911 sources."mimic-fn-1.1.0" 26912 - sources."iconv-lite-0.4.18" 26913 sources."jschardet-1.5.1" 26914 - sources."tmp-0.0.31" 26915 sources."escape-string-regexp-1.0.5" 26916 sources."is-promise-2.1.0" 26917 sources."lodash.assign-3.2.0" ··· 26930 sources."cookiejar-2.1.1" 26931 sources."formidable-1.1.1" 26932 sources."block-stream-0.0.9" 26933 - sources."body-5.1.0" 26934 sources."faye-websocket-0.10.0" 26935 sources."livereload-js-2.2.2" 26936 sources."continuable-cache-0.3.1" 26937 sources."error-7.0.2" 26938 - (sources."raw-body-1.1.7" // { 26939 - dependencies = [ 26940 - sources."string_decoder-0.10.31" 26941 - ]; 26942 - }) 26943 sources."safe-json-parse-1.0.1" 26944 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" 26948 sources."ansi-styles-3.2.0" 26949 sources."supports-color-4.4.0" 26950 sources."color-convert-1.9.0" ··· 26997 sources."source-map-0.4.4" 26998 ]; 26999 }) 27000 - (sources."js-yaml-3.9.1" // { 27001 dependencies = [ 27002 sources."esprima-4.0.0" 27003 ]; ··· 27076 javascript-typescript-langserver = nodeEnv.buildNodePackage { 27077 name = "javascript-typescript-langserver"; 27078 packageName = "javascript-typescript-langserver"; 27079 - version = "2.2.1"; 27080 src = fetchurl { 27081 - url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.2.1.tgz"; 27082 - sha1 = "26c2f378cad3ad94282f8dcf0f2b1b8ddc33c612"; 27083 }; 27084 dependencies = [ 27085 sources."@reactivex/rxjs-5.4.3" ··· 27096 ]; 27097 }) 27098 sources."lodash-4.17.4" 27099 - sources."mz-2.6.0" 27100 sources."object-hash-1.1.8" 27101 sources."opentracing-0.14.1" 27102 sources."semaphore-async-await-1.5.1" 27103 sources."string-similarity-1.2.0" 27104 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" 27108 sources."symbol-observable-1.0.4" 27109 sources."assertion-error-1.0.2" 27110 sources."check-error-1.0.2" ··· 27142 sources."object-assign-4.1.1" 27143 sources."thenify-all-1.6.0" 27144 sources."thenify-3.3.0" 27145 ]; 27146 buildInputs = globalBuildInputs; 27147 meta = { ··· 27239 js-beautify = nodeEnv.buildNodePackage { 27240 name = "js-beautify"; 27241 packageName = "js-beautify"; 27242 - version = "1.6.14"; 27243 src = fetchurl { 27244 - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.6.14.tgz"; 27245 - sha1 = "d3b8f7322d02b9277d58bd238264c327e58044cd"; 27246 }; 27247 dependencies = [ 27248 sources."config-chain-1.1.11" ··· 27318 dependencies = [ 27319 sources."commander-2.11.0" 27320 sources."graphlib-2.1.1" 27321 - sources."js-yaml-3.9.1" 27322 sources."lodash-4.17.4" 27323 sources."native-promise-only-0.8.1" 27324 sources."path-loader-1.0.2" ··· 27336 sources."formidable-1.1.1" 27337 sources."methods-1.1.2" 27338 sources."mime-1.4.0" 27339 - sources."qs-6.5.0" 27340 sources."readable-stream-2.3.3" 27341 sources."ms-2.0.0" 27342 sources."asynckit-0.4.0" ··· 27370 sha512 = "2iqk65hy94j010zlqsl4rzfkz4f9ic1pqbvsf5w1lrgmda9wmhxl5kmvnmwikjilmn6kz9kniqzl7rpq3xv3cmpx8rppb7ipk5ddhzj"; 27371 }; 27372 dependencies = [ 27373 - sources."body-parser-1.17.2" 27374 sources."chalk-1.1.3" 27375 (sources."compression-1.7.0" // { 27376 dependencies = [ 27377 sources."bytes-2.5.0" 27378 - sources."debug-2.6.8" 27379 ]; 27380 }) 27381 sources."connect-pause-0.1.1" ··· 27383 sources."errorhandler-1.5.0" 27384 (sources."express-4.15.4" // { 27385 dependencies = [ 27386 - sources."debug-2.6.8" 27387 sources."qs-6.5.0" 27388 ]; 27389 }) ··· 27396 sources."lodash-4.17.4" 27397 sources."lodash-id-0.13.0" 27398 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 - }) 27409 sources."object-assign-4.1.1" 27410 sources."please-upgrade-node-3.0.1" 27411 sources."pluralize-3.1.0" 27412 - sources."request-2.81.0" 27413 sources."server-destroy-1.0.1" 27414 sources."shortid-2.2.8" 27415 sources."update-notifier-1.0.3" ··· 27418 sources."camelcase-3.0.0" 27419 ]; 27420 }) 27421 - sources."bytes-2.4.0" 27422 - sources."content-type-1.0.2" 27423 - sources."debug-2.6.7" 27424 sources."depd-1.1.1" 27425 sources."http-errors-1.6.2" 27426 - sources."iconv-lite-0.4.15" 27427 sources."on-finished-2.3.0" 27428 - sources."qs-6.4.0" 27429 - sources."raw-body-2.2.0" 27430 sources."type-is-1.6.15" 27431 sources."ms-2.0.0" 27432 sources."inherits-2.0.3" ··· 27455 sources."cookie-0.3.1" 27456 sources."cookie-signature-1.0.6" 27457 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 - }) 27464 sources."fresh-0.5.0" 27465 sources."merge-descriptors-1.0.1" 27466 sources."methods-1.1.2" 27467 - sources."parseurl-1.3.1" 27468 sources."path-to-regexp-0.1.7" 27469 sources."proxy-addr-1.1.5" 27470 sources."range-parser-1.2.0" 27471 - (sources."send-0.15.4" // { 27472 - dependencies = [ 27473 - sources."debug-2.6.8" 27474 - ]; 27475 - }) 27476 sources."serve-static-1.12.4" 27477 sources."utils-merge-1.0.0" 27478 - sources."forwarded-0.1.0" 27479 sources."ipaddr.js-1.4.0" 27480 sources."destroy-1.0.4" 27481 sources."mime-1.3.4" ··· 27485 sources."is-promise-2.1.0" 27486 sources."steno-0.4.4" 27487 sources."basic-auth-1.1.0" 27488 - sources."aws-sign2-0.6.0" 27489 sources."aws4-1.6.0" 27490 sources."caseless-0.12.0" 27491 sources."combined-stream-1.0.5" 27492 sources."extend-3.0.1" 27493 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" 27498 sources."is-typedarray-1.0.0" 27499 sources."isstream-0.1.2" 27500 sources."json-stringify-safe-5.0.1" 27501 sources."oauth-sign-0.8.2" 27502 - sources."performance-now-0.2.0" 27503 sources."stringstream-0.0.5" 27504 sources."tough-cookie-2.3.2" 27505 sources."tunnel-agent-0.6.0" 27506 sources."uuid-3.1.0" 27507 sources."delayed-stream-1.0.0" 27508 sources."asynckit-0.4.0" 27509 - sources."ajv-4.11.8" 27510 - sources."har-schema-1.0.5" 27511 sources."co-4.6.0" 27512 sources."json-stable-stringify-1.0.1" 27513 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" // { 27525 dependencies = [ 27526 - sources."assert-plus-1.0.0" 27527 ]; 27528 }) 27529 sources."extsprintf-1.3.0" 27530 sources."json-schema-0.2.3" 27531 - (sources."verror-1.10.0" // { 27532 - dependencies = [ 27533 - sources."assert-plus-1.0.0" 27534 - ]; 27535 - }) 27536 sources."core-util-is-1.0.2" 27537 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 - }) 27548 sources."jsbn-0.1.1" 27549 sources."tweetnacl-0.14.5" 27550 sources."ecc-jsbn-0.1.1" ··· 27667 js-yaml = nodeEnv.buildNodePackage { 27668 name = "js-yaml"; 27669 packageName = "js-yaml"; 27670 - version = "3.9.1"; 27671 src = fetchurl { 27672 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.1.tgz"; 27673 - sha512 = "31wxw267vdf4nnjpksnzcb4i603366sjrw7g08bkxi3cwlrfl67458v7rvj72vbxcycq43z4ldkrfvqjrsvrjqrb2kfzmabpzghddq9"; 27674 }; 27675 dependencies = [ 27676 sources."argparse-1.0.9" ··· 27695 }; 27696 dependencies = [ 27697 sources."bluebird-3.5.0" 27698 - sources."body-parser-1.17.2" 27699 sources."chokidar-1.7.0" 27700 sources."colors-1.1.2" 27701 (sources."combine-lists-1.0.1" // { ··· 27703 sources."lodash-4.17.4" 27704 ]; 27705 }) 27706 - (sources."connect-3.6.3" // { 27707 - dependencies = [ 27708 - sources."debug-2.6.8" 27709 - ]; 27710 - }) 27711 sources."core-js-2.5.1" 27712 sources."di-0.0.1" 27713 sources."dom-serialize-2.2.1" ··· 27737 sources."optimist-0.6.1" 27738 sources."qjobs-1.1.5" 27739 sources."range-parser-1.2.0" 27740 - sources."rimraf-2.6.1" 27741 sources."safe-buffer-5.1.1" 27742 (sources."socket.io-1.7.3" // { 27743 dependencies = [ ··· 27749 sources."source-map-0.5.7" 27750 sources."tmp-0.0.31" 27751 sources."useragent-2.2.1" 27752 - sources."bytes-2.4.0" 27753 - sources."content-type-1.0.2" 27754 - sources."debug-2.6.7" 27755 sources."depd-1.1.1" 27756 sources."http-errors-1.6.2" 27757 - sources."iconv-lite-0.4.15" 27758 sources."on-finished-2.3.0" 27759 - sources."qs-6.4.0" 27760 - sources."raw-body-2.2.0" 27761 sources."type-is-1.6.15" 27762 sources."ms-2.0.0" 27763 sources."inherits-2.0.3" ··· 27826 sources."string_decoder-1.0.3" 27827 sources."util-deprecate-1.0.2" 27828 sources."nan-2.7.0" 27829 - sources."node-pre-gyp-0.6.36" 27830 sources."mkdirp-0.5.1" 27831 sources."nopt-4.0.1" 27832 sources."npmlog-4.1.2" ··· 27835 sources."minimist-1.2.0" 27836 ]; 27837 }) 27838 - sources."request-2.81.0" 27839 sources."semver-5.4.1" 27840 sources."tar-2.2.1" 27841 sources."tar-pack-3.4.0" 27842 sources."minimist-0.0.8" ··· 27849 sources."gauge-2.7.4" 27850 sources."set-blocking-2.0.0" 27851 sources."delegates-1.0.0" 27852 - sources."aproba-1.1.2" 27853 sources."has-unicode-2.0.1" 27854 sources."object-assign-4.1.1" 27855 sources."signal-exit-3.0.2" ··· 27863 sources."deep-extend-0.4.2" 27864 sources."ini-1.3.4" 27865 sources."strip-json-comments-2.0.1" 27866 - sources."aws-sign2-0.6.0" 27867 sources."aws4-1.6.0" 27868 sources."caseless-0.12.0" 27869 sources."combined-stream-1.0.5" 27870 sources."extend-3.0.1" 27871 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" 27876 sources."is-typedarray-1.0.0" 27877 sources."isstream-0.1.2" 27878 sources."json-stringify-safe-5.0.1" 27879 sources."oauth-sign-0.8.2" 27880 - sources."performance-now-0.2.0" 27881 sources."stringstream-0.0.5" 27882 sources."tough-cookie-2.3.2" 27883 sources."tunnel-agent-0.6.0" 27884 sources."uuid-3.1.0" 27885 sources."delayed-stream-1.0.0" 27886 sources."asynckit-0.4.0" 27887 - sources."ajv-4.11.8" 27888 - sources."har-schema-1.0.5" 27889 sources."co-4.6.0" 27890 sources."json-stable-stringify-1.0.1" 27891 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" // { 27898 dependencies = [ 27899 - sources."assert-plus-1.0.0" 27900 ]; 27901 }) 27902 - (sources."sshpk-1.13.1" // { 27903 - dependencies = [ 27904 - sources."assert-plus-1.0.0" 27905 - ]; 27906 - }) 27907 sources."extsprintf-1.3.0" 27908 sources."json-schema-0.2.3" 27909 - (sources."verror-1.10.0" // { 27910 - dependencies = [ 27911 - sources."assert-plus-1.0.0" 27912 - ]; 27913 - }) 27914 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 - }) 27925 sources."jsbn-0.1.1" 27926 sources."tweetnacl-0.14.5" 27927 sources."ecc-jsbn-0.1.1" 27928 sources."bcrypt-pbkdf-1.0.1" 27929 sources."punycode-1.4.1" 27930 sources."block-stream-0.0.9" 27931 sources."fstream-1.0.11" 27932 sources."fstream-ignore-1.0.5" 27933 sources."once-1.4.0" 27934 sources."uid-number-0.0.6" 27935 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" 27943 sources."encodeurl-1.0.1" 27944 sources."escape-html-1.0.3" 27945 sources."custom-event-1.0.1" ··· 28052 sources."basic-auth-1.0.4" 28053 sources."connect-2.30.2" 28054 sources."content-disposition-0.5.0" 28055 - sources."content-type-1.0.2" 28056 sources."commander-2.6.0" 28057 sources."cookie-0.1.3" 28058 sources."cookie-signature-1.0.6" ··· 28064 sources."merge-descriptors-1.0.0" 28065 sources."methods-1.1.2" 28066 sources."mkdirp-0.5.1" 28067 - sources."parseurl-1.3.1" 28068 sources."proxy-addr-1.0.10" 28069 sources."range-parser-1.0.3" 28070 (sources."send-0.13.0" // { ··· 28168 sources."mime-1.3.4" 28169 sources."media-typer-0.3.0" 28170 sources."minimist-0.0.8" 28171 - sources."forwarded-0.1.0" 28172 sources."ipaddr.js-1.0.5" 28173 sources."passport-strategy-1.0.0" 28174 sources."passport-google-oauth1-1.0.0" ··· 28190 lerna = nodeEnv.buildNodePackage { 28191 name = "lerna"; 28192 packageName = "lerna"; 28193 - version = "2.1.2"; 28194 src = fetchurl { 28195 - url = "https://registry.npmjs.org/lerna/-/lerna-2.1.2.tgz"; 28196 - sha1 = "b07eb7a4d7dd7d44a105262fef49b2229301c577"; 28197 }; 28198 dependencies = [ 28199 sources."async-1.5.2" ··· 28206 sources."dedent-0.7.0" 28207 sources."execa-0.8.0" 28208 sources."find-up-2.1.0" 28209 - sources."fs-extra-4.0.1" 28210 sources."get-port-3.2.0" 28211 sources."glob-7.1.2" 28212 sources."glob-parent-3.1.0" 28213 sources."globby-6.1.0" 28214 sources."graceful-fs-4.1.11" 28215 - (sources."inquirer-3.2.3" // { 28216 dependencies = [ 28217 sources."strip-ansi-4.0.0" 28218 sources."ansi-regex-3.0.0" ··· 28238 sources."strip-bom-3.0.0" 28239 ]; 28240 }) 28241 - sources."rimraf-2.6.1" 28242 sources."safe-buffer-5.1.1" 28243 sources."semver-5.4.1" 28244 sources."signal-exit-3.0.2" ··· 28438 sources."locate-path-2.0.0" 28439 sources."p-locate-2.0.0" 28440 sources."p-limit-1.1.0" 28441 - sources."jsonfile-3.0.1" 28442 sources."universalify-0.1.1" 28443 sources."fs.realpath-1.0.0" 28444 sources."inflight-1.0.6" ··· 28450 sources."is-extglob-2.1.1" 28451 sources."array-union-1.0.2" 28452 sources."array-uniq-1.0.3" 28453 - sources."ansi-escapes-2.0.0" 28454 sources."cli-cursor-2.1.0" 28455 sources."cli-width-2.2.0" 28456 - sources."external-editor-2.0.4" 28457 sources."figures-2.0.0" 28458 sources."mute-stream-0.0.7" 28459 sources."run-async-2.3.0" ··· 28468 sources."restore-cursor-2.0.0" 28469 sources."onetime-2.0.1" 28470 sources."mimic-fn-1.1.0" 28471 - sources."iconv-lite-0.4.18" 28472 sources."jschardet-1.5.1" 28473 - sources."tmp-0.0.31" 28474 sources."is-promise-2.1.0" 28475 sources."is-fullwidth-code-point-2.0.0" 28476 sources."ci-info-1.1.1" ··· 28487 }) 28488 sources."set-blocking-2.0.0" 28489 sources."delegates-1.0.0" 28490 - sources."aproba-1.1.2" 28491 sources."has-unicode-2.0.1" 28492 (sources."wide-align-1.1.2" // { 28493 dependencies = [ ··· 28688 sha512 = "3pnrrz3blfy50s64c4wdj9gjl8zv3p72wd0vmrk86qjdd676g9sj4cwywp356r633csg568pczll7pfb6sxpm0x9fvbk4zhwvdpb70b"; 28689 }; 28690 dependencies = [ 28691 - sources."body-parser-1.17.2" 28692 sources."chokidar-1.7.0" 28693 (sources."express-4.15.4" // { 28694 dependencies = [ 28695 - sources."debug-2.6.8" 28696 sources."qs-6.5.0" 28697 ]; 28698 }) ··· 28702 sources."markdown-it-task-checkbox-1.0.4" 28703 sources."minimist-1.2.0" 28704 sources."opn-5.1.0" 28705 - sources."request-2.81.0" 28706 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" 28710 sources."depd-1.1.1" 28711 sources."http-errors-1.6.2" 28712 - sources."iconv-lite-0.4.15" 28713 sources."on-finished-2.3.0" 28714 - sources."qs-6.4.0" 28715 - sources."raw-body-2.2.0" 28716 sources."type-is-1.6.15" 28717 sources."ms-2.0.0" 28718 sources."inherits-2.0.3" ··· 28787 sources."string_decoder-1.0.3" 28788 sources."util-deprecate-1.0.2" 28789 sources."nan-2.7.0" 28790 - sources."node-pre-gyp-0.6.36" 28791 (sources."mkdirp-0.5.1" // { 28792 dependencies = [ 28793 sources."minimist-0.0.8" ··· 28796 sources."nopt-4.0.1" 28797 sources."npmlog-4.1.2" 28798 sources."rc-1.2.1" 28799 - sources."rimraf-2.6.1" 28800 sources."semver-5.4.1" 28801 sources."tar-2.2.1" 28802 sources."tar-pack-3.4.0" 28803 sources."abbrev-1.1.0" ··· 28809 sources."gauge-2.7.4" 28810 sources."set-blocking-2.0.0" 28811 sources."delegates-1.0.0" 28812 - sources."aproba-1.1.2" 28813 sources."has-unicode-2.0.1" 28814 sources."object-assign-4.1.1" 28815 sources."signal-exit-3.0.2" ··· 28828 sources."inflight-1.0.6" 28829 sources."once-1.4.0" 28830 sources."wrappy-1.0.2" 28831 sources."block-stream-0.0.9" 28832 sources."fstream-1.0.11" 28833 sources."fstream-ignore-1.0.5" ··· 28839 sources."cookie-signature-1.0.6" 28840 sources."encodeurl-1.0.1" 28841 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 - }) 28848 sources."fresh-0.5.0" 28849 sources."merge-descriptors-1.0.1" 28850 sources."methods-1.1.2" 28851 - sources."parseurl-1.3.1" 28852 sources."path-to-regexp-0.1.7" 28853 sources."proxy-addr-1.1.5" 28854 sources."range-parser-1.2.0" 28855 - (sources."send-0.15.4" // { 28856 - dependencies = [ 28857 - sources."debug-2.6.8" 28858 - ]; 28859 - }) 28860 sources."serve-static-1.12.4" 28861 sources."utils-merge-1.0.0" 28862 sources."vary-1.1.1" 28863 sources."negotiator-0.6.1" 28864 - sources."forwarded-0.1.0" 28865 sources."ipaddr.js-1.4.0" 28866 sources."destroy-1.0.4" 28867 sources."mime-1.3.4" ··· 28871 sources."mdurl-1.0.1" 28872 sources."uc.micro-1.0.3" 28873 sources."sprintf-js-1.0.3" 28874 - sources."github-slugger-1.1.3" 28875 sources."innertext-1.0.2" 28876 sources."emoji-regex-6.1.1" 28877 sources."html-entities-1.2.1" 28878 sources."is-wsl-1.1.0" 28879 - sources."aws-sign2-0.6.0" 28880 sources."aws4-1.6.0" 28881 sources."caseless-0.12.0" 28882 sources."combined-stream-1.0.5" 28883 sources."extend-3.0.1" 28884 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" 28889 sources."is-typedarray-1.0.0" 28890 sources."isstream-0.1.2" 28891 sources."json-stringify-safe-5.0.1" 28892 sources."oauth-sign-0.8.2" 28893 - sources."performance-now-0.2.0" 28894 sources."stringstream-0.0.5" 28895 sources."tough-cookie-2.3.2" 28896 sources."tunnel-agent-0.6.0" 28897 sources."uuid-3.1.0" 28898 sources."delayed-stream-1.0.0" 28899 sources."asynckit-0.4.0" 28900 - sources."ajv-4.11.8" 28901 - sources."har-schema-1.0.5" 28902 sources."co-4.6.0" 28903 sources."json-stable-stringify-1.0.1" 28904 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" // { 28911 dependencies = [ 28912 - sources."assert-plus-1.0.0" 28913 ]; 28914 }) 28915 - (sources."sshpk-1.13.1" // { 28916 - dependencies = [ 28917 - sources."assert-plus-1.0.0" 28918 - ]; 28919 - }) 28920 sources."extsprintf-1.3.0" 28921 sources."json-schema-0.2.3" 28922 - (sources."verror-1.10.0" // { 28923 - dependencies = [ 28924 - sources."assert-plus-1.0.0" 28925 - ]; 28926 - }) 28927 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 - }) 28938 sources."jsbn-0.1.1" 28939 sources."tweetnacl-0.14.5" 28940 sources."ecc-jsbn-0.1.1" ··· 29020 sources."object-assign-4.1.1" 29021 sources."opn-5.1.0" 29022 sources."proxy-middleware-0.15.0" 29023 - sources."send-0.15.4" 29024 sources."serve-index-1.9.0" 29025 sources."anymatch-1.3.2" 29026 sources."async-each-1.0.1" ··· 29087 sources."string_decoder-1.0.3" 29088 sources."util-deprecate-1.0.2" 29089 sources."nan-2.7.0" 29090 - sources."node-pre-gyp-0.6.36" 29091 sources."mkdirp-0.5.1" 29092 sources."nopt-4.0.1" 29093 sources."npmlog-4.1.2" ··· 29096 sources."minimist-1.2.0" 29097 ]; 29098 }) 29099 - sources."request-2.81.0" 29100 - sources."rimraf-2.6.1" 29101 sources."semver-5.4.1" 29102 sources."tar-2.2.1" 29103 sources."tar-pack-3.4.0" 29104 sources."minimist-0.0.8" ··· 29111 sources."gauge-2.7.4" 29112 sources."set-blocking-2.0.0" 29113 sources."delegates-1.0.0" 29114 - sources."aproba-1.1.2" 29115 sources."has-unicode-2.0.1" 29116 sources."signal-exit-3.0.2" 29117 sources."string-width-1.0.2" ··· 29124 sources."deep-extend-0.4.2" 29125 sources."ini-1.3.4" 29126 sources."strip-json-comments-2.0.1" 29127 - sources."aws-sign2-0.6.0" 29128 sources."aws4-1.6.0" 29129 sources."caseless-0.12.0" 29130 sources."combined-stream-1.0.5" 29131 sources."extend-3.0.1" 29132 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" 29137 sources."is-typedarray-1.0.0" 29138 sources."isstream-0.1.2" 29139 sources."json-stringify-safe-5.0.1" 29140 sources."mime-types-2.1.17" 29141 sources."oauth-sign-0.8.2" 29142 - sources."performance-now-0.2.0" 29143 - sources."qs-6.4.0" 29144 sources."stringstream-0.0.5" 29145 sources."tough-cookie-2.3.2" 29146 sources."tunnel-agent-0.6.0" 29147 sources."uuid-3.1.0" 29148 sources."delayed-stream-1.0.0" 29149 sources."asynckit-0.4.0" 29150 - sources."ajv-4.11.8" 29151 - sources."har-schema-1.0.5" 29152 sources."co-4.6.0" 29153 sources."json-stable-stringify-1.0.1" 29154 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" // { 29161 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" 29168 ]; 29169 }) 29170 sources."extsprintf-1.3.0" 29171 sources."json-schema-0.2.3" 29172 - (sources."verror-1.10.0" // { 29173 - dependencies = [ 29174 - sources."assert-plus-1.0.0" 29175 - ]; 29176 - }) 29177 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 - }) 29188 sources."jsbn-0.1.1" 29189 sources."tweetnacl-0.14.5" 29190 sources."ecc-jsbn-0.1.1" ··· 29196 sources."inflight-1.0.6" 29197 sources."once-1.4.0" 29198 sources."wrappy-1.0.2" 29199 sources."block-stream-0.0.9" 29200 sources."fstream-1.0.11" 29201 sources."debug-2.6.8" ··· 29208 sources."ms-0.7.1" 29209 ]; 29210 }) 29211 - sources."parseurl-1.3.1" 29212 sources."utils-merge-1.0.0" 29213 sources."escape-html-1.0.3" 29214 sources."on-finished-2.3.0" ··· 29216 sources."unpipe-1.0.0" 29217 sources."ee-first-1.1.1" 29218 sources."vary-1.1.1" 29219 - sources."through-2.3.8" 29220 sources."duplexer-0.1.1" 29221 sources."from-0.1.7" 29222 sources."map-stream-0.1.0" 29223 sources."pause-stream-0.0.11" 29224 sources."split-0.3.3" 29225 sources."stream-combiner-0.0.4" 29226 - sources."websocket-driver-0.6.5" 29227 - sources."websocket-extensions-0.1.1" 29228 sources."apache-crypt-1.2.1" 29229 sources."apache-md5-1.1.2" 29230 sources."bcryptjs-2.4.3" ··· 29235 sources."is-wsl-1.1.0" 29236 sources."destroy-1.0.4" 29237 sources."encodeurl-1.0.1" 29238 - sources."etag-1.8.0" 29239 - sources."fresh-0.5.0" 29240 sources."http-errors-1.6.2" 29241 sources."mime-1.3.4" 29242 sources."range-parser-1.2.0" ··· 29291 mocha = nodeEnv.buildNodePackage { 29292 name = "mocha"; 29293 packageName = "mocha"; 29294 - version = "3.5.0"; 29295 src = fetchurl { 29296 - url = "https://registry.npmjs.org/mocha/-/mocha-3.5.0.tgz"; 29297 - sha512 = "0ygdqmd1pxvdrgyympyhfy8cg90632jkggbv7l7irnzl0gaxdmyrrs9bf634046q8xq41bfxysabapgwdy8ssd58vc8nggbk0y3d1d4"; 29298 }; 29299 dependencies = [ 29300 sources."browser-stdout-1.3.0" ··· 29304 sources."escape-string-regexp-1.0.5" 29305 sources."glob-7.1.1" 29306 sources."growl-1.9.2" 29307 sources."json3-3.3.2" 29308 sources."lodash.create-3.1.1" 29309 sources."mkdirp-0.5.1" ··· 29349 }; 29350 dependencies = [ 29351 sources."commander-2.11.0" 29352 - sources."js-yaml-3.9.1" 29353 sources."json-refs-2.1.7" 29354 sources."argparse-1.0.9" 29355 sources."esprima-4.0.0" ··· 29369 sources."formidable-1.1.1" 29370 sources."methods-1.1.2" 29371 sources."mime-1.4.0" 29372 - sources."qs-6.5.0" 29373 sources."readable-stream-2.3.3" 29374 sources."ms-2.0.0" 29375 sources."asynckit-0.4.0" ··· 29396 nijs = nodeEnv.buildNodePackage { 29397 name = "nijs"; 29398 packageName = "nijs"; 29399 - version = "0.0.23"; 29400 src = fetchurl { 29401 - url = "https://registry.npmjs.org/nijs/-/nijs-0.0.23.tgz"; 29402 - sha1 = "dbf8f4a0acafbe3b8d9b71c24cbd1d851de6c31a"; 29403 }; 29404 dependencies = [ 29405 sources."optparse-1.0.5" ··· 29408 buildInputs = globalBuildInputs; 29409 meta = { 29410 description = "An internal DSL for the Nix package manager in JavaScript"; 29411 - homepage = https://github.com/svanderburg/nijs; 29412 license = "MIT"; 29413 }; 29414 production = true; ··· 29447 sources."normalize-package-data-2.4.0" 29448 sources."npm-package-arg-5.1.2" 29449 sources."once-1.4.0" 29450 - sources."request-2.81.0" 29451 sources."retry-0.10.1" 29452 sources."slide-1.1.6" 29453 sources."ssri-4.1.6" ··· 29474 sources."os-tmpdir-1.0.2" 29475 sources."builtins-1.0.3" 29476 sources."wrappy-1.0.2" 29477 - sources."aws-sign2-0.6.0" 29478 sources."aws4-1.6.0" 29479 sources."caseless-0.12.0" 29480 sources."combined-stream-1.0.5" 29481 sources."extend-3.0.1" 29482 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" 29487 sources."is-typedarray-1.0.0" 29488 sources."isstream-0.1.2" 29489 sources."json-stringify-safe-5.0.1" 29490 sources."mime-types-2.1.17" 29491 sources."oauth-sign-0.8.2" 29492 - sources."performance-now-0.2.0" 29493 - sources."qs-6.4.0" 29494 sources."stringstream-0.0.5" 29495 sources."tough-cookie-2.3.2" 29496 sources."tunnel-agent-0.6.0" 29497 sources."uuid-3.1.0" 29498 sources."delayed-stream-1.0.0" 29499 sources."asynckit-0.4.0" 29500 - sources."ajv-4.11.8" 29501 - sources."har-schema-1.0.5" 29502 sources."co-4.6.0" 29503 sources."json-stable-stringify-1.0.1" 29504 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" // { 29511 dependencies = [ 29512 - sources."assert-plus-1.0.0" 29513 ]; 29514 }) 29515 - (sources."sshpk-1.13.1" // { 29516 - dependencies = [ 29517 - sources."assert-plus-1.0.0" 29518 - ]; 29519 - }) 29520 sources."extsprintf-1.3.0" 29521 sources."json-schema-0.2.3" 29522 - (sources."verror-1.10.0" // { 29523 - dependencies = [ 29524 - sources."assert-plus-1.0.0" 29525 - ]; 29526 - }) 29527 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 - }) 29538 sources."jsbn-0.1.1" 29539 sources."tweetnacl-0.14.5" 29540 sources."ecc-jsbn-0.1.1" ··· 29546 sources."gauge-2.7.4" 29547 sources."set-blocking-2.0.0" 29548 sources."delegates-1.0.0" 29549 - sources."aproba-1.1.2" 29550 sources."has-unicode-2.0.1" 29551 sources."object-assign-4.1.1" 29552 sources."signal-exit-3.0.2" ··· 29604 sources."nopt-3.0.6" 29605 sources."npmlog-4.1.2" 29606 sources."osenv-0.1.4" 29607 - sources."request-2.81.0" 29608 - sources."rimraf-2.6.1" 29609 sources."semver-5.3.0" 29610 sources."tar-2.2.1" 29611 sources."which-1.3.0" ··· 29632 sources."safe-buffer-5.1.1" 29633 sources."string_decoder-1.0.3" 29634 sources."util-deprecate-1.0.2" 29635 - sources."aproba-1.1.2" 29636 sources."has-unicode-2.0.1" 29637 sources."object-assign-4.1.1" 29638 sources."signal-exit-3.0.2" ··· 29645 sources."ansi-regex-2.1.1" 29646 sources."os-homedir-1.0.2" 29647 sources."os-tmpdir-1.0.2" 29648 - sources."aws-sign2-0.6.0" 29649 sources."aws4-1.6.0" 29650 sources."caseless-0.12.0" 29651 sources."combined-stream-1.0.5" 29652 sources."extend-3.0.1" 29653 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" 29658 sources."is-typedarray-1.0.0" 29659 sources."isstream-0.1.2" 29660 sources."json-stringify-safe-5.0.1" 29661 sources."mime-types-2.1.17" 29662 sources."oauth-sign-0.8.2" 29663 - sources."performance-now-0.2.0" 29664 - sources."qs-6.4.0" 29665 sources."stringstream-0.0.5" 29666 sources."tough-cookie-2.3.2" 29667 sources."tunnel-agent-0.6.0" 29668 sources."uuid-3.1.0" 29669 sources."delayed-stream-1.0.0" 29670 sources."asynckit-0.4.0" 29671 - sources."ajv-4.11.8" 29672 - sources."har-schema-1.0.5" 29673 sources."co-4.6.0" 29674 sources."json-stable-stringify-1.0.1" 29675 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" // { 29682 dependencies = [ 29683 - sources."assert-plus-1.0.0" 29684 ]; 29685 }) 29686 - (sources."sshpk-1.13.1" // { 29687 - dependencies = [ 29688 - sources."assert-plus-1.0.0" 29689 - ]; 29690 - }) 29691 sources."extsprintf-1.3.0" 29692 sources."json-schema-0.2.3" 29693 - (sources."verror-1.10.0" // { 29694 - dependencies = [ 29695 - sources."assert-plus-1.0.0" 29696 - ]; 29697 - }) 29698 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 - }) 29709 sources."jsbn-0.1.1" 29710 sources."tweetnacl-0.14.5" 29711 sources."ecc-jsbn-0.1.1" ··· 29740 sources."path-is-absolute-1.0.1" 29741 sources."rc-1.2.1" 29742 sources."semver-4.3.6" 29743 - sources."serve-favicon-2.4.3" 29744 sources."strong-data-uri-1.0.4" 29745 sources."v8-debug-1.0.1" 29746 sources."v8-profiler-5.7.0" ··· 29827 sources."accepts-1.3.4" 29828 sources."array-flatten-1.1.1" 29829 sources."content-disposition-0.5.2" 29830 - sources."content-type-1.0.2" 29831 sources."cookie-0.3.1" 29832 sources."cookie-signature-1.0.6" 29833 sources."depd-1.1.1" 29834 sources."encodeurl-1.0.1" 29835 sources."escape-html-1.0.3" 29836 - sources."etag-1.8.0" 29837 - sources."finalhandler-1.0.4" 29838 sources."fresh-0.5.0" 29839 sources."merge-descriptors-1.0.1" 29840 sources."methods-1.1.2" 29841 sources."on-finished-2.3.0" 29842 - sources."parseurl-1.3.1" 29843 sources."path-to-regexp-0.1.7" 29844 sources."proxy-addr-1.1.5" 29845 sources."qs-6.5.0" ··· 29856 sources."mime-db-1.30.0" 29857 sources."unpipe-1.0.0" 29858 sources."ee-first-1.1.1" 29859 - sources."forwarded-0.1.0" 29860 sources."ipaddr.js-1.4.0" 29861 sources."destroy-1.0.4" 29862 sources."http-errors-1.6.2" ··· 29873 sources."deep-extend-0.4.2" 29874 sources."ini-1.3.4" 29875 sources."strip-json-comments-2.0.1" 29876 - sources."safe-buffer-5.0.1" 29877 sources."truncate-1.0.5" 29878 sources."nan-2.7.0" 29879 - (sources."node-pre-gyp-0.6.36" // { 29880 dependencies = [ 29881 - sources."rimraf-2.6.1" 29882 sources."semver-5.4.1" 29883 sources."glob-7.1.2" 29884 ]; 29885 }) 29886 sources."nopt-4.0.1" 29887 sources."npmlog-4.1.2" 29888 - (sources."request-2.81.0" // { 29889 dependencies = [ 29890 - sources."qs-6.4.0" 29891 ]; 29892 }) 29893 sources."tar-2.2.1" 29894 (sources."tar-pack-3.4.0" // { 29895 dependencies = [ 29896 - sources."rimraf-2.6.1" 29897 sources."glob-7.1.2" 29898 ]; 29899 }) ··· 29903 sources."gauge-2.7.4" 29904 sources."set-blocking-2.0.0" 29905 sources."delegates-1.0.0" 29906 - (sources."readable-stream-2.3.3" // { 29907 - dependencies = [ 29908 - sources."safe-buffer-5.1.1" 29909 - ]; 29910 - }) 29911 sources."core-util-is-1.0.2" 29912 sources."isarray-1.0.0" 29913 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" 29920 sources."has-unicode-2.0.1" 29921 sources."string-width-1.0.2" 29922 sources."strip-ansi-3.0.1" ··· 29924 sources."code-point-at-1.1.0" 29925 sources."is-fullwidth-code-point-1.0.0" 29926 sources."ansi-regex-2.1.1" 29927 - sources."aws-sign2-0.6.0" 29928 sources."aws4-1.6.0" 29929 sources."caseless-0.12.0" 29930 sources."combined-stream-1.0.5" 29931 sources."extend-3.0.1" 29932 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" 29937 sources."is-typedarray-1.0.0" 29938 sources."isstream-0.1.2" 29939 sources."json-stringify-safe-5.0.1" 29940 sources."oauth-sign-0.8.2" 29941 - sources."performance-now-0.2.0" 29942 sources."stringstream-0.0.5" 29943 sources."tough-cookie-2.3.2" 29944 sources."tunnel-agent-0.6.0" 29945 sources."uuid-3.1.0" 29946 sources."delayed-stream-1.0.0" 29947 sources."asynckit-0.4.0" 29948 - sources."ajv-4.11.8" 29949 - sources."har-schema-1.0.5" 29950 sources."co-4.6.0" 29951 sources."json-stable-stringify-1.0.1" 29952 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" // { 29964 dependencies = [ 29965 - sources."assert-plus-1.0.0" 29966 ]; 29967 }) 29968 sources."extsprintf-1.3.0" 29969 sources."json-schema-0.2.3" 29970 - (sources."verror-1.10.0" // { 29971 - dependencies = [ 29972 - sources."assert-plus-1.0.0" 29973 - ]; 29974 - }) 29975 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 - }) 29986 sources."jsbn-0.1.1" 29987 sources."tweetnacl-0.14.5" 29988 sources."ecc-jsbn-0.1.1" 29989 sources."bcrypt-pbkdf-1.0.1" 29990 sources."punycode-1.4.1" 29991 sources."fs.realpath-1.0.0" 29992 sources."block-stream-0.0.9" 29993 sources."fstream-1.0.11" 29994 sources."fstream-ignore-1.0.5" ··· 30014 node-pre-gyp = nodeEnv.buildNodePackage { 30015 name = "node-pre-gyp"; 30016 packageName = "node-pre-gyp"; 30017 - version = "0.6.36"; 30018 src = fetchurl { 30019 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; 30020 - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; 30021 }; 30022 dependencies = [ 30023 sources."mkdirp-0.5.1" ··· 30028 sources."minimist-1.2.0" 30029 ]; 30030 }) 30031 - sources."request-2.81.0" 30032 - sources."rimraf-2.6.1" 30033 sources."semver-5.4.1" 30034 sources."tar-2.2.1" 30035 sources."tar-pack-3.4.0" 30036 sources."minimist-0.0.8" ··· 30051 sources."safe-buffer-5.1.1" 30052 sources."string_decoder-1.0.3" 30053 sources."util-deprecate-1.0.2" 30054 - sources."aproba-1.1.2" 30055 sources."has-unicode-2.0.1" 30056 sources."object-assign-4.1.1" 30057 sources."signal-exit-3.0.2" ··· 30065 sources."deep-extend-0.4.2" 30066 sources."ini-1.3.4" 30067 sources."strip-json-comments-2.0.1" 30068 - sources."aws-sign2-0.6.0" 30069 sources."aws4-1.6.0" 30070 sources."caseless-0.12.0" 30071 sources."combined-stream-1.0.5" 30072 sources."extend-3.0.1" 30073 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" 30078 sources."is-typedarray-1.0.0" 30079 sources."isstream-0.1.2" 30080 sources."json-stringify-safe-5.0.1" 30081 sources."mime-types-2.1.17" 30082 sources."oauth-sign-0.8.2" 30083 - sources."performance-now-0.2.0" 30084 - sources."qs-6.4.0" 30085 sources."stringstream-0.0.5" 30086 sources."tough-cookie-2.3.2" 30087 sources."tunnel-agent-0.6.0" 30088 sources."uuid-3.1.0" 30089 sources."delayed-stream-1.0.0" 30090 sources."asynckit-0.4.0" 30091 - sources."ajv-4.11.8" 30092 - sources."har-schema-1.0.5" 30093 sources."co-4.6.0" 30094 sources."json-stable-stringify-1.0.1" 30095 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" // { 30107 dependencies = [ 30108 - sources."assert-plus-1.0.0" 30109 ]; 30110 }) 30111 sources."extsprintf-1.3.0" 30112 sources."json-schema-0.2.3" 30113 - (sources."verror-1.10.0" // { 30114 - dependencies = [ 30115 - sources."assert-plus-1.0.0" 30116 - ]; 30117 - }) 30118 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 - }) 30129 sources."jsbn-0.1.1" 30130 sources."tweetnacl-0.14.5" 30131 sources."ecc-jsbn-0.1.1" ··· 30142 sources."brace-expansion-1.1.8" 30143 sources."balanced-match-1.0.0" 30144 sources."concat-map-0.0.1" 30145 sources."block-stream-0.0.9" 30146 sources."fstream-1.0.11" 30147 sources."graceful-fs-4.1.11" ··· 30161 nodemon = nodeEnv.buildNodePackage { 30162 name = "nodemon"; 30163 packageName = "nodemon"; 30164 - version = "1.12.0"; 30165 src = fetchurl { 30166 - url = "https://registry.npmjs.org/nodemon/-/nodemon-1.12.0.tgz"; 30167 - sha1 = "e538548a777340a19f855c4f087b7e528aa3feda"; 30168 }; 30169 dependencies = [ 30170 sources."chokidar-1.7.0" ··· 30242 sources."string_decoder-1.0.3" 30243 sources."util-deprecate-1.0.2" 30244 sources."nan-2.7.0" 30245 - sources."node-pre-gyp-0.6.36" 30246 sources."mkdirp-0.5.1" 30247 sources."nopt-4.0.1" 30248 sources."npmlog-4.1.2" ··· 30251 sources."minimist-1.2.0" 30252 ]; 30253 }) 30254 - sources."request-2.81.0" 30255 - sources."rimraf-2.6.1" 30256 sources."semver-5.4.1" 30257 sources."tar-2.2.1" 30258 sources."tar-pack-3.4.0" 30259 sources."minimist-0.0.8" ··· 30266 sources."gauge-2.7.4" 30267 sources."set-blocking-2.0.0" 30268 sources."delegates-1.0.0" 30269 - sources."aproba-1.1.2" 30270 sources."has-unicode-2.0.1" 30271 sources."object-assign-4.1.1" 30272 sources."signal-exit-3.0.2" ··· 30280 sources."deep-extend-0.4.2" 30281 sources."ini-1.3.4" 30282 sources."strip-json-comments-2.0.1" 30283 - sources."aws-sign2-0.6.0" 30284 sources."aws4-1.6.0" 30285 sources."caseless-0.12.0" 30286 sources."combined-stream-1.0.5" 30287 sources."extend-3.0.1" 30288 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" 30293 sources."is-typedarray-1.0.0" 30294 sources."isstream-0.1.2" 30295 sources."json-stringify-safe-5.0.1" 30296 sources."mime-types-2.1.17" 30297 sources."oauth-sign-0.8.2" 30298 - sources."performance-now-0.2.0" 30299 - sources."qs-6.4.0" 30300 sources."stringstream-0.0.5" 30301 sources."tough-cookie-2.3.2" 30302 sources."tunnel-agent-0.6.0" 30303 sources."uuid-3.1.0" 30304 sources."delayed-stream-1.0.0" 30305 sources."asynckit-0.4.0" 30306 - sources."ajv-4.11.8" 30307 - sources."har-schema-1.0.5" 30308 sources."co-4.6.0" 30309 sources."json-stable-stringify-1.0.1" 30310 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" // { 30317 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" 30324 ]; 30325 }) 30326 sources."extsprintf-1.3.0" 30327 sources."json-schema-0.2.3" 30328 - (sources."verror-1.10.0" // { 30329 - dependencies = [ 30330 - sources."assert-plus-1.0.0" 30331 - ]; 30332 - }) 30333 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 - }) 30344 sources."jsbn-0.1.1" 30345 sources."tweetnacl-0.14.5" 30346 sources."ecc-jsbn-0.1.1" ··· 30352 sources."inflight-1.0.6" 30353 sources."once-1.4.0" 30354 sources."wrappy-1.0.2" 30355 sources."block-stream-0.0.9" 30356 sources."fstream-1.0.11" 30357 sources."fstream-ignore-1.0.5" ··· 30372 sources."balanced-match-1.0.0" 30373 sources."concat-map-0.0.1" 30374 sources."event-stream-3.3.4" 30375 - sources."through-2.3.8" 30376 sources."duplexer-0.1.1" 30377 sources."from-0.1.7" 30378 sources."map-stream-0.1.0" ··· 30528 sources."node-red-node-email-0.1.24" 30529 (sources."node-red-node-twitter-0.1.11" // { 30530 dependencies = [ 30531 - sources."request-2.81.0" 30532 sources."caseless-0.12.0" 30533 - sources."form-data-2.1.4" 30534 - sources."har-validator-4.2.1" 30535 sources."tunnel-agent-0.6.0" 30536 ]; 30537 }) 30538 - sources."node-red-node-rbe-0.1.11" 30539 sources."bcrypt-1.0.3" 30540 sources."bytes-2.4.0" 30541 - sources."content-type-1.0.2" 30542 sources."debug-2.6.7" 30543 sources."depd-1.1.1" 30544 sources."http-errors-1.6.2" ··· 30596 sources."content-disposition-0.5.2" 30597 sources."encodeurl-1.0.1" 30598 sources."escape-html-1.0.3" 30599 - sources."etag-1.8.0" 30600 - (sources."finalhandler-1.0.4" // { 30601 dependencies = [ 30602 sources."debug-2.6.8" 30603 ]; ··· 30605 sources."fresh-0.5.0" 30606 sources."merge-descriptors-1.0.1" 30607 sources."methods-1.1.2" 30608 - sources."parseurl-1.3.1" 30609 sources."path-to-regexp-0.1.7" 30610 sources."proxy-addr-1.1.5" 30611 sources."range-parser-1.2.0" ··· 30614 sources."utils-merge-1.0.0" 30615 sources."negotiator-0.6.1" 30616 sources."unpipe-1.0.0" 30617 - sources."forwarded-0.1.0" 30618 sources."ipaddr.js-1.4.0" 30619 sources."destroy-1.0.4" 30620 sources."mime-1.3.4" ··· 30644 sources."split2-2.1.1" 30645 (sources."websocket-stream-5.0.1" // { 30646 dependencies = [ 30647 - sources."ws-3.1.0" 30648 ]; 30649 }) 30650 sources."xtend-4.0.1" ··· 30687 sources."through2-filter-2.0.0" 30688 sources."jsonify-0.0.0" 30689 sources."bl-1.2.1" 30690 sources."ultron-1.1.0" 30691 sources."append-field-0.1.0" 30692 (sources."busboy-0.2.14" // { ··· 30856 sources."utf7-1.0.2" 30857 sources."twitter-ng-0.6.2" 30858 sources."oauth-0.9.14" 30859 - sources."performance-now-0.2.0" 30860 sources."uuid-3.1.0" 30861 sources."asynckit-0.4.0" 30862 - sources."ajv-4.11.8" 30863 - sources."har-schema-1.0.5" 30864 sources."co-4.6.0" 30865 sources."nan-2.6.2" 30866 (sources."node-pre-gyp-0.6.36" // { 30867 dependencies = [ 30868 sources."nopt-4.0.1" 30869 - sources."request-2.81.0" 30870 sources."caseless-0.12.0" 30871 - sources."form-data-2.1.4" 30872 - sources."har-validator-4.2.1" 30873 sources."tunnel-agent-0.6.0" 30874 ]; 30875 }) 30876 sources."npmlog-4.1.2" 30877 sources."rc-1.2.1" 30878 - sources."rimraf-2.6.1" 30879 sources."tar-2.2.1" 30880 sources."tar-pack-3.4.0" 30881 sources."osenv-0.1.4" ··· 30886 sources."gauge-2.7.4" 30887 sources."set-blocking-2.0.0" 30888 sources."delegates-1.0.0" 30889 - sources."aproba-1.1.2" 30890 sources."has-unicode-2.0.1" 30891 sources."signal-exit-3.0.2" 30892 sources."string-width-1.0.2" ··· 31039 npm = nodeEnv.buildNodePackage { 31040 name = "npm"; 31041 packageName = "npm"; 31042 - version = "5.4.1"; 31043 src = fetchurl { 31044 - url = "https://registry.npmjs.org/npm/-/npm-5.4.1.tgz"; 31045 - sha512 = "0vb3ad2wgv4y52jwbz8xpzg36hzimbbnlad594kblfq2mjfnaw9v4zzgd19ghan4a622s4zcrap51l2fww79lbl6n2qfv26allyg26z"; 31046 }; 31047 dependencies = [ 31048 sources."JSONStream-1.3.1" ··· 31104 sources."npm-install-checks-3.0.0" 31105 sources."npm-lifecycle-1.0.3" 31106 sources."npm-package-arg-5.1.2" 31107 - sources."npm-packlist-1.1.8" 31108 sources."npm-registry-client-8.4.0" 31109 sources."npm-user-validate-1.0.0" 31110 sources."npmlog-4.1.2" ··· 31122 sources."readable-stream-2.3.3" 31123 sources."request-2.81.0" 31124 sources."retry-0.10.1" 31125 - sources."rimraf-2.6.1" 31126 sources."safe-buffer-5.1.1" 31127 sources."semver-5.4.1" 31128 sources."sha-2.0.1" ··· 31154 sources."which-1.3.0" 31155 sources."worker-farm-1.5.0" 31156 sources."wrappy-1.0.2" 31157 - sources."write-file-atomic-2.3.0" 31158 sources."debuglog-1.0.1" 31159 sources."imurmurhash-0.1.4" 31160 sources."lodash._baseindexof-3.1.0" ··· 31298 sources."http-proxy-agent-2.0.0" 31299 sources."https-proxy-agent-2.1.0" 31300 sources."node-fetch-npm-2.0.2" 31301 - sources."socks-proxy-agent-3.0.0" 31302 sources."humanize-ms-1.2.1" 31303 sources."ms-2.0.0" 31304 sources."agent-base-4.1.1" ··· 31307 sources."es6-promise-4.1.1" 31308 sources."encoding-0.1.12" 31309 sources."json-parse-better-errors-1.0.1" 31310 - sources."iconv-lite-0.4.18" 31311 sources."socks-1.1.10" 31312 sources."ip-1.1.5" 31313 sources."smart-buffer-1.1.15" ··· 31517 sources."coffee-script-1.12.7" 31518 sources."underscore-1.4.4" 31519 sources."underscore.string-2.3.3" 31520 - sources."request-2.81.0" 31521 sources."graceful-fs-2.0.3" 31522 sources."slide-1.1.6" 31523 sources."chownr-0.0.2" 31524 sources."mkdirp-0.3.5" 31525 - sources."rimraf-2.6.1" 31526 sources."retry-0.6.0" 31527 sources."couch-login-0.1.20" 31528 sources."npmlog-4.1.2" 31529 - sources."aws-sign2-0.6.0" 31530 sources."aws4-1.6.0" 31531 sources."caseless-0.12.0" 31532 sources."combined-stream-1.0.5" 31533 sources."extend-3.0.1" 31534 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" 31539 sources."is-typedarray-1.0.0" 31540 sources."isstream-0.1.2" 31541 sources."json-stringify-safe-5.0.1" 31542 sources."mime-types-2.1.17" 31543 sources."oauth-sign-0.8.2" 31544 - sources."performance-now-0.2.0" 31545 - sources."qs-6.4.0" 31546 sources."safe-buffer-5.1.1" 31547 sources."stringstream-0.0.5" 31548 sources."tough-cookie-2.3.2" ··· 31550 sources."uuid-3.1.0" 31551 sources."delayed-stream-1.0.0" 31552 sources."asynckit-0.4.0" 31553 - sources."ajv-4.11.8" 31554 - sources."har-schema-1.0.5" 31555 sources."co-4.6.0" 31556 sources."json-stable-stringify-1.0.1" 31557 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" // { 31569 dependencies = [ 31570 - sources."assert-plus-1.0.0" 31571 ]; 31572 }) 31573 sources."extsprintf-1.3.0" 31574 sources."json-schema-0.2.3" 31575 - (sources."verror-1.10.0" // { 31576 - dependencies = [ 31577 - sources."assert-plus-1.0.0" 31578 - ]; 31579 - }) 31580 sources."core-util-is-1.0.2" 31581 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 - }) 31592 sources."jsbn-0.1.1" 31593 sources."tweetnacl-0.14.5" 31594 sources."ecc-jsbn-0.1.1" ··· 31616 sources."process-nextick-args-1.0.7" 31617 sources."string_decoder-1.0.3" 31618 sources."util-deprecate-1.0.2" 31619 - sources."aproba-1.1.2" 31620 sources."has-unicode-2.0.1" 31621 sources."object-assign-4.1.1" 31622 sources."signal-exit-3.0.2" ··· 31677 sources."cint-8.2.1" 31678 sources."cli-table-0.3.1" 31679 sources."commander-2.11.0" 31680 - sources."fast-diff-1.1.1" 31681 sources."find-up-1.1.2" 31682 sources."get-stdin-5.0.1" 31683 sources."json-parse-helpfulerror-1.0.3" ··· 31696 sources."require-dir-0.3.2" 31697 sources."semver-5.4.1" 31698 sources."semver-utils-1.1.1" 31699 - (sources."snyk-1.40.2" // { 31700 dependencies = [ 31701 sources."update-notifier-0.5.0" 31702 sources."latest-version-1.0.1" ··· 31997 sources."mute-stream-0.0.6" 31998 ]; 31999 }) 32000 sources."open-0.0.5" 32001 sources."os-name-1.0.3" 32002 sources."snyk-config-1.0.1" 32003 - sources."snyk-go-plugin-1.1.3" 32004 sources."snyk-gradle-plugin-1.1.2" 32005 sources."snyk-module-1.8.1" 32006 - sources."snyk-mvn-plugin-1.0.1" 32007 sources."snyk-policy-1.7.1" 32008 sources."snyk-python-plugin-1.2.4" 32009 (sources."snyk-recursive-readdir-2.0.0" // { ··· 32045 sources."exit-hook-1.1.1" 32046 sources."onetime-1.1.0" 32047 sources."is-promise-2.1.0" 32048 (sources."osx-release-1.1.0" // { 32049 dependencies = [ 32050 sources."minimist-1.2.0" ··· 32070 sources."longest-1.0.1" 32071 sources."repeat-string-1.6.1" 32072 sources."is-buffer-1.1.5" 32073 - sources."fs-0.0.1-security" 32074 sources."toml-2.3.3" 32075 sources."clone-deep-0.3.0" 32076 sources."for-own-1.0.0" ··· 32089 sources."for-in-0.1.8" 32090 ]; 32091 }) 32092 - sources."js-yaml-3.9.1" 32093 sources."argparse-1.0.9" 32094 sources."esprima-4.0.0" 32095 sources."sprintf-js-1.0.3" ··· 32215 ocaml-language-server = nodeEnv.buildNodePackage { 32216 name = "ocaml-language-server"; 32217 packageName = "ocaml-language-server"; 32218 - version = "0.2.0"; 32219 src = fetchurl { 32220 - url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-0.2.0.tgz"; 32221 - sha1 = "f9ae38396f893863ed52c1a29fb45b42236e1a36"; 32222 }; 32223 dependencies = [ 32224 - sources."async-2.1.5" 32225 - sources."glob-7.1.1" 32226 sources."lodash-4.17.4" 32227 sources."lokijs-1.4.3" 32228 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" 32233 sources."fs.realpath-1.0.0" 32234 sources."inflight-1.0.6" 32235 sources."inherits-2.0.3" ··· 32260 dependencies = [ 32261 sources."async-0.9.2" 32262 sources."babybird-0.0.1" 32263 - (sources."body-parser-1.17.2" // { 32264 dependencies = [ 32265 - sources."content-type-1.0.2" 32266 ]; 32267 }) 32268 (sources."compression-1.7.0" // { 32269 dependencies = [ 32270 sources."bytes-2.5.0" 32271 - sources."debug-2.6.8" 32272 ]; 32273 }) 32274 sources."connect-busboy-0.0.2" ··· 32279 sources."entities-1.1.1" 32280 (sources."express-4.15.4" // { 32281 dependencies = [ 32282 - sources."content-type-1.0.2" 32283 - sources."debug-2.6.8" 32284 - sources."finalhandler-1.0.4" 32285 sources."qs-6.5.0" 32286 ]; 32287 }) ··· 32292 sources."ms-0.7.1" 32293 ]; 32294 }) 32295 - sources."js-yaml-3.9.1" 32296 sources."mediawiki-title-0.5.6" 32297 sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" 32298 sources."node-uuid-1.4.8" 32299 sources."pegjs-git+https://github.com/tstarling/pegjs.git#fork" 32300 sources."prfun-2.1.4" 32301 - sources."request-2.81.0" 32302 sources."semver-5.4.1" 32303 - (sources."serve-favicon-2.4.3" // { 32304 dependencies = [ 32305 - sources."safe-buffer-5.0.1" 32306 ]; 32307 }) 32308 (sources."service-runner-2.3.0" // { ··· 32323 }) 32324 sources."asap-2.0.6" 32325 sources."is-arguments-1.0.2" 32326 - sources."bytes-2.4.0" 32327 - sources."debug-2.6.7" 32328 sources."depd-1.1.1" 32329 sources."http-errors-1.6.2" 32330 - sources."iconv-lite-0.4.15" 32331 sources."on-finished-2.3.0" 32332 - sources."qs-6.4.0" 32333 - sources."raw-body-2.2.0" 32334 sources."type-is-1.6.15" 32335 sources."ms-2.0.0" 32336 sources."inherits-2.0.3" ··· 32359 sources."cookie-signature-1.0.6" 32360 sources."encodeurl-1.0.1" 32361 sources."escape-html-1.0.3" 32362 - sources."etag-1.8.0" 32363 sources."fresh-0.5.0" 32364 sources."merge-descriptors-1.0.1" 32365 sources."methods-1.1.2" 32366 - sources."parseurl-1.3.1" 32367 sources."path-to-regexp-0.1.7" 32368 sources."proxy-addr-1.1.5" 32369 sources."range-parser-1.2.0" 32370 - (sources."send-0.15.4" // { 32371 - dependencies = [ 32372 - sources."debug-2.6.8" 32373 - ]; 32374 - }) 32375 sources."serve-static-1.12.4" 32376 sources."utils-merge-1.0.0" 32377 - sources."forwarded-0.1.0" 32378 sources."ipaddr.js-1.4.0" 32379 sources."destroy-1.0.4" 32380 sources."mime-1.3.4" ··· 32430 sources."argparse-1.0.9" 32431 sources."esprima-4.0.0" 32432 sources."sprintf-js-1.0.3" 32433 - sources."aws-sign2-0.6.0" 32434 sources."aws4-1.6.0" 32435 sources."caseless-0.12.0" 32436 sources."combined-stream-1.0.5" 32437 sources."extend-3.0.1" 32438 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" 32443 sources."is-typedarray-1.0.0" 32444 sources."isstream-0.1.2" 32445 sources."json-stringify-safe-5.0.1" 32446 sources."oauth-sign-0.8.2" 32447 - sources."performance-now-0.2.0" 32448 sources."stringstream-0.0.5" 32449 sources."tough-cookie-2.3.2" 32450 sources."tunnel-agent-0.6.0" 32451 sources."uuid-3.1.0" 32452 sources."delayed-stream-1.0.0" 32453 sources."asynckit-0.4.0" 32454 - sources."ajv-4.11.8" 32455 - sources."har-schema-1.0.5" 32456 sources."co-4.6.0" 32457 sources."json-stable-stringify-1.0.1" 32458 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" // { 32465 dependencies = [ 32466 - sources."assert-plus-1.0.0" 32467 ]; 32468 }) 32469 - (sources."sshpk-1.13.1" // { 32470 - dependencies = [ 32471 - sources."assert-plus-1.0.0" 32472 - ]; 32473 - }) 32474 sources."extsprintf-1.3.0" 32475 sources."json-schema-0.2.3" 32476 - (sources."verror-1.10.0" // { 32477 - dependencies = [ 32478 - sources."assert-plus-1.0.0" 32479 - ]; 32480 - }) 32481 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 - }) 32492 sources."jsbn-0.1.1" 32493 sources."tweetnacl-0.14.5" 32494 sources."ecc-jsbn-0.1.1" ··· 32498 sources."bunyan-1.8.12" 32499 sources."bunyan-syslog-udp-0.1.0" 32500 sources."gelf-stream-1.1.1" 32501 - sources."hot-shots-4.5.0" 32502 (sources."limitation-0.2.0" // { 32503 dependencies = [ 32504 sources."readable-stream-2.3.3" ··· 32808 sources."ip-set-1.0.1" 32809 sources."mkdirp-0.3.5" 32810 sources."peer-wire-swarm-0.12.1" 32811 - sources."rimraf-2.6.1" 32812 sources."torrent-discovery-5.4.0" 32813 sources."torrent-piece-1.1.1" 32814 (sources."random-access-file-1.8.1" // { ··· 32947 ]; 32948 }) 32949 sources."content-disposition-0.5.0" 32950 - sources."content-type-1.0.2" 32951 sources."commander-2.6.0" 32952 sources."cookie-0.1.3" 32953 sources."cookie-signature-1.0.6" ··· 32958 sources."fresh-0.3.0" 32959 sources."merge-descriptors-1.0.0" 32960 sources."methods-1.1.2" 32961 - sources."parseurl-1.3.1" 32962 sources."proxy-addr-1.0.10" 32963 (sources."send-0.13.0" // { 32964 dependencies = [ ··· 33054 sources."batch-0.5.3" 33055 sources."destroy-1.0.4" 33056 sources."mime-1.3.4" 33057 - sources."forwarded-0.1.0" 33058 sources."ipaddr.js-1.0.5" 33059 sources."minimist-0.0.8" 33060 sources."end-of-stream-1.4.0" ··· 33167 sources."immediate-chunk-store-1.0.8" 33168 sources."ip-set-1.0.1" 33169 sources."peer-wire-swarm-0.12.1" 33170 - sources."rimraf-2.6.1" 33171 sources."torrent-discovery-5.4.0" 33172 sources."torrent-piece-1.1.1" 33173 (sources."random-access-file-1.8.1" // { ··· 33299 sources."jsonfile-2.4.0" 33300 sources."klaw-1.3.1" 33301 sources."path-is-absolute-1.0.1" 33302 - sources."rimraf-2.6.1" 33303 sources."glob-7.1.2" 33304 sources."fs.realpath-1.0.0" 33305 sources."inflight-1.0.6" ··· 33401 prettier = nodeEnv.buildNodePackage { 33402 name = "prettier"; 33403 packageName = "prettier"; 33404 - version = "1.6.1"; 33405 src = fetchurl { 33406 - url = "https://registry.npmjs.org/prettier/-/prettier-1.6.1.tgz"; 33407 - sha512 = "31al4m6n59a0mr6q8fn231zn4navr252z2pgq7dhcxdpp5a1aqaqmvx0sgamv97pkygswlcpbsj7a1dg2ijb9n0zr623ai2hh36mkkz"; 33408 }; 33409 buildInputs = globalBuildInputs; 33410 meta = { ··· 33414 }; 33415 production = true; 33416 }; 33417 react-tools = nodeEnv.buildNodePackage { 33418 name = "react-tools"; 33419 packageName = "react-tools"; ··· 33433 sources."detective-4.5.0" 33434 sources."glob-5.0.15" 33435 sources."graceful-fs-4.1.11" 33436 - sources."iconv-lite-0.4.18" 33437 sources."mkdirp-0.5.1" 33438 sources."private-0.1.7" 33439 sources."q-1.5.0" ··· 33536 sources."request-2.9.203" 33537 (sources."openid-2.0.6" // { 33538 dependencies = [ 33539 - sources."request-2.81.0" 33540 - sources."qs-6.4.0" 33541 ]; 33542 }) 33543 sources."node-swt-0.1.1" 33544 sources."node-wsfederation-0.1.1" 33545 sources."formidable-1.0.11" 33546 sources."crc-0.2.0" 33547 - sources."aws-sign2-0.6.0" 33548 sources."aws4-1.6.0" 33549 sources."caseless-0.12.0" 33550 sources."combined-stream-1.0.5" 33551 sources."extend-3.0.1" 33552 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" 33557 sources."is-typedarray-1.0.0" 33558 sources."isstream-0.1.2" 33559 sources."json-stringify-safe-5.0.1" 33560 sources."mime-types-2.1.17" 33561 sources."oauth-sign-0.8.2" 33562 - sources."performance-now-0.2.0" 33563 sources."safe-buffer-5.1.1" 33564 sources."stringstream-0.0.5" 33565 sources."tough-cookie-2.3.2" ··· 33567 sources."uuid-3.1.0" 33568 sources."delayed-stream-1.0.0" 33569 sources."asynckit-0.4.0" 33570 - sources."ajv-4.11.8" 33571 - sources."har-schema-1.0.5" 33572 sources."co-4.6.0" 33573 sources."json-stable-stringify-1.0.1" 33574 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" // { 33581 dependencies = [ 33582 - sources."assert-plus-1.0.0" 33583 ]; 33584 }) 33585 - (sources."sshpk-1.13.1" // { 33586 - dependencies = [ 33587 - sources."assert-plus-1.0.0" 33588 - ]; 33589 - }) 33590 sources."extsprintf-1.3.0" 33591 sources."json-schema-0.2.3" 33592 - (sources."verror-1.10.0" // { 33593 - dependencies = [ 33594 - sources."assert-plus-1.0.0" 33595 - ]; 33596 - }) 33597 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 - }) 33608 sources."jsbn-0.1.1" 33609 sources."tweetnacl-0.14.5" 33610 sources."ecc-jsbn-0.1.1" ··· 33637 serve = nodeEnv.buildNodePackage { 33638 name = "serve"; 33639 packageName = "serve"; 33640 - version = "6.0.6"; 33641 src = fetchurl { 33642 - url = "https://registry.npmjs.org/serve/-/serve-6.0.6.tgz"; 33643 - sha512 = "1r8g02k4ab6rr6mbh0pib7wg2q08nmydkz5mgvg5mjlq41q7cqi3gsxw85d9qw891rmrhx66zm0h7m85y7mldp3b7nhqqgmqblsl9h2"; 33644 }; 33645 dependencies = [ 33646 - sources."args-3.0.4" 33647 - sources."basic-auth-1.1.0" 33648 sources."bluebird-3.5.0" 33649 sources."boxen-1.2.1" 33650 - sources."chalk-2.0.1" 33651 (sources."clipboardy-1.1.4" // { 33652 dependencies = [ 33653 sources."execa-0.6.3" ··· 33656 sources."dargs-5.1.0" 33657 sources."detect-port-1.2.1" 33658 sources."filesize-3.5.10" 33659 - sources."fs-extra-4.0.1" 33660 sources."handlebars-4.0.10" 33661 sources."ip-1.1.5" 33662 - sources."micro-8.0.1" 33663 sources."micro-compress-1.0.0" 33664 - (sources."mime-types-2.1.16" // { 33665 - dependencies = [ 33666 - sources."mime-db-1.29.0" 33667 - ]; 33668 - }) 33669 sources."node-version-1.1.0" 33670 sources."opn-5.1.0" 33671 sources."path-type-3.0.0" 33672 - (sources."send-0.15.3" // { 33673 - dependencies = [ 33674 - sources."debug-2.6.7" 33675 - ]; 33676 - }) 33677 (sources."update-notifier-2.2.0" // { 33678 dependencies = [ 33679 sources."chalk-1.1.3" ··· 33687 sources."minimist-1.2.0" 33688 sources."pkginfo-0.4.0" 33689 sources."string-similarity-1.2.0" 33690 sources."lodash-4.17.4" 33691 sources."ansi-align-2.0.0" 33692 sources."cli-boxes-1.0.0" 33693 sources."string-width-2.1.1" ··· 33721 sources."path-key-2.0.1" 33722 sources."code-point-at-1.1.0" 33723 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 sources."address-1.0.3" 33731 sources."debug-2.6.8" 33732 sources."ms-2.0.0" 33733 sources."graceful-fs-4.1.11" 33734 - sources."jsonfile-3.0.1" 33735 sources."universalify-0.1.1" 33736 sources."async-1.5.2" 33737 (sources."optimist-0.6.1" // { ··· 33770 sources."is-buffer-1.1.5" 33771 sources."media-typer-0.3.0" 33772 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" 33776 sources."unpipe-1.0.0" 33777 (sources."compression-1.7.0" // { 33778 dependencies = [ 33779 sources."bytes-2.5.0" ··· 33782 sources."accepts-1.3.4" 33783 sources."compressible-2.0.11" 33784 sources."on-headers-1.0.1" 33785 - sources."safe-buffer-5.1.1" 33786 sources."vary-1.1.1" 33787 sources."negotiator-0.6.1" 33788 sources."mime-db-1.30.0" 33789 sources."is-wsl-1.1.0" 33790 sources."pify-3.0.0" 33791 - sources."depd-1.1.1" 33792 sources."destroy-1.0.4" 33793 sources."encodeurl-1.0.1" 33794 sources."escape-html-1.0.3" 33795 - sources."etag-1.8.0" 33796 sources."fresh-0.5.0" 33797 - sources."http-errors-1.6.2" 33798 sources."mime-1.3.4" 33799 sources."on-finished-2.3.0" 33800 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 sources."ee-first-1.1.1" 33805 sources."configstore-3.1.1" 33806 sources."import-lazy-2.1.0" ··· 33863 dependencies = [ 33864 sources."express-5.0.0-alpha.5" 33865 sources."express-json5-0.1.0" 33866 - (sources."body-parser-1.17.2" // { 33867 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" 33872 sources."ms-2.0.0" 33873 ]; 33874 }) ··· 33880 ]; 33881 }) 33882 sources."commander-2.11.0" 33883 - sources."js-yaml-3.9.1" 33884 sources."cookies-0.7.1" 33885 - sources."request-2.81.0" 33886 sources."async-0.9.2" 33887 sources."es6-shim-0.21.1" 33888 sources."semver-4.3.6" ··· 33908 sources."accepts-1.3.4" 33909 sources."array-flatten-2.1.1" 33910 sources."content-disposition-0.5.2" 33911 - sources."content-type-1.0.2" 33912 sources."cookie-0.3.1" 33913 sources."cookie-signature-1.0.6" 33914 sources."debug-2.6.1" 33915 sources."depd-1.1.1" 33916 sources."encodeurl-1.0.1" 33917 sources."escape-html-1.0.3" 33918 - sources."etag-1.8.0" 33919 - (sources."finalhandler-1.0.4" // { 33920 dependencies = [ 33921 sources."debug-2.6.8" 33922 sources."ms-2.0.0" ··· 33926 sources."merge-descriptors-1.0.1" 33927 sources."methods-1.1.2" 33928 sources."on-finished-2.3.0" 33929 - sources."parseurl-1.3.1" 33930 sources."path-is-absolute-1.0.1" 33931 sources."path-to-regexp-0.1.7" 33932 sources."proxy-addr-1.1.5" ··· 33951 sources."ms-0.7.2" 33952 sources."unpipe-1.0.0" 33953 sources."ee-first-1.1.1" 33954 - sources."forwarded-0.1.0" 33955 sources."ipaddr.js-1.4.0" 33956 sources."destroy-1.0.4" 33957 sources."mime-1.3.4" ··· 33966 sources."esprima-4.0.0" 33967 sources."sprintf-js-1.0.3" 33968 sources."keygrip-1.0.2" 33969 - sources."aws-sign2-0.6.0" 33970 sources."aws4-1.6.0" 33971 sources."caseless-0.12.0" 33972 sources."combined-stream-1.0.5" 33973 sources."extend-3.0.1" 33974 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" 33979 sources."is-typedarray-1.0.0" 33980 sources."isstream-0.1.2" 33981 sources."json-stringify-safe-5.0.1" 33982 sources."oauth-sign-0.8.2" 33983 - sources."performance-now-0.2.0" 33984 sources."stringstream-0.0.5" 33985 sources."tough-cookie-2.3.2" 33986 sources."tunnel-agent-0.6.0" 33987 sources."uuid-3.1.0" 33988 sources."delayed-stream-1.0.0" 33989 sources."asynckit-0.4.0" 33990 - sources."ajv-4.11.8" 33991 - sources."har-schema-1.0.5" 33992 sources."co-4.6.0" 33993 sources."json-stable-stringify-1.0.1" 33994 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" // { 34001 dependencies = [ 34002 - sources."assert-plus-1.0.0" 34003 ]; 34004 }) 34005 - (sources."sshpk-1.13.1" // { 34006 - dependencies = [ 34007 - sources."assert-plus-1.0.0" 34008 - ]; 34009 - }) 34010 sources."extsprintf-1.3.0" 34011 sources."json-schema-0.2.3" 34012 - (sources."verror-1.10.0" // { 34013 - dependencies = [ 34014 - sources."assert-plus-1.0.0" 34015 - ]; 34016 - }) 34017 sources."core-util-is-1.0.2" 34018 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 - }) 34029 sources."jsbn-0.1.1" 34030 sources."tweetnacl-0.14.5" 34031 sources."ecc-jsbn-0.1.1" ··· 34220 sources."dtrace-provider-0.6.0" 34221 sources."precond-0.2.3" 34222 sources."csv-generate-0.0.6" 34223 - sources."csv-parse-1.2.1" 34224 sources."stream-transform-0.1.2" 34225 sources."csv-stringify-0.0.8" 34226 sources."asn1-0.1.11" ··· 34338 sources."esprima-2.7.3" 34339 sources."sprintf-js-1.0.3" 34340 sources."minimist-0.0.8" 34341 - sources."clap-1.2.0" 34342 sources."source-map-0.5.7" 34343 sources."chalk-1.1.3" 34344 sources."ansi-styles-2.2.1" ··· 34420 uglify-js = nodeEnv.buildNodePackage { 34421 name = "uglify-js"; 34422 packageName = "uglify-js"; 34423 - version = "3.0.28"; 34424 src = fetchurl { 34425 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.0.28.tgz"; 34426 - sha512 = "0c2lanpm4sac5iz6mybcdxyh2y1hrgjghlggjh1wq2nr19lr9yig6j2hgjvghm1pzv5r3lm7pfhbgnpndrbynjmva3a3mxlmhcyl7yj"; 34427 }; 34428 dependencies = [ 34429 sources."commander-2.11.0" ··· 34520 }) 34521 (sources."npm-registry-client-8.4.0" // { 34522 dependencies = [ 34523 - sources."request-2.81.0" 34524 sources."combined-stream-1.0.5" 34525 sources."extend-3.0.1" 34526 sources."forever-agent-0.6.1" 34527 - sources."form-data-2.1.4" 34528 - sources."hawk-3.1.3" 34529 sources."json-stringify-safe-5.0.1" 34530 sources."oauth-sign-0.8.2" 34531 sources."tunnel-agent-0.6.0" 34532 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" 34537 ]; 34538 }) 34539 sources."octicons-3.5.0" ··· 34553 sources."minimist-1.2.0" 34554 ]; 34555 }) 34556 - sources."rimraf-2.6.1" 34557 sources."semver-5.4.1" 34558 sources."serve-static-1.12.4" 34559 sources."signals-1.0.0" ··· 34593 ]; 34594 }) 34595 sources."bytes-2.4.0" 34596 - sources."content-type-1.0.2" 34597 sources."debug-2.6.7" 34598 sources."depd-1.1.1" 34599 sources."http-errors-1.6.2" ··· 34632 sources."content-disposition-0.5.2" 34633 sources."encodeurl-1.0.1" 34634 sources."escape-html-1.0.3" 34635 - sources."etag-1.8.0" 34636 - (sources."finalhandler-1.0.4" // { 34637 dependencies = [ 34638 sources."debug-2.6.8" 34639 ]; ··· 34641 sources."fresh-0.5.0" 34642 sources."merge-descriptors-1.0.1" 34643 sources."methods-1.1.2" 34644 - sources."parseurl-1.3.1" 34645 sources."path-to-regexp-0.1.7" 34646 sources."proxy-addr-1.1.5" 34647 sources."range-parser-1.2.0" ··· 34653 sources."utils-merge-1.0.0" 34654 sources."vary-1.1.1" 34655 sources."negotiator-0.6.1" 34656 - sources."forwarded-0.1.0" 34657 sources."ipaddr.js-1.4.0" 34658 sources."destroy-1.0.4" 34659 sources."mime-1.3.4" ··· 35100 sources."spdx-expression-parse-1.0.4" 35101 sources."spdx-license-ids-1.2.2" 35102 sources."ssri-4.1.6" 35103 sources."passport-strategy-1.0.0" 35104 sources."pause-0.0.1" 35105 sources."lsmod-1.0.0" ··· 35261 sources."jsonfile-2.4.0" 35262 sources."klaw-1.3.1" 35263 sources."path-is-absolute-1.0.1" 35264 - sources."rimraf-2.6.1" 35265 sources."glob-7.1.2" 35266 sources."fs.realpath-1.0.0" 35267 sources."inflight-1.0.6" ··· 35363 webpack = nodeEnv.buildNodePackage { 35364 name = "webpack"; 35365 packageName = "webpack"; 35366 - version = "3.5.6"; 35367 src = fetchurl { 35368 - url = "https://registry.npmjs.org/webpack/-/webpack-3.5.6.tgz"; 35369 - sha512 = "074qvc0afzqmgizpxih7yhbp3bzf77l3jf91zssaqlilvz56jkgj6mnyw5r2qv2y8kgqc8q147ys00b8bc8v2q12imrb8ca3rzz2ydi"; 35370 }; 35371 dependencies = [ 35372 sources."acorn-5.1.2" ··· 35380 sources."async-2.5.0" 35381 sources."enhanced-resolve-3.4.1" 35382 sources."escope-3.6.0" 35383 - sources."interpret-1.0.3" 35384 sources."json-loader-0.5.7" 35385 sources."json5-0.5.1" 35386 sources."loader-runner-2.3.0" ··· 35430 sources."es6-set-0.1.5" 35431 sources."es6-symbol-3.1.1" 35432 sources."event-emitter-0.3.5" 35433 - sources."big.js-3.1.3" 35434 sources."emojis-list-2.1.0" 35435 sources."errno-0.1.4" 35436 sources."readable-stream-2.3.3" ··· 35482 sources."create-hash-1.1.3" 35483 sources."create-hmac-1.1.6" 35484 sources."diffie-hellman-5.0.2" 35485 - sources."pbkdf2-3.0.13" 35486 sources."public-encrypt-4.0.0" 35487 sources."randombytes-2.0.5" 35488 sources."browserify-aes-1.0.8" ··· 35590 sources."balanced-match-1.0.0" 35591 sources."concat-map-0.0.1" 35592 sources."nan-2.7.0" 35593 - sources."node-pre-gyp-0.6.36" 35594 sources."nopt-4.0.1" 35595 sources."npmlog-4.1.2" 35596 (sources."rc-1.2.1" // { ··· 35598 sources."minimist-1.2.0" 35599 ]; 35600 }) 35601 - sources."request-2.81.0" 35602 - sources."rimraf-2.6.1" 35603 sources."semver-5.4.1" 35604 sources."tar-2.2.1" 35605 sources."tar-pack-3.4.0" 35606 sources."abbrev-1.1.0" ··· 35612 sources."gauge-2.7.4" 35613 sources."set-blocking-2.0.0" 35614 sources."delegates-1.0.0" 35615 - sources."aproba-1.1.2" 35616 sources."has-unicode-2.0.1" 35617 sources."signal-exit-3.0.2" 35618 sources."string-width-1.0.2" ··· 35625 sources."deep-extend-0.4.2" 35626 sources."ini-1.3.4" 35627 sources."strip-json-comments-2.0.1" 35628 - sources."aws-sign2-0.6.0" 35629 sources."aws4-1.6.0" 35630 sources."caseless-0.12.0" 35631 sources."combined-stream-1.0.5" 35632 sources."extend-3.0.1" 35633 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" 35642 sources."is-typedarray-1.0.0" 35643 sources."isstream-0.1.2" 35644 sources."json-stringify-safe-5.0.1" 35645 sources."mime-types-2.1.17" 35646 sources."oauth-sign-0.8.2" 35647 - sources."performance-now-0.2.0" 35648 - sources."qs-6.4.0" 35649 sources."stringstream-0.0.5" 35650 sources."tough-cookie-2.3.2" 35651 sources."tunnel-agent-0.6.0" 35652 sources."uuid-3.1.0" 35653 sources."delayed-stream-1.0.0" 35654 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" // { 35662 dependencies = [ 35663 - sources."assert-plus-1.0.0" 35664 ]; 35665 }) 35666 - (sources."sshpk-1.13.1" // { 35667 - dependencies = [ 35668 - sources."assert-plus-1.0.0" 35669 - ]; 35670 - }) 35671 sources."extsprintf-1.3.0" 35672 sources."json-schema-0.2.3" 35673 - (sources."verror-1.10.0" // { 35674 - dependencies = [ 35675 - sources."assert-plus-1.0.0" 35676 - ]; 35677 - }) 35678 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 - }) 35689 sources."jsbn-0.1.1" 35690 sources."tweetnacl-0.14.5" 35691 sources."ecc-jsbn-0.1.1" ··· 35696 sources."inflight-1.0.6" 35697 sources."once-1.4.0" 35698 sources."wrappy-1.0.2" 35699 sources."block-stream-0.0.9" 35700 sources."fstream-1.0.11" 35701 sources."debug-2.6.8" ··· 35784 yarn = nodeEnv.buildNodePackage { 35785 name = "yarn"; 35786 packageName = "yarn"; 35787 - version = "0.27.5"; 35788 src = fetchurl { 35789 - url = "https://registry.npmjs.org/yarn/-/yarn-0.27.5.tgz"; 35790 - sha1 = "06fe67d8040802993f9f1e1923d671cbf9ead5d1"; 35791 }; 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 buildInputs = globalBuildInputs; 36028 meta = { 36029 description = "📦🐈 Fast, reliable, and secure dependency management."; ··· 36050 sources."fullname-3.3.0" 36051 sources."got-6.7.1" 36052 sources."humanize-string-1.0.1" 36053 - (sources."inquirer-3.2.3" // { 36054 dependencies = [ 36055 sources."chalk-2.1.0" 36056 sources."strip-ansi-4.0.0" ··· 36212 sources."capture-stack-trace-1.0.0" 36213 sources."prepend-http-1.0.4" 36214 sources."decamelize-1.2.0" 36215 - sources."ansi-escapes-2.0.0" 36216 sources."cli-cursor-2.1.0" 36217 sources."cli-width-2.2.0" 36218 - sources."external-editor-2.0.4" 36219 sources."mute-stream-0.0.7" 36220 sources."run-async-2.3.0" 36221 sources."rx-lite-4.0.8" ··· 36232 sources."has-flag-2.0.0" 36233 sources."restore-cursor-2.0.0" 36234 sources."onetime-2.0.1" 36235 - sources."iconv-lite-0.4.18" 36236 sources."jschardet-1.5.1" 36237 - sources."tmp-0.0.31" 36238 sources."os-tmpdir-1.0.2" 36239 sources."is-promise-2.1.0" 36240 sources."is-fullwidth-code-point-2.0.0" 36241 sources."lodash.debounce-3.1.1" 36242 sources."os-name-1.0.3" 36243 - sources."request-2.81.0" 36244 sources."tough-cookie-2.3.2" 36245 sources."uuid-3.1.0" 36246 (sources."mkdirp-0.5.1" // { ··· 36266 sources."osx-release-1.1.0" 36267 sources."win-release-1.1.1" 36268 sources."semver-5.4.1" 36269 - sources."aws-sign2-0.6.0" 36270 sources."aws4-1.6.0" 36271 sources."caseless-0.12.0" 36272 sources."combined-stream-1.0.5" 36273 sources."extend-3.0.1" 36274 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" 36279 sources."is-typedarray-1.0.0" 36280 sources."isstream-0.1.2" 36281 sources."json-stringify-safe-5.0.1" 36282 sources."mime-types-2.1.17" 36283 sources."oauth-sign-0.8.2" 36284 - sources."performance-now-0.2.0" 36285 - sources."qs-6.4.0" 36286 sources."stringstream-0.0.5" 36287 sources."tunnel-agent-0.6.0" 36288 sources."delayed-stream-1.0.0" 36289 sources."asynckit-0.4.0" 36290 - sources."ajv-4.11.8" 36291 - sources."har-schema-1.0.5" 36292 sources."co-4.6.0" 36293 sources."json-stable-stringify-1.0.1" 36294 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" // { 36301 dependencies = [ 36302 - sources."assert-plus-1.0.0" 36303 ]; 36304 }) 36305 - (sources."sshpk-1.13.1" // { 36306 - dependencies = [ 36307 - sources."assert-plus-1.0.0" 36308 - ]; 36309 - }) 36310 sources."extsprintf-1.3.0" 36311 sources."json-schema-0.2.3" 36312 - (sources."verror-1.10.0" // { 36313 - dependencies = [ 36314 - sources."assert-plus-1.0.0" 36315 - ]; 36316 - }) 36317 sources."core-util-is-1.0.2" 36318 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 - }) 36329 sources."jsbn-0.1.1" 36330 sources."tweetnacl-0.14.5" 36331 sources."ecc-jsbn-0.1.1"
··· 4 5 let 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 + }; 70 "colors-0.6.0-1" = { 71 name = "colors"; 72 packageName = "colors"; ··· 76 sha1 = "6dbb68ceb8bc60f2b313dcc5ce1599f06d19e67a"; 77 }; 78 }; 79 "commander-0.6.1" = { 80 name = "commander"; 81 packageName = "commander"; ··· 85 sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; 86 }; 87 }; 88 + "deasync-0.1.10" = { 89 + name = "deasync"; 90 + packageName = "deasync"; 91 + version = "0.1.10"; 92 src = fetchurl { 93 + url = "https://registry.npmjs.org/deasync/-/deasync-0.1.10.tgz"; 94 + sha1 = "4e4a6836fbe0477bd5f908308bd2a96557d5d7fe"; 95 }; 96 }; 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"; 110 src = fetchurl { 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"; 122 }; 123 }; 124 "jsonlint-1.5.1" = { ··· 130 sha1 = "3cf436dcc9f3477ef3d7fa55a5bdf6d893f1c6c6"; 131 }; 132 }; 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"; 155 src = fetchurl { 156 + url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.2.tgz"; 157 + sha1 = "97e1100dbbb275ff6fab583a256a7eea85120c8e"; 158 }; 159 }; 160 "resolve-1.4.0" = { ··· 166 sha512 = "3aygixvrv5l6jm5n2dfgzyx4z86l3q2v7c2rln6znai3877q0r5ajlxgdaj4qm9h70yp7grmg9kmvr77ww2zckc7bm22zzfldafqvk9"; 167 }; 168 }; 169 "source-map-0.1.9" = { 170 name = "source-map"; 171 packageName = "source-map"; ··· 173 src = fetchurl { 174 url = "https://registry.npmjs.org/source-map/-/source-map-0.1.9.tgz"; 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"; 185 }; 186 }; 187 "xml2tss-0.0.5" = { ··· 193 sha1 = "d76a310d6b8a7ba9e4825bb3d43f5427e9fe8f6e"; 194 }; 195 }; 196 + "xmldom-0.1.19" = { 197 + name = "xmldom"; 198 + packageName = "xmldom"; 199 + version = "0.1.19"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz"; 202 + sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc"; 203 }; 204 }; 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"; 218 src = fetchurl { 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"; 248 }; 249 }; 250 + "babel-runtime-6.26.0" = { 251 + name = "babel-runtime"; 252 + packageName = "babel-runtime"; 253 + version = "6.26.0"; 254 src = fetchurl { 255 + url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; 256 + sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 257 }; 258 }; 259 + "babel-template-6.26.0" = { 260 + name = "babel-template"; 261 + packageName = "babel-template"; 262 + version = "6.26.0"; 263 src = fetchurl { 264 + url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz"; 265 + sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02"; 266 }; 267 }; 268 + "convert-source-map-1.5.0" = { 269 + name = "convert-source-map"; 270 + packageName = "convert-source-map"; 271 + version = "1.5.0"; 272 src = fetchurl { 273 + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz"; 274 + sha1 = "9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"; 275 }; 276 }; 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" = { 341 name = "chalk"; 342 packageName = "chalk"; 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"; 353 src = fetchurl { 354 + url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz"; 355 + sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; 356 }; 357 }; 358 + "js-tokens-3.0.2" = { 359 + name = "js-tokens"; 360 + packageName = "js-tokens"; 361 + version = "3.0.2"; 362 src = fetchurl { 363 + url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"; 364 + sha1 = "9866df395102130e38f7f996bceb65443209c25b"; 365 }; 366 }; 367 + "ansi-styles-2.2.1" = { 368 name = "ansi-styles"; 369 packageName = "ansi-styles"; 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"; 389 src = fetchurl { 390 + url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; 391 + sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 392 }; 393 }; 394 + "strip-ansi-3.0.1" = { 395 name = "strip-ansi"; 396 packageName = "strip-ansi"; 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"; 425 src = fetchurl { 426 + url = "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz"; 427 + sha1 = "ae6874dc66937789b80754ff5428df66819ca50b"; 428 }; 429 }; 430 + "home-or-tmp-2.0.0" = { 431 + name = "home-or-tmp"; 432 + packageName = "home-or-tmp"; 433 + version = "2.0.0"; 434 src = fetchurl { 435 + url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; 436 + sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; 437 }; 438 }; 439 + "mkdirp-0.5.1" = { 440 + name = "mkdirp"; 441 + packageName = "mkdirp"; 442 + version = "0.5.1"; 443 src = fetchurl { 444 + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; 445 + sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 446 }; 447 }; 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"; 460 version = "1.0.2"; 461 src = fetchurl { 462 + url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; 463 + sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; 464 }; 465 }; 466 + "os-tmpdir-1.0.2" = { 467 + name = "os-tmpdir"; 468 + packageName = "os-tmpdir"; 469 + version = "1.0.2"; 470 src = fetchurl { 471 + url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 472 + sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 473 }; 474 }; 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"; 488 src = fetchurl { 489 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz"; 490 + sha512 = "3a1pn2aankj443h5v8png8dbgrlyb7fcdn66vjglxwqvdpivpq959qsl2n44i6zwf1k5y6y23xwhim0x077yy275dyr6vwiny83987x"; 491 }; 492 }; 493 + "ms-2.0.0" = { 494 + name = "ms"; 495 + packageName = "ms"; 496 + version = "2.0.0"; 497 src = fetchurl { 498 + url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; 499 + sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 500 }; 501 }; 502 + "brace-expansion-1.1.8" = { 503 + name = "brace-expansion"; 504 + packageName = "brace-expansion"; 505 + version = "1.1.8"; 506 src = fetchurl { 507 + url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz"; 508 + sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292"; 509 }; 510 }; 511 + "balanced-match-1.0.0" = { 512 + name = "balanced-match"; 513 + packageName = "balanced-match"; 514 + version = "1.0.0"; 515 src = fetchurl { 516 + url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; 517 + sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 518 }; 519 }; 520 + "concat-map-0.0.1" = { 521 + name = "concat-map"; 522 + packageName = "concat-map"; 523 + version = "0.0.1"; 524 src = fetchurl { 525 + url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 526 + sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 527 }; 528 }; 529 + "detect-indent-4.0.0" = { 530 + name = "detect-indent"; 531 + packageName = "detect-indent"; 532 + version = "4.0.0"; 533 src = fetchurl { 534 + url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"; 535 + sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; 536 }; 537 }; 538 + "jsesc-1.3.0" = { 539 + name = "jsesc"; 540 + packageName = "jsesc"; 541 + version = "1.3.0"; 542 src = fetchurl { 543 + url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; 544 + sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; 545 }; 546 }; 547 + "trim-right-1.0.1" = { 548 + name = "trim-right"; 549 + packageName = "trim-right"; 550 + version = "1.0.1"; 551 src = fetchurl { 552 + url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz"; 553 + sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; 554 }; 555 }; 556 + "repeating-2.0.1" = { 557 + name = "repeating"; 558 + packageName = "repeating"; 559 + version = "2.0.1"; 560 src = fetchurl { 561 + url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"; 562 + sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; 563 }; 564 }; 565 + "is-finite-1.0.2" = { 566 + name = "is-finite"; 567 + packageName = "is-finite"; 568 + version = "1.0.2"; 569 src = fetchurl { 570 + url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz"; 571 + sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa"; 572 }; 573 }; 574 + "number-is-nan-1.0.1" = { 575 + name = "number-is-nan"; 576 + packageName = "number-is-nan"; 577 version = "1.0.1"; 578 src = fetchurl { 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"; 617 }; 618 }; 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"; 641 src = fetchurl { 642 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz"; 643 + sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"; 644 }; 645 }; 646 + "jsonfile-3.0.1" = { 647 + name = "jsonfile"; 648 + packageName = "jsonfile"; 649 + version = "3.0.1"; 650 src = fetchurl { 651 + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz"; 652 + sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66"; 653 }; 654 }; 655 + "universalify-0.1.1" = { 656 + name = "universalify"; 657 + packageName = "universalify"; 658 + version = "0.1.1"; 659 src = fetchurl { 660 + url = "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz"; 661 + sha1 = "fa71badd4437af4c148841e3b3b165f9e9e590b7"; 662 }; 663 }; 664 "array-unique-0.2.1" = { ··· 751 sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 752 }; 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 + }; 835 "amdefine-1.0.1" = { 836 name = "amdefine"; 837 packageName = "amdefine"; ··· 841 sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5"; 842 }; 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 + }; 862 "xml2js-0.2.8" = { 863 name = "xml2js"; 864 packageName = "xml2js"; ··· 875 src = fetchurl { 876 url = "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz"; 877 sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1"; 878 }; 879 }; 880 "adal-node-0.1.21" = { ··· 1408 sha1 = "be191c4fbdff2e208bda440933436af80e7425b9"; 1409 }; 1410 }; 1411 + "ms-rest-azure-2.3.1" = { 1412 name = "ms-rest-azure"; 1413 packageName = "ms-rest-azure"; 1414 + version = "2.3.1"; 1415 src = fetchurl { 1416 + url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.3.1.tgz"; 1417 + sha1 = "25f2c6bdc721ec41187606b8d71a7b6090dc708e"; 1418 }; 1419 }; 1420 "node-forge-0.6.23" = { ··· 1577 src = fetchurl { 1578 url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz"; 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"; 1589 }; 1590 }; 1591 "xml2js-0.1.14" = { ··· 2020 sha1 = "0e3c4f24a3f052b231b12d5049085a0a099be782"; 2021 }; 2022 }; 2023 + "@types/node-8.0.28" = { 2024 name = "@types/node"; 2025 packageName = "@types/node"; 2026 + version = "8.0.28"; 2027 src = fetchurl { 2028 + url = "https://registry.npmjs.org/@types/node/-/node-8.0.28.tgz"; 2029 + sha512 = "2wlavwh38262crr2wm0zhzgp1ibkd2wy2hpmby0xr218k36vls3gdbya0848wx6r51hs1mbly8k8f3aby4xsarp9g5fvp1gf4an9shy"; 2030 }; 2031 }; 2032 "@types/request-2.0.3" = { ··· 2045 src = fetchurl { 2046 url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.2.tgz"; 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"; 2057 }; 2058 }; 2059 "is-stream-1.1.0" = { ··· 2128 sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0"; 2129 }; 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 + }; 2140 "deep-equal-1.0.1" = { 2141 name = "deep-equal"; 2142 packageName = "deep-equal"; ··· 2155 sha1 = "1d2b854158ec8169113c6cb7f6b6801e99e211d5"; 2156 }; 2157 }; 2158 "ncp-0.4.2" = { 2159 name = "ncp"; 2160 packageName = "ncp"; ··· 2164 sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574"; 2165 }; 2166 }; 2167 + "rimraf-2.6.2" = { 2168 name = "rimraf"; 2169 packageName = "rimraf"; 2170 + version = "2.6.2"; 2171 src = fetchurl { 2172 + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"; 2173 + sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn"; 2174 }; 2175 }; 2176 "glob-7.1.2" = { ··· 2200 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 2201 }; 2202 }; 2203 "once-1.4.0" = { 2204 name = "once"; 2205 packageName = "once"; ··· 2207 src = fetchurl { 2208 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 2209 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 2210 }; 2211 }; 2212 "wrappy-1.0.2" = { ··· 2218 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 2219 }; 2220 }; 2221 "colors-0.6.2" = { 2222 name = "colors"; 2223 packageName = "colors"; ··· 2443 sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; 2444 }; 2445 }; 2446 "commander-2.11.0" = { 2447 name = "commander"; 2448 packageName = "commander"; ··· 2470 sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 2471 }; 2472 }; 2473 "generate-function-2.0.0" = { 2474 name = "generate-function"; 2475 packageName = "generate-function"; ··· 2830 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; 2831 }; 2832 }; 2833 "async-1.0.0" = { 2834 name = "async"; 2835 packageName = "async"; ··· 2866 sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4"; 2867 }; 2868 }; 2869 + "bower-1.8.2" = { 2870 name = "bower"; 2871 packageName = "bower"; 2872 + version = "1.8.2"; 2873 src = fetchurl { 2874 + url = "https://registry.npmjs.org/bower/-/bower-1.8.2.tgz"; 2875 + sha1 = "adf53529c8d4af02ef24fb8d5341c1419d33e2f7"; 2876 }; 2877 }; 2878 "bower-endpoint-parser-0.2.1" = { ··· 3044 src = fetchurl { 3045 url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; 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"; 3056 }; 3057 }; 3058 "loud-rejection-1.6.0" = { ··· 3271 sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; 3272 }; 3273 }; 3274 "parse-json-2.2.0" = { 3275 name = "parse-json"; 3276 packageName = "parse-json"; ··· 3343 sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2"; 3344 }; 3345 }; 3346 "get-stdin-4.0.1" = { 3347 name = "get-stdin"; 3348 packageName = "get-stdin"; ··· 3406 sha1 = "dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"; 3407 }; 3408 }; 3409 "rimraf-2.2.8" = { 3410 name = "rimraf"; 3411 packageName = "rimraf"; ··· 3937 sha1 = "b5835739270cfe26acf632099fded2a07f209e5e"; 3938 }; 3939 }; 3940 + "pbkdf2-3.0.14" = { 3941 name = "pbkdf2"; 3942 packageName = "pbkdf2"; 3943 + version = "3.0.14"; 3944 src = fetchurl { 3945 + url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.14.tgz"; 3946 + sha512 = "30bb7vx0m1k1m3d1i1khgvmgddx3ahqgprs421ssrh5plpx50k5bazsj67gdi7qiknircqy59yxbclq95s2rnmk8ysgkqdpsddijfw2"; 3947 }; 3948 }; 3949 "public-encrypt-4.0.0" = { ··· 6448 sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e"; 6449 }; 6450 }; 6451 + "interpret-1.0.4" = { 6452 name = "interpret"; 6453 packageName = "interpret"; 6454 + version = "1.0.4"; 6455 src = fetchurl { 6456 + url = "https://registry.npmjs.org/interpret/-/interpret-1.0.4.tgz"; 6457 + sha1 = "820cdd588b868ffb191a809506d6c9c8f212b1b0"; 6458 }; 6459 }; 6460 "rechoir-0.6.2" = { ··· 6583 sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; 6584 }; 6585 }; 6586 + "content-type-1.0.4" = { 6587 name = "content-type"; 6588 packageName = "content-type"; 6589 + version = "1.0.4"; 6590 src = fetchurl { 6591 + url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; 6592 + sha512 = "1f4y61wc913jrnga7nny83gzf9l2488q6sl1ry9lbwgh5x5d3va0xcc0xrmjk6gdxl6d4r6rsk800xp5bazhjrx05yx1wpc8c8gg0w4"; 6593 }; 6594 }; 6595 "cookie-0.3.1" = { ··· 6637 sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 6638 }; 6639 }; 6640 + "etag-1.8.1" = { 6641 name = "etag"; 6642 packageName = "etag"; 6643 + version = "1.8.1"; 6644 src = fetchurl { 6645 + url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; 6646 + sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 6647 }; 6648 }; 6649 + "finalhandler-1.0.5" = { 6650 name = "finalhandler"; 6651 packageName = "finalhandler"; 6652 + version = "1.0.5"; 6653 src = fetchurl { 6654 + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.5.tgz"; 6655 + sha1 = "a701303d257a1bc82fea547a33e5ae89531723df"; 6656 }; 6657 }; 6658 "fresh-0.5.0" = { ··· 6691 sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 6692 }; 6693 }; 6694 + "parseurl-1.3.2" = { 6695 name = "parseurl"; 6696 packageName = "parseurl"; 6697 + version = "1.3.2"; 6698 src = fetchurl { 6699 + url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz"; 6700 + sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3"; 6701 }; 6702 }; 6703 "path-to-regexp-0.1.7" = { ··· 6799 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 6800 }; 6801 }; 6802 + "forwarded-0.1.2" = { 6803 name = "forwarded"; 6804 packageName = "forwarded"; 6805 + version = "0.1.2"; 6806 src = fetchurl { 6807 + url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; 6808 + sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; 6809 }; 6810 }; 6811 "ipaddr.js-1.4.0" = { ··· 6907 sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967"; 6908 }; 6909 }; 6910 "builtins-1.0.3" = { 6911 name = "builtins"; 6912 packageName = "builtins"; ··· 6986 src = fetchurl { 6987 url = "https://registry.npmjs.org/char-spinner/-/char-spinner-1.0.1.tgz"; 6988 sha1 = "e6ea67bd247e107112983b7ab0479ed362800081"; 6989 }; 6990 }; 6991 "chownr-1.0.1" = { ··· 8384 sha512 = "15lvjac4av3h7xmks8jgd56vryz5xb27r8xcpfwhfyr9dv305lms5llc1x6nx6nfvha873d4vg04nfi89aj4jkxplrnjiyc9kjf34hf"; 8385 }; 8386 }; 8387 "jsonparse-0.0.6" = { 8388 name = "jsonparse"; 8389 packageName = "jsonparse"; ··· 8447 sha1 = "38f716b24c8cee07a262abc41c22c314e20e3869"; 8448 }; 8449 }; 8450 + "websocket-driver-0.7.0" = { 8451 name = "websocket-driver"; 8452 packageName = "websocket-driver"; 8453 + version = "0.7.0"; 8454 src = fetchurl { 8455 + url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.0.tgz"; 8456 + sha1 = "0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb"; 8457 }; 8458 }; 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" = { 8469 name = "websocket-extensions"; 8470 packageName = "websocket-extensions"; 8471 + version = "0.1.2"; 8472 src = fetchurl { 8473 + url = "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.2.tgz"; 8474 + sha1 = "0e18781de629a18308ce1481650f67ffa2693a5d"; 8475 }; 8476 }; 8477 "native-dns-cache-git+https://github.com/okTurtles/native-dns-cache.git#8714196bb9223cc9a4064a4fddf9e82ec50b7d4d" = { ··· 8873 sha1 = "9500635e257945d6feede185f5d7a24773455b17"; 8874 }; 8875 }; 8876 + "pull-stream-3.6.1" = { 8877 name = "pull-stream"; 8878 packageName = "pull-stream"; 8879 + version = "3.6.1"; 8880 src = fetchurl { 8881 + url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.1.tgz"; 8882 + sha1 = "c5c2ae4a51246efeebcc65c0412a3d725a92ce00"; 8883 }; 8884 }; 8885 "typewiselite-1.0.0" = { ··· 9044 sha1 = "2efa54c3b1cbaba9b94aee2e5914b0be57fbb749"; 9045 }; 9046 }; 9047 "nan-2.1.0" = { 9048 name = "nan"; 9049 packageName = "nan"; ··· 9107 sha1 = "cac328f7bee45730d404b692203fcb590e172d5e"; 9108 }; 9109 }; 9110 + "aws-sdk-2.120.0" = { 9111 name = "aws-sdk"; 9112 packageName = "aws-sdk"; 9113 + version = "2.120.0"; 9114 src = fetchurl { 9115 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.120.0.tgz"; 9116 + sha1 = "44857ecb476936fce891850ff27a502210814fb6"; 9117 }; 9118 }; 9119 + "request-2.82.0" = { 9120 name = "request"; 9121 packageName = "request"; 9122 + version = "2.82.0"; 9123 src = fetchurl { 9124 + url = "https://registry.npmjs.org/request/-/request-2.82.0.tgz"; 9125 + sha512 = "079947pnxi0h8jdiv5wb64rj3gnq4a02dfj47c41wsdi3g6pp1v3yfg3m1rphib7igf6vkisrgjq16vc4fq916fc870wzckdizal1gx"; 9126 }; 9127 }; 9128 "crypto-browserify-1.0.9" = { ··· 9179 sha1 = "aa58a3041a066f90eaa16c2f5389ff19f3f461a5"; 9180 }; 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 + }; 9191 "caseless-0.12.0" = { 9192 name = "caseless"; 9193 packageName = "caseless"; ··· 9197 sha1 = "1b681c21ff84033c826543090689420d187151dc"; 9198 }; 9199 }; 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" = { 9210 name = "har-validator"; 9211 packageName = "har-validator"; 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"; 9231 src = fetchurl { 9232 + url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; 9233 + sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 9234 }; 9235 }; 9236 + "performance-now-2.1.0" = { 9237 name = "performance-now"; 9238 packageName = "performance-now"; 9239 + version = "2.1.0"; 9240 src = fetchurl { 9241 + url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; 9242 + sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 9243 }; 9244 }; 9245 + "qs-6.5.1" = { 9246 name = "qs"; 9247 packageName = "qs"; 9248 + version = "6.5.1"; 9249 src = fetchurl { 9250 + url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz"; 9251 + sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r"; 9252 }; 9253 }; 9254 "tunnel-agent-0.6.0" = { ··· 9260 sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; 9261 }; 9262 }; 9263 + "ajv-5.2.2" = { 9264 name = "ajv"; 9265 packageName = "ajv"; 9266 + version = "5.2.2"; 9267 src = fetchurl { 9268 + url = "https://registry.npmjs.org/ajv/-/ajv-5.2.2.tgz"; 9269 + sha1 = "47c68d69e86f5d953103b0074a9430dc63da5e39"; 9270 }; 9271 }; 9272 + "har-schema-2.0.0" = { 9273 name = "har-schema"; 9274 packageName = "har-schema"; 9275 + version = "2.0.0"; 9276 src = fetchurl { 9277 + url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; 9278 + sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 9279 }; 9280 }; 9281 "co-4.6.0" = { ··· 9287 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; 9288 }; 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 + }; 9308 "json-stable-stringify-1.0.1" = { 9309 name = "json-stable-stringify"; 9310 packageName = "json-stable-stringify"; ··· 9314 sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af"; 9315 }; 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 + }; 9362 "auto-bind-1.1.0" = { 9363 name = "auto-bind"; 9364 packageName = "auto-bind"; ··· 9377 sha1 = "51b17574fc682588e2dd295cfa6e6aa109eab5ee"; 9378 }; 9379 }; 9380 + "conf-1.3.0" = { 9381 name = "conf"; 9382 packageName = "conf"; 9383 + version = "1.3.0"; 9384 src = fetchurl { 9385 + url = "https://registry.npmjs.org/conf/-/conf-1.3.0.tgz"; 9386 + sha512 = "21wa83v253mikyav1r639cnmycyribfhr6d4kzmzhgcs8l1ahn6mb37lmr3wnzjrca53f52w30p5ccxhm58zh1lmr01naf0kb3fc2qh"; 9387 }; 9388 }; 9389 "got-7.1.0" = { ··· 9746 sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 9747 }; 9748 }; 9749 "babel-plugin-transform-es2015-destructuring-6.23.0" = { 9750 name = "babel-plugin-transform-es2015-destructuring"; 9751 packageName = "babel-plugin-transform-es2015-destructuring"; ··· 9800 sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; 9801 }; 9802 }; 9803 "babel-plugin-syntax-object-rest-spread-6.13.0" = { 9804 name = "babel-plugin-syntax-object-rest-spread"; 9805 packageName = "babel-plugin-syntax-object-rest-spread"; ··· 10034 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 10035 }; 10036 }; 10037 + "fbjs-0.8.15" = { 10038 name = "fbjs"; 10039 packageName = "fbjs"; 10040 + version = "0.8.15"; 10041 src = fetchurl { 10042 + url = "https://registry.npmjs.org/fbjs/-/fbjs-0.8.15.tgz"; 10043 + sha1 = "4f0695fdfcc16c37c0b07facec8cb4c4091685b9"; 10044 }; 10045 }; 10046 "core-js-1.2.7" = { ··· 10079 sha1 = "110d53fa4c3f326c121292bbeac904d2e03387ca"; 10080 }; 10081 }; 10082 + "node-fetch-1.7.3" = { 10083 name = "node-fetch"; 10084 packageName = "node-fetch"; 10085 + version = "1.7.3"; 10086 src = fetchurl { 10087 + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz"; 10088 + sha512 = "0lz5m15w7qaks0a0s3dm0crsjrsd123dy00pn6qwcp50zfjykxkp22i5ymh6smlc0ags38nmdxlxw9yyq509azlv8kcdvdiq857h5in"; 10089 }; 10090 }; 10091 "whatwg-fetch-2.0.3" = { ··· 10106 sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb"; 10107 }; 10108 }; 10109 + "iconv-lite-0.4.19" = { 10110 name = "iconv-lite"; 10111 packageName = "iconv-lite"; 10112 + version = "0.4.19"; 10113 src = fetchurl { 10114 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz"; 10115 + sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1"; 10116 }; 10117 }; 10118 "unicode-emoji-modifier-base-1.0.0" = { ··· 10124 sha1 = "dbbd5b54ba30f287e2a8d5a249da6c0cef369459"; 10125 }; 10126 }; 10127 + "debug-3.0.1" = { 10128 + name = "debug"; 10129 + packageName = "debug"; 10130 + version = "3.0.1"; 10131 src = fetchurl { 10132 + url = "https://registry.npmjs.org/debug/-/debug-3.0.1.tgz"; 10133 + sha512 = "3rnqa9m5ma6whhiailgppfhnm4gkv4brw9619yvxz59di3g306svl7na9qj6n9l887ra3fgr80b0xij0vjvfwpbk9zvpags5plmqxga"; 10134 }; 10135 }; 10136 "doctrine-2.0.0" = { ··· 10151 sha1 = "3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"; 10152 }; 10153 }; 10154 + "espree-3.5.1" = { 10155 name = "espree"; 10156 packageName = "espree"; 10157 + version = "3.5.1"; 10158 src = fetchurl { 10159 + url = "https://registry.npmjs.org/espree/-/espree-3.5.1.tgz"; 10160 + sha1 = "0c988b8ab46db53100a1954ae4ba995ddd27d87e"; 10161 }; 10162 }; 10163 "esquery-1.0.0" = { ··· 10205 sha512 = "07qdg1b3fwg8b7zwq83rljcx2h0ybq8s43h5xkvsr252qij7ib2gcjamqsb25zv1nvxm94yrvf4fl41s1kyms8zhr86cspwcbggvc94"; 10206 }; 10207 }; 10208 + "inquirer-3.3.0" = { 10209 name = "inquirer"; 10210 packageName = "inquirer"; 10211 + version = "3.3.0"; 10212 src = fetchurl { 10213 + url = "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz"; 10214 + sha512 = "1wsmzzva3rfjb4bfks7ba2nvha9ziwgq2kag6xxibc5cc6mz19xbgj4fm3a7ghvfbfx4am0x13ibc8j2s5m3sv12nph44rq56gnvv47"; 10215 }; 10216 }; 10217 "is-resolvable-1.0.0" = { ··· 10223 sha1 = "8df57c61ea2e3c501408d100fb013cf8d6e0cc62"; 10224 }; 10225 }; 10226 + "js-yaml-3.10.0" = { 10227 name = "js-yaml"; 10228 packageName = "js-yaml"; 10229 + version = "3.10.0"; 10230 src = fetchurl { 10231 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz"; 10232 + sha512 = "0h26sq1bwxc45bm0hvlcadrbk4bizzaw729wvw690ya7mpys45bqfzdqwhjkdrnq0i44dzxckykz4bix22jfdyfg1asybg3yzczjsrv"; 10233 }; 10234 }; 10235 "levn-0.3.0" = { ··· 10259 sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64"; 10260 }; 10261 }; 10262 + "pluralize-7.0.0" = { 10263 name = "pluralize"; 10264 packageName = "pluralize"; 10265 + version = "7.0.0"; 10266 src = fetchurl { 10267 + url = "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz"; 10268 + sha512 = "2ihaln20qjx82jx73wgzirbyp8mfmhxr75am1h0w8n5hy2gsbgvw9dricv7h57ycxzax84bma96wjscmdszs5mr2lsyxpfjvhwl2601"; 10269 }; 10270 }; 10271 "progress-2.0.0" = { ··· 10293 src = fetchurl { 10294 url = "https://registry.npmjs.org/table/-/table-4.0.1.tgz"; 10295 sha1 = "a8116c133fac2c61f4a420ab6cdf5c4d61f0e435"; 10296 }; 10297 }; 10298 "esrecurse-4.2.0" = { ··· 10412 sha1 = "fc06e5a1683fbda13de667aff717bbc10a48f37f"; 10413 }; 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 + }; 10424 "cli-width-2.2.0" = { 10425 name = "cli-width"; 10426 packageName = "cli-width"; ··· 10430 sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; 10431 }; 10432 }; 10433 + "external-editor-2.0.5" = { 10434 name = "external-editor"; 10435 packageName = "external-editor"; 10436 + version = "2.0.5"; 10437 src = fetchurl { 10438 + url = "https://registry.npmjs.org/external-editor/-/external-editor-2.0.5.tgz"; 10439 + sha512 = "3znpqavb7rxmw74p6hnq963agimzsm5r524jrpy9v6sbbhbbk77qhklgkr65jirq0a58lsz8jgvwy9q4wfmwl7ahj6nzrckhpmyij1j"; 10440 }; 10441 }; 10442 "figures-2.0.0" = { ··· 10484 sha512 = "3c44v9rz6j4z6i7gj2v3wmfcqv5i47psysgd1p4jcgz114vfk99fif1n1r08jbsdkp4g3smv1wx7x4ikwa7q9dp5i1bc77la17s2kdw"; 10485 }; 10486 }; 10487 + "tmp-0.0.33" = { 10488 name = "tmp"; 10489 packageName = "tmp"; 10490 + version = "0.0.33"; 10491 src = fetchurl { 10492 + url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"; 10493 + sha512 = "0drg2bck1cj8677rgs1l98v7vqaxawcqh6ja87qilwnd719l5y0lzv5ssn3pcwa37fdbg4188y6x15a90vkllyvfpd9v7fai2b8j44d"; 10494 }; 10495 }; 10496 "is-promise-2.1.0" = { ··· 10601 sha1 = "afab96262910a7f33c19a5775825c69f34e350ca"; 10602 }; 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 + }; 10613 "ajv-keywords-1.5.1" = { 10614 name = "ajv-keywords"; 10615 packageName = "ajv-keywords"; ··· 10628 sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; 10629 }; 10630 }; 10631 + "eslint-4.7.2" = { 10632 name = "eslint"; 10633 packageName = "eslint"; 10634 + version = "4.7.2"; 10635 src = fetchurl { 10636 + url = "https://registry.npmjs.org/eslint/-/eslint-4.7.2.tgz"; 10637 + sha1 = "ff6f5f5193848a27ee9b627be3e73fb9cb5e662e"; 10638 }; 10639 }; 10640 "supports-color-3.2.3" = { ··· 10763 sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; 10764 }; 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 + }; 10775 "request-progress-2.0.1" = { 10776 name = "request-progress"; 10777 packageName = "request-progress"; ··· 10835 sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50"; 10836 }; 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 + }; 10874 "throttleit-1.0.0" = { 10875 name = "throttleit"; 10876 packageName = "throttleit"; ··· 10896 src = fetchurl { 10897 url = "https://registry.npmjs.org/node-phantom-simple/-/node-phantom-simple-2.2.4.tgz"; 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"; 10908 }; 10909 }; 10910 "glob-3.2.11" = { ··· 11202 src = fetchurl { 11203 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"; 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"; 11214 }; 11215 }; 11216 "object.omit-2.0.1" = { ··· 11312 sha512 = "2is2kipfnz3hl4yxgqk07rll6956cq3zzf9cddai3f0lij5acq76v98qv14qkpljh1pqfsyb8p69xa9cyaww6p0j91s4vc9zj6594hg"; 11313 }; 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 + }; 11324 "is-number-3.0.0" = { 11325 name = "is-number"; 11326 packageName = "is-number"; ··· 11438 sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"; 11439 }; 11440 }; 11441 + "node-pre-gyp-0.6.37" = { 11442 name = "node-pre-gyp"; 11443 packageName = "node-pre-gyp"; 11444 + version = "0.6.37"; 11445 src = fetchurl { 11446 + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz"; 11447 + sha1 = "3c872b236b2e266e4140578fe1ee88f693323a05"; 11448 }; 11449 }; 11450 "npmlog-4.1.2" = { ··· 11454 src = fetchurl { 11455 url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"; 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"; 11466 }; 11467 }; 11468 "tar-pack-3.4.0" = { ··· 11501 sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 11502 }; 11503 }; 11504 + "aproba-1.2.0" = { 11505 name = "aproba"; 11506 packageName = "aproba"; 11507 + version = "1.2.0"; 11508 src = fetchurl { 11509 + url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; 11510 + sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3"; 11511 }; 11512 }; 11513 "string-width-1.0.2" = { ··· 11528 sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a"; 11529 }; 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 + }; 11639 "event-stream-0.5.3" = { 11640 name = "event-stream"; 11641 packageName = "event-stream"; ··· 11706 src = fetchurl { 11707 url = "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz"; 11708 sha1 = "f35eea7d705e933baf13b2f03b3f83d921403b3e"; 11709 }; 11710 }; 11711 "lodash.groupby-4.6.0" = { ··· 12006 sha1 = "c90941ad59e4273328923074d2cf2e7cbc6ec0d9"; 12007 }; 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 + }; 12099 "acorn-1.2.2" = { 12100 name = "acorn"; 12101 packageName = "acorn"; ··· 12231 sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; 12232 }; 12233 }; 12234 + "dateformat-2.2.0" = { 12235 name = "dateformat"; 12236 packageName = "dateformat"; 12237 + version = "2.2.0"; 12238 src = fetchurl { 12239 + url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; 12240 + sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062"; 12241 }; 12242 }; 12243 "fancy-log-1.3.0" = { ··· 13086 sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"; 13087 }; 13088 }; 13089 + "@ionic/cli-utils-1.10.2" = { 13090 name = "@ionic/cli-utils"; 13091 packageName = "@ionic/cli-utils"; 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"; 13102 src = fetchurl { 13103 + url = "https://registry.npmjs.org/@ionic/discover/-/discover-0.3.1.tgz"; 13104 + sha512 = "35246ajg70xdrv5r5ln20m3b3h8gqa7gvmcraalmr5nk7pkmrldfr8cyscm9zrqpzpsjbbs2h2vdy0nh0ghlnyhiywry8ivxn7agk90"; 13105 }; 13106 }; 13107 "opn-5.1.0" = { ··· 13131 sha1 = "bc8004164691923a79fe8378bbeb3da2017538ec"; 13132 }; 13133 }; 13134 "archiver-2.0.3" = { 13135 name = "archiver"; 13136 packageName = "archiver"; ··· 13140 sha1 = "b4360bb584af1437991942716f21d7c523d1dbbd"; 13141 }; 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 + }; 13152 "ci-info-1.1.1" = { 13153 name = "ci-info"; 13154 packageName = "ci-info"; ··· 13221 sha512 = "1xd3zsk02nck4y601rn98n8cicrphaw5bdix278mk1yizmjv9s0wpa6akcqggd7d99c55s3byf4ylqdxkshyfsfnfx7lvwbmq2b3siw"; 13222 }; 13223 }; 13224 + "ssh-config-1.1.1" = { 13225 name = "ssh-config"; 13226 packageName = "ssh-config"; 13227 + version = "1.1.1"; 13228 src = fetchurl { 13229 + url = "https://registry.npmjs.org/ssh-config/-/ssh-config-1.1.1.tgz"; 13230 + sha512 = "34a8bmib45cxms67cjfwwwfaay3amvzj61ay7k7qj9lajxqb8qjp5m4ivn89pzcy1siiqxs47mmh63dsq2lrypjci2w9b4lp9cqpak4"; 13231 }; 13232 }; 13233 "superagent-3.6.0" = { ··· 13248 sha512 = "2b8y1xdv7szw0hvad64rghp2zdahs6qhx0k79c0s9xa0a35zbcrb9b9gywixhcxqi1c9ab7ah8ibra22k8baakh7rvmhf904d559g32"; 13249 }; 13250 }; 13251 + "ws-3.2.0" = { 13252 + name = "ws"; 13253 + packageName = "ws"; 13254 + version = "3.2.0"; 13255 src = fetchurl { 13256 + url = "https://registry.npmjs.org/ws/-/ws-3.2.0.tgz"; 13257 + sha512 = "1bj83dg7c5sca2v9cpzz4m83y9mm8icldvpk2c9sq3216cr6cn7qvfwhw9hq881nq7pii3xxbg8lz6g2p6223ililwkzzp68ndbfd45"; 13258 }; 13259 }; 13260 "archiver-utils-1.3.0" = { ··· 13329 sha1 = "9da1e980e3bd44fc5c93bf5ab3da3378d85e466b"; 13330 }; 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 + }; 13350 "sax-1.1.4" = { 13351 name = "sax"; 13352 packageName = "sax"; ··· 13509 sha1 = "3569ede8ba34315fab99c3e92cb04c7220de1fa8"; 13510 }; 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 + }; 13530 "is-wsl-1.1.0" = { 13531 name = "is-wsl"; 13532 packageName = "is-wsl"; ··· 13644 sha1 = "30a3989642ee3e8ea06d10c2b9f9e046d424d8ed"; 13645 }; 13646 }; 13647 + "mz-2.7.0" = { 13648 name = "mz"; 13649 packageName = "mz"; 13650 + version = "2.7.0"; 13651 src = fetchurl { 13652 + url = "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz"; 13653 + sha512 = "3cpmwzmngnmxhklvicnsbl5dchvsy0yikzgf705cq1cplyps3waa03xbjp306bjf167wnplibwki0csnavz98dihq2877g7xqs4dkfg"; 13654 }; 13655 }; 13656 "object-hash-1.1.8" = { ··· 13698 sha1 = "3d38321828231e434f287514959c37a82b629f42"; 13699 }; 13700 }; 13701 + "vscode-jsonrpc-3.4.0" = { 13702 name = "vscode-jsonrpc"; 13703 packageName = "vscode-jsonrpc"; 13704 + version = "3.4.0"; 13705 src = fetchurl { 13706 + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.4.0.tgz"; 13707 + sha1 = "aa95ac583bf31d80f725d57c27c09f4c2cfe9fa9"; 13708 }; 13709 }; 13710 + "vscode-languageserver-3.4.2" = { 13711 name = "vscode-languageserver"; 13712 packageName = "vscode-languageserver"; 13713 + version = "3.4.2"; 13714 src = fetchurl { 13715 + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.4.2.tgz"; 13716 + sha1 = "08cbe50ee26901d37dd4b5dc52c25b909363c1f1"; 13717 }; 13718 }; 13719 + "vscode-languageserver-types-3.4.0" = { 13720 name = "vscode-languageserver-types"; 13721 packageName = "vscode-languageserver-types"; 13722 + version = "3.4.0"; 13723 src = fetchurl { 13724 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.4.0.tgz"; 13725 + sha1 = "5043ae47ee4ac16af07bb3d0ca561235e0c0d2fa"; 13726 }; 13727 }; 13728 "symbol-observable-1.0.4" = { ··· 13869 sha1 = "e69e38a1babe969b0108207978b9f62b88604839"; 13870 }; 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 + }; 13890 "when-3.4.6" = { 13891 name = "when"; 13892 packageName = "when"; ··· 13968 sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa"; 13969 }; 13970 }; 13971 "punycode-2.1.0" = { 13972 name = "punycode"; 13973 packageName = "punycode"; ··· 13975 src = fetchurl { 13976 url = "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz"; 13977 sha1 = "5f863edc89b96db09074bad7947bf09056ca4e7d"; 13978 }; 13979 }; 13980 "connect-pause-0.1.1" = { ··· 14103 sha1 = "782ec21ef403345f830a808ca3d513af56065208"; 14104 }; 14105 }; 14106 "path-to-regexp-1.7.0" = { 14107 name = "path-to-regexp"; 14108 packageName = "path-to-regexp"; ··· 14382 sha1 = "458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6"; 14383 }; 14384 }; 14385 + "connect-3.6.4" = { 14386 name = "connect"; 14387 packageName = "connect"; 14388 + version = "3.6.4"; 14389 src = fetchurl { 14390 + url = "https://registry.npmjs.org/connect/-/connect-3.6.4.tgz"; 14391 + sha1 = "52ea19c38607318784269297b0218ed074a01687"; 14392 }; 14393 }; 14394 "di-0.0.1" = { ··· 14472 sha1 = "cf593ef4f2d175875e8bb658ea92e18a4fd06d8e"; 14473 }; 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 + }; 14484 "custom-event-1.0.1" = { 14485 name = "custom-event"; 14486 packageName = "custom-event"; ··· 15165 sha1 = "adfeace2e4fb3098058014d08c072dcc59758774"; 15166 }; 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 + }; 15177 "iconv-lite-0.4.13" = { 15178 name = "iconv-lite"; 15179 packageName = "iconv-lite"; ··· 15408 sha1 = "d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"; 15409 }; 15410 }; 15411 + "fs-extra-4.0.2" = { 15412 name = "fs-extra"; 15413 packageName = "fs-extra"; 15414 + version = "4.0.2"; 15415 src = fetchurl { 15416 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.2.tgz"; 15417 + sha1 = "f91704c53d1b461f893452b0c307d9997647ab6b"; 15418 }; 15419 }; 15420 "get-port-3.2.0" = { ··· 15831 sha1 = "41d045f3851a5ea88f03f24ca1c6178114464b9b"; 15832 }; 15833 }; 15834 + "jsonfile-4.0.0" = { 15835 name = "jsonfile"; 15836 packageName = "jsonfile"; 15837 + version = "4.0.0"; 15838 src = fetchurl { 15839 + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"; 15840 + sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; 15841 }; 15842 }; 15843 "is-glob-3.1.0" = { ··· 16191 sha1 = "7ed50d5e0f9a9fb0a573379259f2a77458d50192"; 16192 }; 16193 }; 16194 + "github-slugger-1.2.0" = { 16195 name = "github-slugger"; 16196 packageName = "github-slugger"; 16197 + version = "1.2.0"; 16198 src = fetchurl { 16199 + url = "https://registry.npmjs.org/github-slugger/-/github-slugger-1.2.0.tgz"; 16200 + sha512 = "3nya50972xq88vz4p5gqz63014dkwlp5f40cz1fgad4ifnhprpr4qlqvvi44qxs3arikyfm3ygmf3phyjq5lwkg7rr9ig9mk7prm1n0"; 16201 }; 16202 }; 16203 "innertext-1.0.2" = { ··· 16335 sha1 = "945cfadd66521eaf8f7c84913d377d7b15f24e31"; 16336 }; 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 + }; 16347 "serve-index-1.9.0" = { 16348 name = "serve-index"; 16349 packageName = "serve-index"; ··· 16396 src = fetchurl { 16397 url = "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.0.0.tgz"; 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"; 16408 }; 16409 }; 16410 "batch-0.6.1" = { ··· 16569 sha1 = "0ea7743715db8d8de2c5ede1775e1b45ac85c02f"; 16570 }; 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 + }; 16581 "lodash.create-3.1.1" = { 16582 name = "lodash.create"; 16583 packageName = "lodash.create"; ··· 16776 sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4"; 16777 }; 16778 }; 16779 + "serve-favicon-2.4.4" = { 16780 name = "serve-favicon"; 16781 packageName = "serve-favicon"; 16782 + version = "2.4.4"; 16783 src = fetchurl { 16784 + url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.4.tgz"; 16785 + sha1 = "412ddd74965151c9f74c0828f35d50c5250210de"; 16786 }; 16787 }; 16788 "strong-data-uri-1.0.4" = { ··· 16893 sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0"; 16894 }; 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 + }; 16905 "truncate-1.0.5" = { 16906 name = "truncate"; 16907 packageName = "truncate"; ··· 17100 sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97"; 17101 }; 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 + }; 17112 "cheerio-0.22.0" = { 17113 name = "cheerio"; 17114 packageName = "cheerio"; ··· 17280 sha1 = "4f378b678b92d16dbbd233a6c706520093e561ba"; 17281 }; 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 + }; 17292 "sentiment-2.1.0" = { 17293 name = "sentiment"; 17294 packageName = "sentiment"; ··· 17352 sha1 = "52c074f42a32140132baea108d42cbcd0ef397d2"; 17353 }; 17354 }; 17355 + "node-red-node-rbe-0.1.13" = { 17356 name = "node-red-node-rbe"; 17357 packageName = "node-red-node-rbe"; 17358 + version = "0.1.13"; 17359 src = fetchurl { 17360 + url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.1.13.tgz"; 17361 + sha1 = "734ff1264cdbe0a8aaade20696dd4bfc6bbcdd49"; 17362 }; 17363 }; 17364 "bcrypt-1.0.3" = { ··· 17370 sha512 = "1zfn87155w6q9fsv5ls3gxwih7yvarrh16kzpfrpppblzpmp1cy9gjkknsf9lkixacza39h51jd7varqfg19w3qkdic62zpirv86755"; 17371 }; 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 + }; 17391 "css-select-1.2.0" = { 17392 name = "css-select"; 17393 packageName = "css-select"; ··· 17748 sha1 = "70c375805b9e3105e899ee8dbdd6a9aa108f407b"; 17749 }; 17750 }; 17751 "append-field-0.1.0" = { 17752 name = "append-field"; 17753 packageName = "append-field"; ··· 18027 sha1 = "e4ff34e6c95fdfb5aecc08de6596f43605a7db45"; 18028 }; 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 + }; 18039 "mongoose-3.6.7" = { 18040 name = "mongoose"; 18041 packageName = "mongoose"; ··· 18295 src = fetchurl { 18296 url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz"; 18297 sha1 = "44e072148af01e6e8e24afbf12690d68ae698ecb"; 18298 }; 18299 }; 18300 "qs-0.5.1" = { ··· 18621 sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"; 18622 }; 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 + }; 18633 "cacache-9.2.9" = { 18634 name = "cacache"; 18635 packageName = "cacache"; ··· 18756 sha512 = "0iapgirmdb46ia3apm6fsb9qv9c0hi4k9jflrxlgnrm0jhliqgas49lmpz06xafncx1sxgjngl0fw3gr472c7kapzdvpivf0fp5miqa"; 18757 }; 18758 }; 18759 + "npm-packlist-1.1.9" = { 18760 name = "npm-packlist"; 18761 packageName = "npm-packlist"; 18762 + version = "1.1.9"; 18763 src = fetchurl { 18764 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.9.tgz"; 18765 + sha512 = "1d1l5hasnw67hczgcwbc8534n1hgvx87hin1yr14yz70b4yzp06gfrj97lhh0qfmk5p1lqfrzajhs5wywx98hj75g00mqmir54050gm"; 18766 }; 18767 }; 18768 "npm-user-validate-1.0.0" = { ··· 18846 sha512 = "2lrlysxfbyzywla6i1q07xncmw30w1icgq18c4bra25dl6wvcd3mxg1lqbf88w5h7mqnf98j8ll657wnqwjq9rwd7pbmd9i11964x0c"; 18847 }; 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 + }; 18858 "lodash._baseindexof-3.1.0" = { 18859 name = "lodash._baseindexof"; 18860 packageName = "lodash._baseindexof"; ··· 19062 sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw"; 19063 }; 19064 }; 19065 + "socks-proxy-agent-3.0.1" = { 19066 name = "socks-proxy-agent"; 19067 packageName = "socks-proxy-agent"; 19068 + version = "3.0.1"; 19069 src = fetchurl { 19070 + url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.1.tgz"; 19071 + sha512 = "2a5lsw4fry6nqk3jdxvwqrnpasypvl8c4d0kg32912820lc72l7s9jzidfsrn2an9c66xqicspxb2vnir5cjspprs9qklxnd75060b7"; 19072 }; 19073 }; 19074 "humanize-ms-1.2.1" = { ··· 19332 sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"; 19333 }; 19334 }; 19335 + "fast-diff-1.1.2" = { 19336 name = "fast-diff"; 19337 packageName = "fast-diff"; 19338 + version = "1.1.2"; 19339 src = fetchurl { 19340 + url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz"; 19341 + sha512 = "2550z1qvyfv9js9vg2aaj57ji5d9hhg4f6zl4rf483d6xswv23ac6ipj8gbapv4sjx14dpcslqmnx1z78vvx4np4ad5mdrxwfvm98i9"; 19342 }; 19343 }; 19344 "node-alias-1.0.4" = { ··· 19386 sha1 = "27d92fec34d27cfa42707d3b40d025ae9855f2df"; 19387 }; 19388 }; 19389 + "snyk-1.41.0" = { 19390 name = "snyk"; 19391 packageName = "snyk"; 19392 + version = "1.41.0"; 19393 src = fetchurl { 19394 + url = "https://registry.npmjs.org/snyk/-/snyk-1.41.0.tgz"; 19395 + sha1 = "6c7a9a94f788181a21575f1b4ee59e6d80f6a059"; 19396 }; 19397 }; 19398 "spawn-please-0.3.0" = { ··· 19557 sha1 = "ebe3a0948571bcc46ccccbe2f9bcec251e984bd0"; 19558 }; 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 + }; 19569 "snyk-config-1.0.1" = { 19570 name = "snyk-config"; 19571 packageName = "snyk-config"; ··· 19575 sha1 = "f27aec2498b24027ac719214026521591111508f"; 19576 }; 19577 }; 19578 + "snyk-go-plugin-1.2.1" = { 19579 name = "snyk-go-plugin"; 19580 packageName = "snyk-go-plugin"; 19581 + version = "1.2.1"; 19582 src = fetchurl { 19583 + url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.2.1.tgz"; 19584 + sha512 = "3fvzskjkhljbpcha1z2bk9ca96bcyqc1hb8i2fz7ck71bmfvq9q1wxq1rmp981zmmxvag6igdxsxcq8nrc5igq5s452qr8x9b2g6s9a"; 19585 }; 19586 }; 19587 "snyk-gradle-plugin-1.1.2" = { ··· 19602 sha1 = "31d5080fb1c0dfd6fa8567dd34a523fd02bf1fca"; 19603 }; 19604 }; 19605 + "snyk-mvn-plugin-1.0.3" = { 19606 name = "snyk-mvn-plugin"; 19607 packageName = "snyk-mvn-plugin"; 19608 + version = "1.0.3"; 19609 src = fetchurl { 19610 + url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-1.0.3.tgz"; 19611 + sha512 = "3p1ji20lrwfgq8gv8br38nk8l5sklhpvmgdcp9il01f22pzclaqnvrh8pcihkq5x74rifhcra6kqjz057i0mmrk8p3w3yq8gikqgz7l"; 19612 }; 19613 }; 19614 "snyk-policy-1.7.1" = { ··· 19726 src = fetchurl { 19727 url = "https://registry.npmjs.org/yargs/-/yargs-3.15.0.tgz"; 19728 sha1 = "3d9446ef21fb3791b3985690662e4b9683c7f181"; 19729 }; 19730 }; 19731 "toml-2.3.3" = { ··· 19881 sha1 = "85568de3cf150ff49fa51825f03a8c880ddcc5c4"; 19882 }; 19883 }; 19884 + "async-2.4.1" = { 19885 name = "async"; 19886 packageName = "async"; 19887 + version = "2.4.1"; 19888 src = fetchurl { 19889 + url = "https://registry.npmjs.org/async/-/async-2.4.1.tgz"; 19890 + sha1 = "62a56b279c98a11d0987096a01cc3eeb8eb7bbd7"; 19891 }; 19892 }; 19893 "lokijs-1.4.3" = { ··· 19899 sha1 = "f2a47ba8d6991c92d6da6a5b35be79b674453abb"; 19900 }; 19901 }; 19902 + "vscode-jsonrpc-3.2.0" = { 19903 name = "vscode-jsonrpc"; 19904 packageName = "vscode-jsonrpc"; 19905 + version = "3.2.0"; 19906 src = fetchurl { 19907 + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.2.0.tgz"; 19908 + sha1 = "c92b946ac385c8b41439b842b6bd07d517b64a7d"; 19909 }; 19910 }; 19911 + "vscode-languageclient-3.2.2" = { 19912 name = "vscode-languageclient"; 19913 packageName = "vscode-languageclient"; 19914 + version = "3.2.2"; 19915 src = fetchurl { 19916 + url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-3.2.2.tgz"; 19917 + sha1 = "7843839614aa099f172b4e5f8967d42b58d77f0d"; 19918 }; 19919 }; 19920 + "vscode-languageserver-3.2.2" = { 19921 name = "vscode-languageserver"; 19922 packageName = "vscode-languageserver"; 19923 + version = "3.2.2"; 19924 src = fetchurl { 19925 + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.2.2.tgz"; 19926 + sha1 = "9a7b66e1252838ea51a0061145089a2b88a9516a"; 19927 }; 19928 }; 19929 + "vscode-languageserver-types-3.2.0" = { 19930 name = "vscode-languageserver-types"; 19931 packageName = "vscode-languageserver-types"; 19932 + version = "3.2.0"; 19933 src = fetchurl { 19934 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.2.0.tgz"; 19935 + sha1 = "8874ed92dbfa66df5fb0e2bf73f614cf9483be8f"; 19936 }; 19937 }; 19938 "babybird-0.0.1" = { ··· 20073 sha1 = "b1c9cc044ef1b9fe63606fc141abbb32e14730cc"; 20074 }; 20075 }; 20076 "bunyan-1.8.12" = { 20077 name = "bunyan"; 20078 packageName = "bunyan"; ··· 20100 sha1 = "9cea9b6386ac301c741838ca3cb91e66dbfbf669"; 20101 }; 20102 }; 20103 + "hot-shots-4.7.0" = { 20104 name = "hot-shots"; 20105 packageName = "hot-shots"; 20106 + version = "4.7.0"; 20107 src = fetchurl { 20108 + url = "https://registry.npmjs.org/hot-shots/-/hot-shots-4.7.0.tgz"; 20109 + sha1 = "1fb2eecd234c938e3ccb56c93681b573455dd64c"; 20110 }; 20111 }; 20112 "limitation-0.2.0" = { ··· 20650 sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"; 20651 }; 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 + }; 20716 "commoner-0.10.8" = { 20717 name = "commoner"; 20718 packageName = "commoner"; ··· 21101 sha512 = "2441a84bwxxm0zcn133ngf0aj1f8jidgfsvm40wa8ap98lkzyzv8fppfsl1dhxpni70mpgl8yik9anc2vrgh1n1immkhw3z6727r9ll"; 21102 }; 21103 }; 21104 + "basic-auth-2.0.0" = { 21105 + name = "basic-auth"; 21106 + packageName = "basic-auth"; 21107 + version = "2.0.0"; 21108 src = fetchurl { 21109 + url = "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.0.tgz"; 21110 + sha1 = "015db3f353e02e56377755f962742e8981e7bbba"; 21111 }; 21112 }; 21113 "detect-port-1.2.1" = { ··· 21128 sha1 = "fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f"; 21129 }; 21130 }; 21131 + "micro-9.0.0" = { 21132 name = "micro"; 21133 packageName = "micro"; 21134 + version = "9.0.0"; 21135 src = fetchurl { 21136 + url = "https://registry.npmjs.org/micro/-/micro-9.0.0.tgz"; 21137 + sha512 = "1ga72y60zj44dy1y3md37x86klv6nxs7ii0aap37p4qwhq5rb5mcl5yn0kmkrgy6wbvgcnw761rjq7ripiqn1w8q2nl23g2rdj64x69"; 21138 }; 21139 }; 21140 "micro-compress-1.0.0" = { ··· 21146 sha1 = "53f5a80b4ad0320ca165a559b6e3df145d4f704f"; 21147 }; 21148 }; 21149 "node-version-1.1.0" = { 21150 name = "node-version"; 21151 packageName = "node-version"; ··· 21164 sha512 = "2z1csf4c3fmlwl0ahk533z5zqkjdf36ccfx11kakl9xran9f5asxm4cxjq4lx1kwqdp8gki786cgpldvgrkvfc7pcvh07j5ssqm8rjg"; 21165 }; 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 + }; 21176 "pkginfo-0.4.0" = { 21177 name = "pkginfo"; 21178 packageName = "pkginfo"; ··· 21198 src = fetchurl { 21199 url = "https://registry.npmjs.org/mri/-/mri-1.1.0.tgz"; 21200 sha1 = "5c0a3f29c8ccffbbb1ec941dcec09d71fa32f36a"; 21201 }; 21202 }; 21203 "pify-3.0.0" = { ··· 21407 sha1 = "1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff"; 21408 }; 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 + }; 21419 "assert-plus-0.1.5" = { 21420 name = "assert-plus"; 21421 packageName = "assert-plus"; ··· 21605 sha1 = "97e4e63ae46b21912cd9475bc31469d26f5ade66"; 21606 }; 21607 }; 21608 + "csv-parse-1.2.2" = { 21609 name = "csv-parse"; 21610 packageName = "csv-parse"; 21611 + version = "1.2.2"; 21612 src = fetchurl { 21613 + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-1.2.2.tgz"; 21614 + sha512 = "0f3kdjcfncknijsn256frrcdmpw52wkimylhbds095kmkva57dhhnrlqzlzsxvf60d1qzfzqlhhc0wj25b9rg1w6rwxfixx2q9a6bx7"; 21615 }; 21616 }; 21617 "stream-transform-0.1.2" = { ··· 21686 sha1 = "0abf1af89a8f5129a81f18c2b35b21df22622f60"; 21687 }; 21688 }; 21689 "once-1.3.0" = { 21690 name = "once"; 21691 packageName = "once"; ··· 21821 sha1 = "ddd52c587033f49e94b71fc55569f252e8ff5f85"; 21822 }; 21823 }; 21824 + "clap-1.2.3" = { 21825 name = "clap"; 21826 packageName = "clap"; 21827 + version = "1.2.3"; 21828 src = fetchurl { 21829 + url = "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz"; 21830 + sha512 = "1ha66pbxhll7c6vv641rahzq0ylwaifskwpwggy9k4sfh8r9n0r8mpqbib22dppb7zfrk6a84a4dyaal7mqs12jvlaxszz11py0nap0"; 21831 }; 21832 }; 21833 "enhanced-resolve-2.3.0" = { ··· 22325 sha1 = "4424aca20e14d255c0b0889af6f6b8973da10e0d"; 22326 }; 22327 }; 22328 "follow-redirects-0.0.3" = { 22329 name = "follow-redirects"; 22330 packageName = "follow-redirects"; ··· 22424 sha1 = "b951f4abb6bd617e66f63eb891498e391763e309"; 22425 }; 22426 }; 22427 "webpack-sources-1.0.1" = { 22428 name = "webpack-sources"; 22429 packageName = "webpack-sources"; ··· 22469 sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39"; 22470 }; 22471 }; 22472 + "big.js-3.2.0" = { 22473 name = "big.js"; 22474 packageName = "big.js"; 22475 + version = "3.2.0"; 22476 src = fetchurl { 22477 + url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz"; 22478 + sha512 = "3qicqys1bg16slzbzjn3f0fir82r4d1h6lvy5y0cqqwzbs2iaxf93xgi6x47m7l87i102ifjn4qvjbf764gyncsxcqw7lw33mk7y4zs"; 22479 }; 22480 }; 22481 "emojis-list-2.1.0" = { ··· 22514 sha512 = "3q09f2w67qqhl3lwiisj4422mj9nfldg4cxmidfrjcwn3k7spm9g46x4n1j6kv39bi9khmcpyvfa3fwski488ibivyg9bwijjw2cr93"; 22515 }; 22516 }; 22517 "cli-list-0.2.0" = { 22518 name = "cli-list"; 22519 packageName = "cli-list"; ··· 22997 alloy = nodeEnv.buildNodePackage { 22998 name = "alloy"; 22999 packageName = "alloy"; 23000 + version = "1.10.4"; 23001 src = fetchurl { 23002 + url = "https://registry.npmjs.org/alloy/-/alloy-1.10.4.tgz"; 23003 + sha1 = "8df4818788ba3735122383f99c61cc6ce50626fa"; 23004 }; 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" 23021 sources."colors-0.6.0-1" 23022 + sources."commander-0.6.1" 23023 + sources."deasync-0.1.10" 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" 23030 sources."pkginfo-0.2.2" 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" 23035 sources."xmldom-0.1.19" 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" // { 23063 dependencies = [ 23064 sources."source-map-0.5.7" 23065 ]; 23066 }) 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" 23090 sources."array-unique-0.2.1" 23091 (sources."global-modules-0.2.3" // { 23092 dependencies = [ ··· 23104 sources."which-1.3.0" 23105 sources."parse-passwd-1.0.0" 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" 23119 sources."amdefine-1.0.1" 23120 + sources."ensure-posix-path-1.0.2" 23121 + sources."matcher-collection-1.0.5" 23122 sources."xml2js-0.2.8" 23123 sources."sax-0.5.8" 23124 ]; 23125 buildInputs = globalBuildInputs; 23126 meta = { ··· 23318 }) 23319 sources."moment-2.18.1" 23320 sources."ms-rest-2.2.2" 23321 + (sources."ms-rest-azure-2.3.1" // { 23322 dependencies = [ 23323 sources."async-0.2.7" 23324 ]; ··· 23418 sources."has-color-0.1.7" 23419 sources."ansi-styles-1.0.0" 23420 sources."strip-ansi-0.1.1" 23421 + sources."@types/node-8.0.28" 23422 sources."@types/request-2.0.3" 23423 sources."@types/uuid-3.4.2" 23424 sources."is-buffer-1.1.5" ··· 23437 sources."i-0.3.5" 23438 sources."mkdirp-0.5.1" 23439 sources."ncp-0.4.2" 23440 + sources."rimraf-2.6.2" 23441 sources."minimist-0.0.8" 23442 sources."glob-7.1.2" 23443 sources."fs.realpath-1.0.0" ··· 23568 bower = nodeEnv.buildNodePackage { 23569 name = "bower"; 23570 packageName = "bower"; 23571 + version = "1.8.2"; 23572 src = fetchurl { 23573 + url = "https://registry.npmjs.org/bower/-/bower-1.8.2.tgz"; 23574 + sha1 = "adf53529c8d4af02ef24fb8d5341c1419d33e2f7"; 23575 }; 23576 buildInputs = globalBuildInputs; 23577 meta = { ··· 23591 }; 23592 dependencies = [ 23593 sources."argparse-1.0.4" 23594 + sources."bower-1.8.2" 23595 sources."bower-endpoint-parser-0.2.1" 23596 sources."bower-json-0.6.0" 23597 sources."bower-logger-0.2.1" ··· 23681 ]; 23682 }) 23683 sources."path-is-absolute-1.0.1" 23684 + (sources."rimraf-2.6.2" // { 23685 dependencies = [ 23686 sources."glob-7.1.2" 23687 ]; ··· 23813 sources."create-hash-1.1.3" 23814 sources."create-hmac-1.1.6" 23815 sources."diffie-hellman-5.0.2" 23816 + sources."pbkdf2-3.0.14" 23817 sources."public-encrypt-4.0.0" 23818 sources."randombytes-2.0.5" 23819 sources."browserify-aes-1.0.8" ··· 24108 sources."ip-set-1.0.1" 24109 sources."mkdirp-0.3.5" 24110 sources."peer-wire-swarm-0.12.1" 24111 + sources."rimraf-2.6.2" 24112 sources."torrent-discovery-5.4.0" 24113 sources."torrent-piece-1.1.1" 24114 (sources."random-access-file-1.8.1" // { ··· 24430 ]; 24431 }) 24432 sources."is-url-1.2.2" 24433 + sources."interpret-1.0.4" 24434 sources."rechoir-0.6.2" 24435 sources."fs.realpath-1.0.0" 24436 sources."resolve-1.4.0" ··· 24538 sources."create-hash-1.1.3" 24539 sources."create-hmac-1.1.6" 24540 sources."diffie-hellman-5.0.2" 24541 + sources."pbkdf2-3.0.14" 24542 sources."public-encrypt-4.0.0" 24543 sources."randombytes-2.0.5" 24544 sources."browserify-aes-1.0.8" ··· 24613 sources."ms-2.0.0" 24614 sources."array-flatten-1.1.1" 24615 sources."content-disposition-0.5.2" 24616 + sources."content-type-1.0.4" 24617 sources."cookie-0.3.1" 24618 sources."cookie-signature-1.0.6" 24619 sources."depd-1.1.1" 24620 sources."encodeurl-1.0.1" 24621 sources."escape-html-1.0.3" 24622 + sources."etag-1.8.1" 24623 + sources."finalhandler-1.0.5" 24624 sources."fresh-0.5.0" 24625 sources."merge-descriptors-1.0.1" 24626 sources."methods-1.1.2" 24627 sources."on-finished-2.3.0" 24628 + sources."parseurl-1.3.2" 24629 sources."path-to-regexp-0.1.7" 24630 sources."proxy-addr-1.1.5" 24631 sources."qs-6.5.0" ··· 24638 sources."utils-merge-1.0.0" 24639 sources."unpipe-1.0.0" 24640 sources."ee-first-1.1.1" 24641 + sources."forwarded-0.1.2" 24642 sources."ipaddr.js-1.4.0" 24643 sources."destroy-1.0.4" 24644 sources."http-errors-1.6.2" ··· 24997 sources."media-typer-0.3.0" 24998 sources."methods-1.1.2" 24999 sources."on-finished-2.2.1" 25000 + sources."parseurl-1.3.2" 25001 sources."path-to-regexp-0.1.3" 25002 sources."proxy-addr-1.0.10" 25003 sources."qs-2.3.3" ··· 25020 sources."ms-0.7.0" 25021 sources."crc-3.2.1" 25022 sources."ee-first-1.1.0" 25023 + sources."forwarded-0.1.2" 25024 sources."ipaddr.js-1.0.5" 25025 sources."destroy-1.0.3" 25026 sources."mime-1.2.11" ··· 25031 sources."faye-websocket-0.11.1" 25032 sources."eventemitter3-0.1.6" 25033 sources."better-curry-1.6.0" 25034 + sources."websocket-driver-0.7.0" 25035 + sources."http-parser-js-0.4.7" 25036 + sources."websocket-extensions-0.1.2" 25037 (sources."native-dns-cache-git+https://github.com/okTurtles/native-dns-cache.git#8714196bb9223cc9a4064a4fddf9e82ec50b7d4d" // { 25038 dependencies = [ 25039 sources."native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#307e77a47ebba57a5ae9118a284e916e5ebb305a" ··· 25183 sources."bytewise-1.1.0" 25184 sources."ltgt-2.1.3" 25185 sources."pull-level-2.0.3" 25186 + sources."pull-stream-3.6.1" 25187 sources."typewiselite-1.0.0" 25188 sources."bytewise-core-1.2.3" 25189 sources."typewise-1.0.3" ··· 25240 sources."JSONStream-1.3.1" 25241 sources."async-2.5.0" 25242 sources."aws4-1.6.0" 25243 + sources."aws-sdk-2.120.0" 25244 sources."ini-1.3.4" 25245 sources."optimist-0.6.1" 25246 + (sources."request-2.82.0" // { 25247 + dependencies = [ 25248 + sources."uuid-3.1.0" 25249 + ]; 25250 + }) 25251 sources."jsonparse-1.3.1" 25252 sources."through-2.3.8" 25253 sources."lodash-4.17.4" ··· 25267 sources."punycode-1.3.2" 25268 sources."wordwrap-0.0.3" 25269 sources."minimist-0.0.10" 25270 + sources."aws-sign2-0.7.0" 25271 sources."caseless-0.12.0" 25272 sources."combined-stream-1.0.5" 25273 sources."extend-3.0.1" 25274 sources."forever-agent-0.6.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" 25279 sources."is-typedarray-1.0.0" 25280 sources."isstream-0.1.2" 25281 sources."json-stringify-safe-5.0.1" 25282 sources."mime-types-2.1.17" 25283 sources."oauth-sign-0.8.2" 25284 + sources."performance-now-2.1.0" 25285 + sources."qs-6.5.1" 25286 sources."safe-buffer-5.1.1" 25287 sources."stringstream-0.0.5" 25288 (sources."tough-cookie-2.3.2" // { ··· 25293 sources."tunnel-agent-0.6.0" 25294 sources."delayed-stream-1.0.0" 25295 sources."asynckit-0.4.0" 25296 + sources."ajv-5.2.2" 25297 + sources."har-schema-2.0.0" 25298 sources."co-4.6.0" 25299 + sources."fast-deep-equal-1.0.0" 25300 + sources."json-schema-traverse-0.3.1" 25301 sources."json-stable-stringify-1.0.1" 25302 sources."jsonify-0.0.0" 25303 + sources."hoek-4.2.0" 25304 + sources."boom-4.3.1" 25305 + (sources."cryptiles-3.1.2" // { 25306 dependencies = [ 25307 + sources."boom-5.2.0" 25308 ]; 25309 }) 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" 25314 sources."extsprintf-1.3.0" 25315 sources."json-schema-0.2.3" 25316 + sources."verror-1.10.0" 25317 sources."core-util-is-1.0.2" 25318 sources."asn1-0.2.3" 25319 + sources."dashdash-1.14.1" 25320 + sources."getpass-0.1.7" 25321 sources."jsbn-0.1.1" 25322 sources."tweetnacl-0.14.5" 25323 sources."ecc-jsbn-0.1.1" ··· 25343 dependencies = [ 25344 sources."auto-bind-1.1.0" 25345 sources."clipboardy-1.1.4" 25346 + sources."conf-1.3.0" 25347 sources."got-7.1.0" 25348 sources."has-ansi-3.0.0" 25349 sources."import-jsx-1.3.0" ··· 25462 sources."core-js-2.5.1" 25463 sources."home-or-tmp-2.0.0" 25464 sources."mkdirp-0.5.1" 25465 + sources."source-map-support-0.4.18" 25466 sources."os-homedir-1.0.2" 25467 sources."os-tmpdir-1.0.2" 25468 sources."minimist-0.0.8" ··· 25505 ]; 25506 }) 25507 sources."is-fullwidth-code-point-2.0.0" 25508 + (sources."fbjs-0.8.15" // { 25509 dependencies = [ 25510 sources."core-js-1.2.7" 25511 ]; ··· 25515 sources."promise-7.3.1" 25516 sources."setimmediate-1.0.5" 25517 sources."ua-parser-js-0.7.14" 25518 + sources."node-fetch-1.7.3" 25519 sources."whatwg-fetch-2.0.3" 25520 sources."encoding-0.1.12" 25521 + sources."iconv-lite-0.4.19" 25522 sources."asap-2.0.6" 25523 sources."camelcase-keys-2.1.0" 25524 sources."decamelize-1.2.0" ··· 25573 eslint = nodeEnv.buildNodePackage { 25574 name = "eslint"; 25575 packageName = "eslint"; 25576 + version = "4.7.2"; 25577 src = fetchurl { 25578 + url = "https://registry.npmjs.org/eslint/-/eslint-4.7.2.tgz"; 25579 + sha1 = "ff6f5f5193848a27ee9b627be3e73fb9cb5e662e"; 25580 }; 25581 dependencies = [ 25582 sources."ajv-5.2.2" ··· 25594 }) 25595 sources."concat-stream-1.6.0" 25596 sources."cross-spawn-5.1.0" 25597 + sources."debug-3.0.1" 25598 sources."doctrine-2.0.0" 25599 sources."eslint-scope-3.7.1" 25600 + sources."espree-3.5.1" 25601 sources."esquery-1.0.0" 25602 sources."estraverse-4.2.0" 25603 sources."esutils-2.0.2" ··· 25607 sources."globals-9.18.0" 25608 sources."ignore-3.3.5" 25609 sources."imurmurhash-0.1.4" 25610 + sources."inquirer-3.3.0" 25611 sources."is-resolvable-1.0.0" 25612 + sources."js-yaml-3.10.0" 25613 sources."json-stable-stringify-1.0.1" 25614 sources."levn-0.3.0" 25615 sources."lodash-4.17.4" ··· 25618 sources."natural-compare-1.4.0" 25619 sources."optionator-0.8.2" 25620 sources."path-is-inside-1.0.2" 25621 + sources."pluralize-7.0.0" 25622 sources."progress-2.0.0" 25623 sources."require-uncached-1.0.3" 25624 sources."semver-5.4.1" ··· 25683 sources."is-path-in-cwd-1.0.0" 25684 sources."pify-2.3.0" 25685 sources."pinkie-promise-2.0.1" 25686 + sources."rimraf-2.6.2" 25687 sources."array-union-1.0.2" 25688 sources."arrify-1.0.1" 25689 sources."array-uniq-1.0.3" ··· 25694 sources."once-1.4.0" 25695 sources."path-is-absolute-1.0.1" 25696 sources."wrappy-1.0.2" 25697 + sources."ansi-escapes-3.0.0" 25698 sources."cli-cursor-2.1.0" 25699 sources."cli-width-2.2.0" 25700 + sources."external-editor-2.0.5" 25701 sources."figures-2.0.0" 25702 sources."mute-stream-0.0.7" 25703 sources."run-async-2.3.0" ··· 25709 sources."onetime-2.0.1" 25710 sources."signal-exit-3.0.2" 25711 sources."mimic-fn-1.1.0" 25712 + sources."iconv-lite-0.4.19" 25713 sources."jschardet-1.5.1" 25714 + sources."tmp-0.0.33" 25715 sources."os-tmpdir-1.0.2" 25716 sources."is-promise-2.1.0" 25717 sources."is-fullwidth-code-point-2.0.0" ··· 25757 sources."supports-color-2.0.0" 25758 ]; 25759 }) 25760 + (sources."eslint-4.7.2" // { 25761 dependencies = [ 25762 sources."chalk-2.1.0" 25763 sources."strip-ansi-4.0.0" ··· 25782 sources."babel-code-frame-6.26.0" 25783 sources."concat-stream-1.6.0" 25784 sources."cross-spawn-5.1.0" 25785 + sources."debug-3.0.1" 25786 sources."doctrine-2.0.0" 25787 sources."eslint-scope-3.7.1" 25788 + sources."espree-3.5.1" 25789 sources."esquery-1.0.0" 25790 sources."estraverse-4.2.0" 25791 sources."esutils-2.0.2" ··· 25795 sources."globals-9.18.0" 25796 sources."ignore-3.3.5" 25797 sources."imurmurhash-0.1.4" 25798 + (sources."inquirer-3.3.0" // { 25799 dependencies = [ 25800 sources."chalk-2.1.0" 25801 sources."strip-ansi-4.0.0" ··· 25805 ]; 25806 }) 25807 sources."is-resolvable-1.0.0" 25808 + sources."js-yaml-3.10.0" 25809 sources."json-stable-stringify-1.0.1" 25810 sources."levn-0.3.0" 25811 sources."lodash-4.17.4" ··· 25813 sources."mkdirp-0.5.1" 25814 sources."natural-compare-1.4.0" 25815 sources."path-is-inside-1.0.2" 25816 + sources."pluralize-7.0.0" 25817 sources."progress-2.0.0" 25818 sources."require-uncached-1.0.3" 25819 sources."semver-5.4.1" ··· 25866 sources."is-path-in-cwd-1.0.0" 25867 sources."pify-2.3.0" 25868 sources."pinkie-promise-2.0.1" 25869 + sources."rimraf-2.6.2" 25870 sources."array-union-1.0.2" 25871 sources."arrify-1.0.1" 25872 sources."array-uniq-1.0.3" ··· 25877 sources."once-1.4.0" 25878 sources."path-is-absolute-1.0.1" 25879 sources."wrappy-1.0.2" 25880 + sources."ansi-escapes-3.0.0" 25881 sources."cli-cursor-2.1.0" 25882 sources."cli-width-2.2.0" 25883 + sources."external-editor-2.0.5" 25884 sources."figures-2.0.0" 25885 sources."mute-stream-0.0.7" 25886 sources."run-async-2.3.0" ··· 25897 sources."onetime-2.0.1" 25898 sources."signal-exit-3.0.2" 25899 sources."mimic-fn-1.1.0" 25900 + sources."iconv-lite-0.4.19" 25901 sources."jschardet-1.5.1" 25902 + sources."tmp-0.0.33" 25903 sources."os-tmpdir-1.0.2" 25904 sources."is-promise-2.1.0" 25905 sources."is-fullwidth-code-point-2.0.0" ··· 26150 dependencies = [ 26151 sources."bower-endpoint-parser-0.2.1" 26152 sources."bower-logger-0.2.1" 26153 + sources."bower-1.8.2" 26154 sources."glob-3.2.11" 26155 sources."inherits-2.0.3" 26156 sources."minimatch-0.3.0" ··· 26292 sources."string_decoder-1.0.3" 26293 sources."util-deprecate-1.0.2" 26294 sources."nan-2.7.0" 26295 + sources."node-pre-gyp-0.6.37" 26296 (sources."mkdirp-0.5.1" // { 26297 dependencies = [ 26298 sources."minimist-0.0.8" ··· 26305 sources."minimist-1.2.0" 26306 ]; 26307 }) 26308 + sources."request-2.82.0" 26309 + sources."rimraf-2.6.2" 26310 sources."semver-5.4.1" 26311 + (sources."tape-4.8.0" // { 26312 + dependencies = [ 26313 + sources."minimist-1.2.0" 26314 + ]; 26315 + }) 26316 sources."tar-2.2.1" 26317 sources."tar-pack-3.4.0" 26318 sources."abbrev-1.1.0" ··· 26328 }) 26329 sources."set-blocking-2.0.0" 26330 sources."delegates-1.0.0" 26331 + sources."aproba-1.2.0" 26332 sources."has-unicode-2.0.1" 26333 sources."signal-exit-3.0.2" 26334 sources."string-width-1.0.2" ··· 26341 sources."deep-extend-0.4.2" 26342 sources."ini-1.3.4" 26343 sources."strip-json-comments-2.0.1" 26344 + sources."aws-sign2-0.7.0" 26345 sources."aws4-1.6.0" 26346 sources."caseless-0.12.0" 26347 sources."combined-stream-1.0.5" 26348 sources."extend-3.0.1" 26349 sources."forever-agent-0.6.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" 26354 sources."is-typedarray-1.0.0" 26355 sources."isstream-0.1.2" 26356 sources."json-stringify-safe-5.0.1" 26357 sources."mime-types-2.1.17" 26358 sources."oauth-sign-0.8.2" 26359 + sources."performance-now-2.1.0" 26360 + sources."qs-6.5.1" 26361 sources."stringstream-0.0.5" 26362 sources."tough-cookie-2.3.2" 26363 sources."tunnel-agent-0.6.0" 26364 sources."uuid-3.1.0" 26365 sources."delayed-stream-1.0.0" 26366 sources."asynckit-0.4.0" 26367 + sources."ajv-5.2.2" 26368 + sources."har-schema-2.0.0" 26369 sources."co-4.6.0" 26370 + sources."fast-deep-equal-1.0.0" 26371 + sources."json-schema-traverse-0.3.1" 26372 sources."json-stable-stringify-1.0.1" 26373 sources."jsonify-0.0.0" 26374 + sources."hoek-4.2.0" 26375 + sources."boom-4.3.1" 26376 + (sources."cryptiles-3.1.2" // { 26377 dependencies = [ 26378 + sources."boom-5.2.0" 26379 ]; 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" 26385 sources."extsprintf-1.3.0" 26386 sources."json-schema-0.2.3" 26387 + sources."verror-1.10.0" 26388 sources."asn1-0.2.3" 26389 + sources."dashdash-1.14.1" 26390 + sources."getpass-0.1.7" 26391 sources."jsbn-0.1.1" 26392 sources."tweetnacl-0.14.5" 26393 sources."ecc-jsbn-0.1.1" ··· 26399 sources."inflight-1.0.6" 26400 sources."once-1.4.0" 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" 26423 sources."block-stream-0.0.9" 26424 sources."fstream-1.0.11" 26425 sources."debug-2.6.8" ··· 26435 ]; 26436 }) 26437 sources."lazy-1.0.11" 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 + }) 26445 sources."i-0.3.5" 26446 sources."ncp-0.4.2" 26447 ]; ··· 26635 sources."chalk-1.1.3" 26636 sources."deprecated-0.0.1" 26637 sources."gulp-util-3.0.8" 26638 + sources."interpret-1.0.4" 26639 sources."liftoff-2.3.0" 26640 sources."minimist-1.2.0" 26641 sources."orchestrator-0.3.8" ··· 26660 sources."array-differ-1.0.0" 26661 sources."array-uniq-1.0.3" 26662 sources."beeper-1.1.1" 26663 + sources."dateformat-2.2.0" 26664 sources."fancy-log-1.3.0" 26665 sources."gulplog-1.0.0" 26666 sources."has-gulplog-0.1.0" ··· 26961 ionic = nodeEnv.buildNodePackage { 26962 name = "ionic"; 26963 packageName = "ionic"; 26964 + version = "3.10.3"; 26965 src = fetchurl { 26966 + url = "https://registry.npmjs.org/ionic/-/ionic-3.10.3.tgz"; 26967 + sha512 = "2n96j5a5fpy6pjgmgsnkx5d2asxha7yvlmlj77fpg31qg7nij0p9y4sq00zjrdzhzq2avsc9r25pjgy3i8cb16il9w9rrd210rlzc15"; 26968 }; 26969 dependencies = [ 26970 + sources."@ionic/cli-utils-1.10.2" 26971 + sources."@ionic/discover-0.3.1" 26972 sources."chalk-2.1.0" 26973 sources."opn-5.1.0" 26974 sources."os-name-2.0.1" 26975 + sources."rimraf-2.6.2" 26976 sources."semver-5.4.1" 26977 sources."tslib-1.7.1" 26978 sources."archiver-2.0.3" 26979 + sources."basic-auth-1.1.0" 26980 + sources."body-parser-1.18.1" 26981 sources."chokidar-1.7.0" 26982 sources."ci-info-1.1.1" 26983 sources."cross-spawn-5.1.0" ··· 26989 sources."qs-6.5.0" 26990 ]; 26991 }) 26992 + sources."inquirer-3.3.0" 26993 sources."leek-0.0.24" 26994 sources."lodash-4.17.4" 26995 sources."minimist-1.2.0" ··· 27000 sources."is-fullwidth-code-point-2.0.0" 27001 ]; 27002 }) 27003 + sources."ssh-config-1.1.1" 27004 (sources."string-width-2.1.1" // { 27005 dependencies = [ 27006 sources."is-fullwidth-code-point-2.0.0" ··· 27020 sources."tiny-lr-1.0.5" 27021 sources."uuid-3.1.0" 27022 sources."wrap-ansi-3.0.1" 27023 + sources."ws-3.2.0" 27024 sources."archiver-utils-1.3.0" 27025 sources."async-2.5.0" 27026 sources."buffer-crc32-0.2.13" ··· 27055 sources."compress-commons-1.2.0" 27056 sources."crc32-stream-2.0.0" 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" 27076 sources."anymatch-1.3.2" 27077 sources."async-each-1.0.1" 27078 sources."glob-parent-2.0.0" ··· 27122 sources."binary-extensions-1.10.0" 27123 sources."set-immediate-shim-1.0.1" 27124 sources."nan-2.7.0" 27125 + sources."node-pre-gyp-0.6.37" 27126 (sources."mkdirp-0.5.1" // { 27127 dependencies = [ 27128 sources."minimist-0.0.8" ··· 27131 sources."nopt-4.0.1" 27132 sources."npmlog-4.1.2" 27133 sources."rc-1.2.1" 27134 + sources."request-2.82.0" 27135 + sources."tape-4.8.0" 27136 sources."tar-pack-3.4.0" 27137 sources."abbrev-1.1.0" 27138 sources."osenv-0.1.4" ··· 27148 }) 27149 sources."set-blocking-2.0.0" 27150 sources."delegates-1.0.0" 27151 + sources."aproba-1.2.0" 27152 sources."has-unicode-2.0.1" 27153 sources."object-assign-4.1.1" 27154 sources."signal-exit-3.0.2" ··· 27165 sources."deep-extend-0.4.2" 27166 sources."ini-1.3.4" 27167 sources."strip-json-comments-2.0.1" 27168 + sources."aws-sign2-0.7.0" 27169 sources."aws4-1.6.0" 27170 sources."caseless-0.12.0" 27171 sources."combined-stream-1.0.5" 27172 sources."extend-3.0.1" 27173 sources."forever-agent-0.6.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" 27178 sources."is-typedarray-1.0.0" 27179 sources."isstream-0.1.2" 27180 sources."json-stringify-safe-5.0.1" 27181 sources."oauth-sign-0.8.2" 27182 + sources."performance-now-2.1.0" 27183 sources."stringstream-0.0.5" 27184 sources."tough-cookie-2.3.2" 27185 sources."tunnel-agent-0.6.0" 27186 sources."delayed-stream-1.0.0" 27187 sources."asynckit-0.4.0" 27188 + sources."ajv-5.2.2" 27189 + sources."har-schema-2.0.0" 27190 sources."co-4.6.0" 27191 + sources."fast-deep-equal-1.0.0" 27192 + sources."json-schema-traverse-0.3.1" 27193 sources."json-stable-stringify-1.0.1" 27194 sources."jsonify-0.0.0" 27195 + sources."hoek-4.2.0" 27196 + sources."boom-4.3.1" 27197 + (sources."cryptiles-3.1.2" // { 27198 dependencies = [ 27199 + sources."boom-5.2.0" 27200 ]; 27201 }) 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" 27206 sources."extsprintf-1.3.0" 27207 sources."json-schema-0.2.3" 27208 + sources."verror-1.10.0" 27209 sources."asn1-0.2.3" 27210 + sources."dashdash-1.14.1" 27211 + sources."getpass-0.1.7" 27212 sources."jsbn-0.1.1" 27213 sources."tweetnacl-0.14.5" 27214 sources."ecc-jsbn-0.1.1" 27215 sources."bcrypt-pbkdf-1.0.1" 27216 sources."punycode-1.4.1" 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" 27238 sources."fstream-1.0.11" 27239 sources."fstream-ignore-1.0.5" 27240 sources."uid-number-0.0.6" 27241 sources."lru-cache-4.1.1" 27242 sources."shebang-command-1.2.0" 27243 sources."which-1.3.0" ··· 27249 sources."accepts-1.3.4" 27250 sources."array-flatten-1.1.1" 27251 sources."content-disposition-0.5.2" 27252 sources."cookie-0.3.1" 27253 sources."cookie-signature-1.0.6" 27254 sources."encodeurl-1.0.1" 27255 sources."escape-html-1.0.3" 27256 + sources."etag-1.8.1" 27257 + sources."finalhandler-1.0.5" 27258 sources."fresh-0.5.0" 27259 sources."merge-descriptors-1.0.1" 27260 sources."methods-1.1.2" 27261 + sources."parseurl-1.3.2" 27262 sources."path-to-regexp-0.1.7" 27263 sources."proxy-addr-1.1.5" 27264 sources."range-parser-1.2.0" 27265 sources."send-0.15.4" 27266 sources."serve-static-1.12.4" 27267 sources."utils-merge-1.0.0" 27268 sources."vary-1.1.1" 27269 sources."negotiator-0.6.1" 27270 + sources."forwarded-0.1.2" 27271 sources."ipaddr.js-1.4.0" 27272 sources."destroy-1.0.4" 27273 sources."mime-1.3.4" 27274 + sources."ansi-escapes-3.0.0" 27275 sources."cli-cursor-2.1.0" 27276 sources."cli-width-2.2.0" 27277 + sources."external-editor-2.0.5" 27278 sources."figures-2.0.0" 27279 sources."mute-stream-0.0.7" 27280 sources."run-async-2.3.0" 27281 sources."rx-lite-4.0.8" 27282 sources."rx-lite-aggregates-4.0.8" 27283 sources."restore-cursor-2.0.0" 27284 sources."onetime-2.0.1" 27285 sources."mimic-fn-1.1.0" 27286 sources."jschardet-1.5.1" 27287 + sources."tmp-0.0.33" 27288 sources."escape-string-regexp-1.0.5" 27289 sources."is-promise-2.1.0" 27290 sources."lodash.assign-3.2.0" ··· 27303 sources."cookiejar-2.1.1" 27304 sources."formidable-1.1.1" 27305 sources."block-stream-0.0.9" 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 + }) 27313 sources."faye-websocket-0.10.0" 27314 sources."livereload-js-2.2.2" 27315 sources."continuable-cache-0.3.1" 27316 sources."error-7.0.2" 27317 sources."safe-json-parse-1.0.1" 27318 sources."string-template-0.2.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" 27325 sources."ansi-styles-3.2.0" 27326 sources."supports-color-4.4.0" 27327 sources."color-convert-1.9.0" ··· 27374 sources."source-map-0.4.4" 27375 ]; 27376 }) 27377 + (sources."js-yaml-3.10.0" // { 27378 dependencies = [ 27379 sources."esprima-4.0.0" 27380 ]; ··· 27453 javascript-typescript-langserver = nodeEnv.buildNodePackage { 27454 name = "javascript-typescript-langserver"; 27455 packageName = "javascript-typescript-langserver"; 27456 + version = "2.3.1"; 27457 src = fetchurl { 27458 + url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.3.1.tgz"; 27459 + sha1 = "b7db14bee9db6497788e2f5a7d49db2b7a2e1891"; 27460 }; 27461 dependencies = [ 27462 sources."@reactivex/rxjs-5.4.3" ··· 27473 ]; 27474 }) 27475 sources."lodash-4.17.4" 27476 + sources."mz-2.7.0" 27477 sources."object-hash-1.1.8" 27478 sources."opentracing-0.14.1" 27479 sources."semaphore-async-await-1.5.1" 27480 sources."string-similarity-1.2.0" 27481 sources."typescript-2.3.4" 27482 + sources."vscode-jsonrpc-3.4.0" 27483 + sources."vscode-languageserver-3.4.2" 27484 + sources."vscode-languageserver-types-3.4.0" 27485 sources."symbol-observable-1.0.4" 27486 sources."assertion-error-1.0.2" 27487 sources."check-error-1.0.2" ··· 27519 sources."object-assign-4.1.1" 27520 sources."thenify-all-1.6.0" 27521 sources."thenify-3.3.0" 27522 + sources."vscode-uri-1.0.1" 27523 + sources."vscode-languageserver-protocol-3.4.2" 27524 ]; 27525 buildInputs = globalBuildInputs; 27526 meta = { ··· 27618 js-beautify = nodeEnv.buildNodePackage { 27619 name = "js-beautify"; 27620 packageName = "js-beautify"; 27621 + version = "1.7.3"; 27622 src = fetchurl { 27623 + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.7.3.tgz"; 27624 + sha512 = "18pcdycadk2ijyxsgl2kr14hzf75cwp4va0laidqls6haq3h0laj6f7kbbl27mwicqxi3zdin1c34w20ag1ikpm830nffdlif86qgwr"; 27625 }; 27626 dependencies = [ 27627 sources."config-chain-1.1.11" ··· 27697 dependencies = [ 27698 sources."commander-2.11.0" 27699 sources."graphlib-2.1.1" 27700 + sources."js-yaml-3.10.0" 27701 sources."lodash-4.17.4" 27702 sources."native-promise-only-0.8.1" 27703 sources."path-loader-1.0.2" ··· 27715 sources."formidable-1.1.1" 27716 sources."methods-1.1.2" 27717 sources."mime-1.4.0" 27718 + sources."qs-6.5.1" 27719 sources."readable-stream-2.3.3" 27720 sources."ms-2.0.0" 27721 sources."asynckit-0.4.0" ··· 27749 sha512 = "2iqk65hy94j010zlqsl4rzfkz4f9ic1pqbvsf5w1lrgmda9wmhxl5kmvnmwikjilmn6kz9kniqzl7rpq3xv3cmpx8rppb7ipk5ddhzj"; 27750 }; 27751 dependencies = [ 27752 + sources."body-parser-1.18.1" 27753 sources."chalk-1.1.3" 27754 (sources."compression-1.7.0" // { 27755 dependencies = [ 27756 sources."bytes-2.5.0" 27757 ]; 27758 }) 27759 sources."connect-pause-0.1.1" ··· 27761 sources."errorhandler-1.5.0" 27762 (sources."express-4.15.4" // { 27763 dependencies = [ 27764 sources."qs-6.5.0" 27765 ]; 27766 }) ··· 27773 sources."lodash-4.17.4" 27774 sources."lodash-id-0.13.0" 27775 sources."lowdb-0.15.5" 27776 + sources."method-override-2.3.9" 27777 + sources."morgan-1.8.2" 27778 sources."object-assign-4.1.1" 27779 sources."please-upgrade-node-3.0.1" 27780 sources."pluralize-3.1.0" 27781 + sources."request-2.82.0" 27782 sources."server-destroy-1.0.1" 27783 sources."shortid-2.2.8" 27784 sources."update-notifier-1.0.3" ··· 27787 sources."camelcase-3.0.0" 27788 ]; 27789 }) 27790 + sources."bytes-3.0.0" 27791 + sources."content-type-1.0.4" 27792 + sources."debug-2.6.8" 27793 sources."depd-1.1.1" 27794 sources."http-errors-1.6.2" 27795 + sources."iconv-lite-0.4.19" 27796 sources."on-finished-2.3.0" 27797 + sources."qs-6.5.1" 27798 + sources."raw-body-2.3.2" 27799 sources."type-is-1.6.15" 27800 sources."ms-2.0.0" 27801 sources."inherits-2.0.3" ··· 27824 sources."cookie-0.3.1" 27825 sources."cookie-signature-1.0.6" 27826 sources."encodeurl-1.0.1" 27827 + sources."etag-1.8.1" 27828 + sources."finalhandler-1.0.5" 27829 sources."fresh-0.5.0" 27830 sources."merge-descriptors-1.0.1" 27831 sources."methods-1.1.2" 27832 + sources."parseurl-1.3.2" 27833 sources."path-to-regexp-0.1.7" 27834 sources."proxy-addr-1.1.5" 27835 sources."range-parser-1.2.0" 27836 + sources."send-0.15.4" 27837 sources."serve-static-1.12.4" 27838 sources."utils-merge-1.0.0" 27839 + sources."forwarded-0.1.2" 27840 sources."ipaddr.js-1.4.0" 27841 sources."destroy-1.0.4" 27842 sources."mime-1.3.4" ··· 27846 sources."is-promise-2.1.0" 27847 sources."steno-0.4.4" 27848 sources."basic-auth-1.1.0" 27849 + sources."aws-sign2-0.7.0" 27850 sources."aws4-1.6.0" 27851 sources."caseless-0.12.0" 27852 sources."combined-stream-1.0.5" 27853 sources."extend-3.0.1" 27854 sources."forever-agent-0.6.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" 27859 sources."is-typedarray-1.0.0" 27860 sources."isstream-0.1.2" 27861 sources."json-stringify-safe-5.0.1" 27862 sources."oauth-sign-0.8.2" 27863 + sources."performance-now-2.1.0" 27864 sources."stringstream-0.0.5" 27865 sources."tough-cookie-2.3.2" 27866 sources."tunnel-agent-0.6.0" 27867 sources."uuid-3.1.0" 27868 sources."delayed-stream-1.0.0" 27869 sources."asynckit-0.4.0" 27870 + sources."ajv-5.2.2" 27871 + sources."har-schema-2.0.0" 27872 sources."co-4.6.0" 27873 + sources."fast-deep-equal-1.0.0" 27874 + sources."json-schema-traverse-0.3.1" 27875 sources."json-stable-stringify-1.0.1" 27876 sources."jsonify-0.0.0" 27877 + sources."hoek-4.2.0" 27878 + sources."boom-4.3.1" 27879 + (sources."cryptiles-3.1.2" // { 27880 dependencies = [ 27881 + sources."boom-5.2.0" 27882 ]; 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" 27888 sources."extsprintf-1.3.0" 27889 sources."json-schema-0.2.3" 27890 + sources."verror-1.10.0" 27891 sources."core-util-is-1.0.2" 27892 sources."asn1-0.2.3" 27893 + sources."dashdash-1.14.1" 27894 + sources."getpass-0.1.7" 27895 sources."jsbn-0.1.1" 27896 sources."tweetnacl-0.14.5" 27897 sources."ecc-jsbn-0.1.1" ··· 28014 js-yaml = nodeEnv.buildNodePackage { 28015 name = "js-yaml"; 28016 packageName = "js-yaml"; 28017 + version = "3.10.0"; 28018 src = fetchurl { 28019 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz"; 28020 + sha512 = "0h26sq1bwxc45bm0hvlcadrbk4bizzaw729wvw690ya7mpys45bqfzdqwhjkdrnq0i44dzxckykz4bix22jfdyfg1asybg3yzczjsrv"; 28021 }; 28022 dependencies = [ 28023 sources."argparse-1.0.9" ··· 28042 }; 28043 dependencies = [ 28044 sources."bluebird-3.5.0" 28045 + sources."body-parser-1.18.1" 28046 sources."chokidar-1.7.0" 28047 sources."colors-1.1.2" 28048 (sources."combine-lists-1.0.1" // { ··· 28050 sources."lodash-4.17.4" 28051 ]; 28052 }) 28053 + sources."connect-3.6.4" 28054 sources."core-js-2.5.1" 28055 sources."di-0.0.1" 28056 sources."dom-serialize-2.2.1" ··· 28080 sources."optimist-0.6.1" 28081 sources."qjobs-1.1.5" 28082 sources."range-parser-1.2.0" 28083 + sources."rimraf-2.6.2" 28084 sources."safe-buffer-5.1.1" 28085 (sources."socket.io-1.7.3" // { 28086 dependencies = [ ··· 28092 sources."source-map-0.5.7" 28093 sources."tmp-0.0.31" 28094 sources."useragent-2.2.1" 28095 + sources."bytes-3.0.0" 28096 + sources."content-type-1.0.4" 28097 + sources."debug-2.6.8" 28098 sources."depd-1.1.1" 28099 sources."http-errors-1.6.2" 28100 + sources."iconv-lite-0.4.19" 28101 sources."on-finished-2.3.0" 28102 + sources."qs-6.5.1" 28103 + sources."raw-body-2.3.2" 28104 sources."type-is-1.6.15" 28105 sources."ms-2.0.0" 28106 sources."inherits-2.0.3" ··· 28169 sources."string_decoder-1.0.3" 28170 sources."util-deprecate-1.0.2" 28171 sources."nan-2.7.0" 28172 + sources."node-pre-gyp-0.6.37" 28173 sources."mkdirp-0.5.1" 28174 sources."nopt-4.0.1" 28175 sources."npmlog-4.1.2" ··· 28178 sources."minimist-1.2.0" 28179 ]; 28180 }) 28181 + sources."request-2.82.0" 28182 sources."semver-5.4.1" 28183 + (sources."tape-4.8.0" // { 28184 + dependencies = [ 28185 + sources."minimist-1.2.0" 28186 + ]; 28187 + }) 28188 sources."tar-2.2.1" 28189 sources."tar-pack-3.4.0" 28190 sources."minimist-0.0.8" ··· 28197 sources."gauge-2.7.4" 28198 sources."set-blocking-2.0.0" 28199 sources."delegates-1.0.0" 28200 + sources."aproba-1.2.0" 28201 sources."has-unicode-2.0.1" 28202 sources."object-assign-4.1.1" 28203 sources."signal-exit-3.0.2" ··· 28211 sources."deep-extend-0.4.2" 28212 sources."ini-1.3.4" 28213 sources."strip-json-comments-2.0.1" 28214 + sources."aws-sign2-0.7.0" 28215 sources."aws4-1.6.0" 28216 sources."caseless-0.12.0" 28217 sources."combined-stream-1.0.5" 28218 sources."extend-3.0.1" 28219 sources."forever-agent-0.6.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" 28224 sources."is-typedarray-1.0.0" 28225 sources."isstream-0.1.2" 28226 sources."json-stringify-safe-5.0.1" 28227 sources."oauth-sign-0.8.2" 28228 + sources."performance-now-2.1.0" 28229 sources."stringstream-0.0.5" 28230 sources."tough-cookie-2.3.2" 28231 sources."tunnel-agent-0.6.0" 28232 sources."uuid-3.1.0" 28233 sources."delayed-stream-1.0.0" 28234 sources."asynckit-0.4.0" 28235 + sources."ajv-5.2.2" 28236 + sources."har-schema-2.0.0" 28237 sources."co-4.6.0" 28238 + sources."fast-deep-equal-1.0.0" 28239 + sources."json-schema-traverse-0.3.1" 28240 sources."json-stable-stringify-1.0.1" 28241 sources."jsonify-0.0.0" 28242 + sources."hoek-4.2.0" 28243 + sources."boom-4.3.1" 28244 + (sources."cryptiles-3.1.2" // { 28245 dependencies = [ 28246 + sources."boom-5.2.0" 28247 ]; 28248 }) 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" 28253 sources."extsprintf-1.3.0" 28254 sources."json-schema-0.2.3" 28255 + sources."verror-1.10.0" 28256 sources."asn1-0.2.3" 28257 + sources."dashdash-1.14.1" 28258 + sources."getpass-0.1.7" 28259 sources."jsbn-0.1.1" 28260 sources."tweetnacl-0.14.5" 28261 sources."ecc-jsbn-0.1.1" 28262 sources."bcrypt-pbkdf-1.0.1" 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" 28285 sources."block-stream-0.0.9" 28286 sources."fstream-1.0.11" 28287 sources."fstream-ignore-1.0.5" 28288 sources."once-1.4.0" 28289 sources."uid-number-0.0.6" 28290 sources."wrappy-1.0.2" 28291 + sources."finalhandler-1.0.5" 28292 + sources."parseurl-1.3.2" 28293 + sources."utils-merge-1.0.1" 28294 sources."encodeurl-1.0.1" 28295 sources."escape-html-1.0.3" 28296 sources."custom-event-1.0.1" ··· 28403 sources."basic-auth-1.0.4" 28404 sources."connect-2.30.2" 28405 sources."content-disposition-0.5.0" 28406 + sources."content-type-1.0.4" 28407 sources."commander-2.6.0" 28408 sources."cookie-0.1.3" 28409 sources."cookie-signature-1.0.6" ··· 28415 sources."merge-descriptors-1.0.0" 28416 sources."methods-1.1.2" 28417 sources."mkdirp-0.5.1" 28418 + sources."parseurl-1.3.2" 28419 sources."proxy-addr-1.0.10" 28420 sources."range-parser-1.0.3" 28421 (sources."send-0.13.0" // { ··· 28519 sources."mime-1.3.4" 28520 sources."media-typer-0.3.0" 28521 sources."minimist-0.0.8" 28522 + sources."forwarded-0.1.2" 28523 sources."ipaddr.js-1.0.5" 28524 sources."passport-strategy-1.0.0" 28525 sources."passport-google-oauth1-1.0.0" ··· 28541 lerna = nodeEnv.buildNodePackage { 28542 name = "lerna"; 28543 packageName = "lerna"; 28544 + version = "2.2.0"; 28545 src = fetchurl { 28546 + url = "https://registry.npmjs.org/lerna/-/lerna-2.2.0.tgz"; 28547 + sha512 = "1dcq9rq01bw9g2yqljwf4lmp7x9wzn5bq8yy2x0sjxc9xdr024924ay6a52grjc0lymqs8rj6320kr4xm438qc4xy4yp2xg9crjh82f"; 28548 }; 28549 dependencies = [ 28550 sources."async-1.5.2" ··· 28557 sources."dedent-0.7.0" 28558 sources."execa-0.8.0" 28559 sources."find-up-2.1.0" 28560 + sources."fs-extra-4.0.2" 28561 sources."get-port-3.2.0" 28562 sources."glob-7.1.2" 28563 sources."glob-parent-3.1.0" 28564 sources."globby-6.1.0" 28565 sources."graceful-fs-4.1.11" 28566 + (sources."inquirer-3.3.0" // { 28567 dependencies = [ 28568 sources."strip-ansi-4.0.0" 28569 sources."ansi-regex-3.0.0" ··· 28589 sources."strip-bom-3.0.0" 28590 ]; 28591 }) 28592 + sources."rimraf-2.6.2" 28593 sources."safe-buffer-5.1.1" 28594 sources."semver-5.4.1" 28595 sources."signal-exit-3.0.2" ··· 28789 sources."locate-path-2.0.0" 28790 sources."p-locate-2.0.0" 28791 sources."p-limit-1.1.0" 28792 + sources."jsonfile-4.0.0" 28793 sources."universalify-0.1.1" 28794 sources."fs.realpath-1.0.0" 28795 sources."inflight-1.0.6" ··· 28801 sources."is-extglob-2.1.1" 28802 sources."array-union-1.0.2" 28803 sources."array-uniq-1.0.3" 28804 + sources."ansi-escapes-3.0.0" 28805 sources."cli-cursor-2.1.0" 28806 sources."cli-width-2.2.0" 28807 + sources."external-editor-2.0.5" 28808 sources."figures-2.0.0" 28809 sources."mute-stream-0.0.7" 28810 sources."run-async-2.3.0" ··· 28819 sources."restore-cursor-2.0.0" 28820 sources."onetime-2.0.1" 28821 sources."mimic-fn-1.1.0" 28822 + sources."iconv-lite-0.4.19" 28823 sources."jschardet-1.5.1" 28824 + sources."tmp-0.0.33" 28825 sources."is-promise-2.1.0" 28826 sources."is-fullwidth-code-point-2.0.0" 28827 sources."ci-info-1.1.1" ··· 28838 }) 28839 sources."set-blocking-2.0.0" 28840 sources."delegates-1.0.0" 28841 + sources."aproba-1.2.0" 28842 sources."has-unicode-2.0.1" 28843 (sources."wide-align-1.1.2" // { 28844 dependencies = [ ··· 29039 sha512 = "3pnrrz3blfy50s64c4wdj9gjl8zv3p72wd0vmrk86qjdd676g9sj4cwywp356r633csg568pczll7pfb6sxpm0x9fvbk4zhwvdpb70b"; 29040 }; 29041 dependencies = [ 29042 + sources."body-parser-1.18.1" 29043 sources."chokidar-1.7.0" 29044 (sources."express-4.15.4" // { 29045 dependencies = [ 29046 sources."qs-6.5.0" 29047 ]; 29048 }) ··· 29052 sources."markdown-it-task-checkbox-1.0.4" 29053 sources."minimist-1.2.0" 29054 sources."opn-5.1.0" 29055 + sources."request-2.82.0" 29056 sources."socket.io-2.0.3" 29057 + sources."bytes-3.0.0" 29058 + sources."content-type-1.0.4" 29059 + sources."debug-2.6.8" 29060 sources."depd-1.1.1" 29061 sources."http-errors-1.6.2" 29062 + sources."iconv-lite-0.4.19" 29063 sources."on-finished-2.3.0" 29064 + sources."qs-6.5.1" 29065 + sources."raw-body-2.3.2" 29066 sources."type-is-1.6.15" 29067 sources."ms-2.0.0" 29068 sources."inherits-2.0.3" ··· 29137 sources."string_decoder-1.0.3" 29138 sources."util-deprecate-1.0.2" 29139 sources."nan-2.7.0" 29140 + sources."node-pre-gyp-0.6.37" 29141 (sources."mkdirp-0.5.1" // { 29142 dependencies = [ 29143 sources."minimist-0.0.8" ··· 29146 sources."nopt-4.0.1" 29147 sources."npmlog-4.1.2" 29148 sources."rc-1.2.1" 29149 + sources."rimraf-2.6.2" 29150 sources."semver-5.4.1" 29151 + sources."tape-4.8.0" 29152 sources."tar-2.2.1" 29153 sources."tar-pack-3.4.0" 29154 sources."abbrev-1.1.0" ··· 29160 sources."gauge-2.7.4" 29161 sources."set-blocking-2.0.0" 29162 sources."delegates-1.0.0" 29163 + sources."aproba-1.2.0" 29164 sources."has-unicode-2.0.1" 29165 sources."object-assign-4.1.1" 29166 sources."signal-exit-3.0.2" ··· 29179 sources."inflight-1.0.6" 29180 sources."once-1.4.0" 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" 29203 sources."block-stream-0.0.9" 29204 sources."fstream-1.0.11" 29205 sources."fstream-ignore-1.0.5" ··· 29211 sources."cookie-signature-1.0.6" 29212 sources."encodeurl-1.0.1" 29213 sources."escape-html-1.0.3" 29214 + sources."etag-1.8.1" 29215 + sources."finalhandler-1.0.5" 29216 sources."fresh-0.5.0" 29217 sources."merge-descriptors-1.0.1" 29218 sources."methods-1.1.2" 29219 + sources."parseurl-1.3.2" 29220 sources."path-to-regexp-0.1.7" 29221 sources."proxy-addr-1.1.5" 29222 sources."range-parser-1.2.0" 29223 + sources."send-0.15.4" 29224 sources."serve-static-1.12.4" 29225 sources."utils-merge-1.0.0" 29226 sources."vary-1.1.1" 29227 sources."negotiator-0.6.1" 29228 + sources."forwarded-0.1.2" 29229 sources."ipaddr.js-1.4.0" 29230 sources."destroy-1.0.4" 29231 sources."mime-1.3.4" ··· 29235 sources."mdurl-1.0.1" 29236 sources."uc.micro-1.0.3" 29237 sources."sprintf-js-1.0.3" 29238 + sources."github-slugger-1.2.0" 29239 sources."innertext-1.0.2" 29240 sources."emoji-regex-6.1.1" 29241 sources."html-entities-1.2.1" 29242 sources."is-wsl-1.1.0" 29243 + sources."aws-sign2-0.7.0" 29244 sources."aws4-1.6.0" 29245 sources."caseless-0.12.0" 29246 sources."combined-stream-1.0.5" 29247 sources."extend-3.0.1" 29248 sources."forever-agent-0.6.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" 29253 sources."is-typedarray-1.0.0" 29254 sources."isstream-0.1.2" 29255 sources."json-stringify-safe-5.0.1" 29256 sources."oauth-sign-0.8.2" 29257 + sources."performance-now-2.1.0" 29258 sources."stringstream-0.0.5" 29259 sources."tough-cookie-2.3.2" 29260 sources."tunnel-agent-0.6.0" 29261 sources."uuid-3.1.0" 29262 sources."delayed-stream-1.0.0" 29263 sources."asynckit-0.4.0" 29264 + sources."ajv-5.2.2" 29265 + sources."har-schema-2.0.0" 29266 sources."co-4.6.0" 29267 + sources."fast-deep-equal-1.0.0" 29268 + sources."json-schema-traverse-0.3.1" 29269 sources."json-stable-stringify-1.0.1" 29270 sources."jsonify-0.0.0" 29271 + sources."hoek-4.2.0" 29272 + sources."boom-4.3.1" 29273 + (sources."cryptiles-3.1.2" // { 29274 dependencies = [ 29275 + sources."boom-5.2.0" 29276 ]; 29277 }) 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" 29282 sources."extsprintf-1.3.0" 29283 sources."json-schema-0.2.3" 29284 + sources."verror-1.10.0" 29285 sources."asn1-0.2.3" 29286 + sources."dashdash-1.14.1" 29287 + sources."getpass-0.1.7" 29288 sources."jsbn-0.1.1" 29289 sources."tweetnacl-0.14.5" 29290 sources."ecc-jsbn-0.1.1" ··· 29370 sources."object-assign-4.1.1" 29371 sources."opn-5.1.0" 29372 sources."proxy-middleware-0.15.0" 29373 + sources."send-0.15.5" 29374 sources."serve-index-1.9.0" 29375 sources."anymatch-1.3.2" 29376 sources."async-each-1.0.1" ··· 29437 sources."string_decoder-1.0.3" 29438 sources."util-deprecate-1.0.2" 29439 sources."nan-2.7.0" 29440 + sources."node-pre-gyp-0.6.37" 29441 sources."mkdirp-0.5.1" 29442 sources."nopt-4.0.1" 29443 sources."npmlog-4.1.2" ··· 29446 sources."minimist-1.2.0" 29447 ]; 29448 }) 29449 + sources."request-2.82.0" 29450 + sources."rimraf-2.6.2" 29451 sources."semver-5.4.1" 29452 + (sources."tape-4.8.0" // { 29453 + dependencies = [ 29454 + sources."minimist-1.2.0" 29455 + ]; 29456 + }) 29457 sources."tar-2.2.1" 29458 sources."tar-pack-3.4.0" 29459 sources."minimist-0.0.8" ··· 29466 sources."gauge-2.7.4" 29467 sources."set-blocking-2.0.0" 29468 sources."delegates-1.0.0" 29469 + sources."aproba-1.2.0" 29470 sources."has-unicode-2.0.1" 29471 sources."signal-exit-3.0.2" 29472 sources."string-width-1.0.2" ··· 29479 sources."deep-extend-0.4.2" 29480 sources."ini-1.3.4" 29481 sources."strip-json-comments-2.0.1" 29482 + sources."aws-sign2-0.7.0" 29483 sources."aws4-1.6.0" 29484 sources."caseless-0.12.0" 29485 sources."combined-stream-1.0.5" 29486 sources."extend-3.0.1" 29487 sources."forever-agent-0.6.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" 29492 sources."is-typedarray-1.0.0" 29493 sources."isstream-0.1.2" 29494 sources."json-stringify-safe-5.0.1" 29495 sources."mime-types-2.1.17" 29496 sources."oauth-sign-0.8.2" 29497 + sources."performance-now-2.1.0" 29498 + sources."qs-6.5.1" 29499 sources."stringstream-0.0.5" 29500 sources."tough-cookie-2.3.2" 29501 sources."tunnel-agent-0.6.0" 29502 sources."uuid-3.1.0" 29503 sources."delayed-stream-1.0.0" 29504 sources."asynckit-0.4.0" 29505 + sources."ajv-5.2.2" 29506 + sources."har-schema-2.0.0" 29507 sources."co-4.6.0" 29508 + sources."fast-deep-equal-1.0.0" 29509 + sources."json-schema-traverse-0.3.1" 29510 sources."json-stable-stringify-1.0.1" 29511 sources."jsonify-0.0.0" 29512 + sources."hoek-4.2.0" 29513 + sources."boom-4.3.1" 29514 + (sources."cryptiles-3.1.2" // { 29515 dependencies = [ 29516 + sources."boom-5.2.0" 29517 ]; 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" 29523 sources."extsprintf-1.3.0" 29524 sources."json-schema-0.2.3" 29525 + sources."verror-1.10.0" 29526 sources."asn1-0.2.3" 29527 + sources."dashdash-1.14.1" 29528 + sources."getpass-0.1.7" 29529 sources."jsbn-0.1.1" 29530 sources."tweetnacl-0.14.5" 29531 sources."ecc-jsbn-0.1.1" ··· 29537 sources."inflight-1.0.6" 29538 sources."once-1.4.0" 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" 29561 sources."block-stream-0.0.9" 29562 sources."fstream-1.0.11" 29563 sources."debug-2.6.8" ··· 29570 sources."ms-0.7.1" 29571 ]; 29572 }) 29573 + sources."parseurl-1.3.2" 29574 sources."utils-merge-1.0.0" 29575 sources."escape-html-1.0.3" 29576 sources."on-finished-2.3.0" ··· 29578 sources."unpipe-1.0.0" 29579 sources."ee-first-1.1.1" 29580 sources."vary-1.1.1" 29581 sources."duplexer-0.1.1" 29582 sources."from-0.1.7" 29583 sources."map-stream-0.1.0" 29584 sources."pause-stream-0.0.11" 29585 sources."split-0.3.3" 29586 sources."stream-combiner-0.0.4" 29587 + sources."websocket-driver-0.7.0" 29588 + sources."http-parser-js-0.4.7" 29589 + sources."websocket-extensions-0.1.2" 29590 sources."apache-crypt-1.2.1" 29591 sources."apache-md5-1.1.2" 29592 sources."bcryptjs-2.4.3" ··· 29597 sources."is-wsl-1.1.0" 29598 sources."destroy-1.0.4" 29599 sources."encodeurl-1.0.1" 29600 + sources."etag-1.8.1" 29601 + sources."fresh-0.5.2" 29602 sources."http-errors-1.6.2" 29603 sources."mime-1.3.4" 29604 sources."range-parser-1.2.0" ··· 29653 mocha = nodeEnv.buildNodePackage { 29654 name = "mocha"; 29655 packageName = "mocha"; 29656 + version = "3.5.3"; 29657 src = fetchurl { 29658 + url = "https://registry.npmjs.org/mocha/-/mocha-3.5.3.tgz"; 29659 + sha512 = "093v1508xiyy2l0fp2c0rv9qc0jdhi4hz2xil2zyawjvcmag11scslkkyzv2cqwhh24b7ijhbhr3jbyidamgkhiccnn29ac9p9xmagz"; 29660 }; 29661 dependencies = [ 29662 sources."browser-stdout-1.3.0" ··· 29666 sources."escape-string-regexp-1.0.5" 29667 sources."glob-7.1.1" 29668 sources."growl-1.9.2" 29669 + sources."he-1.1.1" 29670 sources."json3-3.3.2" 29671 sources."lodash.create-3.1.1" 29672 sources."mkdirp-0.5.1" ··· 29712 }; 29713 dependencies = [ 29714 sources."commander-2.11.0" 29715 + sources."js-yaml-3.10.0" 29716 sources."json-refs-2.1.7" 29717 sources."argparse-1.0.9" 29718 sources."esprima-4.0.0" ··· 29732 sources."formidable-1.1.1" 29733 sources."methods-1.1.2" 29734 sources."mime-1.4.0" 29735 + sources."qs-6.5.1" 29736 sources."readable-stream-2.3.3" 29737 sources."ms-2.0.0" 29738 sources."asynckit-0.4.0" ··· 29759 nijs = nodeEnv.buildNodePackage { 29760 name = "nijs"; 29761 packageName = "nijs"; 29762 + version = "0.0.24"; 29763 src = fetchurl { 29764 + url = "https://registry.npmjs.org/nijs/-/nijs-0.0.24.tgz"; 29765 + sha1 = "6581de112f5810c9930d5fcdf772f67787e797eb"; 29766 }; 29767 dependencies = [ 29768 sources."optparse-1.0.5" ··· 29771 buildInputs = globalBuildInputs; 29772 meta = { 29773 description = "An internal DSL for the Nix package manager in JavaScript"; 29774 + homepage = "https://github.com/svanderburg/nijs#readme"; 29775 license = "MIT"; 29776 }; 29777 production = true; ··· 29810 sources."normalize-package-data-2.4.0" 29811 sources."npm-package-arg-5.1.2" 29812 sources."once-1.4.0" 29813 + sources."request-2.82.0" 29814 sources."retry-0.10.1" 29815 sources."slide-1.1.6" 29816 sources."ssri-4.1.6" ··· 29837 sources."os-tmpdir-1.0.2" 29838 sources."builtins-1.0.3" 29839 sources."wrappy-1.0.2" 29840 + sources."aws-sign2-0.7.0" 29841 sources."aws4-1.6.0" 29842 sources."caseless-0.12.0" 29843 sources."combined-stream-1.0.5" 29844 sources."extend-3.0.1" 29845 sources."forever-agent-0.6.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" 29850 sources."is-typedarray-1.0.0" 29851 sources."isstream-0.1.2" 29852 sources."json-stringify-safe-5.0.1" 29853 sources."mime-types-2.1.17" 29854 sources."oauth-sign-0.8.2" 29855 + sources."performance-now-2.1.0" 29856 + sources."qs-6.5.1" 29857 sources."stringstream-0.0.5" 29858 sources."tough-cookie-2.3.2" 29859 sources."tunnel-agent-0.6.0" 29860 sources."uuid-3.1.0" 29861 sources."delayed-stream-1.0.0" 29862 sources."asynckit-0.4.0" 29863 + sources."ajv-5.2.2" 29864 + sources."har-schema-2.0.0" 29865 sources."co-4.6.0" 29866 + sources."fast-deep-equal-1.0.0" 29867 + sources."json-schema-traverse-0.3.1" 29868 sources."json-stable-stringify-1.0.1" 29869 sources."jsonify-0.0.0" 29870 + sources."hoek-4.2.0" 29871 + sources."boom-4.3.1" 29872 + (sources."cryptiles-3.1.2" // { 29873 dependencies = [ 29874 + sources."boom-5.2.0" 29875 ]; 29876 }) 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" 29881 sources."extsprintf-1.3.0" 29882 sources."json-schema-0.2.3" 29883 + sources."verror-1.10.0" 29884 sources."asn1-0.2.3" 29885 + sources."dashdash-1.14.1" 29886 + sources."getpass-0.1.7" 29887 sources."jsbn-0.1.1" 29888 sources."tweetnacl-0.14.5" 29889 sources."ecc-jsbn-0.1.1" ··· 29895 sources."gauge-2.7.4" 29896 sources."set-blocking-2.0.0" 29897 sources."delegates-1.0.0" 29898 + sources."aproba-1.2.0" 29899 sources."has-unicode-2.0.1" 29900 sources."object-assign-4.1.1" 29901 sources."signal-exit-3.0.2" ··· 29953 sources."nopt-3.0.6" 29954 sources."npmlog-4.1.2" 29955 sources."osenv-0.1.4" 29956 + sources."request-2.82.0" 29957 + sources."rimraf-2.6.2" 29958 sources."semver-5.3.0" 29959 sources."tar-2.2.1" 29960 sources."which-1.3.0" ··· 29981 sources."safe-buffer-5.1.1" 29982 sources."string_decoder-1.0.3" 29983 sources."util-deprecate-1.0.2" 29984 + sources."aproba-1.2.0" 29985 sources."has-unicode-2.0.1" 29986 sources."object-assign-4.1.1" 29987 sources."signal-exit-3.0.2" ··· 29994 sources."ansi-regex-2.1.1" 29995 sources."os-homedir-1.0.2" 29996 sources."os-tmpdir-1.0.2" 29997 + sources."aws-sign2-0.7.0" 29998 sources."aws4-1.6.0" 29999 sources."caseless-0.12.0" 30000 sources."combined-stream-1.0.5" 30001 sources."extend-3.0.1" 30002 sources."forever-agent-0.6.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" 30007 sources."is-typedarray-1.0.0" 30008 sources."isstream-0.1.2" 30009 sources."json-stringify-safe-5.0.1" 30010 sources."mime-types-2.1.17" 30011 sources."oauth-sign-0.8.2" 30012 + sources."performance-now-2.1.0" 30013 + sources."qs-6.5.1" 30014 sources."stringstream-0.0.5" 30015 sources."tough-cookie-2.3.2" 30016 sources."tunnel-agent-0.6.0" 30017 sources."uuid-3.1.0" 30018 sources."delayed-stream-1.0.0" 30019 sources."asynckit-0.4.0" 30020 + sources."ajv-5.2.2" 30021 + sources."har-schema-2.0.0" 30022 sources."co-4.6.0" 30023 + sources."fast-deep-equal-1.0.0" 30024 + sources."json-schema-traverse-0.3.1" 30025 sources."json-stable-stringify-1.0.1" 30026 sources."jsonify-0.0.0" 30027 + sources."hoek-4.2.0" 30028 + sources."boom-4.3.1" 30029 + (sources."cryptiles-3.1.2" // { 30030 dependencies = [ 30031 + sources."boom-5.2.0" 30032 ]; 30033 }) 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" 30038 sources."extsprintf-1.3.0" 30039 sources."json-schema-0.2.3" 30040 + sources."verror-1.10.0" 30041 sources."asn1-0.2.3" 30042 + sources."dashdash-1.14.1" 30043 + sources."getpass-0.1.7" 30044 sources."jsbn-0.1.1" 30045 sources."tweetnacl-0.14.5" 30046 sources."ecc-jsbn-0.1.1" ··· 30075 sources."path-is-absolute-1.0.1" 30076 sources."rc-1.2.1" 30077 sources."semver-4.3.6" 30078 + (sources."serve-favicon-2.4.4" // { 30079 + dependencies = [ 30080 + sources."fresh-0.5.1" 30081 + ]; 30082 + }) 30083 sources."strong-data-uri-1.0.4" 30084 sources."v8-debug-1.0.1" 30085 sources."v8-profiler-5.7.0" ··· 30166 sources."accepts-1.3.4" 30167 sources."array-flatten-1.1.1" 30168 sources."content-disposition-0.5.2" 30169 + sources."content-type-1.0.4" 30170 sources."cookie-0.3.1" 30171 sources."cookie-signature-1.0.6" 30172 sources."depd-1.1.1" 30173 sources."encodeurl-1.0.1" 30174 sources."escape-html-1.0.3" 30175 + sources."etag-1.8.1" 30176 + sources."finalhandler-1.0.5" 30177 sources."fresh-0.5.0" 30178 sources."merge-descriptors-1.0.1" 30179 sources."methods-1.1.2" 30180 sources."on-finished-2.3.0" 30181 + sources."parseurl-1.3.2" 30182 sources."path-to-regexp-0.1.7" 30183 sources."proxy-addr-1.1.5" 30184 sources."qs-6.5.0" ··· 30195 sources."mime-db-1.30.0" 30196 sources."unpipe-1.0.0" 30197 sources."ee-first-1.1.1" 30198 + sources."forwarded-0.1.2" 30199 sources."ipaddr.js-1.4.0" 30200 sources."destroy-1.0.4" 30201 sources."http-errors-1.6.2" ··· 30212 sources."deep-extend-0.4.2" 30213 sources."ini-1.3.4" 30214 sources."strip-json-comments-2.0.1" 30215 + sources."safe-buffer-5.1.1" 30216 sources."truncate-1.0.5" 30217 sources."nan-2.7.0" 30218 + (sources."node-pre-gyp-0.6.37" // { 30219 dependencies = [ 30220 + sources."rimraf-2.6.2" 30221 sources."semver-5.4.1" 30222 sources."glob-7.1.2" 30223 ]; 30224 }) 30225 sources."nopt-4.0.1" 30226 sources."npmlog-4.1.2" 30227 + (sources."request-2.82.0" // { 30228 + dependencies = [ 30229 + sources."qs-6.5.1" 30230 + ]; 30231 + }) 30232 + (sources."tape-4.8.0" // { 30233 dependencies = [ 30234 + sources."glob-7.1.2" 30235 ]; 30236 }) 30237 sources."tar-2.2.1" 30238 (sources."tar-pack-3.4.0" // { 30239 dependencies = [ 30240 + sources."rimraf-2.6.2" 30241 sources."glob-7.1.2" 30242 ]; 30243 }) ··· 30247 sources."gauge-2.7.4" 30248 sources."set-blocking-2.0.0" 30249 sources."delegates-1.0.0" 30250 + sources."readable-stream-2.3.3" 30251 sources."core-util-is-1.0.2" 30252 sources."isarray-1.0.0" 30253 sources."process-nextick-args-1.0.7" 30254 + sources."string_decoder-1.0.3" 30255 + sources."aproba-1.2.0" 30256 sources."has-unicode-2.0.1" 30257 sources."string-width-1.0.2" 30258 sources."strip-ansi-3.0.1" ··· 30260 sources."code-point-at-1.1.0" 30261 sources."is-fullwidth-code-point-1.0.0" 30262 sources."ansi-regex-2.1.1" 30263 + sources."aws-sign2-0.7.0" 30264 sources."aws4-1.6.0" 30265 sources."caseless-0.12.0" 30266 sources."combined-stream-1.0.5" 30267 sources."extend-3.0.1" 30268 sources."forever-agent-0.6.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" 30273 sources."is-typedarray-1.0.0" 30274 sources."isstream-0.1.2" 30275 sources."json-stringify-safe-5.0.1" 30276 sources."oauth-sign-0.8.2" 30277 + sources."performance-now-2.1.0" 30278 sources."stringstream-0.0.5" 30279 sources."tough-cookie-2.3.2" 30280 sources."tunnel-agent-0.6.0" 30281 sources."uuid-3.1.0" 30282 sources."delayed-stream-1.0.0" 30283 sources."asynckit-0.4.0" 30284 + sources."ajv-5.2.2" 30285 + sources."har-schema-2.0.0" 30286 sources."co-4.6.0" 30287 + sources."fast-deep-equal-1.0.0" 30288 + sources."json-schema-traverse-0.3.1" 30289 sources."json-stable-stringify-1.0.1" 30290 sources."jsonify-0.0.0" 30291 + sources."hoek-4.2.0" 30292 + sources."boom-4.3.1" 30293 + (sources."cryptiles-3.1.2" // { 30294 dependencies = [ 30295 + sources."boom-5.2.0" 30296 ]; 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" 30302 sources."extsprintf-1.3.0" 30303 sources."json-schema-0.2.3" 30304 + sources."verror-1.10.0" 30305 sources."asn1-0.2.3" 30306 + sources."dashdash-1.14.1" 30307 + sources."getpass-0.1.7" 30308 sources."jsbn-0.1.1" 30309 sources."tweetnacl-0.14.5" 30310 sources."ecc-jsbn-0.1.1" 30311 sources."bcrypt-pbkdf-1.0.1" 30312 sources."punycode-1.4.1" 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" 30335 sources."block-stream-0.0.9" 30336 sources."fstream-1.0.11" 30337 sources."fstream-ignore-1.0.5" ··· 30357 node-pre-gyp = nodeEnv.buildNodePackage { 30358 name = "node-pre-gyp"; 30359 packageName = "node-pre-gyp"; 30360 + version = "0.6.37"; 30361 src = fetchurl { 30362 + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz"; 30363 + sha1 = "3c872b236b2e266e4140578fe1ee88f693323a05"; 30364 }; 30365 dependencies = [ 30366 sources."mkdirp-0.5.1" ··· 30371 sources."minimist-1.2.0" 30372 ]; 30373 }) 30374 + sources."request-2.82.0" 30375 + sources."rimraf-2.6.2" 30376 sources."semver-5.4.1" 30377 + (sources."tape-4.8.0" // { 30378 + dependencies = [ 30379 + sources."minimist-1.2.0" 30380 + ]; 30381 + }) 30382 sources."tar-2.2.1" 30383 sources."tar-pack-3.4.0" 30384 sources."minimist-0.0.8" ··· 30399 sources."safe-buffer-5.1.1" 30400 sources."string_decoder-1.0.3" 30401 sources."util-deprecate-1.0.2" 30402 + sources."aproba-1.2.0" 30403 sources."has-unicode-2.0.1" 30404 sources."object-assign-4.1.1" 30405 sources."signal-exit-3.0.2" ··· 30413 sources."deep-extend-0.4.2" 30414 sources."ini-1.3.4" 30415 sources."strip-json-comments-2.0.1" 30416 + sources."aws-sign2-0.7.0" 30417 sources."aws4-1.6.0" 30418 sources."caseless-0.12.0" 30419 sources."combined-stream-1.0.5" 30420 sources."extend-3.0.1" 30421 sources."forever-agent-0.6.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" 30426 sources."is-typedarray-1.0.0" 30427 sources."isstream-0.1.2" 30428 sources."json-stringify-safe-5.0.1" 30429 sources."mime-types-2.1.17" 30430 sources."oauth-sign-0.8.2" 30431 + sources."performance-now-2.1.0" 30432 + sources."qs-6.5.1" 30433 sources."stringstream-0.0.5" 30434 sources."tough-cookie-2.3.2" 30435 sources."tunnel-agent-0.6.0" 30436 sources."uuid-3.1.0" 30437 sources."delayed-stream-1.0.0" 30438 sources."asynckit-0.4.0" 30439 + sources."ajv-5.2.2" 30440 + sources."har-schema-2.0.0" 30441 sources."co-4.6.0" 30442 + sources."fast-deep-equal-1.0.0" 30443 + sources."json-schema-traverse-0.3.1" 30444 sources."json-stable-stringify-1.0.1" 30445 sources."jsonify-0.0.0" 30446 + sources."hoek-4.2.0" 30447 + sources."boom-4.3.1" 30448 + (sources."cryptiles-3.1.2" // { 30449 dependencies = [ 30450 + sources."boom-5.2.0" 30451 ]; 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" 30457 sources."extsprintf-1.3.0" 30458 sources."json-schema-0.2.3" 30459 + sources."verror-1.10.0" 30460 sources."asn1-0.2.3" 30461 + sources."dashdash-1.14.1" 30462 + sources."getpass-0.1.7" 30463 sources."jsbn-0.1.1" 30464 sources."tweetnacl-0.14.5" 30465 sources."ecc-jsbn-0.1.1" ··· 30476 sources."brace-expansion-1.1.8" 30477 sources."balanced-match-1.0.0" 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" 30500 sources."block-stream-0.0.9" 30501 sources."fstream-1.0.11" 30502 sources."graceful-fs-4.1.11" ··· 30516 nodemon = nodeEnv.buildNodePackage { 30517 name = "nodemon"; 30518 packageName = "nodemon"; 30519 + version = "1.12.1"; 30520 src = fetchurl { 30521 + url = "https://registry.npmjs.org/nodemon/-/nodemon-1.12.1.tgz"; 30522 + sha1 = "996a56dc49d9f16bbf1b78a4de08f13634b3878d"; 30523 }; 30524 dependencies = [ 30525 sources."chokidar-1.7.0" ··· 30597 sources."string_decoder-1.0.3" 30598 sources."util-deprecate-1.0.2" 30599 sources."nan-2.7.0" 30600 + sources."node-pre-gyp-0.6.37" 30601 sources."mkdirp-0.5.1" 30602 sources."nopt-4.0.1" 30603 sources."npmlog-4.1.2" ··· 30606 sources."minimist-1.2.0" 30607 ]; 30608 }) 30609 + sources."request-2.82.0" 30610 + sources."rimraf-2.6.2" 30611 sources."semver-5.4.1" 30612 + (sources."tape-4.8.0" // { 30613 + dependencies = [ 30614 + sources."minimist-1.2.0" 30615 + ]; 30616 + }) 30617 sources."tar-2.2.1" 30618 sources."tar-pack-3.4.0" 30619 sources."minimist-0.0.8" ··· 30626 sources."gauge-2.7.4" 30627 sources."set-blocking-2.0.0" 30628 sources."delegates-1.0.0" 30629 + sources."aproba-1.2.0" 30630 sources."has-unicode-2.0.1" 30631 sources."object-assign-4.1.1" 30632 sources."signal-exit-3.0.2" ··· 30640 sources."deep-extend-0.4.2" 30641 sources."ini-1.3.4" 30642 sources."strip-json-comments-2.0.1" 30643 + sources."aws-sign2-0.7.0" 30644 sources."aws4-1.6.0" 30645 sources."caseless-0.12.0" 30646 sources."combined-stream-1.0.5" 30647 sources."extend-3.0.1" 30648 sources."forever-agent-0.6.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" 30653 sources."is-typedarray-1.0.0" 30654 sources."isstream-0.1.2" 30655 sources."json-stringify-safe-5.0.1" 30656 sources."mime-types-2.1.17" 30657 sources."oauth-sign-0.8.2" 30658 + sources."performance-now-2.1.0" 30659 + sources."qs-6.5.1" 30660 sources."stringstream-0.0.5" 30661 sources."tough-cookie-2.3.2" 30662 sources."tunnel-agent-0.6.0" 30663 sources."uuid-3.1.0" 30664 sources."delayed-stream-1.0.0" 30665 sources."asynckit-0.4.0" 30666 + sources."ajv-5.2.2" 30667 + sources."har-schema-2.0.0" 30668 sources."co-4.6.0" 30669 + sources."fast-deep-equal-1.0.0" 30670 + sources."json-schema-traverse-0.3.1" 30671 sources."json-stable-stringify-1.0.1" 30672 sources."jsonify-0.0.0" 30673 + sources."hoek-4.2.0" 30674 + sources."boom-4.3.1" 30675 + (sources."cryptiles-3.1.2" // { 30676 dependencies = [ 30677 + sources."boom-5.2.0" 30678 ]; 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" 30684 sources."extsprintf-1.3.0" 30685 sources."json-schema-0.2.3" 30686 + sources."verror-1.10.0" 30687 sources."asn1-0.2.3" 30688 + sources."dashdash-1.14.1" 30689 + sources."getpass-0.1.7" 30690 sources."jsbn-0.1.1" 30691 sources."tweetnacl-0.14.5" 30692 sources."ecc-jsbn-0.1.1" ··· 30698 sources."inflight-1.0.6" 30699 sources."once-1.4.0" 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" 30722 sources."block-stream-0.0.9" 30723 sources."fstream-1.0.11" 30724 sources."fstream-ignore-1.0.5" ··· 30739 sources."balanced-match-1.0.0" 30740 sources."concat-map-0.0.1" 30741 sources."event-stream-3.3.4" 30742 sources."duplexer-0.1.1" 30743 sources."from-0.1.7" 30744 sources."map-stream-0.1.0" ··· 30894 sources."node-red-node-email-0.1.24" 30895 (sources."node-red-node-twitter-0.1.11" // { 30896 dependencies = [ 30897 + sources."request-2.82.0" 30898 + sources."aws-sign2-0.7.0" 30899 sources."caseless-0.12.0" 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" 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" 30915 ]; 30916 }) 30917 + sources."node-red-node-rbe-0.1.13" 30918 sources."bcrypt-1.0.3" 30919 sources."bytes-2.4.0" 30920 + sources."content-type-1.0.4" 30921 sources."debug-2.6.7" 30922 sources."depd-1.1.1" 30923 sources."http-errors-1.6.2" ··· 30975 sources."content-disposition-0.5.2" 30976 sources."encodeurl-1.0.1" 30977 sources."escape-html-1.0.3" 30978 + sources."etag-1.8.1" 30979 + (sources."finalhandler-1.0.5" // { 30980 dependencies = [ 30981 sources."debug-2.6.8" 30982 ]; ··· 30984 sources."fresh-0.5.0" 30985 sources."merge-descriptors-1.0.1" 30986 sources."methods-1.1.2" 30987 + sources."parseurl-1.3.2" 30988 sources."path-to-regexp-0.1.7" 30989 sources."proxy-addr-1.1.5" 30990 sources."range-parser-1.2.0" ··· 30993 sources."utils-merge-1.0.0" 30994 sources."negotiator-0.6.1" 30995 sources."unpipe-1.0.0" 30996 + sources."forwarded-0.1.2" 30997 sources."ipaddr.js-1.4.0" 30998 sources."destroy-1.0.4" 30999 sources."mime-1.3.4" ··· 31023 sources."split2-2.1.1" 31024 (sources."websocket-stream-5.0.1" // { 31025 dependencies = [ 31026 + sources."ws-3.2.0" 31027 ]; 31028 }) 31029 sources."xtend-4.0.1" ··· 31066 sources."through2-filter-2.0.0" 31067 sources."jsonify-0.0.0" 31068 sources."bl-1.2.1" 31069 + sources."async-limiter-1.0.0" 31070 sources."ultron-1.1.0" 31071 sources."append-field-0.1.0" 31072 (sources."busboy-0.2.14" // { ··· 31236 sources."utf7-1.0.2" 31237 sources."twitter-ng-0.6.2" 31238 sources."oauth-0.9.14" 31239 + sources."performance-now-2.1.0" 31240 sources."uuid-3.1.0" 31241 sources."asynckit-0.4.0" 31242 + sources."ajv-5.2.2" 31243 + sources."har-schema-2.0.0" 31244 sources."co-4.6.0" 31245 + sources."fast-deep-equal-1.0.0" 31246 + sources."json-schema-traverse-0.3.1" 31247 sources."nan-2.6.2" 31248 (sources."node-pre-gyp-0.6.36" // { 31249 dependencies = [ 31250 sources."nopt-4.0.1" 31251 + sources."request-2.82.0" 31252 + sources."aws-sign2-0.7.0" 31253 sources."caseless-0.12.0" 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" 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" 31269 ]; 31270 }) 31271 sources."npmlog-4.1.2" 31272 sources."rc-1.2.1" 31273 + sources."rimraf-2.6.2" 31274 sources."tar-2.2.1" 31275 sources."tar-pack-3.4.0" 31276 sources."osenv-0.1.4" ··· 31281 sources."gauge-2.7.4" 31282 sources."set-blocking-2.0.0" 31283 sources."delegates-1.0.0" 31284 + sources."aproba-1.2.0" 31285 sources."has-unicode-2.0.1" 31286 sources."signal-exit-3.0.2" 31287 sources."string-width-1.0.2" ··· 31434 npm = nodeEnv.buildNodePackage { 31435 name = "npm"; 31436 packageName = "npm"; 31437 + version = "5.4.2"; 31438 src = fetchurl { 31439 + url = "https://registry.npmjs.org/npm/-/npm-5.4.2.tgz"; 31440 + sha512 = "28m9zjiynb24b8bxikdaya27j87am88x1y8l70pvmh9fk3pfq0y6xvqjmpy72ld4csnz9s1hik1ff8a19sx6pyi8f5ar27b044cp8hp"; 31441 }; 31442 dependencies = [ 31443 sources."JSONStream-1.3.1" ··· 31499 sources."npm-install-checks-3.0.0" 31500 sources."npm-lifecycle-1.0.3" 31501 sources."npm-package-arg-5.1.2" 31502 + sources."npm-packlist-1.1.9" 31503 sources."npm-registry-client-8.4.0" 31504 sources."npm-user-validate-1.0.0" 31505 sources."npmlog-4.1.2" ··· 31517 sources."readable-stream-2.3.3" 31518 sources."request-2.81.0" 31519 sources."retry-0.10.1" 31520 + sources."rimraf-2.6.2" 31521 sources."safe-buffer-5.1.1" 31522 sources."semver-5.4.1" 31523 sources."sha-2.0.1" ··· 31549 sources."which-1.3.0" 31550 sources."worker-farm-1.5.0" 31551 sources."wrappy-1.0.2" 31552 + sources."write-file-atomic-2.1.0" 31553 sources."debuglog-1.0.1" 31554 sources."imurmurhash-0.1.4" 31555 sources."lodash._baseindexof-3.1.0" ··· 31693 sources."http-proxy-agent-2.0.0" 31694 sources."https-proxy-agent-2.1.0" 31695 sources."node-fetch-npm-2.0.2" 31696 + sources."socks-proxy-agent-3.0.1" 31697 sources."humanize-ms-1.2.1" 31698 sources."ms-2.0.0" 31699 sources."agent-base-4.1.1" ··· 31702 sources."es6-promise-4.1.1" 31703 sources."encoding-0.1.12" 31704 sources."json-parse-better-errors-1.0.1" 31705 + sources."iconv-lite-0.4.19" 31706 sources."socks-1.1.10" 31707 sources."ip-1.1.5" 31708 sources."smart-buffer-1.1.15" ··· 31912 sources."coffee-script-1.12.7" 31913 sources."underscore-1.4.4" 31914 sources."underscore.string-2.3.3" 31915 + sources."request-2.82.0" 31916 sources."graceful-fs-2.0.3" 31917 sources."slide-1.1.6" 31918 sources."chownr-0.0.2" 31919 sources."mkdirp-0.3.5" 31920 + sources."rimraf-2.6.2" 31921 sources."retry-0.6.0" 31922 sources."couch-login-0.1.20" 31923 sources."npmlog-4.1.2" 31924 + sources."aws-sign2-0.7.0" 31925 sources."aws4-1.6.0" 31926 sources."caseless-0.12.0" 31927 sources."combined-stream-1.0.5" 31928 sources."extend-3.0.1" 31929 sources."forever-agent-0.6.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" 31934 sources."is-typedarray-1.0.0" 31935 sources."isstream-0.1.2" 31936 sources."json-stringify-safe-5.0.1" 31937 sources."mime-types-2.1.17" 31938 sources."oauth-sign-0.8.2" 31939 + sources."performance-now-2.1.0" 31940 + sources."qs-6.5.1" 31941 sources."safe-buffer-5.1.1" 31942 sources."stringstream-0.0.5" 31943 sources."tough-cookie-2.3.2" ··· 31945 sources."uuid-3.1.0" 31946 sources."delayed-stream-1.0.0" 31947 sources."asynckit-0.4.0" 31948 + sources."ajv-5.2.2" 31949 + sources."har-schema-2.0.0" 31950 sources."co-4.6.0" 31951 + sources."fast-deep-equal-1.0.0" 31952 + sources."json-schema-traverse-0.3.1" 31953 sources."json-stable-stringify-1.0.1" 31954 sources."jsonify-0.0.0" 31955 + sources."hoek-4.2.0" 31956 + sources."boom-4.3.1" 31957 + (sources."cryptiles-3.1.2" // { 31958 dependencies = [ 31959 + sources."boom-5.2.0" 31960 ]; 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" 31966 sources."extsprintf-1.3.0" 31967 sources."json-schema-0.2.3" 31968 + sources."verror-1.10.0" 31969 sources."core-util-is-1.0.2" 31970 sources."asn1-0.2.3" 31971 + sources."dashdash-1.14.1" 31972 + sources."getpass-0.1.7" 31973 sources."jsbn-0.1.1" 31974 sources."tweetnacl-0.14.5" 31975 sources."ecc-jsbn-0.1.1" ··· 31997 sources."process-nextick-args-1.0.7" 31998 sources."string_decoder-1.0.3" 31999 sources."util-deprecate-1.0.2" 32000 + sources."aproba-1.2.0" 32001 sources."has-unicode-2.0.1" 32002 sources."object-assign-4.1.1" 32003 sources."signal-exit-3.0.2" ··· 32058 sources."cint-8.2.1" 32059 sources."cli-table-0.3.1" 32060 sources."commander-2.11.0" 32061 + sources."fast-diff-1.1.2" 32062 sources."find-up-1.1.2" 32063 sources."get-stdin-5.0.1" 32064 sources."json-parse-helpfulerror-1.0.3" ··· 32077 sources."require-dir-0.3.2" 32078 sources."semver-5.4.1" 32079 sources."semver-utils-1.1.1" 32080 + (sources."snyk-1.41.0" // { 32081 dependencies = [ 32082 sources."update-notifier-0.5.0" 32083 sources."latest-version-1.0.1" ··· 32378 sources."mute-stream-0.0.6" 32379 ]; 32380 }) 32381 + sources."needle-2.0.1" 32382 sources."open-0.0.5" 32383 sources."os-name-1.0.3" 32384 sources."snyk-config-1.0.1" 32385 + sources."snyk-go-plugin-1.2.1" 32386 sources."snyk-gradle-plugin-1.1.2" 32387 sources."snyk-module-1.8.1" 32388 + sources."snyk-mvn-plugin-1.0.3" 32389 sources."snyk-policy-1.7.1" 32390 sources."snyk-python-plugin-1.2.4" 32391 (sources."snyk-recursive-readdir-2.0.0" // { ··· 32427 sources."exit-hook-1.1.1" 32428 sources."onetime-1.1.0" 32429 sources."is-promise-2.1.0" 32430 + sources."iconv-lite-0.4.19" 32431 (sources."osx-release-1.1.0" // { 32432 dependencies = [ 32433 sources."minimist-1.2.0" ··· 32453 sources."longest-1.0.1" 32454 sources."repeat-string-1.6.1" 32455 sources."is-buffer-1.1.5" 32456 sources."toml-2.3.3" 32457 sources."clone-deep-0.3.0" 32458 sources."for-own-1.0.0" ··· 32471 sources."for-in-0.1.8" 32472 ]; 32473 }) 32474 + sources."js-yaml-3.10.0" 32475 sources."argparse-1.0.9" 32476 sources."esprima-4.0.0" 32477 sources."sprintf-js-1.0.3" ··· 32597 ocaml-language-server = nodeEnv.buildNodePackage { 32598 name = "ocaml-language-server"; 32599 packageName = "ocaml-language-server"; 32600 + version = "1.0.0"; 32601 src = fetchurl { 32602 + url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.0.tgz"; 32603 + sha512 = "32glgr9c42bz2yp3k7kff9skkvrm1zrvcvv2pkifjmzbl3kca3bmapgz598jdm64hi3y0jbby4s90bv8838q40ni5lfh35863c57i0n"; 32604 }; 32605 dependencies = [ 32606 + sources."async-2.4.1" 32607 + sources."glob-7.1.2" 32608 sources."lodash-4.17.4" 32609 sources."lokijs-1.4.3" 32610 sources."pegjs-0.10.0" 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" 32616 sources."fs.realpath-1.0.0" 32617 sources."inflight-1.0.6" 32618 sources."inherits-2.0.3" ··· 32643 dependencies = [ 32644 sources."async-0.9.2" 32645 sources."babybird-0.0.1" 32646 + (sources."body-parser-1.18.1" // { 32647 dependencies = [ 32648 + sources."content-type-1.0.4" 32649 ]; 32650 }) 32651 (sources."compression-1.7.0" // { 32652 dependencies = [ 32653 sources."bytes-2.5.0" 32654 ]; 32655 }) 32656 sources."connect-busboy-0.0.2" ··· 32661 sources."entities-1.1.1" 32662 (sources."express-4.15.4" // { 32663 dependencies = [ 32664 + sources."content-type-1.0.4" 32665 + sources."finalhandler-1.0.5" 32666 sources."qs-6.5.0" 32667 ]; 32668 }) ··· 32673 sources."ms-0.7.1" 32674 ]; 32675 }) 32676 + sources."js-yaml-3.10.0" 32677 sources."mediawiki-title-0.5.6" 32678 sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" 32679 sources."node-uuid-1.4.8" 32680 sources."pegjs-git+https://github.com/tstarling/pegjs.git#fork" 32681 sources."prfun-2.1.4" 32682 + sources."request-2.82.0" 32683 sources."semver-5.4.1" 32684 + (sources."serve-favicon-2.4.4" // { 32685 dependencies = [ 32686 + sources."fresh-0.5.1" 32687 ]; 32688 }) 32689 (sources."service-runner-2.3.0" // { ··· 32704 }) 32705 sources."asap-2.0.6" 32706 sources."is-arguments-1.0.2" 32707 + sources."bytes-3.0.0" 32708 + sources."debug-2.6.8" 32709 sources."depd-1.1.1" 32710 sources."http-errors-1.6.2" 32711 + sources."iconv-lite-0.4.19" 32712 sources."on-finished-2.3.0" 32713 + sources."qs-6.5.1" 32714 + sources."raw-body-2.3.2" 32715 sources."type-is-1.6.15" 32716 sources."ms-2.0.0" 32717 sources."inherits-2.0.3" ··· 32740 sources."cookie-signature-1.0.6" 32741 sources."encodeurl-1.0.1" 32742 sources."escape-html-1.0.3" 32743 + sources."etag-1.8.1" 32744 sources."fresh-0.5.0" 32745 sources."merge-descriptors-1.0.1" 32746 sources."methods-1.1.2" 32747 + sources."parseurl-1.3.2" 32748 sources."path-to-regexp-0.1.7" 32749 sources."proxy-addr-1.1.5" 32750 sources."range-parser-1.2.0" 32751 + sources."send-0.15.4" 32752 sources."serve-static-1.12.4" 32753 sources."utils-merge-1.0.0" 32754 + sources."forwarded-0.1.2" 32755 sources."ipaddr.js-1.4.0" 32756 sources."destroy-1.0.4" 32757 sources."mime-1.3.4" ··· 32807 sources."argparse-1.0.9" 32808 sources."esprima-4.0.0" 32809 sources."sprintf-js-1.0.3" 32810 + sources."aws-sign2-0.7.0" 32811 sources."aws4-1.6.0" 32812 sources."caseless-0.12.0" 32813 sources."combined-stream-1.0.5" 32814 sources."extend-3.0.1" 32815 sources."forever-agent-0.6.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" 32820 sources."is-typedarray-1.0.0" 32821 sources."isstream-0.1.2" 32822 sources."json-stringify-safe-5.0.1" 32823 sources."oauth-sign-0.8.2" 32824 + sources."performance-now-2.1.0" 32825 sources."stringstream-0.0.5" 32826 sources."tough-cookie-2.3.2" 32827 sources."tunnel-agent-0.6.0" 32828 sources."uuid-3.1.0" 32829 sources."delayed-stream-1.0.0" 32830 sources."asynckit-0.4.0" 32831 + sources."ajv-5.2.2" 32832 + sources."har-schema-2.0.0" 32833 sources."co-4.6.0" 32834 + sources."fast-deep-equal-1.0.0" 32835 + sources."json-schema-traverse-0.3.1" 32836 sources."json-stable-stringify-1.0.1" 32837 sources."jsonify-0.0.0" 32838 + sources."hoek-4.2.0" 32839 + sources."boom-4.3.1" 32840 + (sources."cryptiles-3.1.2" // { 32841 dependencies = [ 32842 + sources."boom-5.2.0" 32843 ]; 32844 }) 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" 32849 sources."extsprintf-1.3.0" 32850 sources."json-schema-0.2.3" 32851 + sources."verror-1.10.0" 32852 sources."asn1-0.2.3" 32853 + sources."dashdash-1.14.1" 32854 + sources."getpass-0.1.7" 32855 sources."jsbn-0.1.1" 32856 sources."tweetnacl-0.14.5" 32857 sources."ecc-jsbn-0.1.1" ··· 32861 sources."bunyan-1.8.12" 32862 sources."bunyan-syslog-udp-0.1.0" 32863 sources."gelf-stream-1.1.1" 32864 + sources."hot-shots-4.7.0" 32865 (sources."limitation-0.2.0" // { 32866 dependencies = [ 32867 sources."readable-stream-2.3.3" ··· 33171 sources."ip-set-1.0.1" 33172 sources."mkdirp-0.3.5" 33173 sources."peer-wire-swarm-0.12.1" 33174 + sources."rimraf-2.6.2" 33175 sources."torrent-discovery-5.4.0" 33176 sources."torrent-piece-1.1.1" 33177 (sources."random-access-file-1.8.1" // { ··· 33310 ]; 33311 }) 33312 sources."content-disposition-0.5.0" 33313 + sources."content-type-1.0.4" 33314 sources."commander-2.6.0" 33315 sources."cookie-0.1.3" 33316 sources."cookie-signature-1.0.6" ··· 33321 sources."fresh-0.3.0" 33322 sources."merge-descriptors-1.0.0" 33323 sources."methods-1.1.2" 33324 + sources."parseurl-1.3.2" 33325 sources."proxy-addr-1.0.10" 33326 (sources."send-0.13.0" // { 33327 dependencies = [ ··· 33417 sources."batch-0.5.3" 33418 sources."destroy-1.0.4" 33419 sources."mime-1.3.4" 33420 + sources."forwarded-0.1.2" 33421 sources."ipaddr.js-1.0.5" 33422 sources."minimist-0.0.8" 33423 sources."end-of-stream-1.4.0" ··· 33530 sources."immediate-chunk-store-1.0.8" 33531 sources."ip-set-1.0.1" 33532 sources."peer-wire-swarm-0.12.1" 33533 + sources."rimraf-2.6.2" 33534 sources."torrent-discovery-5.4.0" 33535 sources."torrent-piece-1.1.1" 33536 (sources."random-access-file-1.8.1" // { ··· 33662 sources."jsonfile-2.4.0" 33663 sources."klaw-1.3.1" 33664 sources."path-is-absolute-1.0.1" 33665 + sources."rimraf-2.6.2" 33666 sources."glob-7.1.2" 33667 sources."fs.realpath-1.0.0" 33668 sources."inflight-1.0.6" ··· 33764 prettier = nodeEnv.buildNodePackage { 33765 name = "prettier"; 33766 packageName = "prettier"; 33767 + version = "1.7.0"; 33768 src = fetchurl { 33769 + url = "https://registry.npmjs.org/prettier/-/prettier-1.7.0.tgz"; 33770 + sha512 = "1ib30g1a6lq7pn1ajpmvajs3y4q94yb0xz53zp1s6gbbmihfn1zr8imp8vydlmh1cj41s2ymdkddq8hfq7mlr9caji83c9x87fw11lh"; 33771 }; 33772 buildInputs = globalBuildInputs; 33773 meta = { ··· 33777 }; 33778 production = true; 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 + }; 34172 react-tools = nodeEnv.buildNodePackage { 34173 name = "react-tools"; 34174 packageName = "react-tools"; ··· 34188 sources."detective-4.5.0" 34189 sources."glob-5.0.15" 34190 sources."graceful-fs-4.1.11" 34191 + sources."iconv-lite-0.4.19" 34192 sources."mkdirp-0.5.1" 34193 sources."private-0.1.7" 34194 sources."q-1.5.0" ··· 34291 sources."request-2.9.203" 34292 (sources."openid-2.0.6" // { 34293 dependencies = [ 34294 + sources."request-2.82.0" 34295 + sources."qs-6.5.1" 34296 ]; 34297 }) 34298 sources."node-swt-0.1.1" 34299 sources."node-wsfederation-0.1.1" 34300 sources."formidable-1.0.11" 34301 sources."crc-0.2.0" 34302 + sources."aws-sign2-0.7.0" 34303 sources."aws4-1.6.0" 34304 sources."caseless-0.12.0" 34305 sources."combined-stream-1.0.5" 34306 sources."extend-3.0.1" 34307 sources."forever-agent-0.6.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" 34312 sources."is-typedarray-1.0.0" 34313 sources."isstream-0.1.2" 34314 sources."json-stringify-safe-5.0.1" 34315 sources."mime-types-2.1.17" 34316 sources."oauth-sign-0.8.2" 34317 + sources."performance-now-2.1.0" 34318 sources."safe-buffer-5.1.1" 34319 sources."stringstream-0.0.5" 34320 sources."tough-cookie-2.3.2" ··· 34322 sources."uuid-3.1.0" 34323 sources."delayed-stream-1.0.0" 34324 sources."asynckit-0.4.0" 34325 + sources."ajv-5.2.2" 34326 + sources."har-schema-2.0.0" 34327 sources."co-4.6.0" 34328 + sources."fast-deep-equal-1.0.0" 34329 + sources."json-schema-traverse-0.3.1" 34330 sources."json-stable-stringify-1.0.1" 34331 sources."jsonify-0.0.0" 34332 + sources."hoek-4.2.0" 34333 + sources."boom-4.3.1" 34334 + (sources."cryptiles-3.1.2" // { 34335 dependencies = [ 34336 + sources."boom-5.2.0" 34337 ]; 34338 }) 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" 34343 sources."extsprintf-1.3.0" 34344 sources."json-schema-0.2.3" 34345 + sources."verror-1.10.0" 34346 sources."asn1-0.2.3" 34347 + sources."dashdash-1.14.1" 34348 + sources."getpass-0.1.7" 34349 sources."jsbn-0.1.1" 34350 sources."tweetnacl-0.14.5" 34351 sources."ecc-jsbn-0.1.1" ··· 34378 serve = nodeEnv.buildNodePackage { 34379 name = "serve"; 34380 packageName = "serve"; 34381 + version = "6.1.0"; 34382 src = fetchurl { 34383 + url = "https://registry.npmjs.org/serve/-/serve-6.1.0.tgz"; 34384 + sha512 = "3hrp79lvglwci8nbyxqwy38f27xfa2axsb5nzqy6hsg4sjs1fpn0va22zv01jgdxjqs9lhpisc47y5aidd699mnrxpvp787gsgvx8ic"; 34385 }; 34386 dependencies = [ 34387 + (sources."args-3.0.4" // { 34388 + dependencies = [ 34389 + sources."chalk-2.0.1" 34390 + ]; 34391 + }) 34392 + sources."basic-auth-2.0.0" 34393 sources."bluebird-3.5.0" 34394 sources."boxen-1.2.1" 34395 + sources."chalk-2.1.0" 34396 (sources."clipboardy-1.1.4" // { 34397 dependencies = [ 34398 sources."execa-0.6.3" ··· 34401 sources."dargs-5.1.0" 34402 sources."detect-port-1.2.1" 34403 sources."filesize-3.5.10" 34404 + sources."fs-extra-4.0.2" 34405 sources."handlebars-4.0.10" 34406 sources."ip-1.1.5" 34407 + sources."micro-9.0.0" 34408 sources."micro-compress-1.0.0" 34409 + sources."mime-types-2.1.17" 34410 sources."node-version-1.1.0" 34411 sources."opn-5.1.0" 34412 sources."path-type-3.0.0" 34413 + sources."send-0.15.4" 34414 (sources."update-notifier-2.2.0" // { 34415 dependencies = [ 34416 sources."chalk-1.1.3" ··· 34424 sources."minimist-1.2.0" 34425 sources."pkginfo-0.4.0" 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" 34433 sources."lodash-4.17.4" 34434 + sources."safe-buffer-5.1.1" 34435 sources."ansi-align-2.0.0" 34436 sources."cli-boxes-1.0.0" 34437 sources."string-width-2.1.1" ··· 34465 sources."path-key-2.0.1" 34466 sources."code-point-at-1.1.0" 34467 sources."number-is-nan-1.0.1" 34468 sources."address-1.0.3" 34469 sources."debug-2.6.8" 34470 sources."ms-2.0.0" 34471 sources."graceful-fs-4.1.11" 34472 + sources."jsonfile-4.0.0" 34473 sources."universalify-0.1.1" 34474 sources."async-1.5.2" 34475 (sources."optimist-0.6.1" // { ··· 34508 sources."is-buffer-1.1.5" 34509 sources."media-typer-0.3.0" 34510 sources."mri-1.1.0" 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" 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" 34520 (sources."compression-1.7.0" // { 34521 dependencies = [ 34522 sources."bytes-2.5.0" ··· 34525 sources."accepts-1.3.4" 34526 sources."compressible-2.0.11" 34527 sources."on-headers-1.0.1" 34528 sources."vary-1.1.1" 34529 sources."negotiator-0.6.1" 34530 sources."mime-db-1.30.0" 34531 sources."is-wsl-1.1.0" 34532 sources."pify-3.0.0" 34533 sources."destroy-1.0.4" 34534 sources."encodeurl-1.0.1" 34535 sources."escape-html-1.0.3" 34536 + sources."etag-1.8.1" 34537 sources."fresh-0.5.0" 34538 sources."mime-1.3.4" 34539 sources."on-finished-2.3.0" 34540 sources."range-parser-1.2.0" 34541 sources."ee-first-1.1.1" 34542 sources."configstore-3.1.1" 34543 sources."import-lazy-2.1.0" ··· 34600 dependencies = [ 34601 sources."express-5.0.0-alpha.5" 34602 sources."express-json5-0.1.0" 34603 + (sources."body-parser-1.18.1" // { 34604 dependencies = [ 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" 34610 sources."ms-2.0.0" 34611 ]; 34612 }) ··· 34618 ]; 34619 }) 34620 sources."commander-2.11.0" 34621 + sources."js-yaml-3.10.0" 34622 sources."cookies-0.7.1" 34623 + (sources."request-2.82.0" // { 34624 + dependencies = [ 34625 + sources."qs-6.5.1" 34626 + ]; 34627 + }) 34628 sources."async-0.9.2" 34629 sources."es6-shim-0.21.1" 34630 sources."semver-4.3.6" ··· 34650 sources."accepts-1.3.4" 34651 sources."array-flatten-2.1.1" 34652 sources."content-disposition-0.5.2" 34653 + sources."content-type-1.0.4" 34654 sources."cookie-0.3.1" 34655 sources."cookie-signature-1.0.6" 34656 sources."debug-2.6.1" 34657 sources."depd-1.1.1" 34658 sources."encodeurl-1.0.1" 34659 sources."escape-html-1.0.3" 34660 + sources."etag-1.8.1" 34661 + (sources."finalhandler-1.0.5" // { 34662 dependencies = [ 34663 sources."debug-2.6.8" 34664 sources."ms-2.0.0" ··· 34668 sources."merge-descriptors-1.0.1" 34669 sources."methods-1.1.2" 34670 sources."on-finished-2.3.0" 34671 + sources."parseurl-1.3.2" 34672 sources."path-is-absolute-1.0.1" 34673 sources."path-to-regexp-0.1.7" 34674 sources."proxy-addr-1.1.5" ··· 34693 sources."ms-0.7.2" 34694 sources."unpipe-1.0.0" 34695 sources."ee-first-1.1.1" 34696 + sources."forwarded-0.1.2" 34697 sources."ipaddr.js-1.4.0" 34698 sources."destroy-1.0.4" 34699 sources."mime-1.3.4" ··· 34708 sources."esprima-4.0.0" 34709 sources."sprintf-js-1.0.3" 34710 sources."keygrip-1.0.2" 34711 + sources."aws-sign2-0.7.0" 34712 sources."aws4-1.6.0" 34713 sources."caseless-0.12.0" 34714 sources."combined-stream-1.0.5" 34715 sources."extend-3.0.1" 34716 sources."forever-agent-0.6.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" 34721 sources."is-typedarray-1.0.0" 34722 sources."isstream-0.1.2" 34723 sources."json-stringify-safe-5.0.1" 34724 sources."oauth-sign-0.8.2" 34725 + sources."performance-now-2.1.0" 34726 sources."stringstream-0.0.5" 34727 sources."tough-cookie-2.3.2" 34728 sources."tunnel-agent-0.6.0" 34729 sources."uuid-3.1.0" 34730 sources."delayed-stream-1.0.0" 34731 sources."asynckit-0.4.0" 34732 + sources."ajv-5.2.2" 34733 + sources."har-schema-2.0.0" 34734 sources."co-4.6.0" 34735 + sources."fast-deep-equal-1.0.0" 34736 + sources."json-schema-traverse-0.3.1" 34737 sources."json-stable-stringify-1.0.1" 34738 sources."jsonify-0.0.0" 34739 + sources."hoek-4.2.0" 34740 + sources."boom-4.3.1" 34741 + (sources."cryptiles-3.1.2" // { 34742 dependencies = [ 34743 + sources."boom-5.2.0" 34744 ]; 34745 }) 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" 34750 sources."extsprintf-1.3.0" 34751 sources."json-schema-0.2.3" 34752 + sources."verror-1.10.0" 34753 sources."core-util-is-1.0.2" 34754 sources."asn1-0.2.3" 34755 + sources."dashdash-1.14.1" 34756 + sources."getpass-0.1.7" 34757 sources."jsbn-0.1.1" 34758 sources."tweetnacl-0.14.5" 34759 sources."ecc-jsbn-0.1.1" ··· 34948 sources."dtrace-provider-0.6.0" 34949 sources."precond-0.2.3" 34950 sources."csv-generate-0.0.6" 34951 + sources."csv-parse-1.2.2" 34952 sources."stream-transform-0.1.2" 34953 sources."csv-stringify-0.0.8" 34954 sources."asn1-0.1.11" ··· 35066 sources."esprima-2.7.3" 35067 sources."sprintf-js-1.0.3" 35068 sources."minimist-0.0.8" 35069 + sources."clap-1.2.3" 35070 sources."source-map-0.5.7" 35071 sources."chalk-1.1.3" 35072 sources."ansi-styles-2.2.1" ··· 35148 uglify-js = nodeEnv.buildNodePackage { 35149 name = "uglify-js"; 35150 packageName = "uglify-js"; 35151 + version = "3.1.1"; 35152 src = fetchurl { 35153 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.1.1.tgz"; 35154 + sha512 = "324ss2wqxsz86ih8hy14lkaqaq32kck3mkka79nj7v3bk9288c9a1x7pc88na5g17ch83qvg9j5hwlzl7v72crl5c01dz9d92cfkc3z"; 35155 }; 35156 dependencies = [ 35157 sources."commander-2.11.0" ··· 35248 }) 35249 (sources."npm-registry-client-8.4.0" // { 35250 dependencies = [ 35251 + sources."request-2.82.0" 35252 + sources."aws-sign2-0.7.0" 35253 sources."combined-stream-1.0.5" 35254 sources."extend-3.0.1" 35255 sources."forever-agent-0.6.1" 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" 35260 sources."json-stringify-safe-5.0.1" 35261 sources."oauth-sign-0.8.2" 35262 + sources."performance-now-2.1.0" 35263 + sources."qs-6.5.1" 35264 sources."tunnel-agent-0.6.0" 35265 + sources."uuid-3.1.0" 35266 sources."delayed-stream-1.0.0" 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" 35278 ]; 35279 }) 35280 sources."octicons-3.5.0" ··· 35294 sources."minimist-1.2.0" 35295 ]; 35296 }) 35297 + sources."rimraf-2.6.2" 35298 sources."semver-5.4.1" 35299 sources."serve-static-1.12.4" 35300 sources."signals-1.0.0" ··· 35334 ]; 35335 }) 35336 sources."bytes-2.4.0" 35337 + sources."content-type-1.0.4" 35338 sources."debug-2.6.7" 35339 sources."depd-1.1.1" 35340 sources."http-errors-1.6.2" ··· 35373 sources."content-disposition-0.5.2" 35374 sources."encodeurl-1.0.1" 35375 sources."escape-html-1.0.3" 35376 + sources."etag-1.8.1" 35377 + (sources."finalhandler-1.0.5" // { 35378 dependencies = [ 35379 sources."debug-2.6.8" 35380 ]; ··· 35382 sources."fresh-0.5.0" 35383 sources."merge-descriptors-1.0.1" 35384 sources."methods-1.1.2" 35385 + sources."parseurl-1.3.2" 35386 sources."path-to-regexp-0.1.7" 35387 sources."proxy-addr-1.1.5" 35388 sources."range-parser-1.2.0" ··· 35394 sources."utils-merge-1.0.0" 35395 sources."vary-1.1.1" 35396 sources."negotiator-0.6.1" 35397 + sources."forwarded-0.1.2" 35398 sources."ipaddr.js-1.4.0" 35399 sources."destroy-1.0.4" 35400 sources."mime-1.3.4" ··· 35841 sources."spdx-expression-parse-1.0.4" 35842 sources."spdx-license-ids-1.2.2" 35843 sources."ssri-4.1.6" 35844 + sources."fast-deep-equal-1.0.0" 35845 + sources."json-schema-traverse-0.3.1" 35846 sources."passport-strategy-1.0.0" 35847 sources."pause-0.0.1" 35848 sources."lsmod-1.0.0" ··· 36004 sources."jsonfile-2.4.0" 36005 sources."klaw-1.3.1" 36006 sources."path-is-absolute-1.0.1" 36007 + sources."rimraf-2.6.2" 36008 sources."glob-7.1.2" 36009 sources."fs.realpath-1.0.0" 36010 sources."inflight-1.0.6" ··· 36106 webpack = nodeEnv.buildNodePackage { 36107 name = "webpack"; 36108 packageName = "webpack"; 36109 + version = "3.6.0"; 36110 src = fetchurl { 36111 + url = "https://registry.npmjs.org/webpack/-/webpack-3.6.0.tgz"; 36112 + sha512 = "12fzgy04c0gwlpr5bn66q92kbnv8wn4sm6xd2mmhc3dwq0fkrl2h1pmad3wh56x8zia8v7s4jcwxndhv8pb9d0y7s7skl0n7pfd7h9s"; 36113 }; 36114 dependencies = [ 36115 sources."acorn-5.1.2" ··· 36123 sources."async-2.5.0" 36124 sources."enhanced-resolve-3.4.1" 36125 sources."escope-3.6.0" 36126 + sources."interpret-1.0.4" 36127 sources."json-loader-0.5.7" 36128 sources."json5-0.5.1" 36129 sources."loader-runner-2.3.0" ··· 36173 sources."es6-set-0.1.5" 36174 sources."es6-symbol-3.1.1" 36175 sources."event-emitter-0.3.5" 36176 + sources."big.js-3.2.0" 36177 sources."emojis-list-2.1.0" 36178 sources."errno-0.1.4" 36179 sources."readable-stream-2.3.3" ··· 36225 sources."create-hash-1.1.3" 36226 sources."create-hmac-1.1.6" 36227 sources."diffie-hellman-5.0.2" 36228 + sources."pbkdf2-3.0.14" 36229 sources."public-encrypt-4.0.0" 36230 sources."randombytes-2.0.5" 36231 sources."browserify-aes-1.0.8" ··· 36333 sources."balanced-match-1.0.0" 36334 sources."concat-map-0.0.1" 36335 sources."nan-2.7.0" 36336 + sources."node-pre-gyp-0.6.37" 36337 sources."nopt-4.0.1" 36338 sources."npmlog-4.1.2" 36339 (sources."rc-1.2.1" // { ··· 36341 sources."minimist-1.2.0" 36342 ]; 36343 }) 36344 + sources."request-2.82.0" 36345 + sources."rimraf-2.6.2" 36346 sources."semver-5.4.1" 36347 + (sources."tape-4.8.0" // { 36348 + dependencies = [ 36349 + sources."minimist-1.2.0" 36350 + ]; 36351 + }) 36352 sources."tar-2.2.1" 36353 sources."tar-pack-3.4.0" 36354 sources."abbrev-1.1.0" ··· 36360 sources."gauge-2.7.4" 36361 sources."set-blocking-2.0.0" 36362 sources."delegates-1.0.0" 36363 + sources."aproba-1.2.0" 36364 sources."has-unicode-2.0.1" 36365 sources."signal-exit-3.0.2" 36366 sources."string-width-1.0.2" ··· 36373 sources."deep-extend-0.4.2" 36374 sources."ini-1.3.4" 36375 sources."strip-json-comments-2.0.1" 36376 + sources."aws-sign2-0.7.0" 36377 sources."aws4-1.6.0" 36378 sources."caseless-0.12.0" 36379 sources."combined-stream-1.0.5" 36380 sources."extend-3.0.1" 36381 sources."forever-agent-0.6.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" 36386 sources."is-typedarray-1.0.0" 36387 sources."isstream-0.1.2" 36388 sources."json-stringify-safe-5.0.1" 36389 sources."mime-types-2.1.17" 36390 sources."oauth-sign-0.8.2" 36391 + sources."performance-now-2.1.0" 36392 + sources."qs-6.5.1" 36393 sources."stringstream-0.0.5" 36394 sources."tough-cookie-2.3.2" 36395 sources."tunnel-agent-0.6.0" 36396 sources."uuid-3.1.0" 36397 sources."delayed-stream-1.0.0" 36398 sources."asynckit-0.4.0" 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" // { 36403 dependencies = [ 36404 + sources."boom-5.2.0" 36405 ]; 36406 }) 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" 36411 sources."extsprintf-1.3.0" 36412 sources."json-schema-0.2.3" 36413 + sources."verror-1.10.0" 36414 sources."asn1-0.2.3" 36415 + sources."dashdash-1.14.1" 36416 + sources."getpass-0.1.7" 36417 sources."jsbn-0.1.1" 36418 sources."tweetnacl-0.14.5" 36419 sources."ecc-jsbn-0.1.1" ··· 36424 sources."inflight-1.0.6" 36425 sources."once-1.4.0" 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" 36448 sources."block-stream-0.0.9" 36449 sources."fstream-1.0.11" 36450 sources."debug-2.6.8" ··· 36533 yarn = nodeEnv.buildNodePackage { 36534 name = "yarn"; 36535 packageName = "yarn"; 36536 + version = "1.0.2"; 36537 src = fetchurl { 36538 + url = "https://registry.npmjs.org/yarn/-/yarn-1.0.2.tgz"; 36539 + sha1 = "d1b8f4b6d3b0684e86f63a072ac630995b8b7b0a"; 36540 }; 36541 buildInputs = globalBuildInputs; 36542 meta = { 36543 description = "📦🐈 Fast, reliable, and secure dependency management."; ··· 36564 sources."fullname-3.3.0" 36565 sources."got-6.7.1" 36566 sources."humanize-string-1.0.1" 36567 + (sources."inquirer-3.3.0" // { 36568 dependencies = [ 36569 sources."chalk-2.1.0" 36570 sources."strip-ansi-4.0.0" ··· 36726 sources."capture-stack-trace-1.0.0" 36727 sources."prepend-http-1.0.4" 36728 sources."decamelize-1.2.0" 36729 + sources."ansi-escapes-3.0.0" 36730 sources."cli-cursor-2.1.0" 36731 sources."cli-width-2.2.0" 36732 + sources."external-editor-2.0.5" 36733 sources."mute-stream-0.0.7" 36734 sources."run-async-2.3.0" 36735 sources."rx-lite-4.0.8" ··· 36746 sources."has-flag-2.0.0" 36747 sources."restore-cursor-2.0.0" 36748 sources."onetime-2.0.1" 36749 + sources."iconv-lite-0.4.19" 36750 sources."jschardet-1.5.1" 36751 + sources."tmp-0.0.33" 36752 sources."os-tmpdir-1.0.2" 36753 sources."is-promise-2.1.0" 36754 sources."is-fullwidth-code-point-2.0.0" 36755 sources."lodash.debounce-3.1.1" 36756 sources."os-name-1.0.3" 36757 + sources."request-2.82.0" 36758 sources."tough-cookie-2.3.2" 36759 sources."uuid-3.1.0" 36760 (sources."mkdirp-0.5.1" // { ··· 36780 sources."osx-release-1.1.0" 36781 sources."win-release-1.1.1" 36782 sources."semver-5.4.1" 36783 + sources."aws-sign2-0.7.0" 36784 sources."aws4-1.6.0" 36785 sources."caseless-0.12.0" 36786 sources."combined-stream-1.0.5" 36787 sources."extend-3.0.1" 36788 sources."forever-agent-0.6.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" 36793 sources."is-typedarray-1.0.0" 36794 sources."isstream-0.1.2" 36795 sources."json-stringify-safe-5.0.1" 36796 sources."mime-types-2.1.17" 36797 sources."oauth-sign-0.8.2" 36798 + sources."performance-now-2.1.0" 36799 + sources."qs-6.5.1" 36800 sources."stringstream-0.0.5" 36801 sources."tunnel-agent-0.6.0" 36802 sources."delayed-stream-1.0.0" 36803 sources."asynckit-0.4.0" 36804 + sources."ajv-5.2.2" 36805 + sources."har-schema-2.0.0" 36806 sources."co-4.6.0" 36807 + sources."fast-deep-equal-1.0.0" 36808 + sources."json-schema-traverse-0.3.1" 36809 sources."json-stable-stringify-1.0.1" 36810 sources."jsonify-0.0.0" 36811 + sources."hoek-4.2.0" 36812 + sources."boom-4.3.1" 36813 + (sources."cryptiles-3.1.2" // { 36814 dependencies = [ 36815 + sources."boom-5.2.0" 36816 ]; 36817 }) 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" 36822 sources."extsprintf-1.3.0" 36823 sources."json-schema-0.2.3" 36824 + sources."verror-1.10.0" 36825 sources."core-util-is-1.0.2" 36826 sources."asn1-0.2.3" 36827 + sources."dashdash-1.14.1" 36828 + sources."getpass-0.1.7" 36829 sources."jsbn-0.1.1" 36830 sources."tweetnacl-0.14.5" 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 with stdenv.lib; 7 8 let 9 - baseVersion = "4.3"; 10 - revision = "1"; 11 in 12 13 stdenv.mkDerivation rec { ··· 16 17 src = fetchurl { 18 url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.xz"; 19 - sha256 = "1bd4wxvp8b5imsmrbnn8rkiln38g74g2545x07pmihc8z51qh2h6"; 20 }; 21 22 buildInputs = [ qtbase qtscript qtquickcontrols qtdeclarative ];
··· 6 with stdenv.lib; 7 8 let 9 + baseVersion = "4.4"; 10 + revision = "0"; 11 in 12 13 stdenv.mkDerivation rec { ··· 16 17 src = fetchurl { 18 url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.xz"; 19 + sha256 = "00k2bb2pamqlq0i619wz8chii8yp884qnrjngzzxrdffk05d95wc"; 20 }; 21 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 }; 63 in releaseTools.nixBuild rec { 64 name = "hydra-${version}"; 65 - version = "2017-07-27"; 66 67 inherit stdenv; 68 69 src = fetchFromGitHub { 70 owner = "NixOS"; 71 repo = "hydra"; 72 - rev = "3fc320db320c9aa5180c54e77513f1bcb7407079"; 73 - sha256 = "0kml2rvy5pz8pzl23vfib5vrwxccff9j1jmyq926qv7f5kbzy61b"; 74 }; 75 76 buildInputs =
··· 62 }; 63 in releaseTools.nixBuild rec { 64 name = "hydra-${version}"; 65 + version = "2017-09-14"; 66 67 inherit stdenv; 68 69 src = fetchFromGitHub { 70 owner = "NixOS"; 71 repo = "hydra"; 72 + rev = "b828224fee451ad26e87cfe4eeb9c0704ee1062b"; 73 + sha256 = "05xv10ldsa1rahxbbgh5kwvl1dv4yvc8idczpifgb55fgqj8zazm"; 74 }; 75 76 buildInputs =
+3 -3
pkgs/development/tools/misc/tokei/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 name = "tokei-${version}"; 5 - version = "6.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "Aaronepower"; 9 repo = "tokei"; 10 rev = "v${version}"; 11 - sha256 = "1v9h45vspsqsy86fm78bc2g5byqa4cd9b9fbmv7imi87yjbm8i7x"; 12 }; 13 14 - depsSha256 = "0jqzk5qlrc7pm3s7jf8130vgnrcd54izw3mx84m9b5lhf3rz98hm"; 15 16 installPhase = '' 17 mkdir -p $out/bin
··· 2 3 rustPlatform.buildRustPackage rec { 4 name = "tokei-${version}"; 5 + version = "6.1.2"; 6 7 src = fetchFromGitHub { 8 owner = "Aaronepower"; 9 repo = "tokei"; 10 rev = "v${version}"; 11 + sha256 = "1bzs3mr6f9bna39b9ddwwq0raas07nbn106mnq3widxg59i0gxhd"; 12 }; 13 14 + depsSha256 = "1cz93mrpxmyrza0ipdyg2a6mynl66plpsb446wxnmmy7y7zd6xbf"; 15 16 installPhase = '' 17 mkdir -p $out/bin
+5 -1
pkgs/development/tools/textql/default.nix
··· 4 name = "textql-${version}"; 5 version = "2.0.3"; 6 rev = "${version}"; 7 - 8 goPackagePath = "github.com/dinedal/textql"; 9 10 src = fetchFromGitHub { ··· 15 }; 16 17 goDeps = ./deps.nix; 18 19 meta = with stdenv.lib; { 20 description = "Execute SQL against structured text like CSV or TSV";
··· 4 name = "textql-${version}"; 5 version = "2.0.3"; 6 rev = "${version}"; 7 + 8 goPackagePath = "github.com/dinedal/textql"; 9 10 src = fetchFromGitHub { ··· 15 }; 16 17 goDeps = ./deps.nix; 18 + 19 + preFixup = stdenv.lib.optionalString stdenv.isDarwin '' 20 + install_name_tool -delete_rpath $out/lib $bin/bin/textql 21 + ''; 22 23 meta = with stdenv.lib; { 24 description = "Execute SQL against structured text like CSV or TSV";
+2 -2
pkgs/development/web/nodejs/v8.nix
··· 10 baseName = if enableNpm then "nodejs" else "nodejs-slim"; 11 in 12 stdenv.mkDerivation (nodejs // rec { 13 - version = "8.4.0"; 14 name = "${baseName}-${version}"; 15 src = fetchurl { 16 url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz"; 17 - sha256 = "0qgkccsldpdrjxwwq78z94hsqz6qivmi4n2738iiginw06hs4njx"; 18 }; 19 20 patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
··· 10 baseName = if enableNpm then "nodejs" else "nodejs-slim"; 11 in 12 stdenv.mkDerivation (nodejs // rec { 13 + version = "8.5.0"; 14 name = "${baseName}-${version}"; 15 src = fetchurl { 16 url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz"; 17 + sha256 = "0g2wyy9zdjzm9c0vbjn8bn49s1b2c7r2iwdfc4dpx7h4wpcfbkg1"; 18 }; 19 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 }: 3 4 with stdenv.lib; 5 6 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"; 12 }; 13 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 - ''; 30 31 meta = { 32 - homepage = http://trackballs.sourceforge.net/; 33 description = "3D Marble Madness clone"; 34 platforms = stdenv.lib.platforms.linux; 35 };
··· 1 + { stdenv, fetchFromGitHub, cmake, SDL2, SDL2_ttf, gettext, zlib, SDL2_mixer, SDL2_image, guile, mesa }: 2 3 with stdenv.lib; 4 5 stdenv.mkDerivation rec { 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"; 14 }; 15 16 + buildInputs = [ cmake zlib SDL2 SDL2_ttf SDL2_mixer SDL2_image guile gettext mesa ]; 17 18 meta = { 19 + homepage = https://trackballs.github.io/; 20 description = "3D Marble Madness clone"; 21 platforms = stdenv.lib.platforms.linux; 22 };
+3 -3
pkgs/misc/emulators/wine/sources.nix
··· 32 33 unstable = fetchurl rec { 34 # NOTE: Don't forget to change the SHA256 for staging as well. 35 - version = "2.16"; 36 url = "https://dl.winehq.org/wine/source/2.x/wine-${version}.tar.xz"; 37 - sha256 = "089cvb7gvhcq5kx1h114fmr09fmj84cz2bjvisa48v6dpv5fsqd5"; 38 inherit (stable) mono gecko32 gecko64; 39 }; 40 41 staging = fetchFromGitHub rec { 42 inherit (unstable) version; 43 - sha256 = "1q9dnifz02l96s1bafb4w2z779k8ancl37zd7wxbkf0ks2vrnln0"; 44 owner = "wine-compholio"; 45 repo = "wine-staging"; 46 rev = "v${version}";
··· 32 33 unstable = fetchurl rec { 34 # NOTE: Don't forget to change the SHA256 for staging as well. 35 + version = "2.17"; 36 url = "https://dl.winehq.org/wine/source/2.x/wine-${version}.tar.xz"; 37 + sha256 = "0sgazjn30ki2y3bjrd0xbpf870ii22wkyrmgaxcwbk23j1rrbp3y"; 38 inherit (stable) mono gecko32 gecko64; 39 }; 40 41 staging = fetchFromGitHub rec { 42 inherit (unstable) version; 43 + sha256 = "11jm39g1kc77fvn02j9g8syyc095b6w2jashyr28v4gi7g0fqv6h"; 44 owner = "wine-compholio"; 45 repo = "wine-staging"; 46 rev = "v${version}";
+4 -2
pkgs/misc/tw-rs/default.nix
··· 1 - { stdenv, fetchFromGitHub, rustPlatform, perl, zlib, openssl }: 2 3 rustPlatform.buildRustPackage rec { 4 name = "tw-rs-${version}"; ··· 10 rev = "${version}"; 11 sha256 = "1s1gk2wcs3792gdzrngksczz3gma5kv02ni2jqrhib8l6z8mg9ia"; 12 }; 13 - buildInputs = [ perl zlib openssl ]; 14 15 depsSha256 = "1lg1jh6f9w28i94vaj62r859g6raalxmxabvw7av6sqr0hr56p05"; 16
··· 1 + { stdenv, fetchFromGitHub, rustPlatform, perl, zlib, openssl, curl }: 2 3 rustPlatform.buildRustPackage rec { 4 name = "tw-rs-${version}"; ··· 10 rev = "${version}"; 11 sha256 = "1s1gk2wcs3792gdzrngksczz3gma5kv02ni2jqrhib8l6z8mg9ia"; 12 }; 13 + 14 + buildInputs = [ perl zlib openssl ] 15 + ++ stdenv.lib.optional stdenv.isDarwin curl; 16 17 depsSha256 = "1lg1jh6f9w28i94vaj62r859g6raalxmxabvw7av6sqr0hr56p05"; 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 }: 3 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"; 13 }; 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 ]; 46 }; 47 }
··· 1 + { stdenv, callPackage, utillinux }: 2 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 }; 14 15 + fuse_3 = mkFuse { 16 + version = "3.1.1"; 17 + sha256Hash = "14mazl2i55fp4vjphwgcmk3mp2x3mhqwh9nci0rd0jl5lhpdmpq6"; 18 + maintainers = [ maintainers.primeos ]; 19 }; 20 }
+1 -1
pkgs/os-specific/linux/nfs-utils/default.nix
··· 39 sed -i "s,^PATH=.*,PATH=$out/bin:${statdPath}," utils/statd/start-statd 40 41 configureFlags="--with-start-statd=$out/bin/start-statd $configureFlags" 42 - 43 substituteInPlace systemd/nfs-utils.service \ 44 --replace "/bin/true" "${coreutils}/bin/true" 45
··· 39 sed -i "s,^PATH=.*,PATH=$out/bin:${statdPath}," utils/statd/start-statd 40 41 configureFlags="--with-start-statd=$out/bin/start-statd $configureFlags" 42 + 43 substituteInPlace systemd/nfs-utils.service \ 44 --replace "/bin/true" "${coreutils}/bin/true" 45
+27 -25
pkgs/servers/dns/knot-resolver/default.nix
··· 1 { stdenv, fetchurl, pkgconfig, hexdump, which 2 - , knot-dns, luajit, libuv, lmdb 3 - , cmocka, systemd, hiredis, libmemcached 4 - , gnutls, nettle 5 - , luajitPackages, makeWrapper 6 }: 7 8 let 9 - inherit (stdenv.lib) optional; 10 in 11 stdenv.mkDerivation rec { 12 name = "knot-resolver-${version}"; 13 - version = "1.3.3"; 14 15 src = fetchurl { 16 url = "http://secure.nic.cz/files/knot-resolver/${name}.tar.xz"; 17 - sha256 = "c679238bea5744de8a99f4402a61e9e58502bc42b40ecfa370e53679ed5d5b80"; 18 }; 19 20 outputs = [ "out" "dev" ]; ··· 23 24 nativeBuildInputs = [ pkgconfig which makeWrapper hexdump ]; 25 26 - buildInputs = [ knot-dns luajit libuv gnutls ] 27 ++ optional stdenv.isLinux lmdb # system lmdb causes some problems on Darwin 28 - ## optional dependencies; TODO: libedit, dnstap? 29 ++ optional doInstallCheck cmocka 30 - ++ optional stdenv.isLinux systemd # socket activation 31 - ++ [ 32 - nettle # DNS cookies 33 hiredis libmemcached # additional cache backends 34 - # http://knot-resolver.readthedocs.io/en/latest/build.html#requirements 35 ]; 36 37 - makeFlags = [ "PREFIX=$(out)" ]; 38 CFLAGS = [ "-O2" "-DNDEBUG" ]; 39 40 enableParallelBuilding = true; ··· 45 export LD_LIBRARY_PATH="$out/lib" 46 ''; 47 48 # 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 - ''; 60 61 meta = with stdenv.lib; { 62 description = "Caching validating DNS resolver, from .cz domain registry";
··· 1 { stdenv, fetchurl, pkgconfig, hexdump, which 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 }: 7 8 let 9 + inherit (stdenv.lib) optional optionals optionalString; 10 in 11 stdenv.mkDerivation rec { 12 name = "knot-resolver-${version}"; 13 + version = "1.4.0"; 14 15 src = fetchurl { 16 url = "http://secure.nic.cz/files/knot-resolver/${name}.tar.xz"; 17 + sha256 = "ac19c121fd687c7e4f5f907b46932d26f8f9d9e01626c4dadb3847e25ea31ceb"; 18 }; 19 20 outputs = [ "out" "dev" ]; ··· 23 24 nativeBuildInputs = [ pkgconfig which makeWrapper hexdump ]; 25 26 + # http://knot-resolver.readthedocs.io/en/latest/build.html#requirements 27 + buildInputs = [ knot-dns luajit libuv gnutls nettle ] 28 ++ optional stdenv.isLinux lmdb # system lmdb causes some problems on Darwin 29 ++ optional doInstallCheck cmocka 30 + ++ optional stdenv.isLinux systemd # sd_notify 31 + ++ optionals extraFeatures [ 32 hiredis libmemcached # additional cache backends 33 ]; 34 + ## optional dependencies; TODO: libedit, dnstap, http2 module? 35 36 + makeFlags = [ "PREFIX=$(out)" "ROOTHINTS=${dns-root-data}/root.hints" ]; 37 CFLAGS = [ "-O2" "-DNDEBUG" ]; 38 39 enableParallelBuilding = true; ··· 44 export LD_LIBRARY_PATH="$out/lib" 45 ''; 46 47 + postInstall = '' 48 + rm "$out"/etc/kresd/root.hints # using system-wide instead 49 + '' 50 # optional: to allow auto-bootstrapping root trust anchor via https 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 + ''); 62 63 meta = with stdenv.lib; { 64 description = "Caching validating DNS resolver, from .cz domain registry";
+2 -2
pkgs/servers/web-apps/piwik/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "piwik-${version}"; 5 - version = "3.1.0"; 6 7 src = fetchurl { 8 url = "https://builds.piwik.org/${name}.tar.gz"; 9 - sha512 = "175300ibf0lg4xnyn5v47czi3vd6i7yqf1im3br4975f6k7w8q22m2mk2mi006795js5q52x48g4sc7wb47wac7wbla8wp98al48gfb"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 name = "piwik-${version}"; 5 + version = "3.1.1"; 6 7 src = fetchurl { 8 url = "https://builds.piwik.org/${name}.tar.gz"; 9 + sha512 = "2mqzk12959j9xqb9cqz8np35zcs1313zjx9pikbjw9z9mfcqgv0ccvrnl2ymmwll333drr9qaxs54n0mkk66xbhz04nmzmib0kp9k8h"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+10 -6
pkgs/tools/filesystems/sshfs-fuse/default.nix
··· 1 - { stdenv, fetchFromGitHub, pkgconfig, glib, fuse, autoreconfHook }: 2 3 stdenv.mkDerivation rec { 4 - version = "2.10"; # Temporary (need to add libfuse 3.x first) 5 name = "sshfs-fuse-${version}"; 6 - 7 src = fetchFromGitHub { 8 owner = "libfuse"; 9 repo = "sshfs"; 10 rev = "sshfs-${version}"; 11 - sha256 = "1dmw4kx6vyawcywiv8drrajnam0m29mxfswcp4209qafzx3mjlp1"; 12 }; 13 - 14 - buildInputs = [ pkgconfig glib fuse autoreconfHook ]; 15 16 postInstall = '' 17 mkdir -p $out/sbin
··· 1 + { stdenv, fetchFromGitHub, pkgconfig, glib, fuse3, autoreconfHook }: 2 3 stdenv.mkDerivation rec { 4 + version = "3.2.0"; 5 name = "sshfs-fuse-${version}"; 6 + 7 src = fetchFromGitHub { 8 owner = "libfuse"; 9 repo = "sshfs"; 10 rev = "sshfs-${version}"; 11 + sha256 = "09pqdibhcj1p7m6vxkqiprvbcxp9iq2lm1hb6w7p8iarmvp80rlv"; 12 }; 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"; 19 20 postInstall = '' 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 3 stdenv.mkDerivation rec { 4 name = "transfig-3.2.4"; 5 - builder = ./builder.sh; 6 src = fetchurl { 7 url = ftp://ftp.tex.ac.uk/pub/archive/graphics/transfig/transfig.3.2.4.tar.gz; 8 sha256 = "0429snhp5acbz61pvblwlrwv8nxr6gf12p37f9xxwrkqv4ir7dd4"; 9 }; 10 11 buildInputs = [zlib libjpeg libpng imake]; 12 - inherit libpng; 13 14 - hardeningDisable = [ "format" ]; 15 16 - patches = [prefixPatch1 prefixPatch2 prefixPatch3 varargsPatch gensvgPatch]; 17 18 - prefixPatch1 = 19 - ./patch-fig2dev-dev-Imakefile; 20 21 - prefixPatch2 = 22 - ./patch-fig2dev-Imakefile; 23 24 - prefixPatch3 = 25 - ./patch-transfig-Imakefile; 26 27 - varargsPatch = 28 - ./patch-fig2dev-fig2dev.h; 29 30 - gensvgPatch = 31 - ./patch-fig2dev-dev-gensvg.c; 32 33 meta = { 34 platforms = stdenv.lib.platforms.unix;
··· 2 3 stdenv.mkDerivation rec { 4 name = "transfig-3.2.4"; 5 src = fetchurl { 6 url = ftp://ftp.tex.ac.uk/pub/archive/graphics/transfig/transfig.3.2.4.tar.gz; 7 sha256 = "0429snhp5acbz61pvblwlrwv8nxr6gf12p37f9xxwrkqv4ir7dd4"; 8 }; 9 10 buildInputs = [zlib libjpeg libpng imake]; 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 31 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 41 42 + configureImakefiles "s:__PREFIX_PNG:${libpng}:" 43 + configureImakefiles "s:__PREFIX:$out:" 44 45 + runHook postPatch 46 + ''; 47 48 + preBuild = '' 49 + xmkmf 50 + make Makefiles 51 + ''; 52 53 + makeFlags = [ "CC=cc" ]; 54 55 + preInstall = '' 56 + mkdir -p $out 57 + mkdir -p $out/lib 58 + ''; 59 60 + hardeningDisable = [ "format" ]; 61 62 meta = { 63 platforms = stdenv.lib.platforms.unix;
+1 -1
pkgs/tools/misc/osm2pgsql/default.nix
··· 23 version = "0.92.1-unstable"; 24 homepage = https://github.com/openstreetmap/osm2pgsql; 25 license = stdenv.lib.licenses.gpl2; 26 - platforms = stdenv.lib.platforms.unix; 27 }; 28 }
··· 23 version = "0.92.1-unstable"; 24 homepage = https://github.com/openstreetmap/osm2pgsql; 25 license = stdenv.lib.licenses.gpl2; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1 -1
pkgs/tools/misc/shallot/default.nix
··· 27 28 license = stdenv.lib.licenses.mit; 29 homepage = https://github.com/katmagic/Shallot; 30 - platforms = stdenv.lib.platforms.unix; 31 }; 32 }
··· 27 28 license = stdenv.lib.licenses.mit; 29 homepage = https://github.com/katmagic/Shallot; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+2 -2
pkgs/tools/misc/snapper/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 name = "snapper-${version}"; 8 - version = "0.3.3"; 9 10 src = fetchFromGitHub { 11 owner = "openSUSE"; 12 repo = "snapper"; 13 rev = "v${version}"; 14 - sha256 = "12c2ygaanr4gny4ixnly4vpi0kv7snbg3khr3i5zwridhmdzz9hm"; 15 }; 16 17 nativeBuildInputs = [
··· 5 6 stdenv.mkDerivation rec { 7 name = "snapper-${version}"; 8 + version = "0.5.0"; 9 10 src = fetchFromGitHub { 11 owner = "openSUSE"; 12 repo = "snapper"; 13 rev = "v${version}"; 14 + sha256 = "14hrv23film4iihyclcvc2r2dgxl8w3as50r81xjjc85iyp6yxkm"; 15 }; 16 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 description = "Encrypted networking for regular people"; 32 license = licenses.gpl3; 33 maintainers = with maintainers; [ ehmry ]; 34 - platforms = platforms.unix; 35 }; 36 }
··· 31 description = "Encrypted networking for regular people"; 32 license = licenses.gpl3; 33 maintainers = with maintainers; [ ehmry ]; 34 + platforms = platforms.linux; 35 }; 36 }
+3 -3
pkgs/tools/networking/ferm/default.nix
··· 1 { stdenv, fetchurl, makeWrapper, perl, ebtables, ipset, iptables }: 2 3 stdenv.mkDerivation rec { 4 - version = "2.3.1"; 5 name = "ferm-${version}"; 6 7 src = fetchurl { 8 - url = "http://ferm.foo-projects.org/download/2.3/ferm-${version}.tar.gz"; 9 - sha256 = "1scdnd2jk4787jyr6fxav2598g0x7hjic5b8bj77j8s0hki48m4a"; 10 }; 11 12 buildInputs = [ perl ipset ebtables iptables makeWrapper ];
··· 1 { stdenv, fetchurl, makeWrapper, perl, ebtables, ipset, iptables }: 2 3 stdenv.mkDerivation rec { 4 + version = "2.4.1"; 5 name = "ferm-${version}"; 6 7 src = fetchurl { 8 + url = "http://ferm.foo-projects.org/download/2.4/ferm-${version}.tar.xz"; 9 + sha256 = "1fv8wk513yysp4q0i65rl2m0hg2lxwwgk9ppprsca1xcxrdpsvwa"; 10 }; 11 12 buildInputs = [ perl ipset ebtables iptables makeWrapper ];
+1 -1
pkgs/tools/networking/packetdrill/default.nix
··· 19 description = "Quick, precise tests for entire TCP/UDP/IPv4/IPv6 network stacks"; 20 homepage = https://github.com/google/packetdrill; 21 license = stdenv.lib.licenses.gpl2; 22 - platforms = stdenv.lib.platforms.unix; 23 maintainers = with stdenv.lib.maintainers; [ dmjio cleverca22 ]; 24 }; 25 }
··· 19 description = "Quick, precise tests for entire TCP/UDP/IPv4/IPv6 network stacks"; 20 homepage = https://github.com/google/packetdrill; 21 license = stdenv.lib.licenses.gpl2; 22 + platforms = stdenv.lib.platforms.linux; 23 maintainers = with stdenv.lib.maintainers; [ dmjio cleverca22 ]; 24 }; 25 }
+1 -1
pkgs/tools/networking/redsocks/default.nix
··· 28 homepage = http://darkk.net.ru/redsocks/; 29 license = stdenv.lib.licenses.asl20; 30 maintainers = [ ]; 31 - platforms = stdenv.lib.platforms.all; 32 }; 33 }
··· 28 homepage = http://darkk.net.ru/redsocks/; 29 license = stdenv.lib.licenses.asl20; 30 maintainers = [ ]; 31 + platforms = stdenv.lib.platforms.linux; 32 }; 33 }
+2
pkgs/tools/package-management/nox/default.nix
··· 10 sha256 = "1qcbhdnhdhhv7q6cqdgv0q55ic8fk18526zn2yb12x9r1s0lfp9z"; 11 }; 12 13 buildInputs = [ pythonPackages.pbr git ]; 14 15 propagatedBuildInputs = with pythonPackages; [
··· 10 sha256 = "1qcbhdnhdhhv7q6cqdgv0q55ic8fk18526zn2yb12x9r1s0lfp9z"; 11 }; 12 13 + patches = [ ./nox-review-wip.patch ]; 14 + 15 buildInputs = [ pythonPackages.pbr git ]; 16 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 13 outputs = [ "out" "geoip" ]; 14 15 nativeBuildInputs = [ pkgconfig ]; 16 buildInputs = [ libevent openssl zlib ] ++ 17 stdenv.lib.optionals stdenv.isLinux [ libseccomp systemd libcap ];
··· 12 13 outputs = [ "out" "geoip" ]; 14 15 + enableParallelBuilding = true; 16 + 17 nativeBuildInputs = [ pkgconfig ]; 18 buildInputs = [ libevent openssl zlib ] ++ 19 stdenv.lib.optionals stdenv.isLinux [ libseccomp systemd libcap ];
+1 -1
pkgs/tools/security/trousers/default.nix
··· 29 homepage = http://trousers.sourceforge.net/; 30 license = licenses.cpl10; 31 maintainers = [ maintainers.ak ]; 32 - platforms = platforms.unix; 33 }; 34 } 35
··· 29 homepage = http://trousers.sourceforge.net/; 30 license = licenses.cpl10; 31 maintainers = [ maintainers.ak ]; 32 + platforms = platforms.linux; 33 }; 34 } 35
+1 -1
pkgs/tools/system/gdmap/default.nix
··· 18 homepage = http://gdmap.sourceforge.net; 19 description = "Recursive rectangle map of disk usage"; 20 license = licenses.gpl2; 21 - platforms = platforms.all; 22 maintainers = [ maintainers.bjornfor ]; 23 }; 24 }
··· 18 homepage = http://gdmap.sourceforge.net; 19 description = "Recursive rectangle map of disk usage"; 20 license = licenses.gpl2; 21 + platforms = platforms.linux; 22 maintainers = [ maintainers.bjornfor ]; 23 }; 24 }
+1 -1
pkgs/tools/text/nawk/default.nix
··· 36 homepage = https://www.cs.princeton.edu/~bwk/btl.mirror/; 37 license = stdenv.lib.licenses.mit; 38 maintainers = [ stdenv.lib.maintainers.konimex ]; 39 - platforms = stdenv.lib.platforms.all; 40 }; 41 }
··· 36 homepage = https://www.cs.princeton.edu/~bwk/btl.mirror/; 37 license = stdenv.lib.licenses.mit; 38 maintainers = [ stdenv.lib.maintainers.konimex ]; 39 + platforms = stdenv.lib.platforms.linux; 40 }; 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 spaceOrbit = space-orbit; # addewd 2016-05-23 136 speedtest_cli = speedtest-cli; # added 2015-02-17 137 sqliteInteractive = sqlite-interactive; # added 2014-12-06 138 sshfsFuse = sshfs-fuse; # added 2016-09 139 surf-webkit2 = surf; # added 2017-04-02 140 system_config_printer = system-config-printer; # added 2016-01-03
··· 135 spaceOrbit = space-orbit; # addewd 2016-05-23 136 speedtest_cli = speedtest-cli; # added 2015-02-17 137 sqliteInteractive = sqlite-interactive; # added 2014-12-06 138 + sshfs = sshfs-fuse; # added 2017-08-14 139 sshfsFuse = sshfs-fuse; # added 2016-09 140 surf-webkit2 = surf; # added 2017-04-02 141 system_config_printer = system-config-printer; # added 2016-01-03
+47 -18
pkgs/top-level/all-packages.nix
··· 511 512 awscli = pythonPackages.awscli; # Should be moved out of python-packages.nix 513 514 awslogs = callPackage ../tools/admin/awslogs { }; 515 516 aws_shell = python2Packages.aws_shell; # Should be moved out of python-packages.nix ··· 1234 asunder = callPackage ../applications/audio/asunder { }; 1235 1236 autossh = callPackage ../tools/networking/autossh { }; 1237 1238 asynk = callPackage ../tools/networking/asynk { }; 1239 ··· 4894 4895 ttmkfdir = callPackage ../tools/misc/ttmkfdir { }; 4896 4897 udunits = callPackage ../development/libraries/udunits { }; 4898 4899 uemacs = callPackage ../applications/editors/uemacs { }; ··· 5822 inherit (gnome2) GConf gnome_vfs; 5823 }; 5824 5825 openjdk = openjdk8; 5826 5827 jdk7 = openjdk7 // { outputs = [ "out" ]; }; ··· 5838 lib.setName "openjre-${lib.getVersion pkgs.openjdk8.jre}-headless" 5839 (lib.addMetaAttrs { outputsToInstall = [ "jre" ]; } 5840 ((openjdk8.override { minimal = true; }).jre // { outputs = [ "jre" ]; })); 5841 5842 jdk = jdk8; 5843 jre = jre8; ··· 6292 beam = callPackage ./beam-packages.nix { }; 6293 6294 inherit (beam.interpreters) 6295 - erlang erlang_odbc erlang_javac erlang_odbc_javac 6296 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; 6304 6305 inherit (beam.packages.erlang) 6306 rebar rebar3-open rebar3 ··· 7909 7910 eigen2 = callPackage ../development/libraries/eigen/2.0.nix {}; 7911 7912 - vmmlib = callPackage ../development/libraries/vmmlib {}; 7913 7914 elastix = callPackage ../development/libraries/science/biology/elastix { }; 7915 ··· 8236 # A GMP fork 8237 mpir = callPackage ../development/libraries/mpir {}; 8238 8239 - gns3-gui = callPackage ../applications/networking/gns3/gui.nix { }; 8240 - gns3-server = callPackage ../applications/networking/gns3/server.nix { }; 8241 8242 gobjectIntrospection = callPackage ../development/libraries/gobject-introspection { 8243 nixStoreDir = config.nix.storeDir or builtins.storeDir; ··· 12057 inherit (linuxPackages) kernel; 12058 }; 12059 12060 - fuse = callPackage ../os-specific/linux/fuse { 12061 utillinux = utillinuxMinimal; 12062 }; 12063 12064 fusionio-util = callPackage ../os-specific/linux/fusionio/util.nix { }; 12065 ··· 15727 15728 pavucontrol = callPackage ../applications/audio/pavucontrol { }; 15729 15730 - paraview = callPackage ../applications/graphics/paraview { }; 15731 15732 packet = callPackage ../development/tools/packet { }; 15733 ··· 16526 enableTelepathy = config.tomahawk.enableTelepathy or false; 16527 quazip = quazip_qt4; 16528 }; 16529 16530 torchPackages = recurseIntoAttrs ( callPackage ../applications/science/machine-learning/torch { 16531 lua = luajit ; ··· 17765 17766 tome4 = callPackage ../games/tome4 { }; 17767 17768 - trackballs = callPackage ../games/trackballs { 17769 - debug = false; 17770 - guile = guile_1_8; 17771 - }; 17772 17773 tremulous = callPackage ../games/tremulous { }; 17774 ··· 17812 17813 vapor = callPackage ../games/vapor { love = love_0_8; }; 17814 17815 - vapoursynth = callPackage ../development/libraries/vapoursynth { }; 17816 17817 vapoursynth-mvtools = callPackage ../development/libraries/vapoursynth-mvtools { }; 17818 ··· 19159 valauncher = callPackage ../applications/misc/valauncher { }; 19160 19161 vault = callPackage ../tools/security/vault { }; 19162 19163 vbam = callPackage ../misc/emulators/vbam { 19164 ffmpeg = ffmpeg_2;
··· 511 512 awscli = pythonPackages.awscli; # Should be moved out of python-packages.nix 513 514 + awsebcli = callPackage ../tools/virtualization/awsebcli {}; 515 + 516 awslogs = callPackage ../tools/admin/awslogs { }; 517 518 aws_shell = python2Packages.aws_shell; # Should be moved out of python-packages.nix ··· 1236 asunder = callPackage ../applications/audio/asunder { }; 1237 1238 autossh = callPackage ../tools/networking/autossh { }; 1239 + 1240 + assh = callPackage ../tools/networking/assh { }; 1241 1242 asynk = callPackage ../tools/networking/asynk { }; 1243 ··· 4898 4899 ttmkfdir = callPackage ../tools/misc/ttmkfdir { }; 4900 4901 + ttwatch = callPackage ../tools/misc/ttwatch { }; 4902 + 4903 udunits = callPackage ../development/libraries/udunits { }; 4904 4905 uemacs = callPackage ../applications/editors/uemacs { }; ··· 5828 inherit (gnome2) GConf gnome_vfs; 5829 }; 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 + 5840 openjdk = openjdk8; 5841 5842 jdk7 = openjdk7 // { outputs = [ "out" ]; }; ··· 5853 lib.setName "openjre-${lib.getVersion pkgs.openjdk8.jre}-headless" 5854 (lib.addMetaAttrs { outputsToInstall = [ "jre" ]; } 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" ]; })); 5866 5867 jdk = jdk8; 5868 jre = jre8; ··· 6317 beam = callPackage ./beam-packages.nix { }; 6318 6319 inherit (beam.interpreters) 6320 + erlang erlangR17 erlangR18 erlangR19 erlangR20 6321 + erlang_odbc erlang_javac erlang_odbc_javac erlang_nox erlang_basho_R16B02 6322 elixir elixir_1_5 elixir_1_4 elixir_1_3 6323 + lfe lfe_1_2; 6324 6325 inherit (beam.packages.erlang) 6326 rebar rebar3-open rebar3 ··· 7929 7930 eigen2 = callPackage ../development/libraries/eigen/2.0.nix {}; 7931 7932 + vmmlib = callPackage ../development/libraries/vmmlib { 7933 + inherit (darwin.apple_sdk.frameworks) Accelerate CoreGraphics CoreVideo; 7934 + }; 7935 7936 elastix = callPackage ../development/libraries/science/biology/elastix { }; 7937 ··· 8258 # A GMP fork 8259 mpir = callPackage ../development/libraries/mpir {}; 8260 8261 + gns3Packages = callPackage ../applications/networking/gns3 { }; 8262 + gns3-gui = gns3Packages.guiStable; 8263 + gns3-server = gns3Packages.serverStable; 8264 8265 gobjectIntrospection = callPackage ../development/libraries/gobject-introspection { 8266 nixStoreDir = config.nix.storeDir or builtins.storeDir; ··· 12080 inherit (linuxPackages) kernel; 12081 }; 12082 12083 + fusePackages = callPackage ../os-specific/linux/fuse { 12084 utillinux = utillinuxMinimal; 12085 }; 12086 + fuse = lowPrio fusePackages.fuse_2; 12087 + fuse3 = fusePackages.fuse_3; 12088 + fuse-common = hiPrio fusePackages.fuse_3.common; 12089 12090 fusionio-util = callPackage ../os-specific/linux/fusionio/util.nix { }; 12091 ··· 15753 15754 pavucontrol = callPackage ../applications/audio/pavucontrol { }; 15755 15756 + paraview = libsForQt5.callPackage ../applications/graphics/paraview { }; 15757 15758 packet = callPackage ../development/tools/packet { }; 15759 ··· 16552 enableTelepathy = config.tomahawk.enableTelepathy or false; 16553 quazip = quazip_qt4; 16554 }; 16555 + 16556 + topydo = callPackage ../applications/misc/topydo {}; 16557 16558 torchPackages = recurseIntoAttrs ( callPackage ../applications/science/machine-learning/torch { 16559 lua = luajit ; ··· 17793 17794 tome4 = callPackage ../games/tome4 { }; 17795 17796 + trackballs = callPackage ../games/trackballs { }; 17797 17798 tremulous = callPackage ../games/tremulous { }; 17799 ··· 17837 17838 vapor = callPackage ../games/vapor { love = love_0_8; }; 17839 17840 + vapoursynth = callPackage ../development/libraries/vapoursynth { 17841 + inherit (darwin.apple_sdk.frameworks) ApplicationServices; 17842 + }; 17843 17844 vapoursynth-mvtools = callPackage ../development/libraries/vapoursynth-mvtools { }; 17845 ··· 19186 valauncher = callPackage ../applications/misc/valauncher { }; 19187 19188 vault = callPackage ../tools/security/vault { }; 19189 + 19190 + vaultenv = haskellPackages.vaultenv; 19191 19192 vbam = callPackage ../misc/emulators/vbam { 19193 ffmpeg = ffmpeg_2;
+6 -1
pkgs/top-level/beam-packages.nix
··· 6 # Each 7 interpreters = rec { 8 9 - # R18 is the default version. 10 erlang = erlangR19; # The main switch to change default Erlang version. 11 erlang_odbc = erlangR19_odbc; 12 erlang_javac = erlangR19_javac; 13 erlang_odbc_javac = erlangR19_odbc_javac; 14 15 # These are standard Erlang versions, using the generic builder. 16 erlangR16 = lib.callErlang ../development/interpreters/erlang/R16.nix {}; ··· 21 erlangR17_odbc_javac = erlangR17.override { 22 javacSupport = true; odbcSupport = true; 23 }; 24 erlangR18 = lib.callErlang ../development/interpreters/erlang/R18.nix { 25 wxGTK = wxGTK30; 26 }; ··· 29 erlangR18_odbc_javac = erlangR18.override { 30 javacSupport = true; odbcSupport = true; 31 }; 32 erlangR19 = lib.callErlang ../development/interpreters/erlang/R19.nix { 33 wxGTK = wxGTK30; 34 }; ··· 37 erlangR19_odbc_javac = erlangR19.override { 38 javacSupport = true; odbcSupport = true; 39 }; 40 erlangR20 = lib.callErlang ../development/interpreters/erlang/R20.nix { 41 wxGTK = wxGTK30; 42 }; ··· 45 erlangR20_odbc_javac = erlangR20.override { 46 javacSupport = true; odbcSupport = true; 47 }; 48 49 # Bash fork, using custom builder. 50 erlang_basho_R16B02 = lib.callErlang ../development/interpreters/erlang/R16B02-8-basho.nix {
··· 6 # Each 7 interpreters = rec { 8 9 + # R19 is the default version. 10 erlang = erlangR19; # The main switch to change default Erlang version. 11 erlang_odbc = erlangR19_odbc; 12 erlang_javac = erlangR19_javac; 13 erlang_odbc_javac = erlangR19_odbc_javac; 14 + erlang_nox = erlangR19_nox; 15 16 # These are standard Erlang versions, using the generic builder. 17 erlangR16 = lib.callErlang ../development/interpreters/erlang/R16.nix {}; ··· 22 erlangR17_odbc_javac = erlangR17.override { 23 javacSupport = true; odbcSupport = true; 24 }; 25 + erlangR17_nox = erlangR17.override { wxSupport = false; }; 26 erlangR18 = lib.callErlang ../development/interpreters/erlang/R18.nix { 27 wxGTK = wxGTK30; 28 }; ··· 31 erlangR18_odbc_javac = erlangR18.override { 32 javacSupport = true; odbcSupport = true; 33 }; 34 + erlangR18_nox = erlangR18.override { wxSupport = false; }; 35 erlangR19 = lib.callErlang ../development/interpreters/erlang/R19.nix { 36 wxGTK = wxGTK30; 37 }; ··· 40 erlangR19_odbc_javac = erlangR19.override { 41 javacSupport = true; odbcSupport = true; 42 }; 43 + erlangR19_nox = erlangR19.override { wxSupport = false; }; 44 erlangR20 = lib.callErlang ../development/interpreters/erlang/R20.nix { 45 wxGTK = wxGTK30; 46 }; ··· 49 erlangR20_odbc_javac = erlangR20.override { 50 javacSupport = true; odbcSupport = true; 51 }; 52 + erlangR20_nox = erlangR20.override { wxSupport = false; }; 53 54 # Bash fork, using custom builder. 55 erlang_basho_R16B02 = lib.callErlang ../development/interpreters/erlang/R16B02-8-basho.nix {
+29 -38
pkgs/top-level/python-packages.nix
··· 1470 }; 1471 }; 1472 1473 # Build boost for this specific Python version 1474 # TODO: use separate output for libboost_python.so 1475 boost = pkgs.boost.override {inherit python;}; ··· 1557 maintainers = with maintainers; [ bennofs ]; 1558 }; 1559 }; 1560 1561 cgroup-utils = callPackage ../development/python-modules/cgroup-utils {}; 1562 postPatch = '' ··· 2152 sha256 = "1fgg28halsy4g43wjpkbd6l0wqiwyzkd4zjrzbbyzw4dxbsf3xfm"; 2153 }; 2154 2155 - propagatedBuildInputs = 2156 - [ self.dateutil 2157 - self.requests 2158 - self.jmespath 2159 - ]; 2160 2161 - buildInputs = with self; [ docutils mock nose ]; 2162 2163 checkPhase = '' 2164 nosetests -v ··· 4663 }; 4664 }; 4665 4666 - dateutil = callPackage ../development/python-modules/dateutil { }; 4667 4668 # Buildbot 0.8.7p1 needs dateutil==1.5 4669 dateutil_1_5 = buildPythonPackage (rec { ··· 7516 }; 7517 7518 raven = buildPythonPackage rec { 7519 - name = "raven-6.1.0"; 7520 7521 src = pkgs.fetchurl { 7522 url = "mirror://pypi/r/raven/${name}.tar.gz"; 7523 - sha256 = "1158fsjjl8byzl9nw52jhhdssjl6n7l0hjaxm5hdi69v2zxvzjh2"; 7524 }; 7525 7526 # way too many dependencies to run tests ··· 20314 }; 20315 20316 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"; 20320 sha256 = "7e8b7fa74a3bc9b6e90b15b83b9bc2377c78eaeae3447516425f475d5d6932d2"; 20321 }; 20322 ··· 21077 21078 tabulate = buildPythonPackage rec { 21079 version = "0.7.7"; 21080 - name = "tabulate-${version}"; 21081 21082 - src = pkgs.fetchurl { 21083 - url = "mirror://pypi/t/tabulate/${name}.tar.gz"; 21084 sha256 = "83a0b8e17c09f012090a50e1e97ae897300a72b35e0c86c0b53d3bd2ae86d8c6"; 21085 }; 21086 ··· 25762 }; 25763 }; 25764 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 - }; 25788 25789 w3lib = buildPythonPackage rec { 25790 name = "w3lib-${version}";
··· 1470 }; 1471 }; 1472 1473 + blessed = callPackage ../development/python-modules/blessed {}; 1474 + 1475 # Build boost for this specific Python version 1476 # TODO: use separate output for libboost_python.so 1477 boost = pkgs.boost.override {inherit python;}; ··· 1559 maintainers = with maintainers; [ bennofs ]; 1560 }; 1561 }; 1562 + 1563 + cement = callPackage ../development/python-modules/cement {}; 1564 1565 cgroup-utils = callPackage ../development/python-modules/cgroup-utils {}; 1566 postPatch = '' ··· 2156 sha256 = "1fgg28halsy4g43wjpkbd6l0wqiwyzkd4zjrzbbyzw4dxbsf3xfm"; 2157 }; 2158 2159 + propagatedBuildInputs = with self; [ 2160 + dateutil 2161 + jmespath 2162 + docutils 2163 + ordereddict 2164 + simplejson 2165 + ]; 2166 2167 + checkInputs = with self; [ mock nose ]; 2168 2169 checkPhase = '' 2170 nosetests -v ··· 4669 }; 4670 }; 4671 4672 + # Actual name of package 4673 + python-dateutil = callPackage ../development/python-modules/dateutil { }; 4674 + # Alias that we should deprecate 4675 + dateutil = self.python-dateutil; 4676 4677 # Buildbot 0.8.7p1 needs dateutil==1.5 4678 dateutil_1_5 = buildPythonPackage (rec { ··· 7525 }; 7526 7527 raven = buildPythonPackage rec { 7528 + name = "raven-6.2.0"; 7529 7530 src = pkgs.fetchurl { 7531 url = "mirror://pypi/r/raven/${name}.tar.gz"; 7532 + sha256 = "1jmr9kpajfh6fvxbym6fdybmlr14216y0dkbial7ris9pi1pwhf5"; 7533 }; 7534 7535 # way too many dependencies to run tests ··· 20323 }; 20324 20325 semantic-version = buildPythonPackage rec { 20326 + pname = "semantic_version"; 20327 + version = "2.4.2"; 20328 + name = "${pname}${version}"; 20329 + 20330 + src = self.fetchPypi { 20331 + inherit pname version; 20332 sha256 = "7e8b7fa74a3bc9b6e90b15b83b9bc2377c78eaeae3447516425f475d5d6932d2"; 20333 }; 20334 ··· 21089 21090 tabulate = buildPythonPackage rec { 21091 version = "0.7.7"; 21092 + pname = "tabulate"; 21093 + name = "${pname}-${version}"; 21094 21095 + src = fetchPypi { 21096 + inherit pname version; 21097 sha256 = "83a0b8e17c09f012090a50e1e97ae897300a72b35e0c86c0b53d3bd2ae86d8c6"; 21098 }; 21099 ··· 25775 }; 25776 }; 25777 25778 + topydo = throw "python3Packages.topydo was moved to topydo"; # 2017-09-22 25779 25780 w3lib = buildPythonPackage rec { 25781 name = "w3lib-${version}";