lol

Merge branch 'master' into staging

Hydra: ?compare=1429281

+9892 -2428
+12 -1
doc/cross-compilation.xml
··· 253 253 or also with <varname>crossSystem</varname>, in which case packages run on the latter, but all building happens on the former. 254 254 Both parameters take the same schema as the 3 (build, host, and target) platforms defined in the previous section. 255 255 As mentioned above, <literal>lib.systems.examples</literal> has some platforms which are used as arguments for these parameters in practice. 256 - You can use them programmatically, or on the command line like <command>nix-build &lt;nixpkgs&gt; --arg crossSystem '(import &lt;nixpkgs/lib&gt;).systems.examples.fooBarBaz'</command>. 256 + You can use them programmatically, or on the command line: <programlisting> 257 + nix-build &lt;nixpkgs&gt; --arg crossSystem '(import &lt;nixpkgs/lib&gt;).systems.examples.fooBarBaz' -A whatever</programlisting> 257 258 </para> 259 + <note> 260 + <para> 261 + Eventually we would like to make these platform examples an unnecessary convenience so that <programlisting> 262 + nix-build &lt;nixpkgs&gt; --arg crossSystem.config '&lt;arch&gt;-&lt;os&gt;-&lt;vendor&gt;-&lt;abi&gt;' -A whatever</programlisting> 263 + works in the vast majority of cases. 264 + The problem today is dependencies on other sorts of configuration which aren't given proper defaults. 265 + We rely on the examples to crudely to set those configuration parameters in some vaguely sane manner on the users behalf. 266 + Issue <link xlink:href="https://github.com/NixOS/nixpkgs/issues/34274">#34274</link> tracks this inconvenience along with its root cause in crufty configuration options. 267 + </para> 268 + </note> 258 269 <para> 259 270 While one is free to pass both parameters in full, there's a lot of logic to fill in missing fields. 260 271 As discussed in the previous section, only one of <varname>system</varname>, <varname>config</varname>, and <varname>parsed</varname> is needed to infer the other two.
+3 -2
lib/customisation.nix
··· 157 157 158 158 /* Add attributes to each output of a derivation without changing 159 159 the derivation itself. */ 160 - addPassthru = lib.warn "`addPassthru` is deprecated, replace with `extendDerivation true`" 161 - (extendDerivation true); 160 + addPassthru = 161 + lib.warn "`addPassthru drv passthru` is deprecated, replace with `extendDerivation true passthru drv`" 162 + (drv: passthru: extendDerivation true passthru drv); 162 163 163 164 /* Strip a derivation of all non-essential attributes, returning 164 165 only those needed by hydra-eval-jobs. Also strictly evaluate the
+1
lib/maintainers.nix
··· 55 55 antonxy = "Anton Schirg <anton.schirg@posteo.de>"; 56 56 apeschar = "Albert Peschar <albert@peschar.net>"; 57 57 apeyroux = "Alexandre Peyroux <alex@px.io>"; 58 + arcadio = "Arcadio Rubio García <arc@well.ox.ac.uk>"; 58 59 ardumont = "Antoine R. Dumont <eniotna.t@gmail.com>"; 59 60 aristid = "Aristid Breitkreuz <aristidb@gmail.com>"; 60 61 arobyn = "Alexei Robyn <shados@shados.net>";
+1 -20
lib/systems/examples.nix
··· 11 11 12 12 sheevaplug = rec { 13 13 config = "armv5tel-unknown-linux-gnueabi"; 14 - bigEndian = false; 15 14 arch = "armv5tel"; 16 15 float = "soft"; 17 - withTLS = true; 18 16 libc = "glibc"; 19 17 platform = platforms.sheevaplug; 20 - openssl.system = "linux-generic32"; 21 18 }; 22 19 23 20 raspberryPi = rec { 24 21 config = "armv6l-unknown-linux-gnueabihf"; 25 - bigEndian = false; 26 22 arch = "armv6l"; 27 23 float = "hard"; 28 24 fpu = "vfp"; 29 - withTLS = true; 30 25 libc = "glibc"; 31 26 platform = platforms.raspberrypi; 32 - openssl.system = "linux-generic32"; 33 27 }; 34 28 35 29 armv7l-hf-multiplatform = rec { 36 30 config = "arm-unknown-linux-gnueabihf"; 37 - bigEndian = false; 38 31 arch = "armv7-a"; 39 32 float = "hard"; 40 33 fpu = "vfpv3-d16"; 41 - withTLS = true; 42 34 libc = "glibc"; 43 35 platform = platforms.armv7l-hf-multiplatform; 44 - openssl.system = "linux-generic32"; 45 36 }; 46 37 47 38 aarch64-multiplatform = rec { 48 39 config = "aarch64-unknown-linux-gnu"; 49 - bigEndian = false; 50 40 arch = "aarch64"; 51 - withTLS = true; 52 41 libc = "glibc"; 53 42 platform = platforms.aarch64-multiplatform; 54 43 }; ··· 62 51 arch = "armv5tel"; 63 52 config = "armv5tel-unknown-linux-gnueabi"; 64 53 float = "soft"; 65 - 66 - platform = platforms.pogoplug4; 67 - 68 54 libc = "glibc"; 69 - 70 - withTLS = true; 71 - openssl.system = "linux-generic32"; 55 + platform = platforms.pogoplug4; 72 56 }; 73 57 74 58 fuloongminipc = rec { 75 59 config = "mips64el-unknown-linux-gnu"; 76 - bigEndian = false; 77 60 arch = "mips"; 78 61 float = "hard"; 79 - withTLS = true; 80 62 libc = "glibc"; 81 63 platform = platforms.fuloong2f_n32; 82 - openssl.system = "linux-generic32"; 83 64 }; 84 65 85 66 #
+5 -2
lib/systems/inspect.nix
··· 5 5 6 6 rec { 7 7 patterns = rec { 8 - "32bit" = { cpu = { bits = 32; }; }; 9 - "64bit" = { cpu = { bits = 64; }; }; 10 8 i686 = { cpu = cpuTypes.i686; }; 11 9 x86_64 = { cpu = cpuTypes.x86_64; }; 12 10 PowerPC = { cpu = cpuTypes.powerpc; }; ··· 14 12 Arm = { cpu = { family = "arm"; }; }; 15 13 Aarch64 = { cpu = { family = "aarch64"; }; }; 16 14 Mips = { cpu = { family = "mips"; }; }; 15 + RiscV = { cpu = { family = "riscv"; }; }; 16 + Wasm = { cpu = { family = "wasm"; }; }; 17 + 18 + "32bit" = { cpu = { bits = 32; }; }; 19 + "64bit" = { cpu = { bits = 64; }; }; 17 20 BigEndian = { cpu = { significantByte = significantBytes.bigEndian; }; }; 18 21 LittleEndian = { cpu = { significantByte = significantBytes.littleEndian; }; }; 19 22
+4
lib/systems/parse.nix
··· 44 44 x86_64 = { bits = 64; significantByte = littleEndian; family = "x86"; }; 45 45 mips64el = { bits = 32; significantByte = littleEndian; family = "mips"; }; 46 46 powerpc = { bits = 32; significantByte = bigEndian; family = "power"; }; 47 + riscv32 = { bits = 32; significantByte = littleEndian; family = "riscv"; }; 48 + riscv64 = { bits = 64; significantByte = littleEndian; family = "riscv"; }; 49 + wasm32 = { bits = 32; significantByte = littleEndian; family = "wasm"; }; 50 + wasm64 = { bits = 64; significantByte = littleEndian; family = "wasm"; }; 47 51 }; 48 52 49 53 isVendor = isType "vendor";
+12 -1
nixos/doc/manual/release-notes/rl-1803.xml
··· 133 133 </listitem> 134 134 <listitem> 135 135 <para> 136 - <literal>lib.addPassthru</literal> is removed. Use <literal>lib.extendDerivation true</literal> instead. <emphasis role="strong">TODO: actually remove it before branching 18.03 off.</emphasis> 136 + <literal>lib.addPassthru drv passthru</literal> is removed. Use <literal>lib.extendDerivation true passthru drv</literal> instead. <emphasis role="strong">TODO: actually remove it before branching 18.03 off.</emphasis> 137 137 </para> 138 138 </listitem> 139 139 <listitem> ··· 147 147 <listitem> 148 148 <para> 149 149 The <varname>hardware.amdHybridGraphics.disable</varname> option was removed for lack of a maintainer. If you still need this module, you may wish to include a copy of it from an older version of nixos in your imports. 150 + </para> 151 + </listitem> 152 + <listitem> 153 + <para> 154 + The merging of config options for <varname>services.postfix.config</varname> 155 + was buggy. Previously, if other options in the Postfix module like 156 + <varname>services.postfix.useSrs</varname> were set and the user set config 157 + options that were also set by such options, the resulting config wouldn't 158 + include all options that were needed. They are now merged correctly. If 159 + config options need to be overridden, <literal>lib.mkForce</literal> or 160 + <literal>lib.mkOverride</literal> can be used. 150 161 </para> 151 162 </listitem> 152 163 </itemizedlist>
+10
nixos/modules/installer/cd-dvd/sd-image-aarch64.nix
··· 27 27 boot.loader.grub.enable = false; 28 28 boot.loader.generic-extlinux-compatible.enable = true; 29 29 30 + boot.consoleLogLevel = lib.mkDefault 7; 30 31 boot.kernelPackages = pkgs.linuxPackages_latest; 31 32 32 33 # The serial ports listed here are: ··· 42 43 populateBootCommands = let 43 44 configTxt = pkgs.writeText "config.txt" '' 44 45 kernel=u-boot-rpi3.bin 46 + 47 + # Boot in 64-bit mode. 45 48 arm_control=0x200 49 + 50 + # U-Boot used to need this to work, regardless of whether UART is actually used or not. 51 + # TODO: check when/if this can be removed. 46 52 enable_uart=1 53 + 54 + # Prevent the firmware from smashing the framebuffer setup done by the mainline kernel 55 + # when attempting to show low-voltage or overtemperature warnings. 56 + avoid_warnings=1 47 57 ''; 48 58 in '' 49 59 (cd ${pkgs.raspberrypifw}/share/raspberrypi/boot && cp bootcode.bin fixup*.dat start*.elf $NIX_BUILD_TOP/boot/)
+1
nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
··· 27 27 boot.loader.grub.enable = false; 28 28 boot.loader.generic-extlinux-compatible.enable = true; 29 29 30 + boot.consoleLogLevel = lib.mkDefault 7; 30 31 boot.kernelPackages = pkgs.linuxPackages_latest; 31 32 # The serial ports listed here are: 32 33 # - ttyS0: for Tegra (Jetson TK1)
+1
nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
··· 27 27 boot.loader.grub.enable = false; 28 28 boot.loader.generic-extlinux-compatible.enable = true; 29 29 30 + boot.consoleLogLevel = lib.mkDefault 7; 30 31 boot.kernelPackages = pkgs.linuxPackages_rpi; 31 32 32 33 # FIXME: this probably should be in installation-device.nix
+67 -72
nixos/modules/services/mail/postfix.nix
··· 15 15 haveVirtual = cfg.virtual != ""; 16 16 17 17 clientAccess = 18 - if (cfg.dnsBlacklistOverrides != "") 19 - then [ "check_client_access hash:/etc/postfix/client_access" ] 20 - else []; 18 + optional (cfg.dnsBlacklistOverrides != "") 19 + "check_client_access hash:/etc/postfix/client_access"; 21 20 22 21 dnsBl = 23 - if (cfg.dnsBlacklists != []) 24 - then [ (concatStringsSep ", " (map (s: "reject_rbl_client " + s) cfg.dnsBlacklists)) ] 25 - else []; 22 + optionals (cfg.dnsBlacklists != []) 23 + (map (s: "reject_rbl_client " + s) cfg.dnsBlacklists); 26 24 27 25 clientRestrictions = concatStringsSep ", " (clientAccess ++ dnsBl); 28 26 29 27 mainCf = let 30 28 escape = replaceStrings ["$"] ["$$"]; 31 - mkList = items: "\n " + concatStringsSep "\n " items; 29 + mkList = items: "\n " + concatStringsSep ",\n " items; 32 30 mkVal = value: 33 31 if isList value then mkList value 34 32 else " " + (if value == true then "yes" ··· 36 34 else toString value); 37 35 mkEntry = name: value: "${escape name} =${mkVal value}"; 38 36 in 39 - concatStringsSep "\n" (mapAttrsToList mkEntry (recursiveUpdate defaultConf cfg.config)) 37 + concatStringsSep "\n" (mapAttrsToList mkEntry cfg.config) 40 38 + "\n" + cfg.extraConfig; 41 - 42 - defaultConf = { 43 - compatibility_level = "9999"; 44 - mail_owner = user; 45 - default_privs = "nobody"; 46 - 47 - # NixOS specific locations 48 - data_directory = "/var/lib/postfix/data"; 49 - queue_directory = "/var/lib/postfix/queue"; 50 - 51 - # Default location of everything in package 52 - meta_directory = "${pkgs.postfix}/etc/postfix"; 53 - command_directory = "${pkgs.postfix}/bin"; 54 - sample_directory = "/etc/postfix"; 55 - newaliases_path = "${pkgs.postfix}/bin/newaliases"; 56 - mailq_path = "${pkgs.postfix}/bin/mailq"; 57 - readme_directory = false; 58 - sendmail_path = "${pkgs.postfix}/bin/sendmail"; 59 - daemon_directory = "${pkgs.postfix}/libexec/postfix"; 60 - manpage_directory = "${pkgs.postfix}/share/man"; 61 - html_directory = "${pkgs.postfix}/share/postfix/doc/html"; 62 - shlib_directory = false; 63 - relayhost = if cfg.relayHost == "" then "" else 64 - if cfg.lookupMX 65 - then "${cfg.relayHost}:${toString cfg.relayPort}" 66 - else "[${cfg.relayHost}]:${toString cfg.relayPort}"; 67 - 68 - mail_spool_directory = "/var/spool/mail/"; 69 - setgid_group = setgidGroup; 70 - } 71 - // optionalAttrs config.networking.enableIPv6 { inet_protocols = "all"; } 72 - // optionalAttrs (cfg.networks != null) { mynetworks = cfg.networks; } 73 - // optionalAttrs (cfg.networksStyle != "") { mynetworks_style = cfg.networksStyle; } 74 - // optionalAttrs (cfg.hostname != "") { myhostname = cfg.hostname; } 75 - // optionalAttrs (cfg.domain != "") { mydomain = cfg.domain; } 76 - // optionalAttrs (cfg.origin != "") { myorigin = cfg.origin; } 77 - // optionalAttrs (cfg.destination != null) { mydestination = cfg.destination; } 78 - // optionalAttrs (cfg.relayDomains != null) { relay_domains = cfg.relayDomains; } 79 - // optionalAttrs (cfg.recipientDelimiter != "") { recipient_delimiter = cfg.recipientDelimiter; } 80 - // optionalAttrs haveAliases { alias_maps = "${cfg.aliasMapType}:/etc/postfix/aliases"; } 81 - // optionalAttrs haveTransport { transport_maps = "hash:/etc/postfix/transport"; } 82 - // optionalAttrs haveVirtual { virtual_alias_maps = "${cfg.virtualMapType}:/etc/postfix/virtual"; } 83 - // optionalAttrs (cfg.dnsBlacklists != []) { smtpd_client_restrictions = clientRestrictions; } 84 - // optionalAttrs cfg.useSrs { 85 - sender_canonical_maps = "tcp:127.0.0.1:10001"; 86 - sender_canonical_classes = "envelope_sender"; 87 - recipient_canonical_maps = "tcp:127.0.0.1:10002"; 88 - recipient_canonical_classes= "envelope_recipient"; 89 - } 90 - // optionalAttrs cfg.enableHeaderChecks { header_checks = "regexp:/etc/postfix/header_checks"; } 91 - // optionalAttrs (cfg.sslCert != "") { 92 - smtp_tls_CAfile = cfg.sslCACert; 93 - smtp_tls_cert_file = cfg.sslCert; 94 - smtp_tls_key_file = cfg.sslKey; 95 - 96 - smtp_use_tls = true; 97 - 98 - smtpd_tls_CAfile = cfg.sslCACert; 99 - smtpd_tls_cert_file = cfg.sslCert; 100 - smtpd_tls_key_file = cfg.sslKey; 101 - 102 - smtpd_use_tls = true; 103 - }; 104 39 105 40 masterCfOptions = { options, config, name, ... }: { 106 41 options = { ··· 507 442 508 443 config = mkOption { 509 444 type = with types; attrsOf (either bool (either str (listOf str))); 510 - default = defaultConf; 511 445 description = '' 512 446 The main.cf configuration file as key value set. 513 447 ''; ··· 748 682 ${pkgs.postfix}/bin/postfix set-permissions config_directory=/var/lib/postfix/conf 749 683 ''; 750 684 }; 685 + 686 + services.postfix.config = (mapAttrs (_: v: mkDefault v) { 687 + compatibility_level = "9999"; 688 + mail_owner = cfg.user; 689 + default_privs = "nobody"; 690 + 691 + # NixOS specific locations 692 + data_directory = "/var/lib/postfix/data"; 693 + queue_directory = "/var/lib/postfix/queue"; 694 + 695 + # Default location of everything in package 696 + meta_directory = "${pkgs.postfix}/etc/postfix"; 697 + command_directory = "${pkgs.postfix}/bin"; 698 + sample_directory = "/etc/postfix"; 699 + newaliases_path = "${pkgs.postfix}/bin/newaliases"; 700 + mailq_path = "${pkgs.postfix}/bin/mailq"; 701 + readme_directory = false; 702 + sendmail_path = "${pkgs.postfix}/bin/sendmail"; 703 + daemon_directory = "${pkgs.postfix}/libexec/postfix"; 704 + manpage_directory = "${pkgs.postfix}/share/man"; 705 + html_directory = "${pkgs.postfix}/share/postfix/doc/html"; 706 + shlib_directory = false; 707 + mail_spool_directory = "/var/spool/mail/"; 708 + setgid_group = cfg.setgidGroup; 709 + }) 710 + // optionalAttrs (cfg.relayHost != "") { relayhost = if cfg.lookupMX 711 + then "${cfg.relayHost}:${toString cfg.relayPort}" 712 + else "[${cfg.relayHost}]:${toString cfg.relayPort}"; } 713 + // optionalAttrs config.networking.enableIPv6 { inet_protocols = mkDefault "all"; } 714 + // optionalAttrs (cfg.networks != null) { mynetworks = cfg.networks; } 715 + // optionalAttrs (cfg.networksStyle != "") { mynetworks_style = cfg.networksStyle; } 716 + // optionalAttrs (cfg.hostname != "") { myhostname = cfg.hostname; } 717 + // optionalAttrs (cfg.domain != "") { mydomain = cfg.domain; } 718 + // optionalAttrs (cfg.origin != "") { myorigin = cfg.origin; } 719 + // optionalAttrs (cfg.destination != null) { mydestination = cfg.destination; } 720 + // optionalAttrs (cfg.relayDomains != null) { relay_domains = cfg.relayDomains; } 721 + // optionalAttrs (cfg.recipientDelimiter != "") { recipient_delimiter = cfg.recipientDelimiter; } 722 + // optionalAttrs haveAliases { alias_maps = [ "${cfg.aliasMapType}:/etc/postfix/aliases" ]; } 723 + // optionalAttrs haveTransport { transport_maps = [ "hash:/etc/postfix/transport" ]; } 724 + // optionalAttrs haveVirtual { virtual_alias_maps = [ "${cfg.virtualMapType}:/etc/postfix/virtual" ]; } 725 + // optionalAttrs (cfg.dnsBlacklists != []) { smtpd_client_restrictions = clientRestrictions; } 726 + // optionalAttrs cfg.useSrs { 727 + sender_canonical_maps = [ "tcp:127.0.0.1:10001" ]; 728 + sender_canonical_classes = [ "envelope_sender" ]; 729 + recipient_canonical_maps = [ "tcp:127.0.0.1:10002" ]; 730 + recipient_canonical_classes = [ "envelope_recipient" ]; 731 + } 732 + // optionalAttrs cfg.enableHeaderChecks { header_checks = [ "regexp:/etc/postfix/header_checks" ]; } 733 + // optionalAttrs (cfg.sslCert != "") { 734 + smtp_tls_CAfile = cfg.sslCACert; 735 + smtp_tls_cert_file = cfg.sslCert; 736 + smtp_tls_key_file = cfg.sslKey; 737 + 738 + smtp_use_tls = true; 739 + 740 + smtpd_tls_CAfile = cfg.sslCACert; 741 + smtpd_tls_cert_file = cfg.sslCert; 742 + smtpd_tls_key_file = cfg.sslKey; 743 + 744 + smtpd_use_tls = true; 745 + }; 751 746 752 747 services.postfix.masterConfig = { 753 748 smtp_inet = {
+8 -5
nixos/modules/services/network-filesystems/samba.nix
··· 54 54 }; 55 55 56 56 serviceConfig = { 57 - ExecStart = "${samba}/sbin/${appName} ${args}"; 57 + ExecStart = "${samba}/sbin/${appName} --foreground --no-process-group ${args}"; 58 58 ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 59 59 LimitNOFILE = 16384; 60 + PIDFile = "/run/${appName}.pid"; 60 61 Type = "notify"; 62 + NotifyAccess = "all"; #may not do anything... 61 63 }; 62 64 63 65 restartTriggers = [ configFile ]; ··· 231 233 after = [ "samba-setup.service" "network.target" ]; 232 234 wantedBy = [ "multi-user.target" ]; 233 235 }; 234 - 236 + # Refer to https://github.com/samba-team/samba/tree/master/packaging/systemd 237 + # for correct use with systemd 235 238 services = { 236 - "samba-smbd" = daemonService "smbd" "-F"; 237 - "samba-nmbd" = mkIf cfg.enableNmbd (daemonService "nmbd" "-F"); 238 - "samba-winbindd" = mkIf cfg.enableWinbindd (daemonService "winbindd" "-F"); 239 + "samba-smbd" = daemonService "smbd" ""; 240 + "samba-nmbd" = mkIf cfg.enableNmbd (daemonService "nmbd" ""); 241 + "samba-winbindd" = mkIf cfg.enableWinbindd (daemonService "winbindd" ""); 239 242 "samba-setup" = { 240 243 description = "Samba Setup Task"; 241 244 script = setupScript;
+1 -1
nixos/tests/statsd.nix
··· 1 - import ./make-test.nix ({ pkgs, lib }: 1 + import ./make-test.nix ({ pkgs, lib, ... }: 2 2 3 3 with lib; 4 4
+7 -6
pkgs/applications/audio/distrho/default.nix
··· 1 - { stdenv, fetchgit, alsaLib, fftwSinglePrec, freetype, libjack2 1 + { stdenv, fetchFromGitHub, alsaLib, fftwSinglePrec, freetype, libjack2 2 2 , libxslt, lv2, pkgconfig, premake3, xorg, ladspa-sdk }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "distrho-ports-unstable-2017-10-10"; 5 + name = "distrho-ports-unstable-2018-01-01"; 6 6 7 - src = fetchgit { 8 - url = "https://github.com/DISTRHO/DISTRHO-Ports.git"; 9 - rev = "e11e2b204c14b8e370a0bf5beafa5f162fedb8e9"; 10 - sha256 = "1nd542iian9kr2ldaf7fkkgf900ryzqigks999d1jhms6p0amvfv"; 7 + src = fetchFromGitHub { 8 + owner = "DISTRHO"; 9 + repo = "DISTRHO-Ports"; 10 + rev = "b200e7409aa9f6612c4d948932f6ce6f0a087f5a"; 11 + sha256 = "0672r0a9s6skzkxpjdraziwh5k8ivrfzvi4zcpkcg3zrv2hia2vz"; 11 12 }; 12 13 13 14 patchPhase = ''
+3 -3
pkgs/applications/editors/android-studio/default.nix
··· 27 27 28 28 preview = mkStudio { 29 29 pname = "android-studio-preview"; 30 - version = "3.1.0.7"; # "Android Studio 3.1 Canary 8" 31 - build = "173.4529993"; 32 - sha256Hash = "0mfkzdxbrdqlfqqx83dr9ibkpjwjf54kka9qra9j31zqcmy8rd53"; 30 + version = "3.1.0.8"; # "Android Studio 3.1 Canary 9" 31 + build = "173.4559767"; 32 + sha256Hash = "0wy3bqd4wvvcwlqcv06mwlqgc119pjpc102ix3yacqvki9qyi1r0"; 33 33 34 34 meta = stable.meta // { 35 35 description = "The Official IDE for Android (preview version)";
+6
pkgs/applications/editors/moe/default.nix
··· 13 13 sha256 = "1wsfzy0iia0c89wnx1ilzw54wqcmlp2nz8mkpvc393z0zagrx48q"; 14 14 }; 15 15 16 + prePatch = '' 17 + substituteInPlace window_vector.cc --replace \ 18 + "insert( 0U, 1," \ 19 + "insert( 0U, 1U," 20 + ''; 21 + 16 22 nativeBuildInputs = [ lzip ]; 17 23 buildInputs = [ ncurses ]; 18 24
+2 -2
pkgs/applications/editors/vbindiff/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "vbindiff-${version}"; 5 - version = "3.0_beta4"; 5 + version = "3.0_beta5"; 6 6 7 7 buildInputs = [ ncurses ]; 8 8 9 9 src = fetchurl { 10 10 url = "https://www.cjmweb.net/vbindiff/${name}.tar.gz"; 11 - sha256 = "0gcqy4ggp60qc6blq1q1gc90xmhip1m6yvvli4hdqlz9zn3mlpbx"; 11 + sha256 = "1f1kj4jki08bnrwpzi663mjfkrx4wnfpzdfwd2qgijlkx5ysjkgh"; 12 12 }; 13 13 14 14 meta = {
+3 -3
pkgs/applications/graphics/gthumb/default.nix
··· 6 6 stdenv.mkDerivation rec { 7 7 name = "${pname}-${version}"; 8 8 pname = "gthumb"; 9 - version = "${major}.3"; 10 - major = "3.5"; 9 + version = "${major}.0"; 10 + major = "3.6"; 11 11 12 12 src = fetchurl { 13 13 url = "mirror://gnome/sources/${pname}/${major}/${name}.tar.xz"; 14 - sha256 = "0hka1b3l8mf94zsk7jff87wsb8bz4pj5pixjrs0w2j8jbsa9sggk"; 14 + sha256 = "1zc7myvnzgq7dawjg03rqvwfad7p938m20f25sfhv65jsfq8n928"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
+24
pkgs/applications/graphics/meme/default.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "meme-unstable-${version}"; 5 + version = "2017-09-10"; 6 + 7 + owner = "nomad-software"; 8 + repo = "meme"; 9 + goPackagePath = "github.com/${owner}/${repo}"; 10 + 11 + src = fetchFromGitHub { 12 + inherit owner repo; 13 + rev = "a6521f2eecb0aac22937b0013747ed9cb40b81ea"; 14 + sha256 = "1gbsv1d58ck6mj89q31s5b0ppw51ab76yqgz39jgwqnkidvzdfly"; 15 + }; 16 + 17 + meta = with stdenv.lib; { 18 + description = "A command line utility for creating image macro style memes"; 19 + homepage = "https://github.com/nomad-software/meme"; 20 + license = licenses.mit; 21 + maintainers = [ maintainers.fgaz ]; 22 + platforms = with platforms; linux ++ darwin; 23 + }; 24 + }
+2 -2
pkgs/applications/misc/j4-dmenu-desktop/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "j4-dmenu-desktop-${version}"; 5 - version = "2.15"; 5 + version = "2.16"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "enkore"; 9 9 repo = "j4-dmenu-desktop"; 10 10 rev = "r${version}"; 11 - sha256 = "1yn45i3hpim2hriaqkq7wmawwsmkynvy2xgz7dg6p5r0ikw5bn1r"; 11 + sha256 = "0714cri8bwpimmiirhzrkbri4xi24k0za6i1aw94d3fnblk2dg9f"; 12 12 }; 13 13 14 14 postPatch = ''
+2 -2
pkgs/applications/misc/styx/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "styx-${version}"; 7 - version = "0.7.0"; 7 + version = "0.7.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "styx-static"; 11 11 repo = "styx"; 12 12 rev = "v${version}"; 13 - sha256 = "044zpj92w96csaddf1qnnc2w2w9iq4b7rzlqqsqnd1s0a87lm1qd"; 13 + sha256 = "01lklz7l9klqmmsncikwjnk3glzyz15c30118s82yd1chwpwhpfl"; 14 14 }; 15 15 16 16 server = "${caddy.bin}/bin/caddy";
+4 -8
pkgs/applications/networking/browsers/chromium/common.nix
··· 138 138 # To enable ChromeCast, go to chrome://flags and set "Load Media Router Component Extension" to Enabled 139 139 # Fixes Chromecast: https://bugs.chromium.org/p/chromium/issues/detail?id=734325 140 140 ./patches/fix_network_api_crash.patch 141 - ] # As major versions are added, you can trawl the gentoo and arch repos at 141 + # As major versions are added, you can trawl the gentoo and arch repos at 142 142 # https://gitweb.gentoo.org/repo/gentoo.git/plain/www-client/chromium/ 143 143 # https://git.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/chromium 144 144 # for updated patches and hints about build flags 145 - ++ optionals (versionRange "63" "64") [ 146 - ./patches/chromium-gcc5-r4.patch 147 - (gentooPatch "chromium-gcc5-r5.patch" "0z7rggizzg85wfr8zhw0yfwd3q69lsh3yp297s939jgzp66cwwkw") 148 - ./patches/include-math-for-round.patch 145 + 146 + # (gentooPatch "<patch>" "0000000000000000000000000000000000000000000000000000000000000000") 149 147 ] ++ optionals (versionRange "64" "65") [ 150 - ## This is a first guess on what patches are needed for 64 151 - # (gentooPatch "chromium-memcpy-r0.patch" "1d3vra59wjg2lva7ddv55ff6l57mk9k50llsplr0b7vxk0lh0ps5") 152 148 (gentooPatch "chromium-cups-r0.patch" "0hyjlfh062c8h54j4b27y4dq5yzd4w6mxzywk3s02yf6cj3cbkrl") 153 - # (gentooPatch "chromium-clang-r2.patch" "1lsqr7cbjsad5pyyp6kyrfmcgcqy2z2yzgp4zxwjq95fknrfi5a4") 154 149 (gentooPatch "chromium-angle-r0.patch" "0izdrqwsyr48117dhvwdsk8c6dkrnq2njida1q4mb1lagvwbz7gc") 155 150 ] ++ optional enableWideVine ./patches/widevine.patch; 156 151 ··· 215 210 proprietary_codecs = false; 216 211 use_sysroot = false; 217 212 use_gnome_keyring = gnomeKeyringSupport; 213 + ## FIXME remove use_gconf after chromium 65 has become stable 218 214 use_gconf = gnomeSupport; 219 215 use_gio = gnomeSupport; 220 216 enable_nacl = enableNaCl;
+9 -9
pkgs/applications/networking/browsers/chromium/upstream-info.nix
··· 1 1 # This file is autogenerated from update.sh in the same directory. 2 2 { 3 3 beta = { 4 - sha256 = "1mkschqjdn3n3709qkxha1zs626vhh33dp80gi3h6hhk8w0gx4sb"; 5 - sha256bin64 = "05hyfm9j127mprj2wjrq3m9qm4zp3bny40164vscr6vkfxvmjh03"; 6 - version = "64.0.3282.71"; 4 + sha256 = "09ris0aj743x3mh7q45z55byxwmw7h6klhibbcazb1axj85ahbil"; 5 + sha256bin64 = "18833sqqfssjvcmf6v7wj9h9gsc07wr09cms5c0k7f8v9dqysc7r"; 6 + version = "64.0.3282.119"; 7 7 }; 8 8 dev = { 9 - sha256 = "1b7f1bs9i7dhrccssn5zk4s62sfpmkj8b4w6aq8g4jbyg7hw9pql"; 10 - sha256bin64 = "0lp8m62p8h60hi8h5nskcjdh6k8vq4g00xbq5limg7d6pgc0vyyz"; 11 - version = "65.0.3311.3"; 9 + sha256 = "04vrcsvlanjljah3pbgfz49ygwr9i6zymr1a09kldrnykv770c5l"; 10 + sha256bin64 = "016s8lh94i0m3zyld32vzqfw1c0s97sa143dyww7x26b2mp93lcc"; 11 + version = "65.0.3322.3"; 12 12 }; 13 13 stable = { 14 - sha256 = "139x3cbc5pa14x69493ic8i2ank12c9fwiq6pqm11aps88n6ri44"; 15 - sha256bin64 = "03r97jg1fcb23k1xg5qnw5hp5p9m8anyx346nchbas63rfn439km"; 16 - version = "63.0.3239.132"; 14 + sha256 = "09ris0aj743x3mh7q45z55byxwmw7h6klhibbcazb1axj85ahbil"; 15 + sha256bin64 = "18a61myi3wlrk9zr7jjad1zi8k0ls9cnl2nyhjibjlwiz3npwbm5"; 16 + version = "64.0.3282.119"; 17 17 }; 18 18 }
+2 -3
pkgs/applications/networking/browsers/google-chrome/default.nix
··· 38 38 39 39 with stdenv.lib; 40 40 41 - with chromium.upstream-info; 42 - 43 41 let 44 42 opusWithCustomModes = libopus.override { 45 43 withCustomModes = true; 46 44 }; 47 45 46 + version = chromium.upstream-info.version; 48 47 gtk = if (versionAtLeast version "59.0.0.0") then gtk3 else gtk2; 49 48 gnome = if (versionAtLeast version "59.0.0.0") then gnome3 else gnome2; 50 49 ··· 68 67 69 68 name = "google-chrome${suffix}-${version}"; 70 69 71 - src = binary; 70 + src = chromium.upstream-info.binary; 72 71 73 72 buildInputs = [ 74 73 patchelf
+3 -3
pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
··· 98 98 fteLibPath = makeLibraryPath [ stdenv.cc.cc gmp ]; 99 99 100 100 # Upstream source 101 - version = "7.0.11"; 101 + version = "7.5"; 102 102 103 103 lang = "en-US"; 104 104 ··· 108 108 "https://github.com/TheTorProject/gettorbrowser/releases/download/v${version}/tor-browser-linux64-${version}_${lang}.tar.xz" 109 109 "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux64-${version}_${lang}.tar.xz" 110 110 ]; 111 - sha256 = "0i42jxdka0sq8fp6lj64n0az6m4g72il9qhdn63p0h7y4204i2v4"; 111 + sha256 = "1ia8qv5hj7zrrli5d9qf65s3rlrls0whrx3q96lw63x2gn05nwv7"; 112 112 }; 113 113 114 114 "i686-linux" = fetchurl { ··· 116 116 "https://github.com/TheTorProject/gettorbrowser/releases/download/v${version}/tor-browser-linux32-${version}_${lang}.tar.xz" 117 117 "https://dist.torproject.org/torbrowser/${version}/tor-browser-linux32-${version}_${lang}.tar.xz" 118 118 ]; 119 - sha256 = "1p9s6wqghpkml662vnp5194i8gb9bkqxdr96fmw0fh305cyk25k0"; 119 + sha256 = "1sw1n7jsagyl5cjs265x3k9jzh0j0yh767ixcy17vif5f9dfyzak"; 120 120 }; 121 121 }; 122 122 in
+2 -2
pkgs/applications/networking/instant-messengers/slack/default.nix
··· 4 4 5 5 let 6 6 7 - version = "3.0.0"; 7 + version = "3.0.5"; 8 8 9 9 rpath = stdenv.lib.makeLibraryPath [ 10 10 alsaLib ··· 46 46 if stdenv.system == "x86_64-linux" then 47 47 fetchurl { 48 48 url = "https://downloads.slack-edge.com/linux_releases/slack-desktop-${version}-amd64.deb"; 49 - sha256 = "17hq31x9k03rvj2sdsdfj6j75v30yrywlsbca4d56a0qsdzysxkw"; 49 + sha256 = "13im5m119cp5v0gvr1vpxjqskr8rvl6pii91b5x522wm7plfhj8s"; 50 50 } 51 51 else 52 52 throw "Slack is not supported on ${stdenv.system}";
+237 -237
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 1 { 2 - version = "52.5.2"; 2 + version = "52.6.0"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/ar/thunderbird-52.5.2.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/ar/thunderbird-52.6.0.tar.bz2"; 5 5 locale = "ar"; 6 6 arch = "linux-x86_64"; 7 - sha512 = "637ca11b07a86b806ea274cf3cd9a47dc2d23a2700203c1ddfb25bac15bb4ed1eb4749f630021dd0f33f00c43539954d9fecc192d3582e752940ade0930422ef"; 7 + sha512 = "fa4cc97701d7a44e2256149497a72a7057f3b677163b85029a9721fa03b4b518fa8c3564ad727824faf3c81242bc7dfe673f7fbbe1bb2b92aea16b779df8d6f5"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/ast/thunderbird-52.5.2.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/ast/thunderbird-52.6.0.tar.bz2"; 10 10 locale = "ast"; 11 11 arch = "linux-x86_64"; 12 - sha512 = "78c6da93f60134c9b033f270d04b983713dd84ba6af8cd1c0529471dbd3c860085491bc54f0fd37a8373dd5164b064653d9ae6ab12f7748a9722aa61472ed7cb"; 12 + sha512 = "f40ae6c5f72ad797b42c6ada1302eebf63b649bfa2d5838cea7371ad92de8e1eaaa79cd115993d96dd873bca996b12fb20c8f4f40ee4db144cc2bbd5a27ef182"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/be/thunderbird-52.5.2.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/be/thunderbird-52.6.0.tar.bz2"; 15 15 locale = "be"; 16 16 arch = "linux-x86_64"; 17 - sha512 = "7081fddbc88cdd0280bb35c7f16c33f8935d639d91e2ed4258e344565ea6f27d1ed8f2b5daa5d2e861e92357ba65c4c4b05260fab83f0bfaf6e2fa44ab081fbb"; 17 + sha512 = "768453738bda8b0040d3b4cb21b1695dacaa54cacac5ec3130d5e4ebeea4e0ad8303ff2860fe5cfe5915df951aabe2f8a069b979abdc8ab8eb161811d93a8558"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/bg/thunderbird-52.5.2.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/bg/thunderbird-52.6.0.tar.bz2"; 20 20 locale = "bg"; 21 21 arch = "linux-x86_64"; 22 - sha512 = "d5d21dfea54ac7c75c515cd95f0140a21451a3b2c533cc95f0a519a13b950e01c6f1d17e2fdae3610b46fef7450e1d816158a71ae37e8813d8b9dbbde2fbb4e1"; 22 + sha512 = "dbe67671831f90f739a7af794578270f1177ce7e54727c78e6b74d6bc400ca3cff2ed4174b5b38b73ad1ebab0d9d0df34fd6e3ee769cf96e99f4fd84ff69d018"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/bn-BD/thunderbird-52.5.2.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/bn-BD/thunderbird-52.6.0.tar.bz2"; 25 25 locale = "bn-BD"; 26 26 arch = "linux-x86_64"; 27 - sha512 = "c59b5b7381ce8fc65018bd70dce55488b12915d2c9fab7421433d7836cde95a409c2f5206323581bcf7af08b90e7ce8eb3c55b0a4f660734d3e159077ba60374"; 27 + sha512 = "4d7aa1a03c1ec122150611270502fc209406703f0081e4e6ed212d07b327adc67c49db2891b1b62799c48218935200c5f671615a159a900f4d838250ab578798"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/br/thunderbird-52.5.2.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/br/thunderbird-52.6.0.tar.bz2"; 30 30 locale = "br"; 31 31 arch = "linux-x86_64"; 32 - sha512 = "f3d5bea008f0849dc8834d51b6ba0529c2f803e5b059582076baf016fd9a02288d57851e1073c1df3f79f4fdb0f72ca8c707d25f75109d6b33ed60353180e80c"; 32 + sha512 = "9e229670bb1a4263a1922b5c4d6329209d95aed8f92264977c8c9d1de81c89440666602fad19b686fe214e8847e305d531046fc00a77347393d3d38be31f7f1e"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/ca/thunderbird-52.5.2.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/ca/thunderbird-52.6.0.tar.bz2"; 35 35 locale = "ca"; 36 36 arch = "linux-x86_64"; 37 - sha512 = "64d024e4c696cffd4d97566411f7412ae16e98f169101bd36e87efb027555bc163f38ea1898b29a772fe31e1667dd69cc5eb19a96e04982b01b0de3975654292"; 37 + sha512 = "0a905562d18452535a6cc05b945467e40c4ab8dd80d13ea07de293e02477cf5ac1c49546213e236f8266aaccc923ed261f1702b38289f2e165d818bb7e55b218"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/cs/thunderbird-52.5.2.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/cs/thunderbird-52.6.0.tar.bz2"; 40 40 locale = "cs"; 41 41 arch = "linux-x86_64"; 42 - sha512 = "ecd78ba038a9133d8ecd0184ae44af661efd38d08e53184cb26b221d50101df38bc7833a0cd7c76d55a185288f055f5ac630b1da525a9008d878b4c5a3d9166c"; 42 + sha512 = "3a2417f8b8396e0bd9c1b900f1547ea631683d35cf1e089698641dfd62672824a5594c8bae1ceed6d9fa4adb646da1b027a3c0378687b86ecd2351e4db227d22"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/cy/thunderbird-52.5.2.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/cy/thunderbird-52.6.0.tar.bz2"; 45 45 locale = "cy"; 46 46 arch = "linux-x86_64"; 47 - sha512 = "1aaef9550bb3e3e5a49ad220344a9b8e20db885e06eea182f87dc8ddeaac62b0cd2b94f58524b0c6d3afea054cea0d75cc96f80732e390cc47848da16cad3fba"; 47 + sha512 = "6f705e71057c5f4016ffc60ffd0dc114f462785eb139da474412fd6164c761d89f7faf08ffdc93cc746b0d3df1b57024d69c20303d867bb3ffdd2739869bc075"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/da/thunderbird-52.5.2.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/da/thunderbird-52.6.0.tar.bz2"; 50 50 locale = "da"; 51 51 arch = "linux-x86_64"; 52 - sha512 = "fa501b4febbeefc90ff9ecf4c2dc4468c6fd2dd04559ac886d8e58ea3d4eaf003cb4577197b5b5c391f602b83defe158b8e3405b36edf2a6e48e48719849deeb"; 52 + sha512 = "4f981281b63ed48e58bee4b7702389dca2bf5497cc74e8603945b25c7ce18e73b7b0ec006df8e48ea5ca8d57c6b874e7cbdeb2f43e214cbb0b99cc7983556790"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/de/thunderbird-52.5.2.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/de/thunderbird-52.6.0.tar.bz2"; 55 55 locale = "de"; 56 56 arch = "linux-x86_64"; 57 - sha512 = "e4c87e3736dcfbe4e8fcce8a101030844cacfe2c20209de4a21cce247b8e80de3e4646c9a84c36d6d73199ea5926c2777a678b8f2b83521078c0c3a10a752b32"; 57 + sha512 = "4553f9b771e4ee907e2e379eb87ac62143df34cd3777e8dadd74b46839c6cb79f8fec87b4bd48fefdd21a4837611637897232895278ef3bb0337f816c37ce685"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/dsb/thunderbird-52.5.2.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/dsb/thunderbird-52.6.0.tar.bz2"; 60 60 locale = "dsb"; 61 61 arch = "linux-x86_64"; 62 - sha512 = "eb169f9d2e9836b83edfd8ef8f7af867ac27831bb5aadf5a75f6e652b507dd7c34ca135c278f95d8f967406732d296af3d42a18fa9e91c8ed18216da77824e11"; 62 + sha512 = "cfb64b6eddcbe54a701c5bca339225bec63e96dc2b1d3d2e358b32820239a970913415e8248ed8852be77d1e64741ab4746476e51a1fb9e9d6510cd6eabcfcb4"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/el/thunderbird-52.5.2.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/el/thunderbird-52.6.0.tar.bz2"; 65 65 locale = "el"; 66 66 arch = "linux-x86_64"; 67 - sha512 = "dfd0160965fbebdffc217ed171bbb308902e1b0e89d91abe8167d7d26db991a8ce2b40b3161d623441102b2b6379a774b6af4a19bb39c27c59d76840351900b1"; 67 + sha512 = "4761f016a202abfafd3d249ccca8d05b8697645eb820cb45b1567476cd806c49e9a13d9c5ff28df5c226e1f787abd698cbc610df28e03b5f0d70ad43b90a0ae4"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/en-GB/thunderbird-52.5.2.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/en-GB/thunderbird-52.6.0.tar.bz2"; 70 70 locale = "en-GB"; 71 71 arch = "linux-x86_64"; 72 - sha512 = "8c8506a8fe62e6ca55b1d99d8db9ec5fd224fa87ff63f9eae49656001f94124312110a414769d5d396574aa0e1f69a8f0a5298d6ad86146ba40912ebe68393a6"; 72 + sha512 = "a310e79e4da7a79a0c9d48db19b68e197fa71e4ff3d3b1c1178206ff0bbe883623d97ded1268a8512f370dbb232b8534e503d42bb6fc70583b78e78deb27fcd5"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/en-US/thunderbird-52.5.2.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/en-US/thunderbird-52.6.0.tar.bz2"; 75 75 locale = "en-US"; 76 76 arch = "linux-x86_64"; 77 - sha512 = "73e15c04a11190e8968bc64226ae4c677fa00ab460fe3497aab861c92c07ff6a3814673a7773ffc4e735491ac338e9d190e0c7cd626416c2508826000e1df002"; 77 + sha512 = "10c1147b8509876d3b278df8d362cfb3279086d51ad40de1ffc8814878ba28b051940b347b4ca1a67bad8090ba488426403b219b2add070b704fac200ad4c283"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/es-AR/thunderbird-52.5.2.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/es-AR/thunderbird-52.6.0.tar.bz2"; 80 80 locale = "es-AR"; 81 81 arch = "linux-x86_64"; 82 - sha512 = "6b42efb1bd21fb9c9df67496a09fdba958145d56b185d10187256e45b8891dcf725cecbf1868c7cdba515397085f616328c111301ab1cce584158a17ae47b944"; 82 + sha512 = "77753858bcba266c6ea44f12eefc5a8fd1b6a7ef39b2e778e01490ff290046415e6a75a56a104dae12b1a6cfc69b179d13f6cf5b80ef20e8120864b7e9447d1f"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/es-ES/thunderbird-52.5.2.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/es-ES/thunderbird-52.6.0.tar.bz2"; 85 85 locale = "es-ES"; 86 86 arch = "linux-x86_64"; 87 - sha512 = "c1eaa597f18102f93b7621d50b5ebb54f9007ad01b5ce543e3f53cae88a42ce06c7d2332fb0e6b080ac2209403dfe06ce24a17f09c7ae3d5ace8d5e85e1ce603"; 87 + sha512 = "f9228ef15899197a8defc67cfa8f51e17aa3f2e5b1e8b79cef8b221a012e47b74d5a91dc82ba1a53e97f1518b4d60f08220f870427751c9ee1c477600cfb3a38"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/et/thunderbird-52.5.2.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/et/thunderbird-52.6.0.tar.bz2"; 90 90 locale = "et"; 91 91 arch = "linux-x86_64"; 92 - sha512 = "b0386ef97662e21806c15342b68b2224ed3b41a8f1648f1b9869b527eb8b60951f9453a5abbc74e94905799953af5a7289b25c80fc370772368f39a048ef89bc"; 92 + sha512 = "37cdd026fe48f84b19adf63c6bb642fd2efa72a95125fbf5e2761623c920549c045589dc53892a828bc759630e8cfd1afad5825af7d51d6c7c5fc495e450f401"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/eu/thunderbird-52.5.2.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/eu/thunderbird-52.6.0.tar.bz2"; 95 95 locale = "eu"; 96 96 arch = "linux-x86_64"; 97 - sha512 = "d7070db2bac9aabbf5b020f60080d3beb9b1ecb4df73fb541f387435eb9ea80e2297c76a79910af0858ea42882298cfdd5c5016bd2049fdbe91dfe1f4bdb8b70"; 97 + sha512 = "4827d5f30c5a9bda1aaf5836250d43b41d38d2f882cae61a097c5ae753a7d429a7486d8a47991173ebea15bb70cfdd6b1d4ee4c1e7696b41e9e047786f320b0f"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/fi/thunderbird-52.5.2.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/fi/thunderbird-52.6.0.tar.bz2"; 100 100 locale = "fi"; 101 101 arch = "linux-x86_64"; 102 - sha512 = "2dc49e7ebb96cafb37b600490bbf49a40393ed00cd4889e1bda6331e9dbf377a4cd53cb6cd98e7fb2e7cdf0da75e69e38e9f3894ab289f3ba0894f499e4f83b3"; 102 + sha512 = "9e40fdfa10cfb24e4983834d72c831b5e94d8a05e51e45e989564c558af6d5c91710da1a63f5a21042da2cca9a4b310a52c1c212db02bcbe77d5579ba600d9fc"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/fr/thunderbird-52.5.2.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/fr/thunderbird-52.6.0.tar.bz2"; 105 105 locale = "fr"; 106 106 arch = "linux-x86_64"; 107 - sha512 = "2ece29dfad71788ee5bf98afa262edc3b9bfaf57a2ea07d669c1003b09c5a5fbefcdb028d4842c53e17c1a63cce16f9296e574b834631cd485d0737cb13b174c"; 107 + sha512 = "362d689566ac6ad74adcbccb188ca958af5d308090cc13f268be8608f4b20917ed0b1ccc33fd344b6b4434ed2a8a62c212cc25dc85f52f7ab20e0355df06a370"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/fy-NL/thunderbird-52.5.2.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/fy-NL/thunderbird-52.6.0.tar.bz2"; 110 110 locale = "fy-NL"; 111 111 arch = "linux-x86_64"; 112 - sha512 = "a84eab825c051666d606fff131542c71bcad7f204db19dc10d54166b499869e43951c9799d05b194f66ff40d5f307957c2d27de17da6ecac48ac24621da7287a"; 112 + sha512 = "90b553cf697bc488e7f91eca2b9fceda94da72d49ff561af9a2f59dbe830a1ea29a49c9be8c544e1c83503a1902076a2badd7b35656372a18899f579d9455de6"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/ga-IE/thunderbird-52.5.2.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/ga-IE/thunderbird-52.6.0.tar.bz2"; 115 115 locale = "ga-IE"; 116 116 arch = "linux-x86_64"; 117 - sha512 = "181fcdb0bae1a2aed16ba61523ec90f89b884d907796e1d1c37c722f68b89dbbabf977446022af6c7050e3e26d995e33891880e875f28247653225479847acfb"; 117 + sha512 = "8fa91ed0e71961e0850f6acd69ffec0876e4b8f72d19b170429c10bd00681095bf816f7c028afa2f01eb5c32f27b6f8272b1a1e3340bdc87ccc9477bb100fbf1"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/gd/thunderbird-52.5.2.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/gd/thunderbird-52.6.0.tar.bz2"; 120 120 locale = "gd"; 121 121 arch = "linux-x86_64"; 122 - sha512 = "cc91084f593788da76815f185e2b9a877409537cdf52566000953a008bcb2783c09cd8893cba9f387b731fd636b1d8e7b7208832623d1222b5fef72db8cb4541"; 122 + sha512 = "8653c7664694898222e1dc292bdc244a6a2bc900b240a7fed30ea5cce47e7fc5524afe7b67795d15f0eafb250a5218ae5f8fa8236b7c6e91e15c3c74808a798c"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/gl/thunderbird-52.5.2.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/gl/thunderbird-52.6.0.tar.bz2"; 125 125 locale = "gl"; 126 126 arch = "linux-x86_64"; 127 - sha512 = "6491bf74093139c86a5809d02582b6d055ebdb3cbf29a1a24ff7529a6e8c2bb89e26c27e7f65bb588c379566741510d6f8372f7f2a11004350cc7e907a3a6d8d"; 127 + sha512 = "22e5454c0af357e030dda5a84347eb154524d0337fae6389102ffb0073ff33997dacac9b40dede462f55ea30c1bb4da65cc8e272271611f42ddd80b5ab9dae05"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/he/thunderbird-52.5.2.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/he/thunderbird-52.6.0.tar.bz2"; 130 130 locale = "he"; 131 131 arch = "linux-x86_64"; 132 - sha512 = "4235dfe0f51f55dcb905453aadc01baec3b8033384e5085072abb600c71f777699df4b556233ffa9b07f5d62442aefbce6f1eef2a9d557b24b48d797cf03b026"; 132 + sha512 = "51bddbb2a254849b6dcbfaf1f2faae13454bbb71472c7c95d279b5f83a6b29b1b063d904f02f13295fa32e6b33867856341994db9a2201d8f358b006c0c7752b"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/hr/thunderbird-52.5.2.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/hr/thunderbird-52.6.0.tar.bz2"; 135 135 locale = "hr"; 136 136 arch = "linux-x86_64"; 137 - sha512 = "4236d464d704ba9c4c60323dd3518a37f71d24cd441404b6ae7a0e97ff17c839e2eff48d100211cf5ce9d3759336e7a0c29abe5f8390facedd769804adb8b956"; 137 + sha512 = "a08e2a71ac92e317944f09b2f03bbcfc32122493ebc0800534b6f3c714d4af0c431caf97be1818bc284826b88f08db3e4392f0c2b89ac7adba587f2f450cf804"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/hsb/thunderbird-52.5.2.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/hsb/thunderbird-52.6.0.tar.bz2"; 140 140 locale = "hsb"; 141 141 arch = "linux-x86_64"; 142 - sha512 = "876a6c45e62c1025bf29ad3c626e3d2cbbc7d9d660e8e862b0fb586b73ed42a0bb58611dc69af727571c93f31dca450dd9156ba78b23b9a4a2116e561a8e3763"; 142 + sha512 = "9539a6c48e60c4c773b735afa6ee544ceceffdca76ceeedd90973145f7deb23f2e449901cdc75190b5bd510537e70fd948775dc66caef8a7b95fc31843cbdb66"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/hu/thunderbird-52.5.2.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/hu/thunderbird-52.6.0.tar.bz2"; 145 145 locale = "hu"; 146 146 arch = "linux-x86_64"; 147 - sha512 = "7bf7604f08e452f33154ba91cdef8aeda9905470f526f403dd76e19d1010f822cf2f3fb7c5f0525299bd0401139df1a12631f796d603e0ec3af4aa8df73ed0f2"; 147 + sha512 = "d4d0fca22d430ec037bdf5cf8ccbce99df3cab22e4e6a2c3fb040cd1db960903e503ff2c8f633aa1f037a590b0a48134d949c1c4899de429a0533175fbb4a61b"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/hy-AM/thunderbird-52.5.2.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/hy-AM/thunderbird-52.6.0.tar.bz2"; 150 150 locale = "hy-AM"; 151 151 arch = "linux-x86_64"; 152 - sha512 = "bd62aedb2c800265fc34c884f1605caa0040794cc49479189dfa4a959d49397ef023efaac0937c9573ef7a114cee16504b5a65f8f8f3f3d4d222f4a173707bfa"; 152 + sha512 = "362ddd92ceec22ac93d95d721c1806ff0270fccf33f0cc4452ee147b3388f071b6d5aa27a0e7548a35a50453d55be2532d7fde19be611b9f0ecd741b5de59e1f"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/id/thunderbird-52.5.2.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/id/thunderbird-52.6.0.tar.bz2"; 155 155 locale = "id"; 156 156 arch = "linux-x86_64"; 157 - sha512 = "1dd761bc1bdd865b5ebb494c00dede5e616a1bf7fbe6d7cf88d4f5362eb75435ae162d2e027fb7928783fe255179de00d28a29ab3d90350f75be7a1e4ad428a9"; 157 + sha512 = "29ba391bbd9b8984850f056d856bcf90c0ac816fb8b831416e5a96f36e9b2dd0517cb5f1caf37998f75f024f3fbdd3b989ca6d4973ded22cbd15568a7b249531"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/is/thunderbird-52.5.2.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/is/thunderbird-52.6.0.tar.bz2"; 160 160 locale = "is"; 161 161 arch = "linux-x86_64"; 162 - sha512 = "12dbca26babd51739fc6505fdd36ad32b5827e1c3e439f3ae4c2c8e0f165528e693af537bec8630146c6c6bbc55b75d7c5bdd3bd84b5255cbf756d627beac2ce"; 162 + sha512 = "2303d0d74e112bc4f86e6d73fb63fabe8f10aa3486a9d2f61fe16b0b0525bc7b6091c94e27f0ccb548b47bf808c937b83a4609c5c0cd0bd0fc6556c18dc08661"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/it/thunderbird-52.5.2.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/it/thunderbird-52.6.0.tar.bz2"; 165 165 locale = "it"; 166 166 arch = "linux-x86_64"; 167 - sha512 = "9c9b77c70429436b1cb0030c92109343eba9357f58873c13399e9e64f44807e06fc0c429e0748ce9a11f68baf643bec7cf313fe79cbfd35e548ad579b0e6e108"; 167 + sha512 = "d3d9e95728063bd4e4742619c8ec27d4a0cdc34941ef8e6e3af71f19d59b4db6661366a81f1df7fd1de3a2ce995a1232f39744a825493a0c456d5257d02f7cf0"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/ja/thunderbird-52.5.2.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/ja/thunderbird-52.6.0.tar.bz2"; 170 170 locale = "ja"; 171 171 arch = "linux-x86_64"; 172 - sha512 = "2f785ddcb2e16ee1970cb582852ce52e1f3f7cbd58e8f714a18a387019b510cddfa1927f593b61ccc4b662b6e65f3fe20135eed451ba07a1df45b5979743b20d"; 172 + sha512 = "1d64a298e5b0ec9eaac8f8972ae975a98a5bcbc4823abd59a6cbab251ddcb5ba76263bdae0b55dac15455d8b7d9c8bda71cc54ea0fe67aea5efa5552973be94b"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/kab/thunderbird-52.5.2.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/kab/thunderbird-52.6.0.tar.bz2"; 175 175 locale = "kab"; 176 176 arch = "linux-x86_64"; 177 - sha512 = "1bbd7b2c79cce7b74614e6f09cd7235d58def667f74bf3276ec928df4f0084704654224f100f227cdb350f839a13e474cbc98e4614ae45cf00969b2706291076"; 177 + sha512 = "1b351b01ea540b809cad198912853b3f74bc9cb52c33b7fe4ab586f921ea4a2486f28e855d2be95398af6abad2911c5fd3f0ab16938edea85596689799b452b1"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/ko/thunderbird-52.5.2.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/ko/thunderbird-52.6.0.tar.bz2"; 180 180 locale = "ko"; 181 181 arch = "linux-x86_64"; 182 - sha512 = "e176558707cda5570b020aa0fc3620deae7edc6e7e363e1ba4b51d6cad9f4a9e74a35be5f419fcc0e18dca31b6c887a62112f99b4a60d9026b8dc5f87de45f74"; 182 + sha512 = "d9895da7e3099c5d9389308ae6982a77387cd7d61c07ec16e4511c00fc3b18bd025b95c6f05a94cd5e990eb9472816bd4af0a1bbe3605561f2bfe2b9f9b207e8"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/lt/thunderbird-52.5.2.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/lt/thunderbird-52.6.0.tar.bz2"; 185 185 locale = "lt"; 186 186 arch = "linux-x86_64"; 187 - sha512 = "f431c57a74e0f8498a9a1ad36e6528d09dccf8b03aaf9e7ab66ddd503bbd78ddd15176a5e6c2358eeb616ee023f78414c30b67fd39c4c2f15f4e377df81759cf"; 187 + sha512 = "8791ae3c0ee4745449b1690f69de0665f7854288188f1570e4c876b1f936e790d651bb1f9ecfcfe99f01f49026d534e667f262c72290894368579313b8a59615"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/nb-NO/thunderbird-52.5.2.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/nb-NO/thunderbird-52.6.0.tar.bz2"; 190 190 locale = "nb-NO"; 191 191 arch = "linux-x86_64"; 192 - sha512 = "5bfae55863550e32ea6581d0c24ae5374e2365d9e5e8f05f91856d0fd2760b761d183b12c9809668730efbba63e6c23408431f4616f6a7cc52ee465ccb939aba"; 192 + sha512 = "be2e537c4dabfc6070f180205787712317ea3bf1befebb5d99d0be562aac60f728635ab665b6813776d985ff5c5d10e72658dbe20c6441722113ca8f9cf00553"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/nl/thunderbird-52.5.2.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/nl/thunderbird-52.6.0.tar.bz2"; 195 195 locale = "nl"; 196 196 arch = "linux-x86_64"; 197 - sha512 = "fd7d35c0205610d868fb0676f3a8aaf328b1906dd1b174124e254ec8b08e5173741853938707dc99b10b4417df4a7010e20cb8a1038bf8f3258dee593cf788bb"; 197 + sha512 = "20bc3bd3105880541b2dae20b703191cdb499dc7778fe874da5ae9b0b1626d72075631e256bc0c2fee1c4d1d27424cc6168c419afa8bec8a00d5904ae0678f12"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/nn-NO/thunderbird-52.5.2.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/nn-NO/thunderbird-52.6.0.tar.bz2"; 200 200 locale = "nn-NO"; 201 201 arch = "linux-x86_64"; 202 - sha512 = "1070fbd6c51d68e560fa0eeab66f2baa39d11752018d20d23a3577b12b504355f5729d0d961ffd20256521f54eda69d03fb8efef70f8254685e28b0164201354"; 202 + sha512 = "2437751b998ee2898bbb8f8187adcbd102d29fc54054fb04efef2e0f7f308c864215bb8468ac42975bbd18c6e4a0c8903e5784a4d203df3643029cff696c2540"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/pa-IN/thunderbird-52.5.2.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/pa-IN/thunderbird-52.6.0.tar.bz2"; 205 205 locale = "pa-IN"; 206 206 arch = "linux-x86_64"; 207 - sha512 = "12293c8258f02403c8db220c73cf76b24315268324f2c6ac41dba7d77d9653cd1a21771a4994f7c6dc0db9948a601008e347d908c05dc59b7cf6ddcf95b2e86b"; 207 + sha512 = "925ffbbd7d9e301c52b60963bced66af8b97a7b24275d73ca923f0d757164faf4ba7c69003286d74a69f1ed328e94347ba63c6ca7e13f47f42b7529af9de5ee6"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/pl/thunderbird-52.5.2.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/pl/thunderbird-52.6.0.tar.bz2"; 210 210 locale = "pl"; 211 211 arch = "linux-x86_64"; 212 - sha512 = "331b81876aeb162e1f4e838cb00712e971310285febfa669bf7c6d245c1e8353be941b6d1236423e0d835feacaabf859077da1918cf2652f6b79de30c4beaa30"; 212 + sha512 = "27dfc79cfcfaea36ee50b2249e8e2a5195e9dd2f755b0f9d3274af2e4cb3d0d5214a4065e08678bbfcae4b51f0a0c2c4b4385c2a199a5b65035ac895de08bd63"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/pt-BR/thunderbird-52.5.2.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/pt-BR/thunderbird-52.6.0.tar.bz2"; 215 215 locale = "pt-BR"; 216 216 arch = "linux-x86_64"; 217 - sha512 = "d69fdae2048b738133fd07c6aa0ab6c264e555a3bc3a899d09fd7fe49435511fd544f3ef04e079c4efd320bc2abfa813f85a5f2a9e477af56aa47495466103b6"; 217 + sha512 = "b600e2e3dc931ba2db5e4bf36187f971c7c1c710f8535d59c999a9685f551454a6e39f80cf70374aeac41ddace2f80fbe68bcda1675b80c5cc39dd8fccf7625f"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/pt-PT/thunderbird-52.5.2.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/pt-PT/thunderbird-52.6.0.tar.bz2"; 220 220 locale = "pt-PT"; 221 221 arch = "linux-x86_64"; 222 - sha512 = "fa3286336d47b2216b0ec0c5fb6cba2421cb0cc81d1f815515c637a063b8de167cccfc3dd30b02636ae88e74efb34f8fde1b198924fe864b1fdc08d95b7f0f3d"; 222 + sha512 = "3ca5ed7c487ca11ef2fc743e8a66eeaa05d2585d2fab0ca40b0d965e10e43d1216de358eb61921578fcdc72b69766f8fe24beb3c548ed47c705ab84a30941c34"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/rm/thunderbird-52.5.2.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/rm/thunderbird-52.6.0.tar.bz2"; 225 225 locale = "rm"; 226 226 arch = "linux-x86_64"; 227 - sha512 = "b4affea897ac5af177c1fb6e4919f94f5f20860c3f492584c79664d803b7c2d092a96f1a3afe6b3212f689901a52d0ca74abab4910ba291280d52ecef2cf9a33"; 227 + sha512 = "2d9e51a01175549c712c5bd1e95e08012ed9494a0f6fa5ffec8ee1c311279a6826cee99488a72d86f2cd98d9d9d6d20ef886bd4f69d100a2b589ef8dfc887335"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/ro/thunderbird-52.5.2.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/ro/thunderbird-52.6.0.tar.bz2"; 230 230 locale = "ro"; 231 231 arch = "linux-x86_64"; 232 - sha512 = "3cdcf374f33961484962a6294ad8fd654b006f3472ce6550936a8c00a28943088c9c61049fba278cd304381003b46903a5514ac340b5a85a959edfe17242eb4e"; 232 + sha512 = "8cfd1503ef3f4a9b4765d6c3fcc3a44aaa2fa557fc2a698452d10b037fdfcca09c462b455c4088b69aa89c153f14b1621d3c87c942a7bbb4627f95bbf0a37738"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/ru/thunderbird-52.5.2.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/ru/thunderbird-52.6.0.tar.bz2"; 235 235 locale = "ru"; 236 236 arch = "linux-x86_64"; 237 - sha512 = "aa1d54fe356ef15d852a9ce3f269deee411d4815f4108c93c832def784c1afa104193e62fd9b47977d20ecfcf3057c05d76f39cc3abeb0341102b7e6e6639763"; 237 + sha512 = "74d611abaa10d04be342139e19b7f724516a91de07a5f4ae4c4cd3ad927accb5e6668830040defa20878ec1fc884bc983d084729ebcd1fd453c7082a627329ec"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/si/thunderbird-52.5.2.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/si/thunderbird-52.6.0.tar.bz2"; 240 240 locale = "si"; 241 241 arch = "linux-x86_64"; 242 - sha512 = "543710116d67afb86e316dd17bf9a74a07ee5e3772381d9f0495af4d42075e96b6ff888ce0c3ce68ec779dc051f3ecb6105d51a6e4459cb4907a604662c933b7"; 242 + sha512 = "292b5da1ea566ebeae2756b659b1f2ad40a4dc57517da926b3f8263a219e734d197d9aa55ce91582bd8818e0434d2a6b3bc40892d0cbd4715fcac50e3aebf7f3"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/sk/thunderbird-52.5.2.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/sk/thunderbird-52.6.0.tar.bz2"; 245 245 locale = "sk"; 246 246 arch = "linux-x86_64"; 247 - sha512 = "3ae5ab97172ff0f4d3eaea7a69fa54d9bcf639a8032ee2c5a3fcda2d8b30072d3386c54ef7e8c9bf5417a6030966c1097d69d41dd8c5355e82d048b783aef461"; 247 + sha512 = "a5f6466d7ff0ceed4fa25c446925e398cd91c29d705ea1e28166bec09834b1f3ac61722823828d97d17b1ce7ac2e67aa98c3d5d94806b7a470d29c5722f37d9b"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/sl/thunderbird-52.5.2.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/sl/thunderbird-52.6.0.tar.bz2"; 250 250 locale = "sl"; 251 251 arch = "linux-x86_64"; 252 - sha512 = "9f3e0724e837608cf4a64a2505af732e4cdf61928bd5dd1237e27d5222147a8ec52870e88c73653de8518e9ab81af4fb8916b067c780b1af25b8f6c208a10684"; 252 + sha512 = "9167d416f7552b55f8551146a3073757bea4106fea2004ad4303809f0532b85d37fea449ed09f0d162cbda2f429d869b90b5ef14f29784f418c63085a7c9b5b1"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/sq/thunderbird-52.5.2.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/sq/thunderbird-52.6.0.tar.bz2"; 255 255 locale = "sq"; 256 256 arch = "linux-x86_64"; 257 - sha512 = "0f2e10a8b9cae1185079af8e37ca9622d9ed29b6bb38377cc2db7523dded8da4969798941ab1e99cc70b36bf2fa59549567cf5c1e1cc40ee0131350d60f8239f"; 257 + sha512 = "aceb16a89f40243f56611d726a47b15bc6b0e5c1177a4beda6b147749299640742dd9d5f64384e88f4fc065c5f5ab80a7456a81ed63331a99a60e1e2e8b76a08"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/sr/thunderbird-52.5.2.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/sr/thunderbird-52.6.0.tar.bz2"; 260 260 locale = "sr"; 261 261 arch = "linux-x86_64"; 262 - sha512 = "1f32b2705e4939c5e57f7a6a3eac29ccacbd90bb93361007b208a0eb1aea4f279b50fa17ffb86571cc2aa793742d3ff62caf28047b69c95ce358b6ec2cd24268"; 262 + sha512 = "c0cefc58703c51d169686bb6c25477ea3116fc9691e0bf971d2a141ee8e93e4e1853911189c2b49d331d8b04c70e3c154083a05179c93a22b043a70918808ba3"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/sv-SE/thunderbird-52.5.2.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/sv-SE/thunderbird-52.6.0.tar.bz2"; 265 265 locale = "sv-SE"; 266 266 arch = "linux-x86_64"; 267 - sha512 = "887176e1d4d9cb385ce0261a45f22bb67a87a125da737403c6965a6dd57ec7f0763b1245ea0d04b79aff5f41cd1ded3a06dc4ee301a17c01a9417ea2d515dcb0"; 267 + sha512 = "179429292f73320f33d3cfbdd4b55b65117c8b8f60abadbf8c28537ab1e6e7664f7e2fa1b20ecdb201d7d535a9974638a7c22c2f5ba0fabea580509bd35d2a3e"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/ta-LK/thunderbird-52.5.2.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/ta-LK/thunderbird-52.6.0.tar.bz2"; 270 270 locale = "ta-LK"; 271 271 arch = "linux-x86_64"; 272 - sha512 = "fb981e6175b1f8fe79b65f2c324e376a89c7378074a6ead4cf3444516fd8d566591f942133642830caeef1f342ceb169d2e558171a5675ffc96a82deeca585a5"; 272 + sha512 = "ccc1e3b1ca1e2a762c840c5e52b33cb3c05b75195576e95f7d28abe53aa6438d83eb185664797be9a0726f51416b4cc70877a4d6e01282d426459820eac59b01"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/tr/thunderbird-52.5.2.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/tr/thunderbird-52.6.0.tar.bz2"; 275 275 locale = "tr"; 276 276 arch = "linux-x86_64"; 277 - sha512 = "2ce313b74b8512eea958c2c3e303829a3d7452a48efc07afbfbe9ea783c6099e75693b679cddb65802fef5a47f98526b7ceaf4c1e7fdebf9357c91d5a306bd70"; 277 + sha512 = "55b14f94b1824df5e05d8c8f8c1a86a3d9667123dfb7b86723888ffeab93b8b0ed8dde082c3db0ee33446052e81b6f282e4ac3ae9a2a51ef25e01c6ffc93ad1d"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/uk/thunderbird-52.5.2.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/uk/thunderbird-52.6.0.tar.bz2"; 280 280 locale = "uk"; 281 281 arch = "linux-x86_64"; 282 - sha512 = "dcf852d0c584c3959fe0f7ff72cdd45fa8497aa1ca44ca036e849c3395da470a52376343f4b6e37a343e2f2919245a52e63bb5dfb5651bbf749c72c35a8918b0"; 282 + sha512 = "94047ef1efc45fcd228012a8833ca1d6d5540ba0549a5f598ca420564e85dd0bfe4995968ba241d57b588db542f6c33445459c77b40eb3b568f66d3ef8e4e91b"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/vi/thunderbird-52.5.2.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/vi/thunderbird-52.6.0.tar.bz2"; 285 285 locale = "vi"; 286 286 arch = "linux-x86_64"; 287 - sha512 = "2b3c262c1955045bbda194715f4e9fce97872054ca8cc6f7bca3c1c6da303ccda4715336c846d47bc204fadca003ba9f4efdb6798e55c9e928ca822544bfe152"; 287 + sha512 = "f30ab0cc3b6d4322d9d65150da1b247db12305f8a39acef383048118f30a757ca380134f0f12c238432a23f5d70d173e53e24f46af158ccdcf5eac516267840c"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/zh-CN/thunderbird-52.5.2.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/zh-CN/thunderbird-52.6.0.tar.bz2"; 290 290 locale = "zh-CN"; 291 291 arch = "linux-x86_64"; 292 - sha512 = "74e7d7f4039d38f6af9590303d173d7293046f897e5b23acf8ff16c7b1ecfc50d0e8896550ee371f19e73518432d137779cba26bad913e8deb9e4af1b0637edc"; 292 + sha512 = "4dd0923c8258dec6de71aad216dffb2945852f2d6ad20e104599a43a13e7c48bdaaa70a7afb35e3699bbaffc9a69623d6d24e299f1a0e75f604ba9bad96647ea"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-x86_64/zh-TW/thunderbird-52.5.2.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-x86_64/zh-TW/thunderbird-52.6.0.tar.bz2"; 295 295 locale = "zh-TW"; 296 296 arch = "linux-x86_64"; 297 - sha512 = "914af708ab185b76a67e8a2a4c85c14f41bdc05bfbef66c56a8b28820e4eeb866dcb6d60b1b4b61d924af9a6ccfa9ec6a10afd6ffb74794487472d508807b417"; 297 + sha512 = "39264550d88ad4fbc247b9bb61015b2c0a9e75ffc19ec34e1d7053995e2fcfd65721140f2f4486fe959e67484c6ca6305e997c77b59b98e60e9e979c60e320f7"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/ar/thunderbird-52.5.2.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/ar/thunderbird-52.6.0.tar.bz2"; 300 300 locale = "ar"; 301 301 arch = "linux-i686"; 302 - sha512 = "b749fdc34c15b48bcc0b99af41ac0357fff3a9c4bf774de536caf1fa65b33dfc69a4a14a4cb0c06a82d41e222362cccafb9ff8f4ca64c128cf0a031c1161d74f"; 302 + sha512 = "b801148b9eccf4425710ff3c5430795d873448ee068dec8e8343ec9094d8c04e317dd0cf6e2d3b69029459d980b841470365441e26d8f71503d9c6f03a52d0fa"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/ast/thunderbird-52.5.2.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/ast/thunderbird-52.6.0.tar.bz2"; 305 305 locale = "ast"; 306 306 arch = "linux-i686"; 307 - sha512 = "f3ddb2b95237e8c505286328369c9f7613e5cb22ede50f8842e936c158aa6cbdb053de6c0f4ef0a9256b394b5510c1733ce0f8cc8423370581ec54b871f59b56"; 307 + sha512 = "7368be5dab56f03635d3bc06f1d1871893dd8a694388baa90a44cef5f88717a705daeb2230dae8c2bfaf8b40e1f7987aeefc729b4e77ec1055726b0944276c79"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/be/thunderbird-52.5.2.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/be/thunderbird-52.6.0.tar.bz2"; 310 310 locale = "be"; 311 311 arch = "linux-i686"; 312 - sha512 = "d41e1bcb8460015876d784eccb37aabfeaa8a283f408e6606d84175f3e6b1e7428b8d277d30b250192cede4cb6bf2746945cf6fd4afa698fcb1b4230ee0f6d5b"; 312 + sha512 = "a39137149f5800b5ea612382b86840b095fd09e38d06ffaeb4a2f5e242b47cac828ffb87c9870a9ebc75b9bd26b0499c2899d5b778267dc6842d21afaab0e7bf"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/bg/thunderbird-52.5.2.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/bg/thunderbird-52.6.0.tar.bz2"; 315 315 locale = "bg"; 316 316 arch = "linux-i686"; 317 - sha512 = "e07885f88953dab1a940d21142fc04c7b8b2f807fc424f69b99f90d4a8f5ed034fc00de92d76dd4fb858c669cf6c3e9cb82f93ac3a264ba71f7b644e99849fef"; 317 + sha512 = "2314afbb259a561e98bffe3d30aaac571b8f7f54de2246af78a012fcbee19fda15c8a921221ebea738fb09be07a1139f5edc14f1f9f55945a63e08c625a6bf52"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/bn-BD/thunderbird-52.5.2.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/bn-BD/thunderbird-52.6.0.tar.bz2"; 320 320 locale = "bn-BD"; 321 321 arch = "linux-i686"; 322 - sha512 = "2cdab1cc1066ab51d8fd0787115568cf70f3d584d2fd5e3908eee0f64037ce61a80a3f19ae31dc8cabca8f05cee51221917c717ea535a5a8085dd3410fa56422"; 322 + sha512 = "e8cd137f04521293ea60c8f8557b4482baf1d7936c9fca1ea7426ea8a99cae48f3e441a81cf1a779034595eb755009db512f29d31c8ada11391cea0f3962d61d"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/br/thunderbird-52.5.2.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/br/thunderbird-52.6.0.tar.bz2"; 325 325 locale = "br"; 326 326 arch = "linux-i686"; 327 - sha512 = "0db76f3544b14360bdee64186b9f828dce717d72d23ab59d4568cf079dd1db138e5b79eb500bae6d0043550bb906a0558f07e3b5ac98d0ff67705578d04ebefb"; 327 + sha512 = "0715d8eda4c144c35b5583bdce6eac058788b761949bcb79f156ba4931c380e33f7810fed55e283e02c5af2d555df471c48383d1ace21da7f88c3b0a8e97213b"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/ca/thunderbird-52.5.2.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/ca/thunderbird-52.6.0.tar.bz2"; 330 330 locale = "ca"; 331 331 arch = "linux-i686"; 332 - sha512 = "6229309d3e81f374f4f04071843e3a1e7e18ad8316359ba6badd0509284ef59c16085af9a52956a5a2f438bd9cf8c88400e15fb99bcb75001f08fb72c285b3ad"; 332 + sha512 = "21ec148ddfef69ead9f1b367dce4d6a93a7f1d31fb691035d40132cd4955a66f162a44f0e5b0caaae8cfdb76b0842cd78a630cb6a7949e839611d98d58776a47"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/cs/thunderbird-52.5.2.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/cs/thunderbird-52.6.0.tar.bz2"; 335 335 locale = "cs"; 336 336 arch = "linux-i686"; 337 - sha512 = "12a2df8d37d02076acf6cd2bc86bbc71e38e157e121b1729096c880481a82d23a0c1c8f1c8b1ff53193aefa1eebc64ffa49bebf38dcdee5fdbdf429bff5d9993"; 337 + sha512 = "f2c7c86db91332b9f38ab4ae732ca44c7f7bfa32e3b8123f7ba9662fe9f74b9f01a58ca63a9954b45aad05272baca385797679103c29a95dcf248fe8cdac5a53"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/cy/thunderbird-52.5.2.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/cy/thunderbird-52.6.0.tar.bz2"; 340 340 locale = "cy"; 341 341 arch = "linux-i686"; 342 - sha512 = "7c71ae8ce62dd271e0202b4e25b52ab9291ff83b920465b9a96c36d55c520ee87a5a348ab9d0ffd495744b787d424741ecf9e89ae4879281d0a6f2cb3742ae2b"; 342 + sha512 = "f0bdfa8373fc87faa567720c4c998f08ba836f8c26a59e38e92bd641e7efd42010530575bdfe1fa7bc78b7688380eafc274b8954f2a59e60912713afacd42789"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/da/thunderbird-52.5.2.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/da/thunderbird-52.6.0.tar.bz2"; 345 345 locale = "da"; 346 346 arch = "linux-i686"; 347 - sha512 = "36861c719370036033286139f5e93d750eb8712afea42df7cc7f8bbfb9a00dde999e3ac4e38bc48b64a343a8091483163914cd362e9e30e0f9a98c6cf6a1783a"; 347 + sha512 = "80dc629b815c4ec98026f0ee5c2b7f754bc9bf0e5d026775866f502ca55b826ce071470a8713ae98089bf2208e5b0d0771a20307db5351b4af78169bd8efc1ee"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/de/thunderbird-52.5.2.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/de/thunderbird-52.6.0.tar.bz2"; 350 350 locale = "de"; 351 351 arch = "linux-i686"; 352 - sha512 = "8571075c5435ab4763ac1c0f3904ca39b5ad1363390fd78eec9b73115caccb3eb3cc9f2e1a8c4119469ed5cc99d648fc905a8fb4d51c0bd10dc9ecb0338ad59b"; 352 + sha512 = "bd66cf808f3d5ba73dfb0d314050c5d4ddc59966abc84e904cde2dd73c20086dcbd580c1a0bff4d1dee7ae940e38a53b9a37ed75e05758ff9da799f2ae1f7aab"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/dsb/thunderbird-52.5.2.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/dsb/thunderbird-52.6.0.tar.bz2"; 355 355 locale = "dsb"; 356 356 arch = "linux-i686"; 357 - sha512 = "1b873aa804d253786b37a8bd1e85884f12c48292c3703d9c04a9d370e8fff73b0d865495a65de7fe690e34f835220ea88810194385ef50f3b285e8237f3761bc"; 357 + sha512 = "58e50c2d6c2d42fcd34273ead868753373e054602ab1ea7e9ea9d5ed15b8ae15e6b654fe81b6a56942f1cd4eb3778d11897fc2b9e34e789aff7d83b47bd3c100"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/el/thunderbird-52.5.2.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/el/thunderbird-52.6.0.tar.bz2"; 360 360 locale = "el"; 361 361 arch = "linux-i686"; 362 - sha512 = "8f6327796a1e937e0d43f2af23f25292ee3a56b9d173bcbad1bf1d7cd60ca464570ef4a9d8255d2f3897dc862680073146a6509944014d0abeb21395da8c0201"; 362 + sha512 = "40888eca974a5e9dab7459c790b7e589906da72ca9ea64fa690225d876310239faeff8925366b5fc559a5793efcac01696f22886c9ecbd5dfad5661083b8e63d"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/en-GB/thunderbird-52.5.2.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/en-GB/thunderbird-52.6.0.tar.bz2"; 365 365 locale = "en-GB"; 366 366 arch = "linux-i686"; 367 - sha512 = "e27a9c743a1d439e3cda7f2924c01044c797f88bd4b90723face80a472c8e0854c747472e5cb72dfe10ab1018188044681e1ae633ea55f4a11aae6f62a3a891b"; 367 + sha512 = "5a418b8f6b857a4554cddb81b36b5f4885ba694ff08b3b5f3c342491637587719578738eac9abee2735e8d0fa1ab216ee9bb5cce67955c4b7c30c3a063b95477"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/en-US/thunderbird-52.5.2.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/en-US/thunderbird-52.6.0.tar.bz2"; 370 370 locale = "en-US"; 371 371 arch = "linux-i686"; 372 - sha512 = "b20aeac366bbfe257e709133fafa59bc8fd784d33926a167adf24d2c90d2cf5adfb68815e2000de4837be7cf73258d890cef555be82112aaeaef2bcc244f634f"; 372 + sha512 = "628a5f50871bf44c59e1d8983f520d5ede9f22bff15eb4b03673dc6d4b0f72c84247a5e29ba67e871be449825dde8090a6e9a50501e434bbc17d86aeb846e1cf"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/es-AR/thunderbird-52.5.2.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/es-AR/thunderbird-52.6.0.tar.bz2"; 375 375 locale = "es-AR"; 376 376 arch = "linux-i686"; 377 - sha512 = "a3547d8ea9675970dfe9dc40e1b763558fbb204b8d0940156b97212f2a5af00ca82ea2493f77fe896e257d7e0cb1ce7a1fe05a4c23aaa09222da43cc9b823e88"; 377 + sha512 = "595419a4c26c8974ada3e9856dcabe863666133a98d5730a1a295f1edc414d1d0b3a159afc94bd927c934d44e9b4ed4282d4211948bcbe8b6d744948e7b48e02"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/es-ES/thunderbird-52.5.2.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/es-ES/thunderbird-52.6.0.tar.bz2"; 380 380 locale = "es-ES"; 381 381 arch = "linux-i686"; 382 - sha512 = "2ad8177608038799c2ea653ea056c599949972a51493a27a34d4aa0769814106cebc8eac3521c7d6186432fadbf8e17e7b9e5221bdd1bf70de4fa80de163e964"; 382 + sha512 = "898a14402ab621fb81b563c039db3ae343173cb39872ca6a2985f6a279af7ffaca404af179cef3adb48285b05e24b372c1e8a1918557280ecd10a4368b540f27"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/et/thunderbird-52.5.2.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/et/thunderbird-52.6.0.tar.bz2"; 385 385 locale = "et"; 386 386 arch = "linux-i686"; 387 - sha512 = "a68d4606e943a4b5841853b1c2d5165f5c97405690d467c0548ef0169fe472e76088c0387f9adabcd5837a3fba72287398453c4e149343bc9130348b5d62c682"; 387 + sha512 = "b2ce107034b87b9e4459add9e1d6777e58f52465f81720d1a6276dbe0c341c92984fa9979ec8da0544f4699cf98a097098ed14759c38e47a0f9ea4aba6916907"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/eu/thunderbird-52.5.2.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/eu/thunderbird-52.6.0.tar.bz2"; 390 390 locale = "eu"; 391 391 arch = "linux-i686"; 392 - sha512 = "dfc826d722b7ff331df35b6fc9b82eae9714f8f8e75c1fe3119a3b449a5b2817a8641e939ddf32b4b6605406a7cfeb57de24493b5a4d0cf9992a3dc30f2558cc"; 392 + sha512 = "a401cb39dd18e83cbe64de9c527ce4d72a951f32c5150a88bb509487f3ed4364624354a6571d41ee18f1061841cfe9bb704bf355893fab6cc44d94f660a5e0b7"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/fi/thunderbird-52.5.2.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/fi/thunderbird-52.6.0.tar.bz2"; 395 395 locale = "fi"; 396 396 arch = "linux-i686"; 397 - sha512 = "2676d22c662a5d7b4b3eb32a71b032e76bb609b39a89381054b254ad7a966625af2166b2a5edd9c09ad8d9728933203c99a3c60e03c2fb031b748e94c16eba77"; 397 + sha512 = "d87a4ff14023c2a20241a920d2fac288d76124ba3734ffcae664cbf46ba3a3d54fe42979c243e6ae231f7b5aa54dfe9c82ad87f3839714aa8a21409a6e87221d"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/fr/thunderbird-52.5.2.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/fr/thunderbird-52.6.0.tar.bz2"; 400 400 locale = "fr"; 401 401 arch = "linux-i686"; 402 - sha512 = "b6ec3f6f2abb0f1ae8de3167e03d9d254959a93881b4cb8202db5880bade5569a53f1b5aaeaec10fb6fcfe453fcbe7cf0c090947c546ec62ae0f858dc0b251d8"; 402 + sha512 = "5bd14acb63b044b2aa6f2f75fc365b6d65012a504ac3735cd2d72097b65aa61662007e06857f7288329c39517af01e694d19be5498bf4b718fb9b2510c8ed313"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/fy-NL/thunderbird-52.5.2.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/fy-NL/thunderbird-52.6.0.tar.bz2"; 405 405 locale = "fy-NL"; 406 406 arch = "linux-i686"; 407 - sha512 = "c0e2618f223f5b58d80283b23c38ce703d5fa019444dc2168d1ca88149780e458ed9c5414931457a0a3e7733407eb07b1fd38f3b40c381db2f012c5a1eec7eaf"; 407 + sha512 = "13baa3c5bf0c24474f6f31291b54ff9c846bc3a6056bf43a74f3e5ad4919879adeadfe583151f55cc721e8aaa0b9011cc8e9c3a402d2fc363b4b2ab97f5aef76"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/ga-IE/thunderbird-52.5.2.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/ga-IE/thunderbird-52.6.0.tar.bz2"; 410 410 locale = "ga-IE"; 411 411 arch = "linux-i686"; 412 - sha512 = "fb6e815a5690382f1608d20cecb596012677616cfe3de11ba8aacdf32c59314a5e61ade11151965fa4c5f310445700f9fe89e14734f8876ebad4dcde9f46535a"; 412 + sha512 = "632cc17bb0e9a5ee4e651cde51f71eb6efb6eac35297126ca3c7397e4bbd407f583b70a2aa5cdb4345276b493f3d8161cd376a443b37be3ba6b2782b7d6a534b"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/gd/thunderbird-52.5.2.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/gd/thunderbird-52.6.0.tar.bz2"; 415 415 locale = "gd"; 416 416 arch = "linux-i686"; 417 - sha512 = "3edf7e424f7a21540225d6e30543bb39f395564a3effd5064f3471f7922c19e275fc7b20e1df929a93eb375e0b37937f5beb239003300bff0af8af0d2f7b203d"; 417 + sha512 = "03b3f6ab1fa5edd9f4c37f1d2ed9ba7a34e4b3d714bdf238f7e4ed8e8c65c432fff5a2815a1993ac8f221a997dab2b0ee22dea46d5a8b566bad35ae1cc9a4f46"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/gl/thunderbird-52.5.2.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/gl/thunderbird-52.6.0.tar.bz2"; 420 420 locale = "gl"; 421 421 arch = "linux-i686"; 422 - sha512 = "7afea0817603271e8ddfa01374102f8856fa1d090fb3a98ff9e3ef477aeb019f3860e68c6ea72659ea0b65c54967c68bfa0d84a040d7677469ece8460fbf93c3"; 422 + sha512 = "36398fa1d04ee096c1e2fa1420ca375dc7ff135ff63343e20c916b6ecb03b2adc6e30d26e66ee6ab38cd816d928e8c628a55bb3f6cf921bf7691b6092700200b"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/he/thunderbird-52.5.2.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/he/thunderbird-52.6.0.tar.bz2"; 425 425 locale = "he"; 426 426 arch = "linux-i686"; 427 - sha512 = "546484c47f925bfb92bab962735cef6a74336d6b282881afce1054caaee559360e2df1d497d857a12ae76b99ce765ac985adf48d17f9a759b262f8b134e9adf0"; 427 + sha512 = "f819c1bc97298445f3d3d5ef91470a7ff370a5db5e4884e8c2590e06bbfbf9a33c7d1cb9919379a6aa654e47f49b6f9e127584eeb29cb14f2e73efc01d4f8ee7"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/hr/thunderbird-52.5.2.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/hr/thunderbird-52.6.0.tar.bz2"; 430 430 locale = "hr"; 431 431 arch = "linux-i686"; 432 - sha512 = "552ebbc20522633fdd27117a941a0541bc3195b4a650612e6bf9f5e341f09c39efe1a58dcb9b0bf3ebb4797c7cf49e7d8a8d7922d2f3cb83284f9a3dca7e6b68"; 432 + sha512 = "bdebf02084d98a6279c27d914935e4e8486d86cb27475e99983ab0cd8166f78c82b6815528f7afc10e6aae8f0859c393f6f42b7d1a081925b1fe2053f309052f"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/hsb/thunderbird-52.5.2.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/hsb/thunderbird-52.6.0.tar.bz2"; 435 435 locale = "hsb"; 436 436 arch = "linux-i686"; 437 - sha512 = "f92450010bfb1d1620bd4819103d89f0d58af567231219ff106dbd48550e04af2900b362b93bd199482aaeb72a0ac88344e3767d754d6934d401cca13af4b718"; 437 + sha512 = "b0db8f59739e0ead2d0ec64bf00f6b62854b2b55b34db04e31c27db14b3b67e6af3bc9d857fb528e4e6115e3e1f2da75b685b17a33cf9ea976cca7ef5ebecb56"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/hu/thunderbird-52.5.2.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/hu/thunderbird-52.6.0.tar.bz2"; 440 440 locale = "hu"; 441 441 arch = "linux-i686"; 442 - sha512 = "6a4d10925475f3fc499f49894f6c79de88bd394c9b3359efb326e55aa3e1af9b7d6ee2c853908bedd95e113d697ae3b25e612dff72d81d01addb1fbc39c6ea36"; 442 + sha512 = "10ca02217736663a1fb44e20430bf2ac3a76fb5f87e57e539361ba12361c2f79aa3892fac02c4365890c6506eb86bde8fc955dd126eeddefb7b27813050d1861"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/hy-AM/thunderbird-52.5.2.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/hy-AM/thunderbird-52.6.0.tar.bz2"; 445 445 locale = "hy-AM"; 446 446 arch = "linux-i686"; 447 - sha512 = "ecf982393bfc9c826dd74ea6c0452788c34958f031636c4f70bf12388e966a3630cde159f3751540b3b917e52f0b64a2cd572d211ef3b61d97725a80f51b4f5e"; 447 + sha512 = "a0240daee40e6d8cd76d81bfbc4bd47052f9e20a00b8c687806633eb72e16d9393a6005c16f5391d2caa5a55fb7e0b7e12d1097fe140d6fd664e3ca40358b597"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/id/thunderbird-52.5.2.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/id/thunderbird-52.6.0.tar.bz2"; 450 450 locale = "id"; 451 451 arch = "linux-i686"; 452 - sha512 = "a4d735acd212827ceea6205125e8d38f292b0994a5375738857b12531aaa947539033fe3be3e198eae82b77647d243227200a9fafb4ff2729bf4b0028868295f"; 452 + sha512 = "4450789df3c0176cde9adac0f8b075ca64690c0278b6da9de4040faefa35a9c915de1daec1e1b1ccae2d80c8d55f664c8535d9cc31ade68ef8081fc3f102e992"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/is/thunderbird-52.5.2.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/is/thunderbird-52.6.0.tar.bz2"; 455 455 locale = "is"; 456 456 arch = "linux-i686"; 457 - sha512 = "8d4b0a3eef192d42ecc9c65eb692b5c35ead5c1a7ef17f575e96e06f8990a76607b31abafbb03cabbdd4385eefcb09bb0477c7a6cff1b5fc3a60bc9fb1d0518e"; 457 + sha512 = "9ad56f873a0138d55a34b6058681c9edb185734c3b358aa1ffd91161403cba5fa0a2d02d858fe45ebbb2e991c0a8da1bfcb6516c9836e26a3aec7e2160f292a4"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/it/thunderbird-52.5.2.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/it/thunderbird-52.6.0.tar.bz2"; 460 460 locale = "it"; 461 461 arch = "linux-i686"; 462 - sha512 = "4f2d5c1bd7cc404bb8ab6097bc3dd40424a745f8a6cbc0e73722a28d68a582150acbdab83e02b89811c6617e63a2d56f5f02f6fc463092e8e959a91552a6f3d8"; 462 + sha512 = "242f2c9b2a7821bbd6601f4aeccbfe8f9c31556a061c0200b1139ce28c613c3781fa0ece4c9674c19a2283f647b2804820f29e26cba9ecfdc53a6b05964e2762"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/ja/thunderbird-52.5.2.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/ja/thunderbird-52.6.0.tar.bz2"; 465 465 locale = "ja"; 466 466 arch = "linux-i686"; 467 - sha512 = "78445e5bb7211d7319609edb30e063c3584ed8c92eb4fb2953520720125306c28905e2248eb5825d6bc09399d38e35f37be57707e64edd3aae555b4ea748205f"; 467 + sha512 = "1686f8cfc156744f2e9c02afa19ca00ac29db0e6f9b07900aae9b068928ff30431350ddb75824918df5a64e076d88b312f1055b74db44ec7cb909d505d2c013d"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/kab/thunderbird-52.5.2.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/kab/thunderbird-52.6.0.tar.bz2"; 470 470 locale = "kab"; 471 471 arch = "linux-i686"; 472 - sha512 = "7ad9d0213a2cd6297cf899f311ea3b8a7493f8596c352c351aa5aae3c7b0639c787dfda9d63adde7b2d920277c09d987b690506c762e24da16d86f985cb8f846"; 472 + sha512 = "cadfcf6a02732831411f180d0363d3c3cb08e31d7d108b5f55d14bb75b6c48a744b40ec2a964f659904fde4c5e82ea8b89651db55406e5327db41c6f15f74416"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/ko/thunderbird-52.5.2.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/ko/thunderbird-52.6.0.tar.bz2"; 475 475 locale = "ko"; 476 476 arch = "linux-i686"; 477 - sha512 = "a76a8acadbf082a7fbaecae8798fbb3fec4d03515db2f0a7d2d10d15ef468c128329e79f68e9b0075c4a7767bf56de5d3f1f5521cfa7beaad2fa2026fecb43f2"; 477 + sha512 = "4b4e6bc229049210695536a0e12d685995bf439ab8b2b7879142c93cc749882ed79b98063fabd4df97503e771f585cbfc1590b2a3815a6121a7e43417addaaad"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/lt/thunderbird-52.5.2.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/lt/thunderbird-52.6.0.tar.bz2"; 480 480 locale = "lt"; 481 481 arch = "linux-i686"; 482 - sha512 = "cd8911a16d2662f5b80b76b04013113a8e9a231d25404afebe29852b5335d587a1dd22aaa74727c1b74ae5b26ffbd0f4723fc86ecef5c43397485a5199d65b71"; 482 + sha512 = "5d73c90f57e50500debfccb555183cb616ac9d893a19ee29fe22f4823085bd62aea156fd5c0f0f6ff49291636c4d90af253096416aeb87982da5455bf548a40b"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/nb-NO/thunderbird-52.5.2.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/nb-NO/thunderbird-52.6.0.tar.bz2"; 485 485 locale = "nb-NO"; 486 486 arch = "linux-i686"; 487 - sha512 = "3a82189796c1bbbe4633ef7beb054cd5f324504173678aae2763714b4ca25b04bce479eb63d89abe920c89ce7a4159eefa5e27b6e5959d2bea01a4cd53e13e58"; 487 + sha512 = "0adf9e6b10010ea5cce216a510e53fc5dc9c2066eceacf3c3c6bda7526b3bfef1083b130c08432dc59f09e02e19f0c4a5b885cb43627771aec00d78828377eb6"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/nl/thunderbird-52.5.2.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/nl/thunderbird-52.6.0.tar.bz2"; 490 490 locale = "nl"; 491 491 arch = "linux-i686"; 492 - sha512 = "63e40217f5abea50375c0fc0060cab6c6291acb25d468edde8a14751c0693f0e9d751cbdee339a2c141269edad6c4ac87ec37f440257b5a78492bc43e66a9cd6"; 492 + sha512 = "372e39c33a78e70d628fc1bc1a9719b3d902d67eead4e47091b40913a4aa76dac63db003cae8113f7d194cc6fd24cad13c4e87aefd1d6bf425434835c983ca7a"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/nn-NO/thunderbird-52.5.2.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/nn-NO/thunderbird-52.6.0.tar.bz2"; 495 495 locale = "nn-NO"; 496 496 arch = "linux-i686"; 497 - sha512 = "bfa15dfb0606ca225ec370426b983a17c614dc850b665e40ba648504f5d9bf556a2f31ec20533fe739ff94f57f3eb5486f422972c7ed8c08d8cd7c8a023f9937"; 497 + sha512 = "1c66f021fbdf85e1aaed26e5a6d3abcbc9d71e91126bca10a6f8b62b10abf3927a44ae559136478fd9628dfe3409c4edd83f3336302c84fb0b6be6d4031dbb3a"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/pa-IN/thunderbird-52.5.2.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/pa-IN/thunderbird-52.6.0.tar.bz2"; 500 500 locale = "pa-IN"; 501 501 arch = "linux-i686"; 502 - sha512 = "6989775d3e36ec43aeccf3db32627d3f1be13021943a088385313fc7111d4288b8daa32ec37a9679353d68a9f15761fac2f7a4eb7dc1a60e3d15598296b11f82"; 502 + sha512 = "aba5a6804f08eb303e71aba94b11116f253dd19dd31e10c05ad5469800378ffef678a90a8a33db2da516bb55ea2d1d1b5537c3c11ff9132ce9ce890fb4e8e413"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/pl/thunderbird-52.5.2.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/pl/thunderbird-52.6.0.tar.bz2"; 505 505 locale = "pl"; 506 506 arch = "linux-i686"; 507 - sha512 = "05d252299552f987641be34e5f3462d56b08b01a66637b2d039d1a39f2fdb1b9b986ecd353bc69290bd64b5858b2e7fb7c928209cdbb98b27fca479ec8f959b4"; 507 + sha512 = "19559239283420bac401dfefec812bbc18d33483380c44f217b70d9412b3d93f9ab3c2f5d9d518191fd891316e9ccb5b21f901676026f7ad2414a4541d584f98"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/pt-BR/thunderbird-52.5.2.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/pt-BR/thunderbird-52.6.0.tar.bz2"; 510 510 locale = "pt-BR"; 511 511 arch = "linux-i686"; 512 - sha512 = "b40deb4d5239e335f2c2e65d676cb6528c3320ee28bc9d83dd53bae2a486bcce2921726309754cc0bc155d3f8a0f56d69aa98e782bb4b8375cfcebfee5f58320"; 512 + sha512 = "64ada0291a3da9713eb81cd05ddbcddd70379bf07a14e019580bbb7b5fea4976ad7aeae87a651da070139e975bb52f66271ed3124eeada4d6a90f4afed948d3f"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/pt-PT/thunderbird-52.5.2.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/pt-PT/thunderbird-52.6.0.tar.bz2"; 515 515 locale = "pt-PT"; 516 516 arch = "linux-i686"; 517 - sha512 = "0afa965096f5a79b79b3e49af1758dc200ceb8161192a97d260313f9582f1c8b7a1d4e54e093cca6b9c92a9458dd38ba0493fdd1d6567f0505a90fc9bd97f09a"; 517 + sha512 = "ce57a764ee2a529d7e37b6d620cf7c3825f7af1cc04da0502d64d2a7fb577a27a171a4f5d589c3f5e738192241776be4119d45958b2d77fbe3ae4f82279ab380"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/rm/thunderbird-52.5.2.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/rm/thunderbird-52.6.0.tar.bz2"; 520 520 locale = "rm"; 521 521 arch = "linux-i686"; 522 - sha512 = "c9babc6d6e85936a251d4f7214991a06a3b92c6ae207a8012fe14cffb277a6b2468213a4ba94672a360bfdf9f4b817b8663cc15ceeafb79a63cbac13310e1aca"; 522 + sha512 = "04bc57c8360be5917fe2e05b6b672fab614ea5a6ff150c83242ee20e89756f2f24afa096249fad5f2795c47e570815281bce70449385efc5e510c64204e5f7cb"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/ro/thunderbird-52.5.2.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/ro/thunderbird-52.6.0.tar.bz2"; 525 525 locale = "ro"; 526 526 arch = "linux-i686"; 527 - sha512 = "86f303e7878cb988ee1773e6de2ea6b433028d4bfd40d9388384b14b5343b1de9b6b5084f92f1c95b4110ecc7fda669ed98d50dbb6266a775f4e058d5083e24a"; 527 + sha512 = "86c790e5b3faeface66d001ea9e56006ac2955883337204e5f79764cdf74860df210688f8467c9f7b0051c9efd5cdbc5c98b615656155b99361bbba656254a47"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/ru/thunderbird-52.5.2.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/ru/thunderbird-52.6.0.tar.bz2"; 530 530 locale = "ru"; 531 531 arch = "linux-i686"; 532 - sha512 = "d262ad2a73ab34bdecf6d180840922bfe16fdd4dc7097ccd900712d99ca915da648f2a196accbf6ff9946d9fc48c674e9eb0f0bafdfc94cd6f9069139cf0f036"; 532 + sha512 = "cbf316a94b64d02ee83fdafddbb60daac5157ea11c57889703bde88e3c4baec720dde515e9864f021cbb39e6945a33ccf909623fda0abe542e07b11eab8154d4"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/si/thunderbird-52.5.2.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/si/thunderbird-52.6.0.tar.bz2"; 535 535 locale = "si"; 536 536 arch = "linux-i686"; 537 - sha512 = "6b39cd9501b2dc44d033efe9524c5865cad8fdfd8224a51fb04679227e5306d67d05a9acaf4f5810cd67e6d10b1afc69ff80e63a7926616c35c79ecc3f02d93b"; 537 + sha512 = "cf0dddbe01bddd623ce5052f0a72dee9da4eb5de1932d0a0a656baba55c79eaec51387e37f74c1a1a754ee71def8c972af5dda5a5bf9e78c19a2c11c1cc42e57"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/sk/thunderbird-52.5.2.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/sk/thunderbird-52.6.0.tar.bz2"; 540 540 locale = "sk"; 541 541 arch = "linux-i686"; 542 - sha512 = "356c86279387b023540fba86f73376b1be12413887f8ea2c3b706ccc268aad282d77b7eb863e58d6f15f66516dd4bd8f56a8f413815753dfd6496f81ee842aea"; 542 + sha512 = "5c70a7e8a47e44a47eac2d00526c4c8da340121c1fc8c136b3b40cbe0809548e9cde6d6dc76d1ad679d7bdedefdaf3fc373b2c124cca6b36a9cdb9f4e6da939a"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/sl/thunderbird-52.5.2.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/sl/thunderbird-52.6.0.tar.bz2"; 545 545 locale = "sl"; 546 546 arch = "linux-i686"; 547 - sha512 = "86d035a6b7108fab33582eb665afce9063e3d55b0c468b81569503cdde7ffe169de227024e94a60dd45e39073eaa3c3f313bf061c0ba492b66f75f79941c6100"; 547 + sha512 = "9bbaf000fd2c1fe28f0f64c31c7736a2595399788498ae8be8fdac8dabc709efeacd8fb1f6ae8a095c130ff7620e1b7c6e909959b9c724b7bde736049664357c"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/sq/thunderbird-52.5.2.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/sq/thunderbird-52.6.0.tar.bz2"; 550 550 locale = "sq"; 551 551 arch = "linux-i686"; 552 - sha512 = "f2dd5958774c81710aa59d7c9cf8543c86d82cd21da16b13ad1580cb2680df5caf973cf28a505fb994ad809264deeceea8806641fa27b9df5a7f26c725030515"; 552 + sha512 = "6f8d71fa87777b11f5ebf14c6811ce9a0c2c380db5b7f3fe774219cc60bea6d4f59de8a3dd193d855725c3a0e5470b36dc0538f94539d637be14de5d8e480c7b"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/sr/thunderbird-52.5.2.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/sr/thunderbird-52.6.0.tar.bz2"; 555 555 locale = "sr"; 556 556 arch = "linux-i686"; 557 - sha512 = "47a96a821fb825b6624262bbc0138027b842a9a69985af8903a7bfd435f6cbd3211e382899f3cc989cf716759aad927a8be22b2500f42f75362cfad09dbe67fe"; 557 + sha512 = "0bbcd2a98f767a8836d054a97c797a0ea7eac5c08fed9177189474e47e8dc50d395735c0eaf8c6e839ac608084c6e533a3b20fda5e69ad74ada53636f1181359"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/sv-SE/thunderbird-52.5.2.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/sv-SE/thunderbird-52.6.0.tar.bz2"; 560 560 locale = "sv-SE"; 561 561 arch = "linux-i686"; 562 - sha512 = "978c8c41034137361663f2b12818477baac0e795e4c1ca7f7a013a8e1bb68534ef2a8a9d73e31c1ded7461bc5dc6298fc628dc6190b3657ce415f9687a3ed85e"; 562 + sha512 = "22cc597657e44124162a6b8693022bd4086e3b4e0f9e42342c997bd333e1182163f0ca0c67d91cbb5e18c45605c877eb69d00372c86a9378ed2e7846547f3964"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/ta-LK/thunderbird-52.5.2.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/ta-LK/thunderbird-52.6.0.tar.bz2"; 565 565 locale = "ta-LK"; 566 566 arch = "linux-i686"; 567 - sha512 = "970405c59d2589e49c53f0ab37e959c6f3b94bac41929ac6d5776c7b78b91bc0f8a6c1acee1557338b76bb8fc2a9f62f179a0ad10a0a8c984254d39577402556"; 567 + sha512 = "902832bf66b2efd39cf038e9361bf0ee8f9682e73a42895ccf6bb637eeabb8d4d5e8b3b3d28bfa52e537ad1babee6bbb8d033c538a61880920ace6a4a7cadf95"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/tr/thunderbird-52.5.2.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/tr/thunderbird-52.6.0.tar.bz2"; 570 570 locale = "tr"; 571 571 arch = "linux-i686"; 572 - sha512 = "cec76a997708b5339d5e49baea40125226f4bd708fa57f43f7812e2c7be686515986b90ab6ee525dadcaccbd9b9ea2c961e1a645b2c9634062e3e0c9c00ce2dc"; 572 + sha512 = "70dbb015aa4acf35d5cba0e9d8916bed2603c7e44574c98e98e56edfb68db3ab572402fda5c809d838c51a2e3f135cd3b86f2dde44acd2e1ae2f12cecc276655"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/uk/thunderbird-52.5.2.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/uk/thunderbird-52.6.0.tar.bz2"; 575 575 locale = "uk"; 576 576 arch = "linux-i686"; 577 - sha512 = "be710c5a5d28b34136ad72456ab9893d7c31dc0f3eea8cfc38d70169c37df5c96fb3aa18b72555e081115d0791f3a634325da191ac004ffc6a38d1412e140e95"; 577 + sha512 = "9fd85a4f4366caea3409cca47df70d2f028c7d85c248ebbe5e7e92005d98d45947639fae2aac8a145e4cad12cc92e368b9f86de4623a7d1a35e0485fb35cff97"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/vi/thunderbird-52.5.2.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/vi/thunderbird-52.6.0.tar.bz2"; 580 580 locale = "vi"; 581 581 arch = "linux-i686"; 582 - sha512 = "7d1f59f1fd78609700b6d6246087b88c5190139c79e7e60f2eaba91908ff0afbac0bce0e2a60594cda0800cf68ab0b5568702e0cfcfd1718e4cf46a88f20bc01"; 582 + sha512 = "205b22a39b795946f019cbb9e8c1813a0ca9f59551c9ea30c661fbe43bbf1d87069dd3992e71c83226b2559cdb4db2186b37120c847367b6a4e1b16aba24510f"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/zh-CN/thunderbird-52.5.2.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/zh-CN/thunderbird-52.6.0.tar.bz2"; 585 585 locale = "zh-CN"; 586 586 arch = "linux-i686"; 587 - sha512 = "5763d93646a83b8a88e8c4b1c1c72101831f72323b600d576619330e2cf77ac7a9dc668aef5ef59188e0f467db900d1d8f3c2ef299f422f83de51f53519c70be"; 587 + sha512 = "d1a9247b1db70ddba4f0cf80af7b8606e6bf006b31d3e771a4047dd7ccd121114bab900c38c02f36c4b60636caae75047f153bafd06aacf1b546c3d8af01806a"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.5.2/linux-i686/zh-TW/thunderbird-52.5.2.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.6.0/linux-i686/zh-TW/thunderbird-52.6.0.tar.bz2"; 590 590 locale = "zh-TW"; 591 591 arch = "linux-i686"; 592 - sha512 = "cd593b08ed5f31dd89b44e9b79b1db324c51facf63e9d9c0c2ad847b9cc13a0548e831a87078c9c0ae910512c4855e6f3ae22d1c40189e082ff6ff26224c35b4"; 592 + sha512 = "a92b42e7e1869ad91d8343072d508df6bb8e67ddf7d929d4911457c5bba04fc1ec7d3218685954a4ded7ecf819bfbef975813fb2bbb9d1da60444b83f1f0fdb9"; 593 593 } 594 594 ]; 595 595 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/default.nix
··· 22 22 wrapperTool = if enableGTK3 then wrapGAppsHook else makeWrapper; 23 23 in stdenv.mkDerivation rec { 24 24 name = "thunderbird-${version}"; 25 - version = "52.5.2"; 25 + version = "52.6.0"; 26 26 27 27 src = fetchurl { 28 28 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 29 - sha512 = "d626d3d37959539b15b5d2ae4a580fcc160380974bfc1a69a1fc8ff2435932e90a69fa386d5ecb6721d9154603c6b7d063e3368f6f995fea057eb593c06ef4ff"; 29 + sha512 = "80742c95ed61d1cb2e72b71bb23bdd211a40240ab4393e9f028a38f902547372084a8f56445e2394484be088a7b9801405f3d6618fb2742601cc968bf34427f0"; 30 30 }; 31 31 32 32 # New sed no longer tolerates this mistake.
+3 -3
pkgs/applications/science/biology/igv/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "igv-${version}"; 5 - version = "2.3.98"; 5 + version = "2.4.6"; 6 6 7 7 src = fetchurl { 8 - url = "http://data.broadinstitute.org/igv/projects/downloads/IGV_${version}.zip"; 9 - sha256 = "1bjdsvx8jsbcry6v7yfclh3vrlsvaw38f3s9587lklj63zj638l2"; 8 + url = "http://data.broadinstitute.org/igv/projects/downloads/2.4/IGV_${version}.zip"; 9 + sha256 = "00p9xhfn6snzm31q9l3dxccsj7rhlci8n3pgpy3k67q91mi2hkna"; 10 10 }; 11 11 12 12 buildInputs = [ unzip jre ];
+25
pkgs/applications/science/biology/kallisto/default.nix
··· 1 + { stdenv, fetchFromGitHub, cmake, hdf5, zlib }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "kallisto-${version}"; 5 + version = "0.43.1"; 6 + 7 + src = fetchFromGitHub { 8 + repo = "kallisto"; 9 + owner = "pachterlab"; 10 + rev = "v${version}"; 11 + sha256 = "04697pf7jvy7vw126s1rn09q4iab9223jvb1nb0jn7ilwkq7pgwz"; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + 16 + buildInputs = [ hdf5 zlib ]; 17 + 18 + meta = with stdenv.lib; { 19 + description = "kallisto is a program for quantifying abundances of transcripts from RNA-Seq data"; 20 + homepage = https://pachterlab.github.io/kallisto; 21 + license = licenses.bsd2; 22 + platforms = platforms.linux; 23 + maintainers = [ maintainers.arcadio ]; 24 + }; 25 + }
+28 -6
pkgs/applications/science/math/sage/default.nix
··· 18 18 # - https://git.archlinux.org/svntogit/community.git/tree/trunk?h=packages/sagemath 19 19 20 20 { stdenv 21 + , bash 21 22 , fetchurl 22 23 , perl 23 24 , gfortran ··· 26 27 , gettext 27 28 , which 28 29 , texlive 30 + , texinfo 29 31 , hevea 30 32 }: 31 33 32 34 stdenv.mkDerivation rec { 33 - version = "8.0"; 35 + version = "8.1"; 34 36 name = "sage-${version}"; 35 37 38 + # Modified version of patchShebangs that patches to the sage-internal version if possible 39 + # and falls back to the system version if not. 40 + patchSageShebangs = ./patchSageShebangs.sh; 36 41 src = fetchurl { 37 42 # Note that the source is *not* fetched from github, since that doesn't 38 43 # the upstream folder with all the source tarballs of the spkgs. ··· 70 75 "http://www-ftp.lip6.fr/pub/math/sagemath/src/sage-${version}.tar.gz" 71 76 "http://ftp.ntua.gr/pub/sagemath/src/sage-${version}.tar.gz" 72 77 ]; 73 - sha256 = "1a9rhb8jby6fdqa2s7n2fl9jwqqlsl7qz7dbpbwvg6jwlrvni7fg"; 78 + sha256 = "1cpcs1mr0yii64s152xmxyd450bfzjb22jjj0zh9y3n6g9alzpyq"; 74 79 }; 75 80 76 81 postPatch = '' 77 82 substituteAllInPlace src/bin/sage-env 83 + bash=${bash} substituteAllInPlace build/bin/sage-spkg 78 84 ''; 79 85 80 86 installPhase = '' ··· 84 90 outputs = [ "out" "doc" ]; 85 91 86 92 buildInputs = [ 93 + bash # needed for the build 87 94 perl # needed for the build 88 95 python # needed for the build 89 - gfortran # needed to build giac 96 + gfortran # needed to build giac, openblas 90 97 autoreconfHook # needed to configure sage with prefix 91 98 gettext # needed to build the singular spkg 92 99 hevea # needed to build the docs of the giac spkg 93 100 which # needed in configure of mpir 94 101 # needed to build the docs of the giac spkg 102 + texinfo # needed to build maxima 95 103 (texlive.combine { inherit (texlive) 96 104 scheme-basic 97 105 collection-pstricks # needed by giac ··· 102 110 }) 103 111 ]; 104 112 113 + nativeBuildInputs = [ gfortran perl which ]; 114 + 105 115 patches = [ 106 116 # fix usages of /bin/rm 107 117 ./spkg-singular.patch 108 118 # help python find the crypt library 109 - ./spkg-python2.patch 110 - ./spkg-python3.patch 119 + # patches python3 and indirectly python2, since those installation files are symlinked 120 + ./spkg-python.patch 111 121 # fix usages of /usr/bin/perl 112 122 ./spkg-git.patch 113 123 # fix usages of /bin/cp and add necessary argument to function call 114 124 ./spkg-giac.patch 115 125 # environment 116 126 ./env.patch 127 + # adjust wrapper shebang and patch shebangs after each spkg build 128 + ./shebangs.patch 117 129 ]; 118 130 119 131 enableParallelBuilding = true; ··· 144 156 preBuild = '' 145 157 # TODO do this conditionally 146 158 export SAGE_SPKG_INSTALL_DOCS='no' 147 - patchShebangs build 159 + # symlink python to make sure the shebangs are patched to the sage path 160 + # while still being able to use python before building it 161 + # (this is important because otherwise sage will try to install python 162 + # packages globally later on) 163 + ln -s "${python}/bin/python2" $out/bin/python2 164 + ln -s "$out/bin/python2" $out/bin/python 165 + touch $out/bin/python3 166 + bash $patchSageShebangs . 148 167 ''; 149 168 150 169 postBuild = '' ··· 153 172 rm -rf "$out/sage-root/src/.git" 154 173 rm -r "$out/sage-root/logs" 155 174 # Fix dependency cycle between out and doc 175 + rm -f "$out/sage-root/config.log" 156 176 rm -f "$out/sage-root/config.status" 157 177 rm -f "$out/sage-root/build/make/Makefile-auto" 158 178 rm -f "$out/sage-home/.sage/gap/libgap-workspace-"* 179 + # Make sure all shebangs are properly patched 180 + bash $patchSageShebangs $out 159 181 ''; 160 182 161 183 # TODO there are some doctest failures, which seem harmless.
+51
pkgs/applications/science/math/sage/patchSageShebangs.sh
··· 1 + # This is a slightly modified version of nix's default patchShebangs 2 + 3 + dir="$1" 4 + 5 + echo "patching sage internal script interpreter paths in $( readlink -f "$dir")" 6 + 7 + find "$dir" -type f -perm -0100 | while read f; do 8 + if [ "$(head -1 "$f" | head -c+2)" != '#!' ]; then 9 + # missing shebang => not a script 10 + continue 11 + fi 12 + 13 + oldInterpreterLine=$(head -1 "$f" | tail -c+3) 14 + read -r oldPath arg0 args <<< "$oldInterpreterLine" 15 + 16 + if $(echo "$oldPath" | grep -q "/bin/env$"); then 17 + # Check for unsupported 'env' functionality: 18 + # - options: something starting with a '-' 19 + # - environment variables: foo=bar 20 + if $(echo "$arg0" | grep -q -- "^-.*\|.*=.*"); then 21 + echo "unsupported interpreter directive \"$oldInterpreterLine\" (set dontPatchShebangs=1 and handle shebang patching yourself)" 22 + exit 1 23 + fi 24 + executable="$arg0" 25 + else 26 + if [ "$oldPath" = "" ]; then 27 + # If no interpreter is specified linux will use /bin/sh. Set 28 + # oldpath="/bin/sh" so that we get /nix/store/.../sh. 29 + oldPath="/bin/sh" 30 + fi 31 + executable="$(basename "$oldPath")" 32 + args="$arg0 $args" 33 + fi 34 + 35 + newPath="$(echo "$out/bin/$executable $args" | sed 's/[[:space:]]*$//')" 36 + if [[ ! -x "$newPath" ]] ; then 37 + newPath="$(command -v "$executable" || true)" 38 + fi 39 + 40 + # Strip trailing whitespace introduced when no arguments are present 41 + newInterpreterLine="$(echo "$newPath $args" | sed 's/[[:space:]]*$//')" 42 + 43 + if [ -n "$oldPath" -a "${oldPath:0:${#NIX_STORE}}" != "$NIX_STORE" ]; then 44 + if [ -n "$newPath" -a "$newPath" != "$oldPath" ]; then 45 + echo "$f: sage interpreter directive changed from \"$oldInterpreterLine\" to \"$newInterpreterLine\"" 46 + # escape the escape chars so that sed doesn't interpret them 47 + escapedInterpreterLine=$(echo "$newInterpreterLine" | sed 's|\\|\\\\|g') 48 + sed -i -e "1 s|.*|#\!$escapedInterpreterLine|" "$f" 49 + fi 50 + fi 51 + done
+36
pkgs/applications/science/math/sage/shebangs.patch
··· 1 + diff --git a/build/bin/sage-spkg b/build/bin/sage-spkg 2 + index 83e61a7e0d..942ba206c7 100755 3 + --- a/build/bin/sage-spkg 4 + +++ b/build/bin/sage-spkg 5 + @@ -648,8 +648,12 @@ if ! sage-apply-patches; then 6 + error_msg "Error applying patches" 7 + exit 1 8 + fi 9 + + 10 + +@bash@/bin/bash @patchSageShebangs@ . 11 + + 12 + cd .. 13 + 14 + + 15 + ################################################################## 16 + # The package has been extracted, prepare for installation 17 + ################################################################## 18 + @@ -671,7 +675,7 @@ write_script_wrapper() { 19 + local tmpscript="$(dirname "$script")/.tmp-${script##*/}" 20 + 21 + cat > "$tmpscript" <<__EOF__ 22 + -#!/usr/bin/env bash 23 + +#! @bash@/bin/bash 24 + 25 + export SAGE_ROOT="$SAGE_ROOT" 26 + export SAGE_SRC="$SAGE_SRC" 27 + @@ -833,6 +837,9 @@ if [ "$UNAME" = "CYGWIN" ]; then 28 + sage-rebase.sh "$SAGE_LOCAL" 2>/dev/null 29 + fi 30 + 31 + +@bash@/bin/bash @patchSageShebangs@ . 32 + +@bash@/bin/bash @patchSageShebangs@ "$out/bin" 33 + + 34 + echo "Successfully installed $PKG_NAME" 35 + 36 + if [ "$SAGE_CHECK" = "yes" ]; then
+13
pkgs/applications/science/math/sage/spkg-python.patch
··· 1 + diff --git a/build/pkgs/python3/spkg-build b/build/pkgs/python3/spkg-build 2 + index 56db087ae5..b450703c5f 100644 3 + --- a/build/pkgs/python3/spkg-build 4 + +++ b/build/pkgs/python3/spkg-build 5 + @@ -27,6 +27,8 @@ fi 6 + export EXTRA_CFLAGS="`testcflags.sh -Wno-unused` $CFLAGS" 7 + unset CFLAGS 8 + 9 + +export LDFLAGS="$LDFLAGS -lcrypt" 10 + + 11 + if [ "$UNAME" = Darwin ]; then 12 + PYTHON_CONFIGURE="--disable-toolbox-glue $PYTHON_CONFIGURE" 13 +
-12
pkgs/applications/science/math/sage/spkg-python2.patch
··· 1 - --- old/build/pkgs/python2/spkg-install 2017-07-21 14:10:00.000000000 -0500 2 - +++ new/build/pkgs/python2/spkg-install 2017-10-15 11:26:54.823134067 -0500 3 - @@ -22,6 +22,9 @@ 4 - 5 - cd src 6 - 7 - +LDFLAGS="-lcrypt $LDFLAGS" 8 - +export LDFLAGS 9 - + 10 - if [ "$SAGE_DEBUG" = "yes" ]; then 11 - echo "Building Python with pydebug" 12 - PYTHON_CONFIGURE="$PYTHON_CONFIGURE --with-pydebug"
-12
pkgs/applications/science/math/sage/spkg-python3.patch
··· 1 - --- old/build/pkgs/python3/spkg-install 2017-07-21 14:10:00.000000000 -0500 2 - +++ new/build/pkgs/python3/spkg-install 2017-10-15 13:11:17.769261404 -0500 3 - @@ -22,6 +22,9 @@ 4 - 5 - cd src 6 - 7 - +LDFLAGS="-lcrypt $LDFLAGS" 8 - +export LDFLAGS 9 - + 10 - if [ "$SAGE_DEBUG" = "yes" ]; then 11 - echo "Building Python with pydebug" 12 - PYTHON_CONFIGURE="$PYTHON_CONFIGURE --with-pydebug"
+1 -1
pkgs/build-support/fetchgit/nix-prefetch-git
··· 184 184 local url 185 185 186 186 # checkout each submodule 187 - hash=$(echo "$l" | awk '{print substr($1,2)}') 187 + hash=$(echo "$l" | awk '{print $1}' | tr -d '-') 188 188 dir=$(echo "$l" | awk '{print $2}') 189 189 name=$( 190 190 git config -f .gitmodules --get-regexp submodule\..*\.path |
+1080 -805
pkgs/build-support/rust/carnix.nix
··· 1 - # Generated by carnix 0.5.0: carnix -o carnix.nix --src ./. Cargo.lock 1 + # Generated by carnix 0.6.0: carnix -o carnix.nix --src ./. Cargo.lock 2 2 { lib, buildPlatform, buildRustCrate, fetchgit }: 3 3 let kernel = buildPlatform.parsed.kernel.name; 4 4 abi = buildPlatform.parsed.abi.name; ··· 7 7 (originName: feature.${originName}) 8 8 (builtins.attrNames feature); 9 9 10 - hasDefault = feature: 11 - let defaultFeatures = builtins.attrNames (feature."default" or {}); in 12 - (defaultFeatures == []) 13 - || (lib.lists.any (originName: feature."default".${originName}) defaultFeatures); 10 + include = includedFiles: src: builtins.filterSource (path: type: 11 + lib.lists.any (f: 12 + let p = toString (src + ("/" + f)); in 13 + (path == p) || (type == "directory" && lib.strings.hasPrefix path p) 14 + ) includedFiles 15 + ) src; 14 16 15 17 mkFeatures = feat: lib.lists.foldl (features: featureName: 16 18 if featureName != "" && hasFeature feat.${featureName} then 17 19 [ featureName ] ++ features 18 20 else 19 21 features 20 - ) (if hasDefault feat then [ "default" ] else []) (builtins.attrNames feat); 21 - aho_corasick_0_6_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 22 - crateName = "aho-corasick"; 23 - version = "0.6.3"; 24 - authors = [ "Andrew Gallant <jamslam@gmail.com>" ]; 25 - sha256 = "1cpqzf6acj8lm06z3f1cg41wn6c2n9l3v49nh0dvimv4055qib6k"; 26 - libName = "aho_corasick"; 27 - crateBin = [ { name = "aho-corasick-dot"; } ]; 28 - inherit dependencies buildDependencies features; 29 - }; 30 - ansi_term_0_10_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 31 - crateName = "ansi_term"; 32 - version = "0.10.2"; 33 - authors = [ "ogham@bsago.me" "Ryan Scheel (Havvy) <ryan.havvy@gmail.com>" "Josh Triplett <josh@joshtriplett.org>" ]; 34 - sha256 = "07k0hfmlhv43lihyxb9d81l5mq5zlpqvv30dkfd3knmv2ginasn9"; 35 - inherit dependencies buildDependencies features; 36 - }; 37 - atty_0_2_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 38 - crateName = "atty"; 39 - version = "0.2.3"; 40 - authors = [ "softprops <d.tangren@gmail.com>" ]; 41 - sha256 = "0zl0cjfgarp5y78nd755lpki5bbkj4hgmi88v265m543yg29i88f"; 42 - inherit dependencies buildDependencies features; 43 - }; 44 - backtrace_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 45 - crateName = "backtrace"; 46 - version = "0.3.4"; 47 - authors = [ "Alex Crichton <alex@alexcrichton.com>" "The Rust Project Developers" ]; 48 - sha256 = "1caba8w3rqd5ghr88ghyz5wgkf81dgx18bj1llkax6qmianc6gk7"; 49 - inherit dependencies buildDependencies features; 50 - }; 51 - backtrace_sys_0_1_16_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 52 - crateName = "backtrace-sys"; 53 - version = "0.1.16"; 54 - authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 55 - sha256 = "1cn2c8q3dn06crmnk0p62czkngam4l8nf57wy33nz1y5g25pszwy"; 56 - build = "build.rs"; 57 - inherit dependencies buildDependencies features; 58 - }; 59 - bitflags_0_7_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 60 - crateName = "bitflags"; 61 - version = "0.7.0"; 62 - authors = [ "The Rust Project Developers" ]; 63 - sha256 = "1hr72xg5slm0z4pxs2hiy4wcyx3jva70h58b7mid8l0a4c8f7gn5"; 64 - inherit dependencies buildDependencies features; 65 - }; 66 - bitflags_1_0_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 67 - crateName = "bitflags"; 68 - version = "1.0.1"; 69 - authors = [ "The Rust Project Developers" ]; 70 - sha256 = "0p4b3nr0s5nda2qmm7xdhnvh4lkqk3xd8l9ffmwbvqw137vx7mj1"; 71 - inherit dependencies buildDependencies features; 72 - }; 73 - carnix_0_5_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 74 - crateName = "carnix"; 75 - version = "0.5.2"; 76 - authors = [ "pe@pijul.org <pe@pijul.org>" ]; 77 - sha256 = "1znj345jziksxxkq7ap3i8p3fp3x4794qggac35d0banj7ml3fv8"; 78 - inherit dependencies buildDependencies features; 79 - }; 80 - cc_1_0_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 81 - crateName = "cc"; 82 - version = "1.0.3"; 83 - authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 84 - sha256 = "193pwqgh79w6k0k29svyds5nnlrwx44myqyrw605d5jj4yk2zmpr"; 85 - inherit dependencies buildDependencies features; 86 - }; 87 - cfg_if_0_1_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 88 - crateName = "cfg-if"; 89 - version = "0.1.2"; 90 - authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 91 - sha256 = "0x06hvrrqy96m97593823vvxcgvjaxckghwyy2jcyc8qc7c6cyhi"; 92 - inherit dependencies buildDependencies features; 93 - }; 94 - clap_2_28_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 95 - crateName = "clap"; 96 - version = "2.28.0"; 97 - authors = [ "Kevin K. <kbknapp@gmail.com>" ]; 98 - sha256 = "0m0rj9xw6mja4gdhqmaldv0q5y5jfsfzbyzfd70mm3857aynq03k"; 99 - inherit dependencies buildDependencies features; 100 - }; 101 - dbghelp_sys_0_2_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 102 - crateName = "dbghelp-sys"; 103 - version = "0.2.0"; 104 - authors = [ "Peter Atashian <retep998@gmail.com>" ]; 105 - sha256 = "0ylpi3bbiy233m57hnisn1df1v0lbl7nsxn34b0anzsgg440hqpq"; 106 - libName = "dbghelp"; 107 - build = "build.rs"; 108 - inherit dependencies buildDependencies features; 109 - }; 110 - dtoa_0_4_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 111 - crateName = "dtoa"; 112 - version = "0.4.2"; 113 - authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 114 - sha256 = "1bxsh6fags7nr36vlz07ik2a1rzyipc8x1y30kjk832hf2pzadmw"; 115 - inherit dependencies buildDependencies features; 116 - }; 117 - either_1_4_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 118 - crateName = "either"; 119 - version = "1.4.0"; 120 - authors = [ "bluss" ]; 121 - sha256 = "04kpfd84lvyrkb2z4sljlz2d3d5qczd0sb1yy37fgijq2yx3vb37"; 122 - inherit dependencies buildDependencies features; 123 - }; 124 - env_logger_0_4_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 125 - crateName = "env_logger"; 126 - version = "0.4.3"; 127 - authors = [ "The Rust Project Developers" ]; 128 - sha256 = "0nrx04p4xa86d5kc7aq4fwvipbqji9cmgy449h47nc9f1chafhgg"; 129 - inherit dependencies buildDependencies features; 130 - }; 131 - error_chain_0_11_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 132 - crateName = "error-chain"; 133 - version = "0.11.0"; 134 - authors = [ "Brian Anderson <banderson@mozilla.com>" "Paul Colomiets <paul@colomiets.name>" "Colin Kiegel <kiegel@gmx.de>" "Yamakaky <yamakaky@yamaworld.fr>" ]; 135 - sha256 = "19nz17q6dzp0mx2jhh9qbj45gkvvgcl7zq9z2ai5a8ihbisfj6d7"; 136 - inherit dependencies buildDependencies features; 137 - }; 138 - fuchsia_zircon_0_2_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 139 - crateName = "fuchsia-zircon"; 140 - version = "0.2.1"; 141 - authors = [ "Raph Levien <raph@google.com>" ]; 142 - sha256 = "0yd4rd7ql1vdr349p6vgq2dnwmpylky1kjp8g1zgvp250jxrhddb"; 143 - inherit dependencies buildDependencies features; 144 - }; 145 - fuchsia_zircon_sys_0_2_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 146 - crateName = "fuchsia-zircon-sys"; 147 - version = "0.2.0"; 148 - authors = [ "Raph Levien <raph@google.com>" ]; 149 - sha256 = "1yrqsrjwlhl3di6prxf5xmyd82gyjaysldbka5wwk83z11mpqh4w"; 150 - inherit dependencies buildDependencies features; 151 - }; 152 - itertools_0_7_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 153 - crateName = "itertools"; 154 - version = "0.7.3"; 155 - authors = [ "bluss" ]; 156 - sha256 = "128a69cnmgpj38rs6lcwzya773d2vx7f9y7012iycjf9yi2pyckj"; 157 - inherit dependencies buildDependencies features; 158 - }; 159 - itoa_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 160 - crateName = "itoa"; 161 - version = "0.3.4"; 162 - authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 163 - sha256 = "1nfkzz6vrgj0d9l3yzjkkkqzdgs68y294fjdbl7jq118qi8xc9d9"; 164 - inherit dependencies buildDependencies features; 165 - }; 166 - kernel32_sys_0_2_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 167 - crateName = "kernel32-sys"; 168 - version = "0.2.2"; 169 - authors = [ "Peter Atashian <retep998@gmail.com>" ]; 170 - sha256 = "1lrw1hbinyvr6cp28g60z97w32w8vsk6pahk64pmrv2fmby8srfj"; 171 - libName = "kernel32"; 172 - build = "build.rs"; 173 - inherit dependencies buildDependencies features; 174 - }; 175 - lazy_static_0_2_11_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 176 - crateName = "lazy_static"; 177 - version = "0.2.11"; 178 - authors = [ "Marvin Löbel <loebel.marvin@gmail.com>" ]; 179 - sha256 = "1x6871cvpy5b96yv4c7jvpq316fp5d4609s9py7qk6cd6x9k34vm"; 180 - inherit dependencies buildDependencies features; 181 - }; 182 - libc_0_2_33_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 183 - crateName = "libc"; 184 - version = "0.2.33"; 185 - authors = [ "The Rust Project Developers" ]; 186 - sha256 = "1l7synziccnvarsq2kk22vps720ih6chmn016bhr2bq54hblbnl1"; 187 - inherit dependencies buildDependencies features; 188 - }; 189 - libsqlite3_sys_0_9_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 190 - crateName = "libsqlite3-sys"; 191 - version = "0.9.0"; 192 - authors = [ "John Gallagher <jgallagher@bignerdranch.com>" ]; 193 - sha256 = "1pnx3i9h85si6cs4nhazfb28hsvk7dn0arnfvpdzpjdnj9z38q57"; 194 - build = "build.rs"; 195 - inherit dependencies buildDependencies features; 196 - }; 197 - linked_hash_map_0_4_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 198 - crateName = "linked-hash-map"; 199 - version = "0.4.2"; 200 - authors = [ "Stepan Koltsov <stepan.koltsov@gmail.com>" "Andrew Paseltiner <apaseltiner@gmail.com>" ]; 201 - sha256 = "04da208h6jb69f46j37jnvsw2i1wqplglp4d61csqcrhh83avbgl"; 202 - inherit dependencies buildDependencies features; 203 - }; 204 - log_0_3_8_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 205 - crateName = "log"; 206 - version = "0.3.8"; 207 - authors = [ "The Rust Project Developers" ]; 208 - sha256 = "1c43z4z85sxrsgir4s1hi84558ab5ic7jrn5qgmsiqcv90vvn006"; 209 - inherit dependencies buildDependencies features; 210 - }; 211 - lru_cache_0_1_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 212 - crateName = "lru-cache"; 213 - version = "0.1.1"; 214 - authors = [ "Stepan Koltsov <stepan.koltsov@gmail.com>" ]; 215 - sha256 = "1hl6kii1g54sq649gnscv858mmw7a02xj081l4vcgvrswdi2z8fw"; 216 - inherit dependencies buildDependencies features; 217 - }; 218 - memchr_1_0_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 219 - crateName = "memchr"; 220 - version = "1.0.2"; 221 - authors = [ "Andrew Gallant <jamslam@gmail.com>" "bluss" ]; 222 - sha256 = "0dfb8ifl9nrc9kzgd5z91q6qg87sh285q1ih7xgrsglmqfav9lg7"; 223 - inherit dependencies buildDependencies features; 224 - }; 225 - nom_3_2_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 226 - crateName = "nom"; 227 - version = "3.2.1"; 228 - authors = [ "contact@geoffroycouprie.com" ]; 229 - sha256 = "1vcllxrz9hdw6j25kn020ka3psz1vkaqh1hm3yfak2240zrxgi07"; 230 - inherit dependencies buildDependencies features; 231 - }; 232 - num_traits_0_1_40_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 233 - crateName = "num-traits"; 234 - version = "0.1.40"; 235 - authors = [ "The Rust Project Developers" ]; 236 - sha256 = "1fr8ghp4i97q3agki54i0hpmqxv3s65i2mqd1pinc7w7arc3fplw"; 237 - inherit dependencies buildDependencies features; 238 - }; 239 - pkg_config_0_3_9_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 240 - crateName = "pkg-config"; 241 - version = "0.3.9"; 242 - authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 243 - sha256 = "06k8fxgrsrxj8mjpjcq1n7mn2p1shpxif4zg9y5h09c7vy20s146"; 244 - inherit dependencies buildDependencies features; 245 - }; 246 - quote_0_3_15_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 247 - crateName = "quote"; 248 - version = "0.3.15"; 249 - authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 250 - sha256 = "09il61jv4kd1360spaj46qwyl21fv1qz18fsv2jra8wdnlgl5jsg"; 251 - inherit dependencies buildDependencies features; 252 - }; 253 - rand_0_3_18_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 254 - crateName = "rand"; 255 - version = "0.3.18"; 256 - authors = [ "The Rust Project Developers" ]; 257 - sha256 = "15d7c3myn968dzjs0a2pgv58hzdavxnq6swgj032lw2v966ir4xv"; 258 - inherit dependencies buildDependencies features; 259 - }; 260 - redox_syscall_0_1_32_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 261 - crateName = "redox_syscall"; 262 - version = "0.1.32"; 263 - authors = [ "Jeremy Soller <jackpot51@gmail.com>" ]; 264 - sha256 = "1axxj8x6ngh6npkzqc5h216fajkcyrdxdgb7m2f0n5xfclbk47fv"; 265 - libName = "syscall"; 266 - inherit dependencies buildDependencies features; 267 - }; 268 - redox_termios_0_1_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 269 - crateName = "redox_termios"; 270 - version = "0.1.1"; 271 - authors = [ "Jeremy Soller <jackpot51@gmail.com>" ]; 272 - sha256 = "04s6yyzjca552hdaqlvqhp3vw0zqbc304md5czyd3axh56iry8wh"; 273 - libPath = "src/lib.rs"; 274 - inherit dependencies buildDependencies features; 275 - }; 276 - regex_0_2_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 277 - crateName = "regex"; 278 - version = "0.2.2"; 279 - authors = [ "The Rust Project Developers" ]; 280 - sha256 = "1f1zrrynfylg0vcfyfp60bybq4rp5g1yk2k7lc7fyz7mmc7k2qr7"; 281 - inherit dependencies buildDependencies features; 282 - }; 283 - regex_syntax_0_4_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 284 - crateName = "regex-syntax"; 285 - version = "0.4.1"; 286 - authors = [ "The Rust Project Developers" ]; 287 - sha256 = "01yrsm68lj86ad1whgg1z95c2pfsvv58fz8qjcgw7mlszc0c08ls"; 288 - inherit dependencies buildDependencies features; 289 - }; 290 - rusqlite_0_13_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 291 - crateName = "rusqlite"; 292 - version = "0.13.0"; 293 - authors = [ "John Gallagher <jgallagher@bignerdranch.com>" ]; 294 - sha256 = "1hj2464ar2y4324sk3jx7m9byhkcp60krrrs1v1i8dlhhlnkb9hc"; 295 - inherit dependencies buildDependencies features; 296 - }; 297 - rustc_demangle_0_1_5_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 298 - crateName = "rustc-demangle"; 299 - version = "0.1.5"; 300 - authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 301 - sha256 = "096kkcx9j747700fhxj1s4rlwkj21pqjmvj64psdj6bakb2q13nc"; 302 - inherit dependencies buildDependencies features; 303 - }; 304 - serde_1_0_21_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 305 - crateName = "serde"; 306 - version = "1.0.21"; 307 - authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" "David Tolnay <dtolnay@gmail.com>" ]; 308 - sha256 = "10almq7pvx8s4ryiqk8gf7fj5igl0yq6dcjknwc67rkmxd8q50w3"; 309 - inherit dependencies buildDependencies features; 310 - }; 311 - serde_derive_1_0_21_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 312 - crateName = "serde_derive"; 313 - version = "1.0.21"; 314 - authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" "David Tolnay <dtolnay@gmail.com>" ]; 315 - sha256 = "0r20qyimm9scfaz7lc0swnhik9d045zklmbidd0zzpd4b2f3jsqm"; 316 - procMacro = true; 317 - inherit dependencies buildDependencies features; 318 - }; 319 - serde_derive_internals_0_17_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 320 - crateName = "serde_derive_internals"; 321 - version = "0.17.0"; 322 - authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" "David Tolnay <dtolnay@gmail.com>" ]; 323 - sha256 = "1g1j3v6pj9wbcz3v3w4smjpwrcdwjicmf6yd5cbai04as9iwhw74"; 324 - inherit dependencies buildDependencies features; 325 - }; 326 - serde_json_1_0_6_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 327 - crateName = "serde_json"; 328 - version = "1.0.6"; 329 - authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" "David Tolnay <dtolnay@gmail.com>" ]; 330 - sha256 = "1kacyc59splwbg8gr7qs32pp9smgy1khq0ggnv07yxhs7h355vjz"; 331 - inherit dependencies buildDependencies features; 332 - }; 333 - strsim_0_6_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 334 - crateName = "strsim"; 335 - version = "0.6.0"; 336 - authors = [ "Danny Guo <dannyguo91@gmail.com>" ]; 337 - sha256 = "1lz85l6y68hr62lv4baww29yy7g8pg20dlr0lbaswxmmcb0wl7gd"; 338 - inherit dependencies buildDependencies features; 339 - }; 340 - syn_0_11_11_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 341 - crateName = "syn"; 342 - version = "0.11.11"; 343 - authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 344 - sha256 = "0yw8ng7x1dn5a6ykg0ib49y7r9nhzgpiq2989rqdp7rdz3n85502"; 345 - inherit dependencies buildDependencies features; 346 - }; 347 - synom_0_11_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 348 - crateName = "synom"; 349 - version = "0.11.3"; 350 - authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 351 - sha256 = "1l6d1s9qjfp6ng2s2z8219igvlv7gyk8gby97sdykqc1r93d8rhc"; 352 - inherit dependencies buildDependencies features; 353 - }; 354 - tempdir_0_3_5_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 355 - crateName = "tempdir"; 356 - version = "0.3.5"; 357 - authors = [ "The Rust Project Developers" ]; 358 - sha256 = "0rirc5prqppzgd15fm8ayan349lgk2k5iqdkrbwrwrv5pm4znsnz"; 359 - inherit dependencies buildDependencies features; 360 - }; 361 - termion_1_5_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 362 - crateName = "termion"; 363 - version = "1.5.1"; 364 - authors = [ "ticki <Ticki@users.noreply.github.com>" "gycos <alexandre.bury@gmail.com>" "IGI-111 <igi-111@protonmail.com>" ]; 365 - sha256 = "02gq4vd8iws1f3gjrgrgpajsk2bk43nds5acbbb4s8dvrdvr8nf1"; 366 - inherit dependencies buildDependencies features; 367 - }; 368 - textwrap_0_9_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 369 - crateName = "textwrap"; 370 - version = "0.9.0"; 371 - authors = [ "Martin Geisler <martin@geisler.net>" ]; 372 - sha256 = "18jg79ndjlwndz01mlbh82kkr2arqm658yn5kwp65l5n1hz8w4yb"; 373 - inherit dependencies buildDependencies features; 374 - }; 375 - thread_local_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 376 - crateName = "thread_local"; 377 - version = "0.3.4"; 378 - authors = [ "Amanieu d'Antras <amanieu@gmail.com>" ]; 379 - sha256 = "1y6cwyhhx2nkz4b3dziwhqdvgq830z8wjp32b40pjd8r0hxqv2jr"; 380 - inherit dependencies buildDependencies features; 381 - }; 382 - time_0_1_38_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 383 - crateName = "time"; 384 - version = "0.1.38"; 385 - authors = [ "The Rust Project Developers" ]; 386 - sha256 = "1ws283vvz7c6jfiwn53rmc6kybapr4pjaahfxxrz232b0qzw7gcp"; 387 - inherit dependencies buildDependencies features; 388 - }; 389 - toml_0_4_5_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 390 - crateName = "toml"; 391 - version = "0.4.5"; 392 - authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 393 - sha256 = "06zxqhn3y58yzjfaykhcrvlf7p2dnn54kn3g4apmja3cn5b18lkk"; 394 - inherit dependencies buildDependencies features; 395 - }; 396 - unicode_width_0_1_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 397 - crateName = "unicode-width"; 398 - version = "0.1.4"; 399 - authors = [ "kwantam <kwantam@gmail.com>" ]; 400 - sha256 = "1rp7a04icn9y5c0lm74nrd4py0rdl0af8bhdwq7g478n1xifpifl"; 401 - inherit dependencies buildDependencies features; 402 - }; 403 - unicode_xid_0_0_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 404 - crateName = "unicode-xid"; 405 - version = "0.0.4"; 406 - authors = [ "erick.tryzelaar <erick.tryzelaar@gmail.com>" "kwantam <kwantam@gmail.com>" ]; 407 - sha256 = "1dc8wkkcd3s6534s5aw4lbjn8m67flkkbnajp5bl8408wdg8rh9v"; 408 - inherit dependencies buildDependencies features; 409 - }; 410 - unreachable_1_0_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 411 - crateName = "unreachable"; 412 - version = "1.0.0"; 413 - authors = [ "Jonathan Reem <jonathan.reem@gmail.com>" ]; 414 - sha256 = "1am8czbk5wwr25gbp2zr007744fxjshhdqjz9liz7wl4pnv3whcf"; 415 - inherit dependencies buildDependencies features; 416 - }; 417 - utf8_ranges_1_0_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 418 - crateName = "utf8-ranges"; 419 - version = "1.0.0"; 420 - authors = [ "Andrew Gallant <jamslam@gmail.com>" ]; 421 - sha256 = "0rzmqprwjv9yp1n0qqgahgm24872x6c0xddfym5pfndy7a36vkn0"; 422 - inherit dependencies buildDependencies features; 423 - }; 424 - vcpkg_0_2_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 425 - crateName = "vcpkg"; 426 - version = "0.2.2"; 427 - authors = [ "Jim McGrath <jimmc2@gmail.com>" ]; 428 - sha256 = "1fl5j0ksnwrnsrf1b1a9lqbjgnajdipq0030vsbhx81mb7d9478a"; 429 - inherit dependencies buildDependencies features; 430 - }; 431 - vec_map_0_8_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 432 - crateName = "vec_map"; 433 - version = "0.8.0"; 434 - authors = [ "Alex Crichton <alex@alexcrichton.com>" "Jorge Aparicio <japaricious@gmail.com>" "Alexis Beingessner <a.beingessner@gmail.com>" "Brian Anderson <>" "tbu- <>" "Manish Goregaokar <>" "Aaron Turon <aturon@mozilla.com>" "Adolfo Ochagavía <>" "Niko Matsakis <>" "Steven Fackler <>" "Chase Southwood <csouth3@illinois.edu>" "Eduard Burtescu <>" "Florian Wilkens <>" "Félix Raimundo <>" "Tibor Benke <>" "Markus Siemens <markus@m-siemens.de>" "Josh Branchaud <jbranchaud@gmail.com>" "Huon Wilson <dbau.pp@gmail.com>" "Corey Farwell <coref@rwell.org>" "Aaron Liblong <>" "Nick Cameron <nrc@ncameron.org>" "Patrick Walton <pcwalton@mimiga.net>" "Felix S Klock II <>" "Andrew Paseltiner <apaseltiner@gmail.com>" "Sean McArthur <sean.monstar@gmail.com>" "Vadim Petrochenkov <>" ]; 435 - sha256 = "07sgxp3cf1a4cxm9n3r27fcvqmld32bl2576mrcahnvm34j11xay"; 436 - inherit dependencies buildDependencies features; 437 - }; 438 - void_1_0_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 439 - crateName = "void"; 440 - version = "1.0.2"; 441 - authors = [ "Jonathan Reem <jonathan.reem@gmail.com>" ]; 442 - sha256 = "0h1dm0dx8dhf56a83k68mijyxigqhizpskwxfdrs1drwv2cdclv3"; 443 - inherit dependencies buildDependencies features; 444 - }; 445 - winapi_0_2_8_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 446 - crateName = "winapi"; 447 - version = "0.2.8"; 448 - authors = [ "Peter Atashian <retep998@gmail.com>" ]; 449 - sha256 = "0a45b58ywf12vb7gvj6h3j264nydynmzyqz8d8rqxsj6icqv82as"; 450 - inherit dependencies buildDependencies features; 451 - }; 452 - winapi_build_0_1_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 453 - crateName = "winapi-build"; 454 - version = "0.1.1"; 455 - authors = [ "Peter Atashian <retep998@gmail.com>" ]; 456 - sha256 = "1lxlpi87rkhxcwp2ykf1ldw3p108hwm24nywf3jfrvmff4rjhqga"; 457 - libName = "build"; 458 - inherit dependencies buildDependencies features; 459 - }; 460 - 22 + ) (if hasFeature (feat.default or {}) then [ "default" ] else []) (builtins.attrNames feat); 461 23 in 462 24 rec { 463 - aho_corasick_0_6_3 = aho_corasick_0_6_3_ rec { 464 - dependencies = [ memchr_1_0_2 ]; 25 + aho_corasick_0_6_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 26 + crateName = "aho-corasick"; 27 + version = "0.6.3"; 28 + authors = [ "Andrew Gallant <jamslam@gmail.com>" ]; 29 + sha256 = "1cpqzf6acj8lm06z3f1cg41wn6c2n9l3v49nh0dvimv4055qib6k"; 30 + libName = "aho_corasick"; 31 + crateBin = [ { name = "aho-corasick-dot"; } ]; 32 + inherit dependencies buildDependencies features; 33 + }; 34 + ansi_term_0_10_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 35 + crateName = "ansi_term"; 36 + version = "0.10.2"; 37 + authors = [ "ogham@bsago.me" "Ryan Scheel (Havvy) <ryan.havvy@gmail.com>" "Josh Triplett <josh@joshtriplett.org>" ]; 38 + sha256 = "07k0hfmlhv43lihyxb9d81l5mq5zlpqvv30dkfd3knmv2ginasn9"; 39 + inherit dependencies buildDependencies features; 40 + }; 41 + atty_0_2_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 42 + crateName = "atty"; 43 + version = "0.2.3"; 44 + authors = [ "softprops <d.tangren@gmail.com>" ]; 45 + sha256 = "0zl0cjfgarp5y78nd755lpki5bbkj4hgmi88v265m543yg29i88f"; 46 + inherit dependencies buildDependencies features; 47 + }; 48 + backtrace_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 49 + crateName = "backtrace"; 50 + version = "0.3.4"; 51 + authors = [ "Alex Crichton <alex@alexcrichton.com>" "The Rust Project Developers" ]; 52 + sha256 = "1caba8w3rqd5ghr88ghyz5wgkf81dgx18bj1llkax6qmianc6gk7"; 53 + inherit dependencies buildDependencies features; 54 + }; 55 + backtrace_sys_0_1_16_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 56 + crateName = "backtrace-sys"; 57 + version = "0.1.16"; 58 + authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 59 + sha256 = "1cn2c8q3dn06crmnk0p62czkngam4l8nf57wy33nz1y5g25pszwy"; 60 + build = "build.rs"; 61 + inherit dependencies buildDependencies features; 62 + }; 63 + bitflags_0_7_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 64 + crateName = "bitflags"; 65 + version = "0.7.0"; 66 + authors = [ "The Rust Project Developers" ]; 67 + sha256 = "1hr72xg5slm0z4pxs2hiy4wcyx3jva70h58b7mid8l0a4c8f7gn5"; 68 + inherit dependencies buildDependencies features; 69 + }; 70 + bitflags_1_0_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 71 + crateName = "bitflags"; 72 + version = "1.0.1"; 73 + authors = [ "The Rust Project Developers" ]; 74 + sha256 = "0p4b3nr0s5nda2qmm7xdhnvh4lkqk3xd8l9ffmwbvqw137vx7mj1"; 75 + inherit dependencies buildDependencies features; 76 + }; 77 + carnix_0_6_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 78 + crateName = "carnix"; 79 + version = "0.6.0"; 80 + authors = [ "pe@pijul.org <pe@pijul.org>" ]; 81 + src = include [ "Cargo.toml" "src/main.rs" "src/cache.rs" "src/cfg.rs" "src/krate/mod.rs" "src/krate/prefetch.rs" ] ./.; 82 + inherit dependencies buildDependencies features; 83 + }; 84 + cc_1_0_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 85 + crateName = "cc"; 86 + version = "1.0.3"; 87 + authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 88 + sha256 = "193pwqgh79w6k0k29svyds5nnlrwx44myqyrw605d5jj4yk2zmpr"; 89 + inherit dependencies buildDependencies features; 90 + }; 91 + cfg_if_0_1_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 92 + crateName = "cfg-if"; 93 + version = "0.1.2"; 94 + authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 95 + sha256 = "0x06hvrrqy96m97593823vvxcgvjaxckghwyy2jcyc8qc7c6cyhi"; 96 + inherit dependencies buildDependencies features; 97 + }; 98 + clap_2_28_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 99 + crateName = "clap"; 100 + version = "2.28.0"; 101 + authors = [ "Kevin K. <kbknapp@gmail.com>" ]; 102 + sha256 = "0m0rj9xw6mja4gdhqmaldv0q5y5jfsfzbyzfd70mm3857aynq03k"; 103 + inherit dependencies buildDependencies features; 104 + }; 105 + dbghelp_sys_0_2_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 106 + crateName = "dbghelp-sys"; 107 + version = "0.2.0"; 108 + authors = [ "Peter Atashian <retep998@gmail.com>" ]; 109 + sha256 = "0ylpi3bbiy233m57hnisn1df1v0lbl7nsxn34b0anzsgg440hqpq"; 110 + libName = "dbghelp"; 111 + build = "build.rs"; 112 + inherit dependencies buildDependencies features; 113 + }; 114 + dtoa_0_4_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 115 + crateName = "dtoa"; 116 + version = "0.4.2"; 117 + authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 118 + sha256 = "1bxsh6fags7nr36vlz07ik2a1rzyipc8x1y30kjk832hf2pzadmw"; 119 + inherit dependencies buildDependencies features; 120 + }; 121 + either_1_4_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 122 + crateName = "either"; 123 + version = "1.4.0"; 124 + authors = [ "bluss" ]; 125 + sha256 = "04kpfd84lvyrkb2z4sljlz2d3d5qczd0sb1yy37fgijq2yx3vb37"; 126 + inherit dependencies buildDependencies features; 127 + }; 128 + env_logger_0_4_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 129 + crateName = "env_logger"; 130 + version = "0.4.3"; 131 + authors = [ "The Rust Project Developers" ]; 132 + sha256 = "0nrx04p4xa86d5kc7aq4fwvipbqji9cmgy449h47nc9f1chafhgg"; 133 + inherit dependencies buildDependencies features; 134 + }; 135 + error_chain_0_11_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 136 + crateName = "error-chain"; 137 + version = "0.11.0"; 138 + authors = [ "Brian Anderson <banderson@mozilla.com>" "Paul Colomiets <paul@colomiets.name>" "Colin Kiegel <kiegel@gmx.de>" "Yamakaky <yamakaky@yamaworld.fr>" ]; 139 + sha256 = "19nz17q6dzp0mx2jhh9qbj45gkvvgcl7zq9z2ai5a8ihbisfj6d7"; 140 + inherit dependencies buildDependencies features; 141 + }; 142 + fuchsia_zircon_0_2_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 143 + crateName = "fuchsia-zircon"; 144 + version = "0.2.1"; 145 + authors = [ "Raph Levien <raph@google.com>" ]; 146 + sha256 = "0yd4rd7ql1vdr349p6vgq2dnwmpylky1kjp8g1zgvp250jxrhddb"; 147 + inherit dependencies buildDependencies features; 148 + }; 149 + fuchsia_zircon_sys_0_2_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 150 + crateName = "fuchsia-zircon-sys"; 151 + version = "0.2.0"; 152 + authors = [ "Raph Levien <raph@google.com>" ]; 153 + sha256 = "1yrqsrjwlhl3di6prxf5xmyd82gyjaysldbka5wwk83z11mpqh4w"; 154 + inherit dependencies buildDependencies features; 155 + }; 156 + itertools_0_7_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 157 + crateName = "itertools"; 158 + version = "0.7.3"; 159 + authors = [ "bluss" ]; 160 + sha256 = "128a69cnmgpj38rs6lcwzya773d2vx7f9y7012iycjf9yi2pyckj"; 161 + inherit dependencies buildDependencies features; 162 + }; 163 + itoa_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 164 + crateName = "itoa"; 165 + version = "0.3.4"; 166 + authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 167 + sha256 = "1nfkzz6vrgj0d9l3yzjkkkqzdgs68y294fjdbl7jq118qi8xc9d9"; 168 + inherit dependencies buildDependencies features; 169 + }; 170 + kernel32_sys_0_2_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 171 + crateName = "kernel32-sys"; 172 + version = "0.2.2"; 173 + authors = [ "Peter Atashian <retep998@gmail.com>" ]; 174 + sha256 = "1lrw1hbinyvr6cp28g60z97w32w8vsk6pahk64pmrv2fmby8srfj"; 175 + libName = "kernel32"; 176 + build = "build.rs"; 177 + inherit dependencies buildDependencies features; 178 + }; 179 + lazy_static_0_2_11_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 180 + crateName = "lazy_static"; 181 + version = "0.2.11"; 182 + authors = [ "Marvin Löbel <loebel.marvin@gmail.com>" ]; 183 + sha256 = "1x6871cvpy5b96yv4c7jvpq316fp5d4609s9py7qk6cd6x9k34vm"; 184 + inherit dependencies buildDependencies features; 185 + }; 186 + libc_0_2_33_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 187 + crateName = "libc"; 188 + version = "0.2.33"; 189 + authors = [ "The Rust Project Developers" ]; 190 + sha256 = "1l7synziccnvarsq2kk22vps720ih6chmn016bhr2bq54hblbnl1"; 191 + inherit dependencies buildDependencies features; 192 + }; 193 + libsqlite3_sys_0_9_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 194 + crateName = "libsqlite3-sys"; 195 + version = "0.9.0"; 196 + authors = [ "John Gallagher <jgallagher@bignerdranch.com>" ]; 197 + sha256 = "1pnx3i9h85si6cs4nhazfb28hsvk7dn0arnfvpdzpjdnj9z38q57"; 198 + build = "build.rs"; 199 + inherit dependencies buildDependencies features; 200 + }; 201 + linked_hash_map_0_4_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 202 + crateName = "linked-hash-map"; 203 + version = "0.4.2"; 204 + authors = [ "Stepan Koltsov <stepan.koltsov@gmail.com>" "Andrew Paseltiner <apaseltiner@gmail.com>" ]; 205 + sha256 = "04da208h6jb69f46j37jnvsw2i1wqplglp4d61csqcrhh83avbgl"; 206 + inherit dependencies buildDependencies features; 207 + }; 208 + log_0_3_8_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 209 + crateName = "log"; 210 + version = "0.3.8"; 211 + authors = [ "The Rust Project Developers" ]; 212 + sha256 = "1c43z4z85sxrsgir4s1hi84558ab5ic7jrn5qgmsiqcv90vvn006"; 213 + inherit dependencies buildDependencies features; 214 + }; 215 + lru_cache_0_1_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 216 + crateName = "lru-cache"; 217 + version = "0.1.1"; 218 + authors = [ "Stepan Koltsov <stepan.koltsov@gmail.com>" ]; 219 + sha256 = "1hl6kii1g54sq649gnscv858mmw7a02xj081l4vcgvrswdi2z8fw"; 220 + inherit dependencies buildDependencies features; 221 + }; 222 + memchr_1_0_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 223 + crateName = "memchr"; 224 + version = "1.0.2"; 225 + authors = [ "Andrew Gallant <jamslam@gmail.com>" "bluss" ]; 226 + sha256 = "0dfb8ifl9nrc9kzgd5z91q6qg87sh285q1ih7xgrsglmqfav9lg7"; 227 + inherit dependencies buildDependencies features; 228 + }; 229 + nom_3_2_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 230 + crateName = "nom"; 231 + version = "3.2.1"; 232 + authors = [ "contact@geoffroycouprie.com" ]; 233 + sha256 = "1vcllxrz9hdw6j25kn020ka3psz1vkaqh1hm3yfak2240zrxgi07"; 234 + inherit dependencies buildDependencies features; 235 + }; 236 + num_traits_0_1_40_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 237 + crateName = "num-traits"; 238 + version = "0.1.40"; 239 + authors = [ "The Rust Project Developers" ]; 240 + sha256 = "1fr8ghp4i97q3agki54i0hpmqxv3s65i2mqd1pinc7w7arc3fplw"; 241 + inherit dependencies buildDependencies features; 242 + }; 243 + pkg_config_0_3_9_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 244 + crateName = "pkg-config"; 245 + version = "0.3.9"; 246 + authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 247 + sha256 = "06k8fxgrsrxj8mjpjcq1n7mn2p1shpxif4zg9y5h09c7vy20s146"; 248 + inherit dependencies buildDependencies features; 249 + }; 250 + quote_0_3_15_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 251 + crateName = "quote"; 252 + version = "0.3.15"; 253 + authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 254 + sha256 = "09il61jv4kd1360spaj46qwyl21fv1qz18fsv2jra8wdnlgl5jsg"; 255 + inherit dependencies buildDependencies features; 256 + }; 257 + rand_0_3_18_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 258 + crateName = "rand"; 259 + version = "0.3.18"; 260 + authors = [ "The Rust Project Developers" ]; 261 + sha256 = "15d7c3myn968dzjs0a2pgv58hzdavxnq6swgj032lw2v966ir4xv"; 262 + inherit dependencies buildDependencies features; 263 + }; 264 + redox_syscall_0_1_32_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 265 + crateName = "redox_syscall"; 266 + version = "0.1.32"; 267 + authors = [ "Jeremy Soller <jackpot51@gmail.com>" ]; 268 + sha256 = "1axxj8x6ngh6npkzqc5h216fajkcyrdxdgb7m2f0n5xfclbk47fv"; 269 + libName = "syscall"; 270 + inherit dependencies buildDependencies features; 271 + }; 272 + redox_termios_0_1_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 273 + crateName = "redox_termios"; 274 + version = "0.1.1"; 275 + authors = [ "Jeremy Soller <jackpot51@gmail.com>" ]; 276 + sha256 = "04s6yyzjca552hdaqlvqhp3vw0zqbc304md5czyd3axh56iry8wh"; 277 + libPath = "src/lib.rs"; 278 + inherit dependencies buildDependencies features; 279 + }; 280 + regex_0_2_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 281 + crateName = "regex"; 282 + version = "0.2.2"; 283 + authors = [ "The Rust Project Developers" ]; 284 + sha256 = "1f1zrrynfylg0vcfyfp60bybq4rp5g1yk2k7lc7fyz7mmc7k2qr7"; 285 + inherit dependencies buildDependencies features; 286 + }; 287 + regex_syntax_0_4_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 288 + crateName = "regex-syntax"; 289 + version = "0.4.1"; 290 + authors = [ "The Rust Project Developers" ]; 291 + sha256 = "01yrsm68lj86ad1whgg1z95c2pfsvv58fz8qjcgw7mlszc0c08ls"; 292 + inherit dependencies buildDependencies features; 293 + }; 294 + rusqlite_0_13_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 295 + crateName = "rusqlite"; 296 + version = "0.13.0"; 297 + authors = [ "John Gallagher <jgallagher@bignerdranch.com>" ]; 298 + sha256 = "1hj2464ar2y4324sk3jx7m9byhkcp60krrrs1v1i8dlhhlnkb9hc"; 299 + inherit dependencies buildDependencies features; 300 + }; 301 + rustc_demangle_0_1_5_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 302 + crateName = "rustc-demangle"; 303 + version = "0.1.5"; 304 + authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 305 + sha256 = "096kkcx9j747700fhxj1s4rlwkj21pqjmvj64psdj6bakb2q13nc"; 306 + inherit dependencies buildDependencies features; 307 + }; 308 + serde_1_0_21_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 309 + crateName = "serde"; 310 + version = "1.0.21"; 311 + authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" "David Tolnay <dtolnay@gmail.com>" ]; 312 + sha256 = "10almq7pvx8s4ryiqk8gf7fj5igl0yq6dcjknwc67rkmxd8q50w3"; 313 + inherit dependencies buildDependencies features; 314 + }; 315 + serde_derive_1_0_21_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 316 + crateName = "serde_derive"; 317 + version = "1.0.21"; 318 + authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" "David Tolnay <dtolnay@gmail.com>" ]; 319 + sha256 = "0r20qyimm9scfaz7lc0swnhik9d045zklmbidd0zzpd4b2f3jsqm"; 320 + procMacro = true; 321 + inherit dependencies buildDependencies features; 322 + }; 323 + serde_derive_internals_0_17_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 324 + crateName = "serde_derive_internals"; 325 + version = "0.17.0"; 326 + authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" "David Tolnay <dtolnay@gmail.com>" ]; 327 + sha256 = "1g1j3v6pj9wbcz3v3w4smjpwrcdwjicmf6yd5cbai04as9iwhw74"; 328 + inherit dependencies buildDependencies features; 329 + }; 330 + serde_json_1_0_6_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 331 + crateName = "serde_json"; 332 + version = "1.0.6"; 333 + authors = [ "Erick Tryzelaar <erick.tryzelaar@gmail.com>" "David Tolnay <dtolnay@gmail.com>" ]; 334 + sha256 = "1kacyc59splwbg8gr7qs32pp9smgy1khq0ggnv07yxhs7h355vjz"; 335 + inherit dependencies buildDependencies features; 336 + }; 337 + strsim_0_6_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 338 + crateName = "strsim"; 339 + version = "0.6.0"; 340 + authors = [ "Danny Guo <dannyguo91@gmail.com>" ]; 341 + sha256 = "1lz85l6y68hr62lv4baww29yy7g8pg20dlr0lbaswxmmcb0wl7gd"; 342 + inherit dependencies buildDependencies features; 343 + }; 344 + syn_0_11_11_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 345 + crateName = "syn"; 346 + version = "0.11.11"; 347 + authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 348 + sha256 = "0yw8ng7x1dn5a6ykg0ib49y7r9nhzgpiq2989rqdp7rdz3n85502"; 349 + inherit dependencies buildDependencies features; 350 + }; 351 + synom_0_11_3_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 352 + crateName = "synom"; 353 + version = "0.11.3"; 354 + authors = [ "David Tolnay <dtolnay@gmail.com>" ]; 355 + sha256 = "1l6d1s9qjfp6ng2s2z8219igvlv7gyk8gby97sdykqc1r93d8rhc"; 356 + inherit dependencies buildDependencies features; 357 + }; 358 + tempdir_0_3_5_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 359 + crateName = "tempdir"; 360 + version = "0.3.5"; 361 + authors = [ "The Rust Project Developers" ]; 362 + sha256 = "0rirc5prqppzgd15fm8ayan349lgk2k5iqdkrbwrwrv5pm4znsnz"; 363 + inherit dependencies buildDependencies features; 364 + }; 365 + termion_1_5_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 366 + crateName = "termion"; 367 + version = "1.5.1"; 368 + authors = [ "ticki <Ticki@users.noreply.github.com>" "gycos <alexandre.bury@gmail.com>" "IGI-111 <igi-111@protonmail.com>" ]; 369 + sha256 = "02gq4vd8iws1f3gjrgrgpajsk2bk43nds5acbbb4s8dvrdvr8nf1"; 370 + inherit dependencies buildDependencies features; 371 + }; 372 + textwrap_0_9_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 373 + crateName = "textwrap"; 374 + version = "0.9.0"; 375 + authors = [ "Martin Geisler <martin@geisler.net>" ]; 376 + sha256 = "18jg79ndjlwndz01mlbh82kkr2arqm658yn5kwp65l5n1hz8w4yb"; 377 + inherit dependencies buildDependencies features; 378 + }; 379 + thread_local_0_3_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 380 + crateName = "thread_local"; 381 + version = "0.3.4"; 382 + authors = [ "Amanieu d'Antras <amanieu@gmail.com>" ]; 383 + sha256 = "1y6cwyhhx2nkz4b3dziwhqdvgq830z8wjp32b40pjd8r0hxqv2jr"; 384 + inherit dependencies buildDependencies features; 385 + }; 386 + time_0_1_38_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 387 + crateName = "time"; 388 + version = "0.1.38"; 389 + authors = [ "The Rust Project Developers" ]; 390 + sha256 = "1ws283vvz7c6jfiwn53rmc6kybapr4pjaahfxxrz232b0qzw7gcp"; 391 + inherit dependencies buildDependencies features; 392 + }; 393 + toml_0_4_5_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 394 + crateName = "toml"; 395 + version = "0.4.5"; 396 + authors = [ "Alex Crichton <alex@alexcrichton.com>" ]; 397 + sha256 = "06zxqhn3y58yzjfaykhcrvlf7p2dnn54kn3g4apmja3cn5b18lkk"; 398 + inherit dependencies buildDependencies features; 399 + }; 400 + unicode_width_0_1_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 401 + crateName = "unicode-width"; 402 + version = "0.1.4"; 403 + authors = [ "kwantam <kwantam@gmail.com>" ]; 404 + sha256 = "1rp7a04icn9y5c0lm74nrd4py0rdl0af8bhdwq7g478n1xifpifl"; 405 + inherit dependencies buildDependencies features; 406 + }; 407 + unicode_xid_0_0_4_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 408 + crateName = "unicode-xid"; 409 + version = "0.0.4"; 410 + authors = [ "erick.tryzelaar <erick.tryzelaar@gmail.com>" "kwantam <kwantam@gmail.com>" ]; 411 + sha256 = "1dc8wkkcd3s6534s5aw4lbjn8m67flkkbnajp5bl8408wdg8rh9v"; 412 + inherit dependencies buildDependencies features; 413 + }; 414 + unreachable_1_0_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 415 + crateName = "unreachable"; 416 + version = "1.0.0"; 417 + authors = [ "Jonathan Reem <jonathan.reem@gmail.com>" ]; 418 + sha256 = "1am8czbk5wwr25gbp2zr007744fxjshhdqjz9liz7wl4pnv3whcf"; 419 + inherit dependencies buildDependencies features; 420 + }; 421 + utf8_ranges_1_0_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 422 + crateName = "utf8-ranges"; 423 + version = "1.0.0"; 424 + authors = [ "Andrew Gallant <jamslam@gmail.com>" ]; 425 + sha256 = "0rzmqprwjv9yp1n0qqgahgm24872x6c0xddfym5pfndy7a36vkn0"; 426 + inherit dependencies buildDependencies features; 427 + }; 428 + vcpkg_0_2_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 429 + crateName = "vcpkg"; 430 + version = "0.2.2"; 431 + authors = [ "Jim McGrath <jimmc2@gmail.com>" ]; 432 + sha256 = "1fl5j0ksnwrnsrf1b1a9lqbjgnajdipq0030vsbhx81mb7d9478a"; 433 + inherit dependencies buildDependencies features; 434 + }; 435 + vec_map_0_8_0_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 436 + crateName = "vec_map"; 437 + version = "0.8.0"; 438 + authors = [ "Alex Crichton <alex@alexcrichton.com>" "Jorge Aparicio <japaricious@gmail.com>" "Alexis Beingessner <a.beingessner@gmail.com>" "Brian Anderson <>" "tbu- <>" "Manish Goregaokar <>" "Aaron Turon <aturon@mozilla.com>" "Adolfo Ochagavía <>" "Niko Matsakis <>" "Steven Fackler <>" "Chase Southwood <csouth3@illinois.edu>" "Eduard Burtescu <>" "Florian Wilkens <>" "Félix Raimundo <>" "Tibor Benke <>" "Markus Siemens <markus@m-siemens.de>" "Josh Branchaud <jbranchaud@gmail.com>" "Huon Wilson <dbau.pp@gmail.com>" "Corey Farwell <coref@rwell.org>" "Aaron Liblong <>" "Nick Cameron <nrc@ncameron.org>" "Patrick Walton <pcwalton@mimiga.net>" "Felix S Klock II <>" "Andrew Paseltiner <apaseltiner@gmail.com>" "Sean McArthur <sean.monstar@gmail.com>" "Vadim Petrochenkov <>" ]; 439 + sha256 = "07sgxp3cf1a4cxm9n3r27fcvqmld32bl2576mrcahnvm34j11xay"; 440 + inherit dependencies buildDependencies features; 441 + }; 442 + void_1_0_2_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 443 + crateName = "void"; 444 + version = "1.0.2"; 445 + authors = [ "Jonathan Reem <jonathan.reem@gmail.com>" ]; 446 + sha256 = "0h1dm0dx8dhf56a83k68mijyxigqhizpskwxfdrs1drwv2cdclv3"; 447 + inherit dependencies buildDependencies features; 448 + }; 449 + winapi_0_2_8_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 450 + crateName = "winapi"; 451 + version = "0.2.8"; 452 + authors = [ "Peter Atashian <retep998@gmail.com>" ]; 453 + sha256 = "0a45b58ywf12vb7gvj6h3j264nydynmzyqz8d8rqxsj6icqv82as"; 454 + inherit dependencies buildDependencies features; 455 + }; 456 + winapi_build_0_1_1_ = { dependencies?[], buildDependencies?[], features?[] }: buildRustCrate { 457 + crateName = "winapi-build"; 458 + version = "0.1.1"; 459 + authors = [ "Peter Atashian <retep998@gmail.com>" ]; 460 + sha256 = "1lxlpi87rkhxcwp2ykf1ldw3p108hwm24nywf3jfrvmff4rjhqga"; 461 + libName = "build"; 462 + inherit dependencies buildDependencies features; 465 463 }; 466 - memchr_1_0_2_features."default".from_aho_corasick_0_6_3__default = true; 467 - ansi_term_0_10_2 = ansi_term_0_10_2_ rec {}; 468 - atty_0_2_3 = atty_0_2_3_ rec { 469 - dependencies = (if kernel == "redox" then [ termion_1_5_1 ] else []) 470 - ++ (if (kernel == "linux" || kernel == "darwin") then [ libc_0_2_33 ] else []) 471 - ++ (if kernel == "windows" then [ kernel32_sys_0_2_2 winapi_0_2_8 ] else []); 464 + aho_corasick_0_6_3 = f: aho_corasick_0_6_3_ rec { 465 + dependencies = [ (memchr_1_0_2 f) ]; 472 466 }; 473 - termion_1_5_1_features."default".from_atty_0_2_3__default = true; 474 - libc_0_2_33_features."default".from_atty_0_2_3__default = false; 475 - kernel32_sys_0_2_2_features."default".from_atty_0_2_3__default = true; 476 - winapi_0_2_8_features."default".from_atty_0_2_3__default = true; 477 - backtrace_0_3_4 = backtrace_0_3_4_ rec { 478 - dependencies = [ cfg_if_0_1_2 rustc_demangle_0_1_5 ] 479 - ++ (if (kernel == "linux" || kernel == "darwin") && !(kernel == "fuchsia") && !(kernel == "emscripten") && !(kernel == "darwin") && !(kernel == "ios") then [ backtrace_sys_0_1_16 ] 480 - ++ (if lib.lists.any (x: x == "backtrace-sys") features then [backtrace_sys_0_1_16] else []) else []) 481 - ++ (if (kernel == "linux" || kernel == "darwin") then [ libc_0_2_33 ] else []) 482 - ++ (if kernel == "windows" then [ dbghelp_sys_0_2_0 kernel32_sys_0_2_2 winapi_0_2_8 ] 483 - ++ (if lib.lists.any (x: x == "dbghelp-sys") features then [dbghelp_sys_0_2_0] else []) ++ (if lib.lists.any (x: x == "kernel32-sys") features then [kernel32_sys_0_2_2] else []) ++ (if lib.lists.any (x: x == "winapi") features then [winapi_0_2_8] else []) else []); 484 - features = mkFeatures backtrace_0_3_4_features; 467 + aho_corasick_0_6_3_features = features: 468 + lib.lists.foldl' (features: f: f features) 469 + (lib.attrsets.recursiveUpdate features (rec { 470 + memchr_1_0_2.default.from_aho_corasick_0_6_3__default_ = true; 471 + })) 472 + [ memchr_1_0_2_features ]; 473 + ansi_term_0_10_2 = f: ansi_term_0_10_2_ rec {}; 474 + ansi_term_0_10_2_features = features: 475 + lib.lists.foldl' (features: f: f features) 476 + (lib.attrsets.recursiveUpdate features (rec { 477 + })) 478 + [ ]; 479 + atty_0_2_3 = f: atty_0_2_3_ rec { 480 + dependencies = (if kernel == "redox" then [ (termion_1_5_1 f) ] else []) 481 + ++ (if (kernel == "linux" || kernel == "darwin") then [ (libc_0_2_33 f) ] else []) 482 + ++ (if kernel == "windows" then [ (kernel32_sys_0_2_2 f) (winapi_0_2_8 f) ] else []); 483 + }; 484 + atty_0_2_3_features = features: 485 + lib.lists.foldl' (features: f: f features) 486 + (lib.attrsets.recursiveUpdate features (rec { 487 + kernel32_sys_0_2_2.default.from_atty_0_2_3__default_ = true; 488 + libc_0_2_33.default.from_atty_0_2_3__default_ = false; 489 + termion_1_5_1.default.from_atty_0_2_3__default_ = true; 490 + winapi_0_2_8.default.from_atty_0_2_3__default_ = true; 491 + })) 492 + [ termion_1_5_1_features libc_0_2_33_features kernel32_sys_0_2_2_features winapi_0_2_8_features ]; 493 + backtrace_0_3_4 = f: backtrace_0_3_4_ rec { 494 + dependencies = [ (cfg_if_0_1_2 f) (rustc_demangle_0_1_5 f) ] 495 + ++ (if (kernel == "linux" || kernel == "darwin") && !(kernel == "fuchsia") && !(kernel == "emscripten") && !(kernel == "darwin") && !(kernel == "ios") then [ ] 496 + ++ (if hasFeature (f.backtrace_0_3_4."backtrace-sys" or {}) then [(backtrace_sys_0_1_16 f)] else []) else []) 497 + ++ (if (kernel == "linux" || kernel == "darwin") then [ (libc_0_2_33 f) ] else []) 498 + ++ (if kernel == "windows" then [ ] 499 + ++ (if hasFeature (f.backtrace_0_3_4."dbghelp-sys" or {}) then [(dbghelp_sys_0_2_0 f)] else []) 500 + ++ (if hasFeature (f.backtrace_0_3_4."kernel32-sys" or {}) then [(kernel32_sys_0_2_2 f)] else []) 501 + ++ (if hasFeature (f.backtrace_0_3_4."winapi" or {}) then [(winapi_0_2_8 f)] else []) else []); 502 + features = mkFeatures (f.backtrace_0_3_4 or {}); 485 503 }; 486 - backtrace_0_3_4_features."".self = true; 487 - backtrace_0_3_4_features."kernel32-sys".self_dbghelp = hasFeature (backtrace_0_3_4_features."dbghelp" or {}); 488 - backtrace_0_3_4_features."winapi".self_dbghelp = hasFeature (backtrace_0_3_4_features."dbghelp" or {}); 489 - backtrace_0_3_4_features."dbghelp-sys".self_dbghelp = hasFeature (backtrace_0_3_4_features."dbghelp" or {}); 490 - backtrace_0_3_4_features."libunwind".self_default = hasDefault backtrace_0_3_4_features; 491 - backtrace_0_3_4_features."libbacktrace".self_default = hasDefault backtrace_0_3_4_features; 492 - backtrace_0_3_4_features."coresymbolication".self_default = hasDefault backtrace_0_3_4_features; 493 - backtrace_0_3_4_features."dladdr".self_default = hasDefault backtrace_0_3_4_features; 494 - backtrace_0_3_4_features."dbghelp".self_default = hasDefault backtrace_0_3_4_features; 495 - backtrace_0_3_4_features."addr2line".self_gimli-symbolize = hasFeature (backtrace_0_3_4_features."gimli-symbolize" or {}); 496 - backtrace_0_3_4_features."findshlibs".self_gimli-symbolize = hasFeature (backtrace_0_3_4_features."gimli-symbolize" or {}); 497 - backtrace_0_3_4_features."backtrace-sys".self_libbacktrace = hasFeature (backtrace_0_3_4_features."libbacktrace" or {}); 498 - backtrace_0_3_4_features."rustc-serialize".self_serialize-rustc = hasFeature (backtrace_0_3_4_features."serialize-rustc" or {}); 499 - backtrace_0_3_4_features."serde".self_serialize-serde = hasFeature (backtrace_0_3_4_features."serialize-serde" or {}); 500 - backtrace_0_3_4_features."serde_derive".self_serialize-serde = hasFeature (backtrace_0_3_4_features."serialize-serde" or {}); 501 - addr2line_0_0_0_features."default".from_backtrace_0_3_4__default = true; 502 - cfg_if_0_1_2_features."default".from_backtrace_0_3_4__default = true; 503 - cpp_demangle_0_0_0_features."default".from_backtrace_0_3_4__default = false; 504 - findshlibs_0_0_0_features."default".from_backtrace_0_3_4__default = true; 505 - rustc_demangle_0_1_5_features."default".from_backtrace_0_3_4__default = true; 506 - rustc_serialize_0_0_0_features."default".from_backtrace_0_3_4__default = true; 507 - serde_0_0_0_features."default".from_backtrace_0_3_4__default = true; 508 - serde_derive_0_0_0_features."default".from_backtrace_0_3_4__default = true; 509 - backtrace_sys_0_1_16_features."default".from_backtrace_0_3_4__default = true; 510 - libc_0_2_33_features."default".from_backtrace_0_3_4__default = true; 511 - dbghelp_sys_0_2_0_features."default".from_backtrace_0_3_4__default = true; 512 - kernel32_sys_0_2_2_features."default".from_backtrace_0_3_4__default = true; 513 - winapi_0_2_8_features."default".from_backtrace_0_3_4__default = true; 514 - backtrace_sys_0_1_16 = backtrace_sys_0_1_16_ rec { 515 - dependencies = [ libc_0_2_33 ]; 516 - buildDependencies = [ cc_1_0_3 ]; 504 + backtrace_0_3_4_features = features: 505 + lib.lists.foldl' (features: f: f features) 506 + (lib.attrsets.recursiveUpdate features (rec { 507 + backtrace_0_3_4."kernel32-sys".self_dbghelp = hasFeature (backtrace_0_3_4."dbghelp" or {}) || hasFeature (features.backtrace_0_3_4."dbghelp" or {}); 508 + backtrace_0_3_4."winapi".self_dbghelp = hasFeature (backtrace_0_3_4."dbghelp" or {}) || hasFeature (features.backtrace_0_3_4."dbghelp" or {}); 509 + backtrace_0_3_4."dbghelp-sys".self_dbghelp = hasFeature (backtrace_0_3_4."dbghelp" or {}) || hasFeature (features.backtrace_0_3_4."dbghelp" or {}); 510 + backtrace_0_3_4."libunwind".self_default = hasFeature (backtrace_0_3_4.default or {}) || hasFeature (features.backtrace_0_3_4.default or {}); 511 + backtrace_0_3_4."libbacktrace".self_default = hasFeature (backtrace_0_3_4.default or {}) || hasFeature (features.backtrace_0_3_4.default or {}); 512 + backtrace_0_3_4."coresymbolication".self_default = hasFeature (backtrace_0_3_4.default or {}) || hasFeature (features.backtrace_0_3_4.default or {}); 513 + backtrace_0_3_4."dladdr".self_default = hasFeature (backtrace_0_3_4.default or {}) || hasFeature (features.backtrace_0_3_4.default or {}); 514 + backtrace_0_3_4."dbghelp".self_default = hasFeature (backtrace_0_3_4.default or {}) || hasFeature (features.backtrace_0_3_4.default or {}); 515 + backtrace_0_3_4."addr2line".self_gimli-symbolize = hasFeature (backtrace_0_3_4."gimli-symbolize" or {}) || hasFeature (features.backtrace_0_3_4."gimli-symbolize" or {}); 516 + backtrace_0_3_4."findshlibs".self_gimli-symbolize = hasFeature (backtrace_0_3_4."gimli-symbolize" or {}) || hasFeature (features.backtrace_0_3_4."gimli-symbolize" or {}); 517 + backtrace_0_3_4."backtrace-sys".self_libbacktrace = hasFeature (backtrace_0_3_4."libbacktrace" or {}) || hasFeature (features.backtrace_0_3_4."libbacktrace" or {}); 518 + backtrace_0_3_4."rustc-serialize".self_serialize-rustc = hasFeature (backtrace_0_3_4."serialize-rustc" or {}) || hasFeature (features.backtrace_0_3_4."serialize-rustc" or {}); 519 + backtrace_0_3_4."serde".self_serialize-serde = hasFeature (backtrace_0_3_4."serialize-serde" or {}) || hasFeature (features.backtrace_0_3_4."serialize-serde" or {}); 520 + backtrace_0_3_4."serde_derive".self_serialize-serde = hasFeature (backtrace_0_3_4."serialize-serde" or {}) || hasFeature (features.backtrace_0_3_4."serialize-serde" or {}); 521 + backtrace_sys_0_1_16.default.from_backtrace_0_3_4__default_ = true; 522 + cfg_if_0_1_2.default.from_backtrace_0_3_4__default_ = true; 523 + dbghelp_sys_0_2_0.default.from_backtrace_0_3_4__default_ = true; 524 + kernel32_sys_0_2_2.default.from_backtrace_0_3_4__default_ = true; 525 + libc_0_2_33.default.from_backtrace_0_3_4__default_ = true; 526 + rustc_demangle_0_1_5.default.from_backtrace_0_3_4__default_ = true; 527 + winapi_0_2_8.default.from_backtrace_0_3_4__default_ = true; 528 + })) 529 + [ cfg_if_0_1_2_features rustc_demangle_0_1_5_features backtrace_sys_0_1_16_features libc_0_2_33_features dbghelp_sys_0_2_0_features kernel32_sys_0_2_2_features winapi_0_2_8_features ]; 530 + backtrace_sys_0_1_16 = f: backtrace_sys_0_1_16_ rec { 531 + dependencies = [ (libc_0_2_33 f) ]; 532 + buildDependencies = [ (cc_1_0_3 f) ]; 517 533 }; 518 - libc_0_2_33_features."default".from_backtrace_sys_0_1_16__default = true; 519 - bitflags_0_7_0 = bitflags_0_7_0_ rec {}; 520 - bitflags_1_0_1 = bitflags_1_0_1_ rec { 521 - features = mkFeatures bitflags_1_0_1_features; 534 + backtrace_sys_0_1_16_features = features: 535 + lib.lists.foldl' (features: f: f features) 536 + (lib.attrsets.recursiveUpdate features (rec { 537 + cc_1_0_3.default.from_backtrace_sys_0_1_16__default_ = true; 538 + libc_0_2_33.default.from_backtrace_sys_0_1_16__default_ = true; 539 + })) 540 + [ libc_0_2_33_features cc_1_0_3_features ]; 541 + bitflags_0_7_0 = f: bitflags_0_7_0_ rec {}; 542 + bitflags_0_7_0_features = features: 543 + lib.lists.foldl' (features: f: f features) 544 + (lib.attrsets.recursiveUpdate features (rec { 545 + })) 546 + [ ]; 547 + bitflags_1_0_1 = f: bitflags_1_0_1_ rec { 548 + features = mkFeatures (f.bitflags_1_0_1 or {}); 522 549 }; 523 - bitflags_1_0_1_features."example_generated".self_default = hasDefault bitflags_1_0_1_features; 524 - carnix_0_5_2 = carnix_0_5_2_ rec { 525 - dependencies = [ clap_2_28_0 env_logger_0_4_3 error_chain_0_11_0 itertools_0_7_3 log_0_3_8 nom_3_2_1 regex_0_2_2 rusqlite_0_13_0 serde_1_0_21 serde_derive_1_0_21 serde_json_1_0_6 tempdir_0_3_5 toml_0_4_5 ]; 550 + bitflags_1_0_1_features = features: 551 + lib.lists.foldl' (features: f: f features) 552 + (lib.attrsets.recursiveUpdate features (rec { 553 + bitflags_1_0_1."example_generated".self_default = hasFeature (bitflags_1_0_1.default or {}) || hasFeature (features.bitflags_1_0_1.default or {}); 554 + })) 555 + [ ]; 556 + carnix_0_6_0 = f: carnix_0_6_0_ rec { 557 + dependencies = [ (clap_2_28_0 f) (env_logger_0_4_3 f) (error_chain_0_11_0 f) (itertools_0_7_3 f) (log_0_3_8 f) (nom_3_2_1 f) (regex_0_2_2 f) (rusqlite_0_13_0 f) (serde_1_0_21 f) (serde_derive_1_0_21 f) (serde_json_1_0_6 f) (tempdir_0_3_5 f) (toml_0_4_5 f) ]; 526 558 }; 527 - clap_2_28_0_features."default".from_carnix_0_5_2__default = true; 528 - env_logger_0_4_3_features."default".from_carnix_0_5_2__default = true; 529 - error_chain_0_11_0_features."default".from_carnix_0_5_2__default = true; 530 - itertools_0_7_3_features."default".from_carnix_0_5_2__default = true; 531 - log_0_3_8_features."default".from_carnix_0_5_2__default = true; 532 - nom_3_2_1_features."default".from_carnix_0_5_2__default = true; 533 - regex_0_2_2_features."default".from_carnix_0_5_2__default = true; 534 - rusqlite_0_13_0_features."default".from_carnix_0_5_2__default = true; 535 - serde_1_0_21_features."default".from_carnix_0_5_2__default = true; 536 - serde_derive_1_0_21_features."default".from_carnix_0_5_2__default = true; 537 - serde_json_1_0_6_features."default".from_carnix_0_5_2__default = true; 538 - tempdir_0_3_5_features."default".from_carnix_0_5_2__default = true; 539 - toml_0_4_5_features."default".from_carnix_0_5_2__default = true; 540 - cc_1_0_3 = cc_1_0_3_ rec { 559 + carnix_0_6_0_features = features: 560 + lib.lists.foldl' (features: f: f features) 561 + (lib.attrsets.recursiveUpdate features (rec { 562 + clap_2_28_0.default.from_carnix_0_6_0__default_ = true; 563 + env_logger_0_4_3.default.from_carnix_0_6_0__default_ = true; 564 + error_chain_0_11_0.default.from_carnix_0_6_0__default_ = true; 565 + itertools_0_7_3.default.from_carnix_0_6_0__default_ = true; 566 + log_0_3_8.default.from_carnix_0_6_0__default_ = true; 567 + nom_3_2_1.default.from_carnix_0_6_0__default_ = true; 568 + regex_0_2_2.default.from_carnix_0_6_0__default_ = true; 569 + rusqlite_0_13_0.default.from_carnix_0_6_0__default_ = true; 570 + serde_1_0_21.default.from_carnix_0_6_0__default_ = true; 571 + serde_derive_1_0_21.default.from_carnix_0_6_0__default_ = true; 572 + serde_json_1_0_6.default.from_carnix_0_6_0__default_ = true; 573 + tempdir_0_3_5.default.from_carnix_0_6_0__default_ = true; 574 + toml_0_4_5.default.from_carnix_0_6_0__default_ = true; 575 + })) 576 + [ clap_2_28_0_features env_logger_0_4_3_features error_chain_0_11_0_features itertools_0_7_3_features log_0_3_8_features nom_3_2_1_features regex_0_2_2_features rusqlite_0_13_0_features serde_1_0_21_features serde_derive_1_0_21_features serde_json_1_0_6_features tempdir_0_3_5_features toml_0_4_5_features ]; 577 + cc_1_0_3 = f: cc_1_0_3_ rec { 541 578 dependencies = []; 542 - features = mkFeatures cc_1_0_3_features; 579 + features = mkFeatures (f.cc_1_0_3 or {}); 543 580 }; 544 - cc_1_0_3_features."rayon".self_parallel = hasFeature (cc_1_0_3_features."parallel" or {}); 545 - rayon_0_0_0_features."default".from_cc_1_0_3__default = true; 546 - cfg_if_0_1_2 = cfg_if_0_1_2_ rec {}; 547 - clap_2_28_0 = clap_2_28_0_ rec { 548 - dependencies = [ ansi_term_0_10_2 atty_0_2_3 bitflags_1_0_1 strsim_0_6_0 textwrap_0_9_0 unicode_width_0_1_4 vec_map_0_8_0 ] 549 - ++ (if lib.lists.any (x: x == "ansi_term") features then [ansi_term_0_10_2] else []) ++ (if lib.lists.any (x: x == "atty") features then [atty_0_2_3] else []) ++ (if lib.lists.any (x: x == "strsim") features then [strsim_0_6_0] else []) ++ (if lib.lists.any (x: x == "vec_map") features then [vec_map_0_8_0] else []); 550 - features = mkFeatures clap_2_28_0_features; 581 + cc_1_0_3_features = features: 582 + lib.lists.foldl' (features: f: f features) 583 + (lib.attrsets.recursiveUpdate features (rec { 584 + cc_1_0_3."rayon".self_parallel = hasFeature (cc_1_0_3."parallel" or {}) || hasFeature (features.cc_1_0_3."parallel" or {}); 585 + })) 586 + [ ]; 587 + cfg_if_0_1_2 = f: cfg_if_0_1_2_ rec {}; 588 + cfg_if_0_1_2_features = features: 589 + lib.lists.foldl' (features: f: f features) 590 + (lib.attrsets.recursiveUpdate features (rec { 591 + })) 592 + [ ]; 593 + clap_2_28_0 = f: clap_2_28_0_ rec { 594 + dependencies = [ (bitflags_1_0_1 f) (textwrap_0_9_0 f) (unicode_width_0_1_4 f) ] 595 + ++ (if hasFeature (f.clap_2_28_0."ansi_term" or {}) then [(ansi_term_0_10_2 f)] else []) 596 + ++ (if hasFeature (f.clap_2_28_0."atty" or {}) then [(atty_0_2_3 f)] else []) 597 + ++ (if hasFeature (f.clap_2_28_0."strsim" or {}) then [(strsim_0_6_0 f)] else []) 598 + ++ (if hasFeature (f.clap_2_28_0."vec_map" or {}) then [(vec_map_0_8_0 f)] else []); 599 + features = mkFeatures (f.clap_2_28_0 or {}); 551 600 }; 552 - clap_2_28_0_features."".self = true; 553 - clap_2_28_0_features."ansi_term".self_color = hasFeature (clap_2_28_0_features."color" or {}); 554 - clap_2_28_0_features."atty".self_color = hasFeature (clap_2_28_0_features."color" or {}); 555 - clap_2_28_0_features."suggestions".self_default = hasDefault clap_2_28_0_features; 556 - clap_2_28_0_features."color".self_default = hasDefault clap_2_28_0_features; 557 - clap_2_28_0_features."vec_map".self_default = hasDefault clap_2_28_0_features; 558 - clap_2_28_0_features."yaml".self_doc = hasFeature (clap_2_28_0_features."doc" or {}); 559 - clap_2_28_0_features."clippy".self_lints = hasFeature (clap_2_28_0_features."lints" or {}); 560 - clap_2_28_0_features."strsim".self_suggestions = hasFeature (clap_2_28_0_features."suggestions" or {}); 561 - clap_2_28_0_features."term_size".self_wrap_help = hasFeature (clap_2_28_0_features."wrap_help" or {}); 562 - clap_2_28_0_features."yaml-rust".self_yaml = hasFeature (clap_2_28_0_features."yaml" or {}); 563 - ansi_term_0_10_2_features."default".from_clap_2_28_0__default = true; 564 - atty_0_2_3_features."default".from_clap_2_28_0__default = true; 565 - bitflags_1_0_1_features."default".from_clap_2_28_0__default = true; 566 - clippy_0_0_0_features."default".from_clap_2_28_0__default = true; 567 - strsim_0_6_0_features."default".from_clap_2_28_0__default = true; 568 - term_size_0_0_0_features."default".from_clap_2_28_0__default = true; 569 - textwrap_0_9_0_features."term_size".from_clap_2_28_0__wrap_help = hasFeature (clap_2_28_0_features."wrap_help" or {}); 570 - textwrap_0_9_0_features."default".from_clap_2_28_0__default = true; 571 - unicode_width_0_1_4_features."default".from_clap_2_28_0__default = true; 572 - vec_map_0_8_0_features."default".from_clap_2_28_0__default = true; 573 - yaml_rust_0_0_0_features."default".from_clap_2_28_0__default = true; 574 - dbghelp_sys_0_2_0 = dbghelp_sys_0_2_0_ rec { 575 - dependencies = [ winapi_0_2_8 ]; 576 - buildDependencies = [ winapi_build_0_1_1 ]; 601 + clap_2_28_0_features = features: 602 + lib.lists.foldl' (features: f: f features) 603 + (lib.attrsets.recursiveUpdate features (rec { 604 + clap_2_28_0."ansi_term".self_color = hasFeature (clap_2_28_0."color" or {}) || hasFeature (features.clap_2_28_0."color" or {}); 605 + clap_2_28_0."atty".self_color = hasFeature (clap_2_28_0."color" or {}) || hasFeature (features.clap_2_28_0."color" or {}); 606 + clap_2_28_0."suggestions".self_default = hasFeature (clap_2_28_0.default or {}) || hasFeature (features.clap_2_28_0.default or {}); 607 + clap_2_28_0."color".self_default = hasFeature (clap_2_28_0.default or {}) || hasFeature (features.clap_2_28_0.default or {}); 608 + clap_2_28_0."vec_map".self_default = hasFeature (clap_2_28_0.default or {}) || hasFeature (features.clap_2_28_0.default or {}); 609 + clap_2_28_0."yaml".self_doc = hasFeature (clap_2_28_0."doc" or {}) || hasFeature (features.clap_2_28_0."doc" or {}); 610 + clap_2_28_0."clippy".self_lints = hasFeature (clap_2_28_0."lints" or {}) || hasFeature (features.clap_2_28_0."lints" or {}); 611 + clap_2_28_0."strsim".self_suggestions = hasFeature (clap_2_28_0."suggestions" or {}) || hasFeature (features.clap_2_28_0."suggestions" or {}); 612 + clap_2_28_0."term_size".self_wrap_help = hasFeature (clap_2_28_0."wrap_help" or {}) || hasFeature (features.clap_2_28_0."wrap_help" or {}); 613 + clap_2_28_0."yaml-rust".self_yaml = hasFeature (clap_2_28_0."yaml" or {}) || hasFeature (features.clap_2_28_0."yaml" or {}); 614 + textwrap_0_9_0."term_size".from_clap_2_28_0__term_size = hasFeature (clap_2_28_0."wrap_help" or {}) || hasFeature (features.clap_2_28_0."wrap_help" or {}); 615 + ansi_term_0_10_2.default.from_clap_2_28_0__default_ = true; 616 + atty_0_2_3.default.from_clap_2_28_0__default_ = true; 617 + bitflags_1_0_1.default.from_clap_2_28_0__default_ = true; 618 + strsim_0_6_0.default.from_clap_2_28_0__default_ = true; 619 + textwrap_0_9_0.default.from_clap_2_28_0__default_ = true; 620 + unicode_width_0_1_4.default.from_clap_2_28_0__default_ = true; 621 + vec_map_0_8_0.default.from_clap_2_28_0__default_ = true; 622 + })) 623 + [ ansi_term_0_10_2_features atty_0_2_3_features bitflags_1_0_1_features strsim_0_6_0_features textwrap_0_9_0_features unicode_width_0_1_4_features vec_map_0_8_0_features ]; 624 + dbghelp_sys_0_2_0 = f: dbghelp_sys_0_2_0_ rec { 625 + dependencies = [ (winapi_0_2_8 f) ]; 626 + buildDependencies = [ (winapi_build_0_1_1 f) ]; 577 627 }; 578 - winapi_0_2_8_features."default".from_dbghelp_sys_0_2_0__default = true; 579 - dtoa_0_4_2 = dtoa_0_4_2_ rec {}; 580 - either_1_4_0 = either_1_4_0_ rec { 628 + dbghelp_sys_0_2_0_features = features: 629 + lib.lists.foldl' (features: f: f features) 630 + (lib.attrsets.recursiveUpdate features (rec { 631 + winapi_0_2_8.default.from_dbghelp_sys_0_2_0__default_ = true; 632 + winapi_build_0_1_1.default.from_dbghelp_sys_0_2_0__default_ = true; 633 + })) 634 + [ winapi_0_2_8_features winapi_build_0_1_1_features ]; 635 + dtoa_0_4_2 = f: dtoa_0_4_2_ rec {}; 636 + dtoa_0_4_2_features = features: 637 + lib.lists.foldl' (features: f: f features) 638 + (lib.attrsets.recursiveUpdate features (rec { 639 + })) 640 + [ ]; 641 + either_1_4_0 = f: either_1_4_0_ rec { 581 642 dependencies = []; 582 - features = mkFeatures either_1_4_0_features; 643 + features = mkFeatures (f.either_1_4_0 or {}); 583 644 }; 584 - either_1_4_0_features."use_std".self_default = hasDefault either_1_4_0_features; 585 - serde_0_0_0_features."derive".from_either_1_4_0 = true; 586 - serde_0_0_0_features."default".from_either_1_4_0__default = true; 587 - env_logger_0_4_3 = env_logger_0_4_3_ rec { 588 - dependencies = [ log_0_3_8 regex_0_2_2 ] 589 - ++ (if lib.lists.any (x: x == "regex") features then [regex_0_2_2] else []); 590 - features = mkFeatures env_logger_0_4_3_features; 645 + either_1_4_0_features = features: 646 + lib.lists.foldl' (features: f: f features) 647 + (lib.attrsets.recursiveUpdate features (rec { 648 + either_1_4_0."use_std".self_default = hasFeature (either_1_4_0.default or {}) || hasFeature (features.either_1_4_0.default or {}); 649 + })) 650 + [ ]; 651 + env_logger_0_4_3 = f: env_logger_0_4_3_ rec { 652 + dependencies = [ (log_0_3_8 f) ] 653 + ++ (if hasFeature (f.env_logger_0_4_3."regex" or {}) then [(regex_0_2_2 f)] else []); 654 + features = mkFeatures (f.env_logger_0_4_3 or {}); 591 655 }; 592 - env_logger_0_4_3_features."".self = true; 593 - env_logger_0_4_3_features."regex".self_default = hasDefault env_logger_0_4_3_features; 594 - log_0_3_8_features."default".from_env_logger_0_4_3__default = true; 595 - regex_0_2_2_features."default".from_env_logger_0_4_3__default = true; 596 - error_chain_0_11_0 = error_chain_0_11_0_ rec { 597 - dependencies = [ backtrace_0_3_4 ] 598 - ++ (if lib.lists.any (x: x == "backtrace") features then [backtrace_0_3_4] else []); 599 - features = mkFeatures error_chain_0_11_0_features; 656 + env_logger_0_4_3_features = features: 657 + lib.lists.foldl' (features: f: f features) 658 + (lib.attrsets.recursiveUpdate features (rec { 659 + env_logger_0_4_3."regex".self_default = hasFeature (env_logger_0_4_3.default or {}) || hasFeature (features.env_logger_0_4_3.default or {}); 660 + log_0_3_8.default.from_env_logger_0_4_3__default_ = true; 661 + regex_0_2_2.default.from_env_logger_0_4_3__default_ = true; 662 + })) 663 + [ log_0_3_8_features regex_0_2_2_features ]; 664 + error_chain_0_11_0 = f: error_chain_0_11_0_ rec { 665 + dependencies = [ ] 666 + ++ (if hasFeature (f.error_chain_0_11_0."backtrace" or {}) then [(backtrace_0_3_4 f)] else []); 667 + features = mkFeatures (f.error_chain_0_11_0 or {}); 600 668 }; 601 - error_chain_0_11_0_features."".self = true; 602 - error_chain_0_11_0_features."backtrace".self_default = hasDefault error_chain_0_11_0_features; 603 - error_chain_0_11_0_features."example_generated".self_default = hasDefault error_chain_0_11_0_features; 604 - backtrace_0_3_4_features."default".from_error_chain_0_11_0__default = true; 605 - fuchsia_zircon_0_2_1 = fuchsia_zircon_0_2_1_ rec { 606 - dependencies = [ fuchsia_zircon_sys_0_2_0 ]; 669 + error_chain_0_11_0_features = features: 670 + lib.lists.foldl' (features: f: f features) 671 + (lib.attrsets.recursiveUpdate features (rec { 672 + error_chain_0_11_0."backtrace".self_default = hasFeature (error_chain_0_11_0.default or {}) || hasFeature (features.error_chain_0_11_0.default or {}); 673 + error_chain_0_11_0."example_generated".self_default = hasFeature (error_chain_0_11_0.default or {}) || hasFeature (features.error_chain_0_11_0.default or {}); 674 + backtrace_0_3_4.default.from_error_chain_0_11_0__default_ = true; 675 + })) 676 + [ backtrace_0_3_4_features ]; 677 + fuchsia_zircon_0_2_1 = f: fuchsia_zircon_0_2_1_ rec { 678 + dependencies = [ (fuchsia_zircon_sys_0_2_0 f) ]; 607 679 }; 608 - fuchsia_zircon_sys_0_2_0_features."default".from_fuchsia_zircon_0_2_1__default = true; 609 - fuchsia_zircon_sys_0_2_0 = fuchsia_zircon_sys_0_2_0_ rec { 610 - dependencies = [ bitflags_0_7_0 ]; 680 + fuchsia_zircon_0_2_1_features = features: 681 + lib.lists.foldl' (features: f: f features) 682 + (lib.attrsets.recursiveUpdate features (rec { 683 + fuchsia_zircon_sys_0_2_0.default.from_fuchsia_zircon_0_2_1__default_ = true; 684 + })) 685 + [ fuchsia_zircon_sys_0_2_0_features ]; 686 + fuchsia_zircon_sys_0_2_0 = f: fuchsia_zircon_sys_0_2_0_ rec { 687 + dependencies = [ (bitflags_0_7_0 f) ]; 611 688 }; 612 - bitflags_0_7_0_features."default".from_fuchsia_zircon_sys_0_2_0__default = true; 613 - itertools_0_7_3 = itertools_0_7_3_ rec { 614 - dependencies = [ either_1_4_0 ]; 615 - features = mkFeatures itertools_0_7_3_features; 689 + fuchsia_zircon_sys_0_2_0_features = features: 690 + lib.lists.foldl' (features: f: f features) 691 + (lib.attrsets.recursiveUpdate features (rec { 692 + bitflags_0_7_0.default.from_fuchsia_zircon_sys_0_2_0__default_ = true; 693 + })) 694 + [ bitflags_0_7_0_features ]; 695 + itertools_0_7_3 = f: itertools_0_7_3_ rec { 696 + dependencies = [ (either_1_4_0 f) ]; 697 + features = mkFeatures (f.itertools_0_7_3 or {}); 616 698 }; 617 - itertools_0_7_3_features."use_std".self_default = hasDefault itertools_0_7_3_features; 618 - either_1_4_0_features."default".from_itertools_0_7_3__default = false; 619 - itoa_0_3_4 = itoa_0_3_4_ rec { 620 - features = mkFeatures itoa_0_3_4_features; 699 + itertools_0_7_3_features = features: 700 + lib.lists.foldl' (features: f: f features) 701 + (lib.attrsets.recursiveUpdate features (rec { 702 + itertools_0_7_3."use_std".self_default = hasFeature (itertools_0_7_3.default or {}) || hasFeature (features.itertools_0_7_3.default or {}); 703 + either_1_4_0.default.from_itertools_0_7_3__default_ = false; 704 + })) 705 + [ either_1_4_0_features ]; 706 + itoa_0_3_4 = f: itoa_0_3_4_ rec { 707 + features = mkFeatures (f.itoa_0_3_4 or {}); 621 708 }; 622 - itoa_0_3_4_features."".self = true; 623 - kernel32_sys_0_2_2 = kernel32_sys_0_2_2_ rec { 624 - dependencies = [ winapi_0_2_8 ]; 625 - buildDependencies = [ winapi_build_0_1_1 ]; 709 + itoa_0_3_4_features = features: 710 + lib.lists.foldl' (features: f: f features) 711 + (lib.attrsets.recursiveUpdate features (rec { 712 + })) 713 + [ ]; 714 + kernel32_sys_0_2_2 = f: kernel32_sys_0_2_2_ rec { 715 + dependencies = [ (winapi_0_2_8 f) ]; 716 + buildDependencies = [ (winapi_build_0_1_1 f) ]; 626 717 }; 627 - winapi_0_2_8_features."default".from_kernel32_sys_0_2_2__default = true; 628 - lazy_static_0_2_11 = lazy_static_0_2_11_ rec { 718 + kernel32_sys_0_2_2_features = features: 719 + lib.lists.foldl' (features: f: f features) 720 + (lib.attrsets.recursiveUpdate features (rec { 721 + winapi_0_2_8.default.from_kernel32_sys_0_2_2__default_ = true; 722 + winapi_build_0_1_1.default.from_kernel32_sys_0_2_2__default_ = true; 723 + })) 724 + [ winapi_0_2_8_features winapi_build_0_1_1_features ]; 725 + lazy_static_0_2_11 = f: lazy_static_0_2_11_ rec { 629 726 dependencies = []; 630 - features = mkFeatures lazy_static_0_2_11_features; 727 + features = mkFeatures (f.lazy_static_0_2_11 or {}); 631 728 }; 632 - lazy_static_0_2_11_features."compiletest_rs".self_compiletest = hasFeature (lazy_static_0_2_11_features."compiletest" or {}); 633 - lazy_static_0_2_11_features."nightly".self_spin_no_std = hasFeature (lazy_static_0_2_11_features."spin_no_std" or {}); 634 - lazy_static_0_2_11_features."spin".self_spin_no_std = hasFeature (lazy_static_0_2_11_features."spin_no_std" or {}); 635 - compiletest_rs_0_0_0_features."default".from_lazy_static_0_2_11__default = true; 636 - spin_0_0_0_features."default".from_lazy_static_0_2_11__default = true; 637 - libc_0_2_33 = libc_0_2_33_ rec { 638 - features = mkFeatures libc_0_2_33_features; 729 + lazy_static_0_2_11_features = features: 730 + lib.lists.foldl' (features: f: f features) 731 + (lib.attrsets.recursiveUpdate features (rec { 732 + lazy_static_0_2_11."compiletest_rs".self_compiletest = hasFeature (lazy_static_0_2_11."compiletest" or {}) || hasFeature (features.lazy_static_0_2_11."compiletest" or {}); 733 + lazy_static_0_2_11."nightly".self_spin_no_std = hasFeature (lazy_static_0_2_11."spin_no_std" or {}) || hasFeature (features.lazy_static_0_2_11."spin_no_std" or {}); 734 + lazy_static_0_2_11."spin".self_spin_no_std = hasFeature (lazy_static_0_2_11."spin_no_std" or {}) || hasFeature (features.lazy_static_0_2_11."spin_no_std" or {}); 735 + })) 736 + [ ]; 737 + libc_0_2_33 = f: libc_0_2_33_ rec { 738 + features = mkFeatures (f.libc_0_2_33 or {}); 639 739 }; 640 - libc_0_2_33_features."use_std".self_default = hasDefault libc_0_2_33_features; 641 - libsqlite3_sys_0_9_0 = libsqlite3_sys_0_9_0_ rec { 740 + libc_0_2_33_features = features: 741 + lib.lists.foldl' (features: f: f features) 742 + (lib.attrsets.recursiveUpdate features (rec { 743 + libc_0_2_33."use_std".self_default = hasFeature (libc_0_2_33.default or {}) || hasFeature (features.libc_0_2_33.default or {}); 744 + })) 745 + [ ]; 746 + libsqlite3_sys_0_9_0 = f: libsqlite3_sys_0_9_0_ rec { 642 747 dependencies = (if abi == "msvc" then [] else []); 643 - buildDependencies = [ pkg_config_0_3_9 ] 644 - ++ (if lib.lists.any (x: x == "pkg-config") features then [pkg_config_0_3_9] else []); 645 - features = mkFeatures libsqlite3_sys_0_9_0_features; 748 + buildDependencies = [ ] 749 + ++ (if hasFeature (f.libsqlite3_sys_0_9_0."pkg-config" or {}) then [(pkg_config_0_3_9 f)] else []); 750 + features = mkFeatures (f.libsqlite3_sys_0_9_0 or {}); 646 751 }; 647 - libsqlite3_sys_0_9_0_features."bindgen".self_buildtime_bindgen = hasFeature (libsqlite3_sys_0_9_0_features."buildtime_bindgen" or {}); 648 - libsqlite3_sys_0_9_0_features."pkg-config".self_buildtime_bindgen = hasFeature (libsqlite3_sys_0_9_0_features."buildtime_bindgen" or {}); 649 - libsqlite3_sys_0_9_0_features."vcpkg".self_buildtime_bindgen = hasFeature (libsqlite3_sys_0_9_0_features."buildtime_bindgen" or {}); 650 - libsqlite3_sys_0_9_0_features."cc".self_bundled = hasFeature (libsqlite3_sys_0_9_0_features."bundled" or {}); 651 - libsqlite3_sys_0_9_0_features."min_sqlite_version_3_6_8".self_default = hasDefault libsqlite3_sys_0_9_0_features; 652 - libsqlite3_sys_0_9_0_features."pkg-config".self_min_sqlite_version_3_6_11 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_6_11" or {}); 653 - libsqlite3_sys_0_9_0_features."vcpkg".self_min_sqlite_version_3_6_11 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_6_11" or {}); 654 - libsqlite3_sys_0_9_0_features."pkg-config".self_min_sqlite_version_3_6_23 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_6_23" or {}); 655 - libsqlite3_sys_0_9_0_features."vcpkg".self_min_sqlite_version_3_6_23 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_6_23" or {}); 656 - libsqlite3_sys_0_9_0_features."pkg-config".self_min_sqlite_version_3_6_8 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_6_8" or {}); 657 - libsqlite3_sys_0_9_0_features."vcpkg".self_min_sqlite_version_3_6_8 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_6_8" or {}); 658 - libsqlite3_sys_0_9_0_features."pkg-config".self_min_sqlite_version_3_7_16 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_7_16" or {}); 659 - libsqlite3_sys_0_9_0_features."vcpkg".self_min_sqlite_version_3_7_16 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_7_16" or {}); 660 - libsqlite3_sys_0_9_0_features."pkg-config".self_min_sqlite_version_3_7_3 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_7_3" or {}); 661 - libsqlite3_sys_0_9_0_features."vcpkg".self_min_sqlite_version_3_7_3 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_7_3" or {}); 662 - libsqlite3_sys_0_9_0_features."pkg-config".self_min_sqlite_version_3_7_4 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_7_4" or {}); 663 - libsqlite3_sys_0_9_0_features."vcpkg".self_min_sqlite_version_3_7_4 = hasFeature (libsqlite3_sys_0_9_0_features."min_sqlite_version_3_7_4" or {}); 664 - linked_hash_map_0_4_2 = linked_hash_map_0_4_2_ rec { 752 + libsqlite3_sys_0_9_0_features = features: 753 + lib.lists.foldl' (features: f: f features) 754 + (lib.attrsets.recursiveUpdate features (rec { 755 + libsqlite3_sys_0_9_0."bindgen".self_buildtime_bindgen = hasFeature (libsqlite3_sys_0_9_0."buildtime_bindgen" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."buildtime_bindgen" or {}); 756 + libsqlite3_sys_0_9_0."pkg-config".self_buildtime_bindgen = hasFeature (libsqlite3_sys_0_9_0."buildtime_bindgen" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."buildtime_bindgen" or {}); 757 + libsqlite3_sys_0_9_0."vcpkg".self_buildtime_bindgen = hasFeature (libsqlite3_sys_0_9_0."buildtime_bindgen" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."buildtime_bindgen" or {}); 758 + libsqlite3_sys_0_9_0."cc".self_bundled = hasFeature (libsqlite3_sys_0_9_0."bundled" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."bundled" or {}); 759 + libsqlite3_sys_0_9_0."min_sqlite_version_3_6_8".self_default = hasFeature (libsqlite3_sys_0_9_0.default or {}) || hasFeature (features.libsqlite3_sys_0_9_0.default or {}); 760 + libsqlite3_sys_0_9_0."pkg-config".self_min_sqlite_version_3_6_11 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_6_11" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_6_11" or {}); 761 + libsqlite3_sys_0_9_0."vcpkg".self_min_sqlite_version_3_6_11 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_6_11" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_6_11" or {}); 762 + libsqlite3_sys_0_9_0."pkg-config".self_min_sqlite_version_3_6_23 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_6_23" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_6_23" or {}); 763 + libsqlite3_sys_0_9_0."vcpkg".self_min_sqlite_version_3_6_23 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_6_23" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_6_23" or {}); 764 + libsqlite3_sys_0_9_0."pkg-config".self_min_sqlite_version_3_6_8 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_6_8" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_6_8" or {}); 765 + libsqlite3_sys_0_9_0."vcpkg".self_min_sqlite_version_3_6_8 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_6_8" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_6_8" or {}); 766 + libsqlite3_sys_0_9_0."pkg-config".self_min_sqlite_version_3_7_16 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_7_16" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_7_16" or {}); 767 + libsqlite3_sys_0_9_0."vcpkg".self_min_sqlite_version_3_7_16 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_7_16" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_7_16" or {}); 768 + libsqlite3_sys_0_9_0."pkg-config".self_min_sqlite_version_3_7_3 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_7_3" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_7_3" or {}); 769 + libsqlite3_sys_0_9_0."vcpkg".self_min_sqlite_version_3_7_3 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_7_3" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_7_3" or {}); 770 + libsqlite3_sys_0_9_0."pkg-config".self_min_sqlite_version_3_7_4 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_7_4" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_7_4" or {}); 771 + libsqlite3_sys_0_9_0."vcpkg".self_min_sqlite_version_3_7_4 = hasFeature (libsqlite3_sys_0_9_0."min_sqlite_version_3_7_4" or {}) || hasFeature (features.libsqlite3_sys_0_9_0."min_sqlite_version_3_7_4" or {}); 772 + pkg_config_0_3_9.default.from_libsqlite3_sys_0_9_0__default_ = true; 773 + })) 774 + [ pkg_config_0_3_9_features ]; 775 + linked_hash_map_0_4_2 = f: linked_hash_map_0_4_2_ rec { 665 776 dependencies = []; 666 - features = mkFeatures linked_hash_map_0_4_2_features; 777 + features = mkFeatures (f.linked_hash_map_0_4_2 or {}); 667 778 }; 668 - linked_hash_map_0_4_2_features."heapsize".self_heapsize_impl = hasFeature (linked_hash_map_0_4_2_features."heapsize_impl" or {}); 669 - linked_hash_map_0_4_2_features."serde".self_serde_impl = hasFeature (linked_hash_map_0_4_2_features."serde_impl" or {}); 670 - linked_hash_map_0_4_2_features."serde_test".self_serde_impl = hasFeature (linked_hash_map_0_4_2_features."serde_impl" or {}); 671 - clippy_0_0_0_features."default".from_linked_hash_map_0_4_2__default = true; 672 - heapsize_0_0_0_features."default".from_linked_hash_map_0_4_2__default = true; 673 - serde_0_0_0_features."default".from_linked_hash_map_0_4_2__default = true; 674 - serde_test_0_0_0_features."default".from_linked_hash_map_0_4_2__default = true; 675 - log_0_3_8 = log_0_3_8_ rec { 676 - features = mkFeatures log_0_3_8_features; 779 + linked_hash_map_0_4_2_features = features: 780 + lib.lists.foldl' (features: f: f features) 781 + (lib.attrsets.recursiveUpdate features (rec { 782 + linked_hash_map_0_4_2."heapsize".self_heapsize_impl = hasFeature (linked_hash_map_0_4_2."heapsize_impl" or {}) || hasFeature (features.linked_hash_map_0_4_2."heapsize_impl" or {}); 783 + linked_hash_map_0_4_2."serde".self_serde_impl = hasFeature (linked_hash_map_0_4_2."serde_impl" or {}) || hasFeature (features.linked_hash_map_0_4_2."serde_impl" or {}); 784 + linked_hash_map_0_4_2."serde_test".self_serde_impl = hasFeature (linked_hash_map_0_4_2."serde_impl" or {}) || hasFeature (features.linked_hash_map_0_4_2."serde_impl" or {}); 785 + })) 786 + [ ]; 787 + log_0_3_8 = f: log_0_3_8_ rec { 788 + features = mkFeatures (f.log_0_3_8 or {}); 677 789 }; 678 - log_0_3_8_features."use_std".self_default = hasDefault log_0_3_8_features; 679 - lru_cache_0_1_1 = lru_cache_0_1_1_ rec { 680 - dependencies = [ linked_hash_map_0_4_2 ]; 681 - features = mkFeatures lru_cache_0_1_1_features; 790 + log_0_3_8_features = features: 791 + lib.lists.foldl' (features: f: f features) 792 + (lib.attrsets.recursiveUpdate features (rec { 793 + log_0_3_8."use_std".self_default = hasFeature (log_0_3_8.default or {}) || hasFeature (features.log_0_3_8.default or {}); 794 + })) 795 + [ ]; 796 + lru_cache_0_1_1 = f: lru_cache_0_1_1_ rec { 797 + dependencies = [ (linked_hash_map_0_4_2 f) ]; 798 + features = mkFeatures (f.lru_cache_0_1_1 or {}); 682 799 }; 683 - lru_cache_0_1_1_features."heapsize".self_heapsize_impl = hasFeature (lru_cache_0_1_1_features."heapsize_impl" or {}); 684 - heapsize_0_0_0_features."default".from_lru_cache_0_1_1__default = true; 685 - linked_hash_map_0_4_2_features."heapsize_impl".from_lru_cache_0_1_1__heapsize_impl = hasFeature (lru_cache_0_1_1_features."heapsize_impl" or {}); 686 - linked_hash_map_0_4_2_features."default".from_lru_cache_0_1_1__default = true; 687 - memchr_1_0_2 = memchr_1_0_2_ rec { 688 - dependencies = [ libc_0_2_33 ] 689 - ++ (if lib.lists.any (x: x == "libc") features then [libc_0_2_33] else []); 690 - features = mkFeatures memchr_1_0_2_features; 800 + lru_cache_0_1_1_features = features: 801 + lib.lists.foldl' (features: f: f features) 802 + (lib.attrsets.recursiveUpdate features (rec { 803 + lru_cache_0_1_1."heapsize".self_heapsize_impl = hasFeature (lru_cache_0_1_1."heapsize_impl" or {}) || hasFeature (features.lru_cache_0_1_1."heapsize_impl" or {}); 804 + linked_hash_map_0_4_2."heapsize_impl".from_lru_cache_0_1_1__heapsize_impl = hasFeature (lru_cache_0_1_1."heapsize_impl" or {}) || hasFeature (features.lru_cache_0_1_1."heapsize_impl" or {}); 805 + linked_hash_map_0_4_2.default.from_lru_cache_0_1_1__default_ = true; 806 + })) 807 + [ linked_hash_map_0_4_2_features ]; 808 + memchr_1_0_2 = f: memchr_1_0_2_ rec { 809 + dependencies = [ ] 810 + ++ (if hasFeature (f.memchr_1_0_2."libc" or {}) then [(libc_0_2_33 f)] else []); 811 + features = mkFeatures (f.memchr_1_0_2 or {}); 691 812 }; 692 - memchr_1_0_2_features."".self = true; 693 - memchr_1_0_2_features."use_std".self_default = hasDefault memchr_1_0_2_features; 694 - memchr_1_0_2_features."libc".self_default = hasDefault memchr_1_0_2_features; 695 - memchr_1_0_2_features."libc".self_use_std = hasFeature (memchr_1_0_2_features."use_std" or {}); 696 - libc_0_2_33_features."use_std".from_memchr_1_0_2__use_std = hasFeature (memchr_1_0_2_features."use_std" or {}); 697 - libc_0_2_33_features."default".from_memchr_1_0_2__default = false; 698 - nom_3_2_1 = nom_3_2_1_ rec { 699 - dependencies = [ memchr_1_0_2 ]; 700 - features = mkFeatures nom_3_2_1_features; 813 + memchr_1_0_2_features = features: 814 + lib.lists.foldl' (features: f: f features) 815 + (lib.attrsets.recursiveUpdate features (rec { 816 + memchr_1_0_2."use_std".self_default = hasFeature (memchr_1_0_2.default or {}) || hasFeature (features.memchr_1_0_2.default or {}); 817 + memchr_1_0_2."libc".self_default = hasFeature (memchr_1_0_2.default or {}) || hasFeature (features.memchr_1_0_2.default or {}); 818 + memchr_1_0_2."libc".self_use_std = hasFeature (memchr_1_0_2."use_std" or {}) || hasFeature (features.memchr_1_0_2."use_std" or {}); 819 + libc_0_2_33."use_std".from_memchr_1_0_2__use_std = hasFeature (memchr_1_0_2."use_std" or {}) || hasFeature (features.memchr_1_0_2."use_std" or {}); 820 + libc_0_2_33.default.from_memchr_1_0_2__default_ = false; 821 + })) 822 + [ libc_0_2_33_features ]; 823 + nom_3_2_1 = f: nom_3_2_1_ rec { 824 + dependencies = [ (memchr_1_0_2 f) ]; 825 + features = mkFeatures (f.nom_3_2_1 or {}); 701 826 }; 702 - nom_3_2_1_features."std".self_default = hasDefault nom_3_2_1_features; 703 - nom_3_2_1_features."stream".self_default = hasDefault nom_3_2_1_features; 704 - nom_3_2_1_features."compiler_error".self_nightly = hasFeature (nom_3_2_1_features."nightly" or {}); 705 - nom_3_2_1_features."regex".self_regexp = hasFeature (nom_3_2_1_features."regexp" or {}); 706 - nom_3_2_1_features."regexp".self_regexp_macros = hasFeature (nom_3_2_1_features."regexp_macros" or {}); 707 - nom_3_2_1_features."lazy_static".self_regexp_macros = hasFeature (nom_3_2_1_features."regexp_macros" or {}); 708 - compiler_error_0_0_0_features."default".from_nom_3_2_1__default = true; 709 - lazy_static_0_0_0_features."default".from_nom_3_2_1__default = true; 710 - memchr_1_0_2_features."use_std".from_nom_3_2_1__std = hasFeature (nom_3_2_1_features."std" or {}); 711 - memchr_1_0_2_features."default".from_nom_3_2_1__default = false; 712 - regex_0_0_0_features."default".from_nom_3_2_1__default = true; 713 - num_traits_0_1_40 = num_traits_0_1_40_ rec {}; 714 - pkg_config_0_3_9 = pkg_config_0_3_9_ rec {}; 715 - quote_0_3_15 = quote_0_3_15_ rec {}; 716 - rand_0_3_18 = rand_0_3_18_ rec { 717 - dependencies = [ libc_0_2_33 ] 718 - ++ (if kernel == "fuchsia" then [ fuchsia_zircon_0_2_1 ] else []); 719 - features = mkFeatures rand_0_3_18_features; 827 + nom_3_2_1_features = features: 828 + lib.lists.foldl' (features: f: f features) 829 + (lib.attrsets.recursiveUpdate features (rec { 830 + nom_3_2_1."std".self_default = hasFeature (nom_3_2_1.default or {}) || hasFeature (features.nom_3_2_1.default or {}); 831 + nom_3_2_1."stream".self_default = hasFeature (nom_3_2_1.default or {}) || hasFeature (features.nom_3_2_1.default or {}); 832 + nom_3_2_1."compiler_error".self_nightly = hasFeature (nom_3_2_1."nightly" or {}) || hasFeature (features.nom_3_2_1."nightly" or {}); 833 + nom_3_2_1."regex".self_regexp = hasFeature (nom_3_2_1."regexp" or {}) || hasFeature (features.nom_3_2_1."regexp" or {}); 834 + nom_3_2_1."regexp".self_regexp_macros = hasFeature (nom_3_2_1."regexp_macros" or {}) || hasFeature (features.nom_3_2_1."regexp_macros" or {}); 835 + nom_3_2_1."lazy_static".self_regexp_macros = hasFeature (nom_3_2_1."regexp_macros" or {}) || hasFeature (features.nom_3_2_1."regexp_macros" or {}); 836 + memchr_1_0_2."use_std".from_nom_3_2_1__use_std = hasFeature (nom_3_2_1."std" or {}) || hasFeature (features.nom_3_2_1."std" or {}); 837 + memchr_1_0_2.default.from_nom_3_2_1__default_ = false; 838 + })) 839 + [ memchr_1_0_2_features ]; 840 + num_traits_0_1_40 = f: num_traits_0_1_40_ rec {}; 841 + num_traits_0_1_40_features = features: 842 + lib.lists.foldl' (features: f: f features) 843 + (lib.attrsets.recursiveUpdate features (rec { 844 + })) 845 + [ ]; 846 + pkg_config_0_3_9 = f: pkg_config_0_3_9_ rec {}; 847 + pkg_config_0_3_9_features = features: 848 + lib.lists.foldl' (features: f: f features) 849 + (lib.attrsets.recursiveUpdate features (rec { 850 + })) 851 + [ ]; 852 + quote_0_3_15 = f: quote_0_3_15_ rec {}; 853 + quote_0_3_15_features = features: 854 + lib.lists.foldl' (features: f: f features) 855 + (lib.attrsets.recursiveUpdate features (rec { 856 + })) 857 + [ ]; 858 + rand_0_3_18 = f: rand_0_3_18_ rec { 859 + dependencies = [ (libc_0_2_33 f) ] 860 + ++ (if kernel == "fuchsia" then [ (fuchsia_zircon_0_2_1 f) ] else []); 861 + features = mkFeatures (f.rand_0_3_18 or {}); 720 862 }; 721 - rand_0_3_18_features."i128_support".self_nightly = hasFeature (rand_0_3_18_features."nightly" or {}); 722 - libc_0_2_33_features."default".from_rand_0_3_18__default = true; 723 - fuchsia_zircon_0_2_1_features."default".from_rand_0_3_18__default = true; 724 - redox_syscall_0_1_32 = redox_syscall_0_1_32_ rec {}; 725 - redox_termios_0_1_1 = redox_termios_0_1_1_ rec { 726 - dependencies = [ redox_syscall_0_1_32 ]; 863 + rand_0_3_18_features = features: 864 + lib.lists.foldl' (features: f: f features) 865 + (lib.attrsets.recursiveUpdate features (rec { 866 + rand_0_3_18."i128_support".self_nightly = hasFeature (rand_0_3_18."nightly" or {}) || hasFeature (features.rand_0_3_18."nightly" or {}); 867 + fuchsia_zircon_0_2_1.default.from_rand_0_3_18__default_ = true; 868 + libc_0_2_33.default.from_rand_0_3_18__default_ = true; 869 + })) 870 + [ libc_0_2_33_features fuchsia_zircon_0_2_1_features ]; 871 + redox_syscall_0_1_32 = f: redox_syscall_0_1_32_ rec {}; 872 + redox_syscall_0_1_32_features = features: 873 + lib.lists.foldl' (features: f: f features) 874 + (lib.attrsets.recursiveUpdate features (rec { 875 + })) 876 + [ ]; 877 + redox_termios_0_1_1 = f: redox_termios_0_1_1_ rec { 878 + dependencies = [ (redox_syscall_0_1_32 f) ]; 727 879 }; 728 - redox_syscall_0_1_32_features."default".from_redox_termios_0_1_1__default = true; 729 - regex_0_2_2 = regex_0_2_2_ rec { 730 - dependencies = [ aho_corasick_0_6_3 memchr_1_0_2 regex_syntax_0_4_1 thread_local_0_3_4 utf8_ranges_1_0_0 ]; 731 - features = mkFeatures regex_0_2_2_features; 880 + redox_termios_0_1_1_features = features: 881 + lib.lists.foldl' (features: f: f features) 882 + (lib.attrsets.recursiveUpdate features (rec { 883 + redox_syscall_0_1_32.default.from_redox_termios_0_1_1__default_ = true; 884 + })) 885 + [ redox_syscall_0_1_32_features ]; 886 + regex_0_2_2 = f: regex_0_2_2_ rec { 887 + dependencies = [ (aho_corasick_0_6_3 f) (memchr_1_0_2 f) (regex_syntax_0_4_1 f) (thread_local_0_3_4 f) (utf8_ranges_1_0_0 f) ]; 888 + features = mkFeatures (f.regex_0_2_2 or {}); 732 889 }; 733 - regex_0_2_2_features."simd".self_simd-accel = hasFeature (regex_0_2_2_features."simd-accel" or {}); 734 - aho_corasick_0_6_3_features."default".from_regex_0_2_2__default = true; 735 - memchr_1_0_2_features."default".from_regex_0_2_2__default = true; 736 - regex_syntax_0_4_1_features."default".from_regex_0_2_2__default = true; 737 - simd_0_0_0_features."default".from_regex_0_2_2__default = true; 738 - thread_local_0_3_4_features."default".from_regex_0_2_2__default = true; 739 - utf8_ranges_1_0_0_features."default".from_regex_0_2_2__default = true; 740 - regex_syntax_0_4_1 = regex_syntax_0_4_1_ rec {}; 741 - rusqlite_0_13_0 = rusqlite_0_13_0_ rec { 742 - dependencies = [ bitflags_1_0_1 libsqlite3_sys_0_9_0 lru_cache_0_1_1 time_0_1_38 ]; 743 - features = mkFeatures rusqlite_0_13_0_features; 890 + regex_0_2_2_features = features: 891 + lib.lists.foldl' (features: f: f features) 892 + (lib.attrsets.recursiveUpdate features (rec { 893 + regex_0_2_2."simd".self_simd-accel = hasFeature (regex_0_2_2."simd-accel" or {}) || hasFeature (features.regex_0_2_2."simd-accel" or {}); 894 + aho_corasick_0_6_3.default.from_regex_0_2_2__default_ = true; 895 + memchr_1_0_2.default.from_regex_0_2_2__default_ = true; 896 + regex_syntax_0_4_1.default.from_regex_0_2_2__default_ = true; 897 + thread_local_0_3_4.default.from_regex_0_2_2__default_ = true; 898 + utf8_ranges_1_0_0.default.from_regex_0_2_2__default_ = true; 899 + })) 900 + [ aho_corasick_0_6_3_features memchr_1_0_2_features regex_syntax_0_4_1_features thread_local_0_3_4_features utf8_ranges_1_0_0_features ]; 901 + regex_syntax_0_4_1 = f: regex_syntax_0_4_1_ rec {}; 902 + regex_syntax_0_4_1_features = features: 903 + lib.lists.foldl' (features: f: f features) 904 + (lib.attrsets.recursiveUpdate features (rec { 905 + })) 906 + [ ]; 907 + rusqlite_0_13_0 = f: rusqlite_0_13_0_ rec { 908 + dependencies = [ (bitflags_1_0_1 f) (libsqlite3_sys_0_9_0 f) (lru_cache_0_1_1 f) (time_0_1_38 f) ]; 909 + features = mkFeatures (f.rusqlite_0_13_0 or {}); 744 910 }; 745 - rusqlite_0_13_0_features."".self = true; 746 - bitflags_1_0_1_features."default".from_rusqlite_0_13_0__default = true; 747 - chrono_0_0_0_features."default".from_rusqlite_0_13_0__default = true; 748 - libsqlite3_sys_0_9_0_features."min_sqlite_version_3_6_11".from_rusqlite_0_13_0__backup = hasFeature (rusqlite_0_13_0_features."backup" or {}); 749 - libsqlite3_sys_0_9_0_features."min_sqlite_version_3_7_4".from_rusqlite_0_13_0__blob = hasFeature (rusqlite_0_13_0_features."blob" or {}); 750 - libsqlite3_sys_0_9_0_features."buildtime_bindgen".from_rusqlite_0_13_0__buildtime_bindgen = hasFeature (rusqlite_0_13_0_features."buildtime_bindgen" or {}); 751 - libsqlite3_sys_0_9_0_features."bundled".from_rusqlite_0_13_0__bundled = hasFeature (rusqlite_0_13_0_features."bundled" or {}); 752 - libsqlite3_sys_0_9_0_features."min_sqlite_version_3_7_3".from_rusqlite_0_13_0__functions = hasFeature (rusqlite_0_13_0_features."functions" or {}); 753 - libsqlite3_sys_0_9_0_features."sqlcipher".from_rusqlite_0_13_0__sqlcipher = hasFeature (rusqlite_0_13_0_features."sqlcipher" or {}); 754 - libsqlite3_sys_0_9_0_features."min_sqlite_version_3_6_23".from_rusqlite_0_13_0__trace = hasFeature (rusqlite_0_13_0_features."trace" or {}); 755 - libsqlite3_sys_0_9_0_features."default".from_rusqlite_0_13_0__default = true; 756 - lru_cache_0_1_1_features."default".from_rusqlite_0_13_0__default = true; 757 - serde_json_0_0_0_features."default".from_rusqlite_0_13_0__default = true; 758 - time_0_1_38_features."default".from_rusqlite_0_13_0__default = true; 759 - rustc_demangle_0_1_5 = rustc_demangle_0_1_5_ rec {}; 760 - serde_1_0_21 = serde_1_0_21_ rec { 911 + rusqlite_0_13_0_features = features: 912 + lib.lists.foldl' (features: f: f features) 913 + (lib.attrsets.recursiveUpdate features (rec { 914 + libsqlite3_sys_0_9_0."min_sqlite_version_3_6_11".from_rusqlite_0_13_0__min_sqlite_version_3_6_11 = hasFeature (rusqlite_0_13_0."backup" or {}) || hasFeature (features.rusqlite_0_13_0."backup" or {}); 915 + libsqlite3_sys_0_9_0."min_sqlite_version_3_7_4".from_rusqlite_0_13_0__min_sqlite_version_3_7_4 = hasFeature (rusqlite_0_13_0."blob" or {}) || hasFeature (features.rusqlite_0_13_0."blob" or {}); 916 + libsqlite3_sys_0_9_0."buildtime_bindgen".from_rusqlite_0_13_0__buildtime_bindgen = hasFeature (rusqlite_0_13_0."buildtime_bindgen" or {}) || hasFeature (features.rusqlite_0_13_0."buildtime_bindgen" or {}); 917 + libsqlite3_sys_0_9_0."bundled".from_rusqlite_0_13_0__bundled = hasFeature (rusqlite_0_13_0."bundled" or {}) || hasFeature (features.rusqlite_0_13_0."bundled" or {}); 918 + libsqlite3_sys_0_9_0."min_sqlite_version_3_7_3".from_rusqlite_0_13_0__min_sqlite_version_3_7_3 = hasFeature (rusqlite_0_13_0."functions" or {}) || hasFeature (features.rusqlite_0_13_0."functions" or {}); 919 + libsqlite3_sys_0_9_0."sqlcipher".from_rusqlite_0_13_0__sqlcipher = hasFeature (rusqlite_0_13_0."sqlcipher" or {}) || hasFeature (features.rusqlite_0_13_0."sqlcipher" or {}); 920 + libsqlite3_sys_0_9_0."min_sqlite_version_3_6_23".from_rusqlite_0_13_0__min_sqlite_version_3_6_23 = hasFeature (rusqlite_0_13_0."trace" or {}) || hasFeature (features.rusqlite_0_13_0."trace" or {}); 921 + bitflags_1_0_1.default.from_rusqlite_0_13_0__default_ = true; 922 + libsqlite3_sys_0_9_0.default.from_rusqlite_0_13_0__default_ = true; 923 + lru_cache_0_1_1.default.from_rusqlite_0_13_0__default_ = true; 924 + time_0_1_38.default.from_rusqlite_0_13_0__default_ = true; 925 + })) 926 + [ bitflags_1_0_1_features libsqlite3_sys_0_9_0_features lru_cache_0_1_1_features time_0_1_38_features ]; 927 + rustc_demangle_0_1_5 = f: rustc_demangle_0_1_5_ rec {}; 928 + rustc_demangle_0_1_5_features = features: 929 + lib.lists.foldl' (features: f: f features) 930 + (lib.attrsets.recursiveUpdate features (rec { 931 + })) 932 + [ ]; 933 + serde_1_0_21 = f: serde_1_0_21_ rec { 761 934 dependencies = []; 762 - features = mkFeatures serde_1_0_21_features; 935 + features = mkFeatures (f.serde_1_0_21 or {}); 763 936 }; 764 - serde_1_0_21_features."unstable".self_alloc = hasFeature (serde_1_0_21_features."alloc" or {}); 765 - serde_1_0_21_features."std".self_default = hasDefault serde_1_0_21_features; 766 - serde_1_0_21_features."serde_derive".self_derive = hasFeature (serde_1_0_21_features."derive" or {}); 767 - serde_1_0_21_features."serde_derive".self_playground = hasFeature (serde_1_0_21_features."playground" or {}); 768 - serde_derive_0_0_0_features."default".from_serde_1_0_21__default = true; 769 - serde_derive_1_0_21 = serde_derive_1_0_21_ rec { 770 - dependencies = [ quote_0_3_15 serde_derive_internals_0_17_0 syn_0_11_11 ]; 937 + serde_1_0_21_features = features: 938 + lib.lists.foldl' (features: f: f features) 939 + (lib.attrsets.recursiveUpdate features (rec { 940 + serde_1_0_21."unstable".self_alloc = hasFeature (serde_1_0_21."alloc" or {}) || hasFeature (features.serde_1_0_21."alloc" or {}); 941 + serde_1_0_21."std".self_default = hasFeature (serde_1_0_21.default or {}) || hasFeature (features.serde_1_0_21.default or {}); 942 + serde_1_0_21."serde_derive".self_derive = hasFeature (serde_1_0_21."derive" or {}) || hasFeature (features.serde_1_0_21."derive" or {}); 943 + serde_1_0_21."serde_derive".self_playground = hasFeature (serde_1_0_21."playground" or {}) || hasFeature (features.serde_1_0_21."playground" or {}); 944 + })) 945 + [ ]; 946 + serde_derive_1_0_21 = f: serde_derive_1_0_21_ rec { 947 + dependencies = [ (quote_0_3_15 f) (serde_derive_internals_0_17_0 f) (syn_0_11_11 f) ]; 771 948 }; 772 - quote_0_3_15_features."default".from_serde_derive_1_0_21__default = true; 773 - serde_derive_internals_0_17_0_features."default".from_serde_derive_1_0_21__default = false; 774 - syn_0_11_11_features."visit".from_serde_derive_1_0_21 = true; 775 - syn_0_11_11_features."default".from_serde_derive_1_0_21__default = true; 776 - serde_derive_internals_0_17_0 = serde_derive_internals_0_17_0_ rec { 777 - dependencies = [ syn_0_11_11 synom_0_11_3 ]; 949 + serde_derive_1_0_21_features = features: 950 + lib.lists.foldl' (features: f: f features) 951 + (lib.attrsets.recursiveUpdate features (rec { 952 + syn_0_11_11."visit".from_serde_derive_1_0_21 = true; 953 + quote_0_3_15.default.from_serde_derive_1_0_21__default_ = true; 954 + serde_derive_internals_0_17_0.default.from_serde_derive_1_0_21__default_ = false; 955 + syn_0_11_11.default.from_serde_derive_1_0_21__default_ = true; 956 + })) 957 + [ quote_0_3_15_features serde_derive_internals_0_17_0_features syn_0_11_11_features ]; 958 + serde_derive_internals_0_17_0 = f: serde_derive_internals_0_17_0_ rec { 959 + dependencies = [ (syn_0_11_11 f) (synom_0_11_3 f) ]; 778 960 }; 779 - syn_0_11_11_features."parsing".from_serde_derive_internals_0_17_0 = true; 780 - syn_0_11_11_features."default".from_serde_derive_internals_0_17_0__default = false; 781 - synom_0_11_3_features."default".from_serde_derive_internals_0_17_0__default = true; 782 - serde_json_1_0_6 = serde_json_1_0_6_ rec { 783 - dependencies = [ dtoa_0_4_2 itoa_0_3_4 num_traits_0_1_40 serde_1_0_21 ]; 784 - features = mkFeatures serde_json_1_0_6_features; 961 + serde_derive_internals_0_17_0_features = features: 962 + lib.lists.foldl' (features: f: f features) 963 + (lib.attrsets.recursiveUpdate features (rec { 964 + syn_0_11_11."parsing".from_serde_derive_internals_0_17_0 = true; 965 + syn_0_11_11.default.from_serde_derive_internals_0_17_0__default_ = false; 966 + synom_0_11_3.default.from_serde_derive_internals_0_17_0__default_ = true; 967 + })) 968 + [ syn_0_11_11_features synom_0_11_3_features ]; 969 + serde_json_1_0_6 = f: serde_json_1_0_6_ rec { 970 + dependencies = [ (dtoa_0_4_2 f) (itoa_0_3_4 f) (num_traits_0_1_40 f) (serde_1_0_21 f) ]; 971 + features = mkFeatures (f.serde_json_1_0_6 or {}); 785 972 }; 786 - serde_json_1_0_6_features."linked-hash-map".self_preserve_order = hasFeature (serde_json_1_0_6_features."preserve_order" or {}); 787 - dtoa_0_4_2_features."default".from_serde_json_1_0_6__default = true; 788 - itoa_0_3_4_features."default".from_serde_json_1_0_6__default = true; 789 - linked_hash_map_0_0_0_features."default".from_serde_json_1_0_6__default = true; 790 - num_traits_0_1_40_features."default".from_serde_json_1_0_6__default = true; 791 - serde_1_0_21_features."default".from_serde_json_1_0_6__default = true; 792 - strsim_0_6_0 = strsim_0_6_0_ rec {}; 793 - syn_0_11_11 = syn_0_11_11_ rec { 794 - dependencies = [ quote_0_3_15 synom_0_11_3 unicode_xid_0_0_4 ] 795 - ++ (if lib.lists.any (x: x == "quote") features then [quote_0_3_15] else []) ++ (if lib.lists.any (x: x == "synom") features then [synom_0_11_3] else []) ++ (if lib.lists.any (x: x == "unicode-xid") features then [unicode_xid_0_0_4] else []); 796 - features = mkFeatures syn_0_11_11_features; 973 + serde_json_1_0_6_features = features: 974 + lib.lists.foldl' (features: f: f features) 975 + (lib.attrsets.recursiveUpdate features (rec { 976 + serde_json_1_0_6."linked-hash-map".self_preserve_order = hasFeature (serde_json_1_0_6."preserve_order" or {}) || hasFeature (features.serde_json_1_0_6."preserve_order" or {}); 977 + dtoa_0_4_2.default.from_serde_json_1_0_6__default_ = true; 978 + itoa_0_3_4.default.from_serde_json_1_0_6__default_ = true; 979 + num_traits_0_1_40.default.from_serde_json_1_0_6__default_ = true; 980 + serde_1_0_21.default.from_serde_json_1_0_6__default_ = true; 981 + })) 982 + [ dtoa_0_4_2_features itoa_0_3_4_features num_traits_0_1_40_features serde_1_0_21_features ]; 983 + strsim_0_6_0 = f: strsim_0_6_0_ rec {}; 984 + strsim_0_6_0_features = features: 985 + lib.lists.foldl' (features: f: f features) 986 + (lib.attrsets.recursiveUpdate features (rec { 987 + })) 988 + [ ]; 989 + syn_0_11_11 = f: syn_0_11_11_ rec { 990 + dependencies = [ ] 991 + ++ (if hasFeature (f.syn_0_11_11."quote" or {}) then [(quote_0_3_15 f)] else []) 992 + ++ (if hasFeature (f.syn_0_11_11."synom" or {}) then [(synom_0_11_3 f)] else []) 993 + ++ (if hasFeature (f.syn_0_11_11."unicode-xid" or {}) then [(unicode_xid_0_0_4 f)] else []); 994 + features = mkFeatures (f.syn_0_11_11 or {}); 797 995 }; 798 - syn_0_11_11_features."".self = true; 799 - syn_0_11_11_features."parsing".self_default = hasDefault syn_0_11_11_features; 800 - syn_0_11_11_features."printing".self_default = hasDefault syn_0_11_11_features; 801 - syn_0_11_11_features."unicode-xid".self_parsing = hasFeature (syn_0_11_11_features."parsing" or {}); 802 - syn_0_11_11_features."synom".self_parsing = hasFeature (syn_0_11_11_features."parsing" or {}); 803 - syn_0_11_11_features."quote".self_printing = hasFeature (syn_0_11_11_features."printing" or {}); 804 - quote_0_3_15_features."default".from_syn_0_11_11__default = true; 805 - synom_0_11_3_features."default".from_syn_0_11_11__default = true; 806 - unicode_xid_0_0_4_features."default".from_syn_0_11_11__default = true; 807 - synom_0_11_3 = synom_0_11_3_ rec { 808 - dependencies = [ unicode_xid_0_0_4 ]; 996 + syn_0_11_11_features = features: 997 + lib.lists.foldl' (features: f: f features) 998 + (lib.attrsets.recursiveUpdate features (rec { 999 + syn_0_11_11."parsing".self_default = hasFeature (syn_0_11_11.default or {}) || hasFeature (features.syn_0_11_11.default or {}); 1000 + syn_0_11_11."printing".self_default = hasFeature (syn_0_11_11.default or {}) || hasFeature (features.syn_0_11_11.default or {}); 1001 + syn_0_11_11."unicode-xid".self_parsing = hasFeature (syn_0_11_11."parsing" or {}) || hasFeature (features.syn_0_11_11."parsing" or {}); 1002 + syn_0_11_11."synom".self_parsing = hasFeature (syn_0_11_11."parsing" or {}) || hasFeature (features.syn_0_11_11."parsing" or {}); 1003 + syn_0_11_11."quote".self_printing = hasFeature (syn_0_11_11."printing" or {}) || hasFeature (features.syn_0_11_11."printing" or {}); 1004 + quote_0_3_15.default.from_syn_0_11_11__default_ = true; 1005 + synom_0_11_3.default.from_syn_0_11_11__default_ = true; 1006 + unicode_xid_0_0_4.default.from_syn_0_11_11__default_ = true; 1007 + })) 1008 + [ quote_0_3_15_features synom_0_11_3_features unicode_xid_0_0_4_features ]; 1009 + synom_0_11_3 = f: synom_0_11_3_ rec { 1010 + dependencies = [ (unicode_xid_0_0_4 f) ]; 809 1011 }; 810 - unicode_xid_0_0_4_features."default".from_synom_0_11_3__default = true; 811 - tempdir_0_3_5 = tempdir_0_3_5_ rec { 812 - dependencies = [ rand_0_3_18 ]; 1012 + synom_0_11_3_features = features: 1013 + lib.lists.foldl' (features: f: f features) 1014 + (lib.attrsets.recursiveUpdate features (rec { 1015 + unicode_xid_0_0_4.default.from_synom_0_11_3__default_ = true; 1016 + })) 1017 + [ unicode_xid_0_0_4_features ]; 1018 + tempdir_0_3_5 = f: tempdir_0_3_5_ rec { 1019 + dependencies = [ (rand_0_3_18 f) ]; 813 1020 }; 814 - rand_0_3_18_features."default".from_tempdir_0_3_5__default = true; 815 - termion_1_5_1 = termion_1_5_1_ rec { 816 - dependencies = (if !(kernel == "redox") then [ libc_0_2_33 ] else []) 817 - ++ (if kernel == "redox" then [ redox_syscall_0_1_32 redox_termios_0_1_1 ] else []); 1021 + tempdir_0_3_5_features = features: 1022 + lib.lists.foldl' (features: f: f features) 1023 + (lib.attrsets.recursiveUpdate features (rec { 1024 + rand_0_3_18.default.from_tempdir_0_3_5__default_ = true; 1025 + })) 1026 + [ rand_0_3_18_features ]; 1027 + termion_1_5_1 = f: termion_1_5_1_ rec { 1028 + dependencies = (if !(kernel == "redox") then [ (libc_0_2_33 f) ] else []) 1029 + ++ (if kernel == "redox" then [ (redox_syscall_0_1_32 f) (redox_termios_0_1_1 f) ] else []); 818 1030 }; 819 - libc_0_2_33_features."default".from_termion_1_5_1__default = true; 820 - redox_syscall_0_1_32_features."default".from_termion_1_5_1__default = true; 821 - redox_termios_0_1_1_features."default".from_termion_1_5_1__default = true; 822 - textwrap_0_9_0 = textwrap_0_9_0_ rec { 823 - dependencies = [ unicode_width_0_1_4 ]; 1031 + termion_1_5_1_features = features: 1032 + lib.lists.foldl' (features: f: f features) 1033 + (lib.attrsets.recursiveUpdate features (rec { 1034 + libc_0_2_33.default.from_termion_1_5_1__default_ = true; 1035 + redox_syscall_0_1_32.default.from_termion_1_5_1__default_ = true; 1036 + redox_termios_0_1_1.default.from_termion_1_5_1__default_ = true; 1037 + })) 1038 + [ libc_0_2_33_features redox_syscall_0_1_32_features redox_termios_0_1_1_features ]; 1039 + textwrap_0_9_0 = f: textwrap_0_9_0_ rec { 1040 + dependencies = [ (unicode_width_0_1_4 f) ]; 824 1041 }; 825 - hyphenation_0_0_0_features."default".from_textwrap_0_9_0__default = true; 826 - term_size_0_0_0_features."default".from_textwrap_0_9_0__default = true; 827 - unicode_width_0_1_4_features."default".from_textwrap_0_9_0__default = true; 828 - thread_local_0_3_4 = thread_local_0_3_4_ rec { 829 - dependencies = [ lazy_static_0_2_11 unreachable_1_0_0 ]; 1042 + textwrap_0_9_0_features = features: 1043 + lib.lists.foldl' (features: f: f features) 1044 + (lib.attrsets.recursiveUpdate features (rec { 1045 + unicode_width_0_1_4.default.from_textwrap_0_9_0__default_ = true; 1046 + })) 1047 + [ unicode_width_0_1_4_features ]; 1048 + thread_local_0_3_4 = f: thread_local_0_3_4_ rec { 1049 + dependencies = [ (lazy_static_0_2_11 f) (unreachable_1_0_0 f) ]; 830 1050 }; 831 - lazy_static_0_2_11_features."default".from_thread_local_0_3_4__default = true; 832 - unreachable_1_0_0_features."default".from_thread_local_0_3_4__default = true; 833 - time_0_1_38 = time_0_1_38_ rec { 834 - dependencies = [ libc_0_2_33 ] 835 - ++ (if kernel == "redox" then [ redox_syscall_0_1_32 ] else []) 836 - ++ (if kernel == "windows" then [ kernel32_sys_0_2_2 winapi_0_2_8 ] else []); 1051 + thread_local_0_3_4_features = features: 1052 + lib.lists.foldl' (features: f: f features) 1053 + (lib.attrsets.recursiveUpdate features (rec { 1054 + lazy_static_0_2_11.default.from_thread_local_0_3_4__default_ = true; 1055 + unreachable_1_0_0.default.from_thread_local_0_3_4__default_ = true; 1056 + })) 1057 + [ lazy_static_0_2_11_features unreachable_1_0_0_features ]; 1058 + time_0_1_38 = f: time_0_1_38_ rec { 1059 + dependencies = [ (libc_0_2_33 f) ] 1060 + ++ (if kernel == "redox" then [ (redox_syscall_0_1_32 f) ] else []) 1061 + ++ (if kernel == "windows" then [ (kernel32_sys_0_2_2 f) (winapi_0_2_8 f) ] else []); 837 1062 }; 838 - libc_0_2_33_features."default".from_time_0_1_38__default = true; 839 - rustc_serialize_0_0_0_features."default".from_time_0_1_38__default = true; 840 - redox_syscall_0_1_32_features."default".from_time_0_1_38__default = true; 841 - kernel32_sys_0_2_2_features."default".from_time_0_1_38__default = true; 842 - winapi_0_2_8_features."default".from_time_0_1_38__default = true; 843 - toml_0_4_5 = toml_0_4_5_ rec { 844 - dependencies = [ serde_1_0_21 ]; 1063 + time_0_1_38_features = features: 1064 + lib.lists.foldl' (features: f: f features) 1065 + (lib.attrsets.recursiveUpdate features (rec { 1066 + kernel32_sys_0_2_2.default.from_time_0_1_38__default_ = true; 1067 + libc_0_2_33.default.from_time_0_1_38__default_ = true; 1068 + redox_syscall_0_1_32.default.from_time_0_1_38__default_ = true; 1069 + winapi_0_2_8.default.from_time_0_1_38__default_ = true; 1070 + })) 1071 + [ libc_0_2_33_features redox_syscall_0_1_32_features kernel32_sys_0_2_2_features winapi_0_2_8_features ]; 1072 + toml_0_4_5 = f: toml_0_4_5_ rec { 1073 + dependencies = [ (serde_1_0_21 f) ]; 845 1074 }; 846 - serde_1_0_21_features."default".from_toml_0_4_5__default = true; 847 - unicode_width_0_1_4 = unicode_width_0_1_4_ rec { 848 - features = mkFeatures unicode_width_0_1_4_features; 1075 + toml_0_4_5_features = features: 1076 + lib.lists.foldl' (features: f: f features) 1077 + (lib.attrsets.recursiveUpdate features (rec { 1078 + serde_1_0_21.default.from_toml_0_4_5__default_ = true; 1079 + })) 1080 + [ serde_1_0_21_features ]; 1081 + unicode_width_0_1_4 = f: unicode_width_0_1_4_ rec { 1082 + features = mkFeatures (f.unicode_width_0_1_4 or {}); 849 1083 }; 850 - unicode_width_0_1_4_features."".self = true; 851 - unicode_xid_0_0_4 = unicode_xid_0_0_4_ rec { 852 - features = mkFeatures unicode_xid_0_0_4_features; 1084 + unicode_width_0_1_4_features = features: 1085 + lib.lists.foldl' (features: f: f features) 1086 + (lib.attrsets.recursiveUpdate features (rec { 1087 + })) 1088 + [ ]; 1089 + unicode_xid_0_0_4 = f: unicode_xid_0_0_4_ rec { 1090 + features = mkFeatures (f.unicode_xid_0_0_4 or {}); 853 1091 }; 854 - unicode_xid_0_0_4_features."".self = true; 855 - unreachable_1_0_0 = unreachable_1_0_0_ rec { 856 - dependencies = [ void_1_0_2 ]; 1092 + unicode_xid_0_0_4_features = features: 1093 + lib.lists.foldl' (features: f: f features) 1094 + (lib.attrsets.recursiveUpdate features (rec { 1095 + })) 1096 + [ ]; 1097 + unreachable_1_0_0 = f: unreachable_1_0_0_ rec { 1098 + dependencies = [ (void_1_0_2 f) ]; 857 1099 }; 858 - void_1_0_2_features."default".from_unreachable_1_0_0__default = false; 859 - utf8_ranges_1_0_0 = utf8_ranges_1_0_0_ rec {}; 860 - vcpkg_0_2_2 = vcpkg_0_2_2_ rec {}; 861 - vec_map_0_8_0 = vec_map_0_8_0_ rec { 1100 + unreachable_1_0_0_features = features: 1101 + lib.lists.foldl' (features: f: f features) 1102 + (lib.attrsets.recursiveUpdate features (rec { 1103 + void_1_0_2.default.from_unreachable_1_0_0__default_ = false; 1104 + })) 1105 + [ void_1_0_2_features ]; 1106 + utf8_ranges_1_0_0 = f: utf8_ranges_1_0_0_ rec {}; 1107 + utf8_ranges_1_0_0_features = features: 1108 + lib.lists.foldl' (features: f: f features) 1109 + (lib.attrsets.recursiveUpdate features (rec { 1110 + })) 1111 + [ ]; 1112 + vcpkg_0_2_2 = f: vcpkg_0_2_2_ rec {}; 1113 + vcpkg_0_2_2_features = features: 1114 + lib.lists.foldl' (features: f: f features) 1115 + (lib.attrsets.recursiveUpdate features (rec { 1116 + })) 1117 + [ ]; 1118 + vec_map_0_8_0 = f: vec_map_0_8_0_ rec { 862 1119 dependencies = []; 863 - features = mkFeatures vec_map_0_8_0_features; 1120 + features = mkFeatures (f.vec_map_0_8_0 or {}); 864 1121 }; 865 - vec_map_0_8_0_features."serde".self_eders = hasFeature (vec_map_0_8_0_features."eders" or {}); 866 - vec_map_0_8_0_features."serde_derive".self_eders = hasFeature (vec_map_0_8_0_features."eders" or {}); 867 - serde_0_0_0_features."default".from_vec_map_0_8_0__default = true; 868 - serde_derive_0_0_0_features."default".from_vec_map_0_8_0__default = true; 869 - void_1_0_2 = void_1_0_2_ rec { 870 - features = mkFeatures void_1_0_2_features; 1122 + vec_map_0_8_0_features = features: 1123 + lib.lists.foldl' (features: f: f features) 1124 + (lib.attrsets.recursiveUpdate features (rec { 1125 + vec_map_0_8_0."serde".self_eders = hasFeature (vec_map_0_8_0."eders" or {}) || hasFeature (features.vec_map_0_8_0."eders" or {}); 1126 + vec_map_0_8_0."serde_derive".self_eders = hasFeature (vec_map_0_8_0."eders" or {}) || hasFeature (features.vec_map_0_8_0."eders" or {}); 1127 + })) 1128 + [ ]; 1129 + void_1_0_2 = f: void_1_0_2_ rec { 1130 + features = mkFeatures (f.void_1_0_2 or {}); 871 1131 }; 872 - void_1_0_2_features."std".self_default = hasDefault void_1_0_2_features; 873 - winapi_0_2_8 = winapi_0_2_8_ rec {}; 874 - winapi_build_0_1_1 = winapi_build_0_1_1_ rec {}; 1132 + void_1_0_2_features = features: 1133 + lib.lists.foldl' (features: f: f features) 1134 + (lib.attrsets.recursiveUpdate features (rec { 1135 + void_1_0_2."std".self_default = hasFeature (void_1_0_2.default or {}) || hasFeature (features.void_1_0_2.default or {}); 1136 + })) 1137 + [ ]; 1138 + winapi_0_2_8 = f: winapi_0_2_8_ rec {}; 1139 + winapi_0_2_8_features = features: 1140 + lib.lists.foldl' (features: f: f features) 1141 + (lib.attrsets.recursiveUpdate features (rec { 1142 + })) 1143 + [ ]; 1144 + winapi_build_0_1_1 = f: winapi_build_0_1_1_ rec {}; 1145 + winapi_build_0_1_1_features = features: 1146 + lib.lists.foldl' (features: f: f features) 1147 + (lib.attrsets.recursiveUpdate features (rec { 1148 + })) 1149 + [ ]; 875 1150 }
-1
pkgs/build-support/vm/windows/cygwin-iso/default.nix
··· 21 21 crossSystem = { 22 22 libc = "msvcrt"; 23 23 platform = {}; 24 - openssl.system = "mingw64"; 25 24 inherit arch; 26 25 config = "${arch}-w64-mingw32"; 27 26 };
+39
pkgs/data/fonts/twemoji-color-font/default.nix
··· 1 + { stdenv, fetchFromGitHub, inkscape, imagemagick, potrace, svgo, scfbuild }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "twemoji-color-font-${meta.version}"; 5 + src = fetchFromGitHub { 6 + owner = "eosrei"; 7 + repo = "twemoji-color-font"; 8 + rev = "v${meta.version}"; 9 + sha256 = "0i7krmg99nrrj7mbjjd2cw6dx24aja63571mcyp6d7q1z09asz9k"; 10 + }; 11 + 12 + nativeBuildInputs = [ inkscape imagemagick potrace svgo scfbuild ]; 13 + # silence inkscape errors about non-writable home 14 + preBuild = "export HOME=\"$NIX_BUILD_ROOT\""; 15 + makeFlags = [ "SCFBUILD=${scfbuild}/bin/scfbuild" ]; 16 + enableParallelBuilding = true; 17 + installPhase = "install -Dm755 build/TwitterColorEmoji-SVGinOT.ttf $out/share/fonts/truetype/TwitterColorEmoji-SVGinOT.ttf"; 18 + 19 + meta = with stdenv.lib; { 20 + version = "1.3"; 21 + description = "Color emoji SVGinOT font using Twitter Unicode 10 emoji with diversity and country flags"; 22 + longDescription = '' 23 + A color and B&W emoji SVGinOT font built from the Twitter Emoji for 24 + Everyone artwork with support for ZWJ, skin tone diversity and country 25 + flags. 26 + 27 + The font works in all operating systems, but will currently only show 28 + color emoji in Firefox, Thunderbird, Photoshop CC 2017, and Windows Edge 29 + V38.14393+. This is not a limitation of the font, but of the operating 30 + systems and applications. Regular B&W outline emoji are included for 31 + backwards/fallback compatibility. 32 + ''; 33 + homepage = "https://github.com/eosrei/twemoji-color-font"; 34 + downloadPage = "https://github.com/eosrei/twemoji-color-font/releases"; 35 + license = with licenses; [ cc-by-40 mit ]; 36 + maintainers = [ maintainers.fgaz ]; 37 + platforms = platforms.all; 38 + }; 39 + }
+28
pkgs/desktops/gnome-3/extensions/pixel-saver/default.nix
··· 1 + { stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "gnome-shell-extension-pixel-saver-${version}"; 5 + version = "1.10"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "deadalnix"; 9 + repo = "pixel-saver"; 10 + rev = version; 11 + sha256 = "040ayzhpv9jq49vp32w85wvjs57047faa7872qm4brii450iy7v4"; 12 + }; 13 + 14 + uuid = "pixel-saver@deadalnix.me"; 15 + 16 + installPhase = '' 17 + mkdir -p $out/share/gnome-shell/extensions 18 + cp -r ${uuid} $out/share/gnome-shell/extensions 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + description = "Pixel Saver is designed to save pixel by fusing activity bar and title bar in a natural way"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ jonafato ]; 25 + platforms = platforms.linux; 26 + homepage = https://github.com/deadalnix/pixel-saver; 27 + }; 28 + }
+2 -2
pkgs/development/compilers/gcc/7/default.nix
··· 56 56 with stdenv.lib; 57 57 with builtins; 58 58 59 - let version = "7.2.0"; 59 + let version = "7.3.0"; 60 60 61 61 # Whether building a cross-compiler for GNU/Hurd. 62 62 crossGNU = targetPlatform != hostPlatform && targetPlatform.config == "i586-pc-gnu"; ··· 185 185 186 186 src = fetchurl { 187 187 url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.xz"; 188 - sha256 = "16j7i0888j2f1yp9l0nhji6cq65dy6y4nwy8868a8njbzzwavxqw"; 188 + sha256 = "0p71bij6bfhzyrs8676a8jmpjsfz392s2rg862sdnsk30jpacb43"; 189 189 }; 190 190 191 191 inherit patches;
-112
pkgs/development/compilers/ghc/6.10.2-binary.nix
··· 1 - { stdenv 2 - , fetchurl, perl 3 - , libedit, ncurses5, gmp 4 - , enableIntegerSimple ? false 5 - }: 6 - 7 - # Prebuilt only does native 8 - assert stdenv.targetPlatform == stdenv.hostPlatform; 9 - 10 - stdenv.mkDerivation rec { 11 - version = "6.10.2"; 12 - 13 - name = "ghc-${version}-binary"; 14 - 15 - src = fetchurl ({ 16 - "i686-linux" = { 17 - # This binary requires libedit.so.0 (rather than libedit.so.2). 18 - url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-unknown-linux.tar.bz2"; 19 - sha256 = "1fw0zr2qshlpk8s0d16k27zcv5263nqdg2xds5ymw8ff6qz9rz9b"; 20 - }; 21 - "x86_64-linux" = { 22 - # Idem. 23 - url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-unknown-linux.tar.bz2"; 24 - sha256 = "1rd2j7lmcfsm2rdfb5g6q0l8dz3sxadk5m3d2f69d4a6g4p4h7jj"; 25 - }; 26 - }.${stdenv.hostPlatform.system} 27 - or (throw "cannot bootstrap GHC on this platform")); 28 - 29 - nativeBuildInputs = [ perl ]; 30 - 31 - # Cannot patchelf beforehand due to relative RPATHs that anticipate 32 - # the final install location/ 33 - LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath [ libedit ncurses5 gmp ]; 34 - 35 - postUnpack = 36 - # Strip is harmful, see also below. It's important that this happens 37 - # first. The GHC Cabal build system makes use of strip by default and 38 - # has hardcoded paths to /usr/bin/strip in many places. We replace 39 - # those below, making them point to our dummy script. 40 - '' 41 - mkdir "$TMP/bin" 42 - for i in strip; do 43 - echo '#! ${stdenv.shell}' > "$TMP/bin/$i" 44 - chmod +x "$TMP/bin/$i" 45 - done 46 - PATH="$TMP/bin:$PATH" 47 - '' + 48 - # On Linux, use patchelf to modify the executables so that they can 49 - # find editline/gmp. 50 - stdenv.lib.optionalString stdenv.hostPlatform.isLinux '' 51 - find . -type f -perm -0100 -exec patchelf \ 52 - --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" {} \; 53 - 54 - for prog in ld ar gcc strip ranlib; do 55 - find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \; 56 - done 57 - ''; 58 - 59 - configurePlatforms = [ ]; 60 - configureFlags = [ 61 - "--with-gmp-libraries=${stdenv.lib.getLib gmp}/lib" 62 - "--with-gmp-includes=${stdenv.lib.getDev gmp}/include" 63 - ]; 64 - 65 - # Stripping combined with patchelf breaks the executables (they die 66 - # with a segfault or the kernel even refuses the execve). (NIXPKGS-85) 67 - dontStrip = true; 68 - 69 - # No building is necessary, but calling make without flags ironically 70 - # calls install-strip ... 71 - dontBuild = true; 72 - 73 - postInstall = '' 74 - # bah, the passing gmp doesn't work, so let's add it to the final package.conf in a quick but dirty way 75 - sed -i "s@^\(.*pkgName = PackageName \"rts\".*\libraryDirs = \\[\)\(.*\)@\\1\"${gmp.out}/lib\",\2@" $out/lib/ghc-${version}/package.conf 76 - ''; 77 - 78 - # On Linux, use patchelf to modify the executables so that they can 79 - # find editline/gmp. 80 - preFixup = stdenv.lib.optionalString stdenv.isLinux '' 81 - find "$out" -type f -executable \ 82 - -exec patchelf --set-rpath "${LD_LIBRARY_PATH}" {} \; 83 - ''; 84 - 85 - doInstallCheck = true; 86 - installCheckPhase = '' 87 - # Sanity check, can ghc create executables? 88 - cd $TMP 89 - mkdir test-ghc; cd test-ghc 90 - cat > main.hs << EOF 91 - module Main where 92 - main = putStrLn "yes" 93 - EOF 94 - $out/bin/ghc --make main.hs 95 - echo compilation ok 96 - [ $(./main) == "yes" ] 97 - ''; 98 - 99 - passthru = { 100 - targetPrefix = ""; 101 - # Our Cabal compiler name 102 - haskellCompilerName = "ghc"; 103 - }; 104 - 105 - meta = { 106 - homepage = http://haskell.org/ghc; 107 - description = "The Glasgow Haskell Compiler"; 108 - license = stdenv.lib.licenses.bsd3; 109 - platforms = ["x86_64-linux" "i686-linux"]; 110 - }; 111 - 112 - }
-42
pkgs/development/compilers/ghc/6.10.4.nix
··· 1 - {stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses}: 2 - 3 - # TODO(@Ericson2314): Cross compilation support 4 - assert stdenv.targetPlatform == stdenv.hostPlatform; 5 - 6 - stdenv.mkDerivation rec { 7 - version = "6.10.4"; 8 - 9 - name = "ghc-${version}"; 10 - 11 - src = fetchurl { 12 - url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.bz2"; 13 - sha256 = "d66a8e52572f4ff819fe5c4e34c6dd1e84a7763e25c3fadcc222453c0bd8534d"; 14 - }; 15 - 16 - buildInputs = [ghc libedit perl gmp]; 17 - 18 - hardeningDisable = [ "format" ]; 19 - 20 - configureFlags = [ 21 - "--with-gmp-libraries=${gmp.out}/lib" 22 - "--with-gmp-includes=${gmp.dev}/include" 23 - "--with-gcc=${stdenv.cc}/bin/gcc" 24 - ]; 25 - 26 - NIX_CFLAGS_COMPILE = "-fomit-frame-pointer"; 27 - 28 - passthru = { 29 - targetPrefix = ""; 30 - 31 - # Our Cabal compiler name 32 - haskellCompilerName = "ghc"; 33 - }; 34 - 35 - meta = { 36 - homepage = http://haskell.org/ghc; 37 - description = "The Glasgow Haskell Compiler"; 38 - platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported. 39 - inherit (ghc.meta) license; 40 - broken = true; # https://nix-cache.s3.amazonaws.com/log/6ys7lzckf2c0532kzhmss73mmz504can-ghc-6.10.4.drv 41 - }; 42 - }
-54
pkgs/development/compilers/ghc/6.12.3.nix
··· 1 - {stdenv, fetchurl, ghc, perl, gmp, ncurses}: 2 - 3 - # TODO(@Ericson2314): Cross compilation support 4 - assert stdenv.targetPlatform == stdenv.hostPlatform; 5 - 6 - stdenv.mkDerivation rec { 7 - version = "6.12.3"; 8 - 9 - name = "ghc-${version}"; 10 - 11 - src = fetchurl { 12 - url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.bz2"; 13 - sha256 = "0s2y1sv2nq1cgliv735q2w3gg4ykv1c0g1adbv8wgwhia10vxgbc"; 14 - }; 15 - 16 - buildInputs = [ghc perl gmp ncurses]; 17 - 18 - buildMK = '' 19 - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" 20 - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" 21 - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" 22 - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" 23 - ''; 24 - 25 - preConfigure = '' 26 - echo -n "${buildMK}" > mk/build.mk 27 - ''; 28 - 29 - configureFlags = [ 30 - "--with-gcc=${stdenv.cc}/bin/gcc" 31 - ]; 32 - 33 - NIX_CFLAGS_COMPILE = "-fomit-frame-pointer"; 34 - 35 - # required, because otherwise all symbols from HSffi.o are stripped, and 36 - # that in turn causes GHCi to abort 37 - stripDebugFlags=["-S" "--keep-file-symbols"]; 38 - 39 - passthru = { 40 - targetPrefix = ""; 41 - 42 - # Our Cabal compiler name 43 - haskellCompilerName = "ghc"; 44 - }; 45 - 46 - meta = { 47 - homepage = http://haskell.org/ghc; 48 - description = "The Glasgow Haskell Compiler"; 49 - maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ]; 50 - platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported. 51 - inherit (ghc.meta) license; 52 - broken = true; # broken by gcc 5.x: http://hydra.nixos.org/build/33627548 53 - }; 54 - }
-78
pkgs/development/compilers/ghc/7.2.2.nix
··· 1 - { stdenv, fetchurl, ghc, perl, ncurses, libiconv 2 - 3 - , # If enabled, GHC will be built with the GPL-free but slower integer-simple 4 - # library instead of the faster but GPLed integer-gmp library. 5 - enableIntegerSimple ? false, gmp ? null 6 - }: 7 - 8 - # TODO(@Ericson2314): Cross compilation support 9 - assert stdenv.targetPlatform == stdenv.hostPlatform; 10 - assert !enableIntegerSimple -> gmp != null; 11 - 12 - stdenv.mkDerivation rec { 13 - version = "7.2.2"; 14 - name = "ghc-${version}"; 15 - 16 - src = fetchurl { 17 - url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.bz2"; 18 - sha256 = "0g87d3z9275dniaqzkf56qfgzp1msd89nqqhhm2gkc6iga072spz"; 19 - }; 20 - 21 - patches = [ ./fix-7.2.2-clang.patch ./relocation.patch ]; 22 - 23 - buildInputs = [ ghc perl ncurses ] 24 - ++ stdenv.lib.optional (!enableIntegerSimple) gmp; 25 - 26 - buildMK = '' 27 - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" 28 - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" 29 - ${stdenv.lib.optionalString stdenv.isDarwin '' 30 - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" 31 - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" 32 - ''} 33 - '' + (if enableIntegerSimple then '' 34 - INTEGER_LIBRARY = integer-simple 35 - '' else '' 36 - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" 37 - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" 38 - ''); 39 - 40 - preConfigure = '' 41 - echo -n "${buildMK}" > mk/build.mk 42 - sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure 43 - '' + stdenv.lib.optionalString stdenv.isDarwin '' 44 - find . -name '*.hs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|' 45 - find . -name '*.lhs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|' 46 - export NIX_LDFLAGS+=" -no_dtrace_dof" 47 - ''; 48 - 49 - configureFlags = if stdenv.isDarwin then "--with-gcc=${./gcc-clang-wrapper.sh}" 50 - else "--with-gcc=${stdenv.cc}/bin/gcc"; 51 - 52 - NIX_CFLAGS_COMPILE = "-fomit-frame-pointer"; 53 - 54 - # required, because otherwise all symbols from HSffi.o are stripped, and 55 - # that in turn causes GHCi to abort 56 - stripDebugFlags=["-S" "--keep-file-symbols"]; 57 - 58 - passthru = { 59 - targetPprefix = ""; 60 - 61 - # Our Cabal compiler name 62 - haskellCompilerName = "ghc"; 63 - }; 64 - 65 - meta = { 66 - homepage = http://haskell.org/ghc; 67 - description = "The Glasgow Haskell Compiler"; 68 - maintainers = [ 69 - stdenv.lib.maintainers.marcweber 70 - stdenv.lib.maintainers.andres 71 - stdenv.lib.maintainers.peti 72 - ]; 73 - platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported. 74 - inherit (ghc.meta) license; 75 - broken = true; # broken by 51cf42ad0d3ccb55af182f1f0ee5eb5094ea5995: https://hydra.nixos.org/build/60616815 76 - }; 77 - 78 - }
+3 -3
pkgs/development/compilers/ghc/8.4.1.nix
··· 24 24 # platform). Static libs are always built. 25 25 enableShared ? true 26 26 27 - , version ? "8.4.20180122" 27 + , version ? "8.4.20180115" 28 28 }: 29 29 30 30 assert !enableIntegerSimple -> gmp != null; ··· 73 73 74 74 src = fetchgit { 75 75 url = "git://git.haskell.org/ghc.git"; 76 - rev = "61db0b8941cfb7ed8941ed29bdb04bd8ef3b71a5"; 77 - sha256 = "15sbpgkal4854jc1xn3sprvpnxwdj0fyy43y5am0h9vja3pjhjyi"; 76 + rev = "3e3a096885c0fcd0703edbeffb4e47f5cbd8f4cc"; 77 + sha256 = "06slymbsd7vsfp4hh40v7cxf7nmp0kvlni2wfq7ag5wlqh04slgs"; 78 78 }; 79 79 80 80 enableParallelBuilding = true;
+4 -2
pkgs/development/compilers/go/1.9.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 name = "go-${version}"; 28 - version = "1.9.2"; 28 + version = "1.9.3"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "golang"; 32 32 repo = "go"; 33 33 rev = "go${version}"; 34 - sha256 = "07p4ld07r2nml2bsbfb8h51hqilbqyhhdlia99y1gk7ibvhybv8i"; 34 + sha256 = "0ivb6z30d6qrrkwjm9fdz9jfs567q4b6dljwwxc9shmdr2l9chah"; 35 35 }; 36 36 37 37 # perl is used for testing go vet ··· 139 139 GO386 = 387; # from Arch: don't assume sse2 on i686 140 140 CGO_ENABLED = 1; 141 141 GOROOT_BOOTSTRAP = "${goBootstrap}/share/go"; 142 + # Hopefully avoids test timeouts on Hydra 143 + GO_TEST_TIMEOUT_SCALE = 3; 142 144 143 145 # The go build actually checks for CC=*/clang and does something different, so we don't 144 146 # just want the generic `cc` here.
-54
pkgs/development/compilers/halvm/2.4.0.nix
··· 1 - { stdenv, fetchgit, bootPkgs, perl, gmp, ncurses, targetPackages, autoconf, alex, happy, makeStaticLibraries 2 - , hscolour, xen, automake, gcc, git, zlib, libtool, enableIntegerSimple ? false 3 - }: 4 - 5 - stdenv.mkDerivation rec { 6 - version = "2.4.0"; 7 - name = "HaLVM-${version}"; 8 - isHaLVM = true; 9 - enableParallelBuilding = false; 10 - isGhcjs = false; 11 - src = fetchgit { 12 - rev = "65fad65966eb7e60f234453a35aeb564a09d2595"; 13 - url = "https://github.com/GaloisInc/HaLVM"; 14 - sha256 = "09633h38w0z20cz0wcfp9z5kzv8v1zwcv0wqvgq3c8svqbrxp28k"; 15 - }; 16 - prePatch = '' 17 - sed -i '305 d' Makefile 18 - sed -i '309,439 d' Makefile # Removes RPM packaging 19 - sed -i '20 d' src/scripts/halvm-cabal.in 20 - sed -ie 's|ld |${targetPackages.stdenv.cc.bintools}/bin/ld |g' src/scripts/ldkernel.in 21 - ''; 22 - configureFlags = stdenv.lib.optional (!enableIntegerSimple) [ "--enable-gmp" ]; 23 - propagatedNativeBuildInputs = [ alex happy ]; 24 - buildInputs = 25 - let haskellPkgs = [ alex happy bootPkgs.hscolour bootPkgs.cabal-install bootPkgs.haddock bootPkgs.hpc 26 - ]; in [ bootPkgs.ghc 27 - automake perl git targetPackages.stdenv.cc.bintools 28 - autoconf xen zlib ncurses.dev 29 - libtool gmp ] ++ haskellPkgs; 30 - preConfigure = '' 31 - autoconf 32 - patchShebangs . 33 - ''; 34 - hardeningDisable = ["all"]; 35 - postInstall = '' 36 - patchShebangs $out/bin 37 - $out/bin/halvm-ghc-pkg recache 38 - ''; 39 - passthru = { 40 - inherit bootPkgs; 41 - cross.config = "halvm"; 42 - cc = "${gcc}/bin/gcc"; 43 - ld = "${targetPackages.stdenv.cc.bintools}/bin/ld"; 44 - }; 45 - 46 - meta = { 47 - homepage = https://github.com/GaloisInc/HaLVM; 48 - description = "The Haskell Lightweight Virtual Machine (HaLVM): GHC running on Xen"; 49 - platforms = ["x86_64-linux"]; # other platforms don't have Xen 50 - maintainers = with stdenv.lib.maintainers; [ dmjio ]; 51 - inherit (bootPkgs.ghc.meta) license; 52 - broken = true; # https://nix-cache.s3.amazonaws.com/log/6i98mhbq9nzzhwr4svlivm4gz91l2w0f-HaLVM-2.4.0.drv 53 - }; 54 - }
+2 -2
pkgs/development/compilers/sbcl/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 name = "sbcl-${version}"; 12 - version = "1.4.2"; 12 + version = "1.4.3"; 13 13 14 14 src = fetchurl { 15 15 url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2"; 16 - sha256 = "05s7wsx6bsnx4h6w3d8yim9apbvi8ih0glmvkmgjz7nrad4abjwd"; 16 + sha256 = "1z8d11k6vc6jhmpwzy0nawj84qdd2jvibrvqmb1nmq3h8w64hlam"; 17 17 }; 18 18 19 19 patchPhase = ''
-54
pkgs/development/compilers/uhc/default.nix
··· 1 - # Note: The Haskell package set used for building UHC is 2 - # determined in the file top-level/haskell-packages.nix. 3 - { stdenv, coreutils, m4, libtool, clang, ghcWithPackages, fetchFromGitHub }: 4 - 5 - let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] ); 6 - in stdenv.mkDerivation rec { 7 - version = "1.1.9.4"; 8 - name = "uhc-${version}"; 9 - 10 - src = fetchFromGitHub { 11 - owner = "UU-ComputerScience"; 12 - repo = "uhc"; 13 - rev = "v${version}"; 14 - sha256 = "1s84csk6zgzj09igxgdza7gb52jdn3jsr8lygl5xplshv8yzl34n"; 15 - }; 16 - 17 - postUnpack = "sourceRoot=\${sourceRoot}/EHC"; 18 - 19 - buildInputs = [ m4 wrappedGhc clang libtool ]; 20 - 21 - configureFlags = [ "--with-gcc=${clang}/bin/clang" ]; 22 - 23 - # UHC builds packages during compilation; these are by default 24 - # installed in the user-specific package config file. We do not 25 - # want that, and hack the build process to use a temporary package 26 - # configuration file instead. 27 - preConfigure = '' 28 - p=`pwd`/uhc-local-packages/ 29 - ghc-pkg init $p 30 - sed -i "s|--user|--package-db=$p|g" mk/shared.mk.in 31 - sed -i "s|-fglasgow-exts|-fglasgow-exts -package-conf=$p|g" mk/shared.mk.in 32 - sed -i "s|/bin/date|${coreutils}/bin/date|g" mk/dist.mk 33 - sed -i "s|/bin/date|${coreutils}/bin/date|g" mk/config.mk.in 34 - sed -i "s|--make|--make -package-db=$p|g" src/ehc/files2.mk 35 - sed -i "s|--make|--make -package-db=$p|g" src/gen/files.mk 36 - ''; 37 - 38 - inherit clang; 39 - 40 - meta = with stdenv.lib; { 41 - homepage = http://www.cs.uu.nl/wiki/UHC; 42 - description = "Utrecht Haskell Compiler"; 43 - maintainers = [ maintainers.phile314 ]; 44 - 45 - # UHC i686 support is broken, see 46 - # https://github.com/UU-ComputerScience/uhc/issues/52 47 - # 48 - # Darwin build is broken as well at the moment. 49 - # On Darwin, the GNU libtool is used, which does not 50 - # support the -static flag and thus breaks the build. 51 - platforms = ["x86_64-linux"]; 52 - broken = true; 53 - }; 54 - }
+47 -7
pkgs/development/haskell-modules/configuration-common.nix
··· 605 605 haskell-src-exts = self.haskell-src-exts_1_20_1; 606 606 }; 607 607 608 - # Needs newer version of its dependencies than we have in LTS-10.x. 608 + # Need newer versions of their dependencies than the ones we have in LTS-10.x. 609 + cabal2nix = super.cabal2nix.override { hpack = self.hpack_0_22_0; }; 609 610 hlint = super.hlint.overrideScope (self: super: { haskell-src-exts = self.haskell-src-exts_1_20_1; }); 610 611 611 612 # https://github.com/bos/configurator/issues/22 ··· 637 638 # We get lots of strange compiler errors during the test suite run. 638 639 jsaddle = dontCheck super.jsaddle; 639 640 640 - # tinc is a new build driver a la Stack that's not yet available from Hackage. 641 - tinc = self.callPackage ../tools/haskell/tinc { inherit (pkgs) cabal-install cabal2nix; }; 642 - 643 641 # Tools that use gtk2hs-buildtools now depend on them in a custom-setup stanza 644 642 cairo = addBuildTool super.cairo self.gtk2hs-buildtools; 645 643 pango = disableHardening (addBuildTool super.pango self.gtk2hs-buildtools) ["fortify"]; ··· 647 645 if pkgs.stdenv.isDarwin 648 646 then appendConfigureFlag super.gtk "-fhave-quartz-gtk" 649 647 else super.gtk; 650 - 651 - # It makes no sense to have intero-nix-shim in Hackage, so we publish it here only. 652 - intero-nix-shim = self.callPackage ../tools/haskell/intero-nix-shim {}; 653 648 654 649 # vaultenv is not available from Hackage. 655 650 vaultenv = self.callPackage ../tools/haskell/vaultenv { }; ··· 958 953 959 954 # https://github.com/yesodweb/Shelly.hs/issues/162 960 955 shelly = dontCheck super.shelly; 956 + 957 + # Support ansi-terminal 0.7.x. 958 + cabal-plan = appendPatch super.cabal-plan (pkgs.fetchpatch { 959 + url = "https://github.com/haskell-hvr/cabal-plan/pull/16.patch"; 960 + sha256 = "0i889zs46wn09d7iqdy99201zaqxb175cfs8jz2zi3mv4ywx3a0l"; 961 + }); 962 + 963 + # Copy hledger man pages from data directory into the proper place. This code 964 + # should be moved into the cabal2nix generator. 965 + hledger = overrideCabal super.hledger (drv: { 966 + postInstall = '' 967 + for i in $(seq 1 9); do 968 + for j in $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.$i $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/.otherdocs/*.$i; do 969 + mkdir -p $out/share/man/man$i 970 + cp $j $out/share/man/man$i/ 971 + done 972 + done 973 + mkdir $out/share/info 974 + cp $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.info $out/share/info/ 975 + ''; 976 + }); 977 + hledger-ui = overrideCabal super.hledger-ui (drv: { 978 + postInstall = '' 979 + for i in $(seq 1 9); do 980 + for j in $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.$i $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/.otherdocs/*.$i; do 981 + mkdir -p $out/share/man/man$i 982 + cp $j $out/share/man/man$i/ 983 + done 984 + done 985 + mkdir $out/share/info 986 + cp $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.info $out/share/info/ 987 + ''; 988 + }); 989 + hledger-web = overrideCabal super.hledger-web (drv: { 990 + postInstall = '' 991 + for i in $(seq 1 9); do 992 + for j in $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.$i $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/.otherdocs/*.$i; do 993 + mkdir -p $out/share/man/man$i 994 + cp $j $out/share/man/man$i/ 995 + done 996 + done 997 + mkdir $out/share/info 998 + cp $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.info $out/share/info/ 999 + ''; 1000 + }); 961 1001 962 1002 }
+19 -1
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 2712 2712 peti: 2713 2713 - cabal-install 2714 2714 - cabal2nix 2715 + - cabal2spec 2715 2716 - funcmp 2716 2717 - git-annex 2717 2718 - hackage-db ··· 2724 2725 - hsemail 2725 2726 - hsyslog 2726 2727 - jailbreak-cabal 2728 + - lambdabot-core 2729 + - lambdabot-irc-plugins 2727 2730 - language-nix 2728 2731 - logging-facade-syslog 2729 2732 - pandoc ··· 2867 2870 nomyx-library: [ i686-linux, x86_64-linux, x86_64-darwin ] 2868 2871 nomyx-server: [ i686-linux, x86_64-linux, x86_64-darwin ] 2869 2872 passman-cli: [ i686-linux, x86_64-linux, x86_64-darwin ] 2873 + passman-core: [ i686-linux, x86_64-linux, x86_64-darwin ] 2870 2874 reflex-dom-colonnade: [ i686-linux, x86_64-linux, x86_64-darwin ] 2871 2875 reflex-dom-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ] 2872 2876 reflex-dom-helpers: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 2961 2965 aern2-real: [ i686-linux, x86_64-linux, x86_64-darwin ] 2962 2966 aeson-applicative: [ i686-linux, x86_64-linux, x86_64-darwin ] 2963 2967 aeson-bson: [ i686-linux, x86_64-linux, x86_64-darwin ] 2968 + aeson-diff: [ i686-linux, x86_64-linux, x86_64-darwin ] 2964 2969 aeson-extra: [ i686-linux, x86_64-linux, x86_64-darwin ] 2965 2970 aeson-flowtyped: [ i686-linux, x86_64-linux, x86_64-darwin ] 2966 2971 aeson-native: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3235 3240 beeminder-api: [ i686-linux, x86_64-linux, x86_64-darwin ] 3236 3241 Befunge93: [ i686-linux, x86_64-linux, x86_64-darwin ] 3237 3242 bein: [ i686-linux, x86_64-linux, x86_64-darwin ] 3243 + belka: [ i686-linux, x86_64-linux, x86_64-darwin ] 3238 3244 BenchmarkHistory: [ i686-linux, x86_64-linux, x86_64-darwin ] 3239 3245 bencoding: [ i686-linux, x86_64-linux, x86_64-darwin ] 3240 3246 berkeleydb: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3388 3394 breakout: [ i686-linux, x86_64-linux, x86_64-darwin ] 3389 3395 breve: [ i686-linux, x86_64-linux, x86_64-darwin ] 3390 3396 brians-brain: [ i686-linux, x86_64-linux, x86_64-darwin ] 3397 + brick-skylighting: [ i686-linux, x86_64-linux, x86_64-darwin ] 3391 3398 bricks: [ i686-linux, x86_64-linux, x86_64-darwin ] 3392 3399 brillig: [ i686-linux, x86_64-linux, x86_64-darwin ] 3393 3400 brittany: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3463 3470 cabal2doap: [ i686-linux, x86_64-linux, x86_64-darwin ] 3464 3471 cabal2ebuild: [ i686-linux, x86_64-linux, x86_64-darwin ] 3465 3472 cabal2ghci: [ i686-linux, x86_64-linux, x86_64-darwin ] 3466 - cabal2spec: [ i686-linux, x86_64-linux, x86_64-darwin ] 3467 3473 cabalgraph: [ i686-linux, x86_64-linux, x86_64-darwin ] 3468 3474 cabalish: [ i686-linux, x86_64-linux, x86_64-darwin ] 3469 3475 cabalmdvrpm: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3699 3705 cognimeta-utils: [ i686-linux, x86_64-linux, x86_64-darwin ] 3700 3706 coin: [ i686-linux, x86_64-linux, x86_64-darwin ] 3701 3707 coinbase-exchange: [ i686-linux, x86_64-linux, x86_64-darwin ] 3708 + coincident-root-loci: [ i686-linux, x86_64-linux, x86_64-darwin ] 3702 3709 colada: [ i686-linux, x86_64-linux, x86_64-darwin ] 3703 3710 colchis: [ i686-linux, x86_64-linux, x86_64-darwin ] 3704 3711 collada-output: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3715 3722 coltrane: [ i686-linux, x86_64-linux, x86_64-darwin ] 3716 3723 columbia: [ i686-linux, x86_64-linux, x86_64-darwin ] 3717 3724 com: [ i686-linux, x86_64-linux, x86_64-darwin ] 3725 + combinat-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ] 3726 + combinat: [ i686-linux, x86_64-linux, x86_64-darwin ] 3718 3727 combinator-interactive: [ i686-linux, x86_64-linux, x86_64-darwin ] 3719 3728 combinatorial-problems: [ i686-linux, x86_64-linux, x86_64-darwin ] 3720 3729 Combinatorrent: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 3923 3932 currency-convert: [ i686-linux, x86_64-linux, x86_64-darwin ] 3924 3933 curry-base: [ i686-linux, x86_64-linux, x86_64-darwin ] 3925 3934 curry-frontend: [ i686-linux, x86_64-linux, x86_64-darwin ] 3935 + curry: [ i686-linux, x86_64-linux, x86_64-darwin ] 3926 3936 CurryDB: [ i686-linux, x86_64-linux, x86_64-darwin ] 3927 3937 curryrs: [ i686-linux, x86_64-linux, x86_64-darwin ] 3928 3938 curve25519: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 4746 4756 geolite-csv: [ i686-linux, x86_64-linux, x86_64-darwin ] 4747 4757 geom2d: [ i686-linux, x86_64-linux, x86_64-darwin ] 4748 4758 GeomPredicates-SSE: [ i686-linux, x86_64-linux, x86_64-darwin ] 4759 + geos: [ i686-linux, x86_64-linux, x86_64-darwin ] 4749 4760 getemx: [ i686-linux, x86_64-linux, x86_64-darwin ] 4750 4761 getflag: [ i686-linux, x86_64-linux, x86_64-darwin ] 4751 4762 gf: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 5520 5531 hlibfam: [ i686-linux, x86_64-linux, x86_64-darwin ] 5521 5532 hlibsass: [ i686-linux, x86_64-linux, x86_64-darwin ] 5522 5533 HList: [ i686-linux, x86_64-linux, x86_64-darwin ] 5534 + hlist: [ i686-linux, x86_64-linux, x86_64-darwin ] 5523 5535 HListPP: [ i686-linux, x86_64-linux, x86_64-darwin ] 5524 5536 HLogger: [ i686-linux, x86_64-linux, x86_64-darwin ] 5525 5537 hlogger: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 5621 5633 hpg: [ i686-linux, x86_64-linux, x86_64-darwin ] 5622 5634 HPhone: [ i686-linux, x86_64-linux, x86_64-darwin ] 5623 5635 HPi: [ i686-linux, x86_64-linux, x86_64-darwin ] 5636 + hpio: [ i686-linux, x86_64-linux, x86_64-darwin ] 5624 5637 hplaylist: [ i686-linux, x86_64-linux, x86_64-darwin ] 5625 5638 HPlot: [ i686-linux, x86_64-linux, x86_64-darwin ] 5626 5639 hpodder: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 6893 6906 nero-wai: [ i686-linux, x86_64-linux, x86_64-darwin ] 6894 6907 nero-warp: [ i686-linux, x86_64-linux, x86_64-darwin ] 6895 6908 nero: [ i686-linux, x86_64-linux, x86_64-darwin ] 6909 + nest: [ i686-linux, x86_64-linux, x86_64-darwin ] 6896 6910 nested-routes: [ i686-linux, x86_64-linux, x86_64-darwin ] 6897 6911 NestedFunctor: [ i686-linux, x86_64-linux, x86_64-darwin ] 6898 6912 nestedmap: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 7028 7042 oculus: [ i686-linux, x86_64-linux, x86_64-darwin ] 7029 7043 OddWord: [ i686-linux, x86_64-linux, x86_64-darwin ] 7030 7044 oden-go-packages: [ i686-linux, x86_64-linux, x86_64-darwin ] 7045 + odpic-raw: [ i686-linux, x86_64-linux, x86_64-darwin ] 7031 7046 off-simple: [ i686-linux, x86_64-linux, x86_64-darwin ] 7032 7047 OGL: [ i686-linux, x86_64-linux, x86_64-darwin ] 7033 7048 ogmarkup: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 7765 7780 rewrite: [ i686-linux, x86_64-linux, x86_64-darwin ] 7766 7781 rewriting: [ i686-linux, x86_64-linux, x86_64-darwin ] 7767 7782 rezoom: [ i686-linux, x86_64-linux, x86_64-darwin ] 7783 + rfc: [ i686-linux, x86_64-linux, x86_64-darwin ] 7768 7784 rhine-gloss: [ i686-linux, x86_64-linux, x86_64-darwin ] 7769 7785 rhine: [ i686-linux, x86_64-linux, x86_64-darwin ] 7770 7786 rhythm-game-tutorial: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 8065 8081 sibe: [ i686-linux, x86_64-linux, x86_64-darwin ] 8066 8082 sifflet-lib: [ i686-linux, x86_64-linux, x86_64-darwin ] 8067 8083 sifflet: [ i686-linux, x86_64-linux, x86_64-darwin ] 8084 + sigma-ij: [ i686-linux, x86_64-linux, x86_64-darwin ] 8068 8085 sign: [ i686-linux, x86_64-linux, x86_64-darwin ] 8069 8086 signals: [ i686-linux, x86_64-linux, x86_64-darwin ] 8070 8087 signed-multiset: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 9360 9377 Zora: [ i686-linux, x86_64-linux, x86_64-darwin ] 9361 9378 zsh-battery: [ i686-linux, x86_64-linux, x86_64-darwin ] 9362 9379 zstd: [ i686-linux, x86_64-linux, x86_64-darwin ] 9380 + zuramaru: [ i686-linux, x86_64-linux, x86_64-darwin ] 9363 9381 Zwaluw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+1581 -242
pkgs/development/haskell-modules/hackage-packages.nix
··· 9715 9715 license = stdenv.lib.licenses.bsd3; 9716 9716 }) {}; 9717 9717 9718 + "Hoed_0_4_1" = callPackage 9719 + ({ mkDerivation, array, base, bytestring, cereal, clock, containers 9720 + , deepseq, directory, libgraph, process, QuickCheck, regex-tdfa 9721 + , semigroups, strict, template-haskell, terminal-size, uniplate 9722 + , vector 9723 + }: 9724 + mkDerivation { 9725 + pname = "Hoed"; 9726 + version = "0.4.1"; 9727 + sha256 = "14d4wypx75xmhb81f4lplvw04f5hjc97ncgzv4s07vd09bal8kq7"; 9728 + libraryHaskellDepends = [ 9729 + array base bytestring cereal clock containers deepseq directory 9730 + libgraph process QuickCheck regex-tdfa semigroups strict 9731 + template-haskell terminal-size uniplate vector 9732 + ]; 9733 + testHaskellDepends = [ base process QuickCheck ]; 9734 + homepage = "https://github.com/MaartenFaddegon/Hoed"; 9735 + description = "Lightweight algorithmic debugging"; 9736 + license = stdenv.lib.licenses.bsd3; 9737 + hydraPlatforms = stdenv.lib.platforms.none; 9738 + }) {}; 9739 + 9718 9740 "HoleyMonoid" = callPackage 9719 9741 ({ mkDerivation, base }: 9720 9742 mkDerivation { ··· 9994 10016 homepage = "https://github.com/vshabanov/HsOpenSSL"; 9995 10017 description = "Partial OpenSSL binding for Haskell"; 9996 10018 license = stdenv.lib.licenses.publicDomain; 10019 + }) {inherit (pkgs) openssl;}; 10020 + 10021 + "HsOpenSSL_0_11_4_12" = callPackage 10022 + ({ mkDerivation, base, bytestring, Cabal, integer-gmp, network 10023 + , openssl, time 10024 + }: 10025 + mkDerivation { 10026 + pname = "HsOpenSSL"; 10027 + version = "0.11.4.12"; 10028 + sha256 = "18hmbjg15rlpnqq95z2d2xskj5l0hcv5mp9hb16jb26rcdi54sim"; 10029 + setupHaskellDepends = [ base Cabal ]; 10030 + libraryHaskellDepends = [ 10031 + base bytestring integer-gmp network time 10032 + ]; 10033 + librarySystemDepends = [ openssl ]; 10034 + testHaskellDepends = [ base bytestring ]; 10035 + homepage = "https://github.com/vshabanov/HsOpenSSL"; 10036 + description = "Partial OpenSSL binding for Haskell"; 10037 + license = stdenv.lib.licenses.publicDomain; 10038 + hydraPlatforms = stdenv.lib.platforms.none; 9997 10039 }) {inherit (pkgs) openssl;}; 9998 10040 9999 10041 "HsOpenSSL-x509-system" = callPackage ··· 17403 17445 libraryHaskellDepends = [ base mtl ]; 17404 17446 homepage = "http://naesten.dyndns.org:8080/repos/StrategyLib"; 17405 17447 license = stdenv.lib.licenses.unfree; 17448 + hydraPlatforms = stdenv.lib.platforms.none; 17406 17449 }) {}; 17407 17450 17408 17451 "Stream" = callPackage ··· 20783 20826 hydraPlatforms = stdenv.lib.platforms.none; 20784 20827 }) {}; 20785 20828 20829 + "acme-cuteboy" = callPackage 20830 + ({ mkDerivation, base }: 20831 + mkDerivation { 20832 + pname = "acme-cuteboy"; 20833 + version = "0.1.0.0"; 20834 + sha256 = "1x21mvm1n6cka07c3d3w8ycp84gx58af1nvpsfcaa7sccj13jvj9"; 20835 + isLibrary = true; 20836 + isExecutable = true; 20837 + libraryHaskellDepends = [ base ]; 20838 + executableHaskellDepends = [ base ]; 20839 + homepage = "https://github.com/chessai/acme-cuteboy"; 20840 + description = "Maybe gives you a cute boy"; 20841 + license = stdenv.lib.licenses.publicDomain; 20842 + }) {}; 20843 + 20786 20844 "acme-cutegirl" = callPackage 20787 20845 ({ mkDerivation, base }: 20788 20846 mkDerivation { ··· 21868 21926 homepage = "https://github.com/thsutton/aeson-diff"; 21869 21927 description = "Extract and apply patches to JSON documents"; 21870 21928 license = stdenv.lib.licenses.bsd3; 21929 + hydraPlatforms = stdenv.lib.platforms.none; 21871 21930 }) {}; 21872 21931 21873 21932 "aeson-extra" = callPackage ··· 22077 22136 ]; 22078 22137 homepage = "https://github.com/FPBrno/aeson-parsec-picky"; 22079 22138 description = "Alternative JSON parser based on Parsec and Aeson"; 22139 + license = stdenv.lib.licenses.bsd3; 22140 + }) {}; 22141 + 22142 + "aeson-picker" = callPackage 22143 + ({ mkDerivation, aeson, base, hspec, lens, lens-aeson, text }: 22144 + mkDerivation { 22145 + pname = "aeson-picker"; 22146 + version = "0.1.0.0"; 22147 + sha256 = "1976cf67y0077gd1s13vrfws5w5mcak94dc6ygnl1pir6ysanaf7"; 22148 + libraryHaskellDepends = [ aeson base lens lens-aeson text ]; 22149 + testHaskellDepends = [ base hspec text ]; 22150 + homepage = "https://github.com/ozzzzz/aeson-picker#readme"; 22080 22151 license = stdenv.lib.licenses.bsd3; 22081 22152 }) {}; 22082 22153 ··· 26396 26467 license = stdenv.lib.licenses.bsd3; 26397 26468 }) {}; 26398 26469 26399 - "ansi-terminal_0_8" = callPackage 26470 + "ansi-terminal_0_8_0_1" = callPackage 26400 26471 ({ mkDerivation, base, colour }: 26401 26472 mkDerivation { 26402 26473 pname = "ansi-terminal"; 26403 - version = "0.8"; 26404 - sha256 = "1gg2xy800vzj2xixx8ifis1z027v34xj1a3792v0y8b7kmypgwlb"; 26474 + version = "0.8.0.1"; 26475 + sha256 = "0na61wyqn686qvzy5xbi3c8i1ba5ps6qlwnkkigzhj3c2xf3bm0v"; 26405 26476 isLibrary = true; 26406 26477 isExecutable = true; 26407 26478 libraryHaskellDepends = [ base colour ]; ··· 29416 29487 hydraPlatforms = stdenv.lib.platforms.none; 29417 29488 }) {}; 29418 29489 29490 + "ats-pkg" = callPackage 29491 + ({ mkDerivation, base, bytestring, composition-prelude, dhall 29492 + , directory, filemanip, http-client, http-client-tls, lens 29493 + , optparse-applicative, parallel-io, process, shake, shake-ats 29494 + , shake-ext, tar, temporary, text, unix, zlib 29495 + }: 29496 + mkDerivation { 29497 + pname = "ats-pkg"; 29498 + version = "1.2.1.3"; 29499 + sha256 = "0fwk49swprc1n9s08cy6m3ydy2b48pnmbb9z8al6sxk2xfxbn3x1"; 29500 + isLibrary = true; 29501 + isExecutable = true; 29502 + libraryHaskellDepends = [ 29503 + base bytestring composition-prelude dhall directory filemanip 29504 + http-client http-client-tls lens optparse-applicative parallel-io 29505 + process shake shake-ats shake-ext tar temporary text unix zlib 29506 + ]; 29507 + executableHaskellDepends = [ base ]; 29508 + homepage = "https://github.com/vmchale/ats-pkg#readme"; 29509 + description = "Package manager for ATS"; 29510 + license = stdenv.lib.licenses.bsd3; 29511 + }) {}; 29512 + 29419 29513 "attempt" = callPackage 29420 29514 ({ mkDerivation, base, failure }: 29421 29515 mkDerivation { ··· 32482 32576 license = stdenv.lib.licenses.mit; 32483 32577 }) {}; 32484 32578 32579 + "beam-migrate" = callPackage 32580 + ({ mkDerivation, aeson, base, beam-core, bytestring, containers 32581 + , deepseq, dependent-map, dependent-sum, free, ghc-prim, hashable 32582 + , haskell-src-exts, mtl, parallel, pqueue, pretty, scientific, text 32583 + , time, unordered-containers, vector 32584 + }: 32585 + mkDerivation { 32586 + pname = "beam-migrate"; 32587 + version = "0.2.0.0"; 32588 + sha256 = "17c1wh2ygbjlr8hrm0vnk2130kmzy795sswp7wyqkjjhfp4rzyzb"; 32589 + libraryHaskellDepends = [ 32590 + aeson base beam-core bytestring containers deepseq dependent-map 32591 + dependent-sum free ghc-prim hashable haskell-src-exts mtl parallel 32592 + pqueue pretty scientific text time unordered-containers vector 32593 + ]; 32594 + homepage = "https://travis.athougies.net/projects/beam.html"; 32595 + description = "SQL DDL support and migrations support library for Beam"; 32596 + license = stdenv.lib.licenses.mit; 32597 + }) {}; 32598 + 32599 + "beam-sqlite" = callPackage 32600 + ({ mkDerivation, aeson, attoparsec, base, beam-core, beam-migrate 32601 + , bytestring, dlist, free, hashable, mtl, network-uri, scientific 32602 + , sqlite-simple, text, time 32603 + }: 32604 + mkDerivation { 32605 + pname = "beam-sqlite"; 32606 + version = "0.2.0.0"; 32607 + sha256 = "0a0z5nrgrc3m7c4b81avjnkf2y5i30z5yws0jrsw5gg2b682v0ry"; 32608 + libraryHaskellDepends = [ 32609 + aeson attoparsec base beam-core beam-migrate bytestring dlist free 32610 + hashable mtl network-uri scientific sqlite-simple text time 32611 + ]; 32612 + homepage = "http://tathougies.github.io/beam/user-guide/backends/beam-sqlite/"; 32613 + description = "Beam driver for SQLite"; 32614 + license = stdenv.lib.licenses.bsd3; 32615 + }) {}; 32616 + 32485 32617 "beam-th" = callPackage 32486 32618 ({ mkDerivation, base, beam, doctest, doctest-discover, microlens 32487 32619 , mtl, tasty, tasty-hunit, template-haskell, text, th-expand-syns ··· 32627 32759 hydraPlatforms = stdenv.lib.platforms.none; 32628 32760 }) {}; 32629 32761 32762 + "belka" = callPackage 32763 + ({ mkDerivation, aeson, aeson-value-parser, attoparsec, base 32764 + , base-prelude, base64-bytestring, bug, bytestring 32765 + , case-insensitive, hashable, http-client, http-client-tls 32766 + , http-media, http-types, iri, json-bytes-builder, mtl, potoki 32767 + , potoki-core, ptr, QuickCheck, quickcheck-instances, rerebase 32768 + , semigroups, tasty, tasty-hunit, tasty-quickcheck, text 32769 + , transformers, unordered-containers, vector 32770 + }: 32771 + mkDerivation { 32772 + pname = "belka"; 32773 + version = "0.8"; 32774 + sha256 = "1827pjvw13a2zk69rq98sddg70rp9hzjy79jkkc0xa4c6s7y5fny"; 32775 + libraryHaskellDepends = [ 32776 + aeson aeson-value-parser attoparsec base base-prelude 32777 + base64-bytestring bug bytestring case-insensitive hashable 32778 + http-client http-client-tls http-media http-types iri 32779 + json-bytes-builder mtl potoki potoki-core ptr semigroups text 32780 + transformers unordered-containers vector 32781 + ]; 32782 + testHaskellDepends = [ 32783 + bug iri potoki QuickCheck quickcheck-instances rerebase tasty 32784 + tasty-hunit tasty-quickcheck 32785 + ]; 32786 + homepage = "https://github.com/nikita-volkov/belka"; 32787 + description = "HTTP client DSL"; 32788 + license = stdenv.lib.licenses.mit; 32789 + hydraPlatforms = stdenv.lib.platforms.none; 32790 + }) {}; 32791 + 32630 32792 "bench" = callPackage 32631 32793 ({ mkDerivation, base, criterion, optparse-applicative, process 32632 32794 , silently, text, turtle ··· 32643 32805 homepage = "http://github.com/Gabriel439/bench"; 32644 32806 description = "Command-line benchmark tool"; 32645 32807 license = stdenv.lib.licenses.bsd3; 32808 + }) {}; 32809 + 32810 + "bench_1_0_8" = callPackage 32811 + ({ mkDerivation, base, criterion, optparse-applicative, process 32812 + , silently, text, turtle 32813 + }: 32814 + mkDerivation { 32815 + pname = "bench"; 32816 + version = "1.0.8"; 32817 + sha256 = "18lyjkyz1yynnln92ihn9g28w2s2xmahaqg1lr1cr2v3kpv8ilvl"; 32818 + isLibrary = false; 32819 + isExecutable = true; 32820 + executableHaskellDepends = [ 32821 + base criterion optparse-applicative process silently text turtle 32822 + ]; 32823 + homepage = "http://github.com/Gabriel439/bench"; 32824 + description = "Command-line benchmark tool"; 32825 + license = stdenv.lib.licenses.bsd3; 32826 + hydraPlatforms = stdenv.lib.platforms.none; 32646 32827 }) {}; 32647 32828 32648 32829 "benchmark-function" = callPackage ··· 35632 35813 }) {}; 35633 35814 35634 35815 "bizzlelude" = callPackage 35635 - ({ mkDerivation, base, containers, directory, text }: 35816 + ({ mkDerivation, base-noprelude, containers, directory, text }: 35636 35817 mkDerivation { 35637 35818 pname = "bizzlelude"; 35638 - version = "1.0.4"; 35639 - sha256 = "0vaw51cn9lmnd6pxb8kjf9k6lxzxwzv0nmgr7j1h8b6qbchf2i3q"; 35640 - libraryHaskellDepends = [ base containers directory text ]; 35819 + version = "1.1.0"; 35820 + sha256 = "1vpdh9fm4jrl7zkzp8wh8ng3x6glwk3h88fbjmajz6qpqw3z2w4h"; 35821 + libraryHaskellDepends = [ 35822 + base-noprelude containers directory text 35823 + ]; 35641 35824 homepage = "http://github.com/TheBizzle"; 35642 35825 description = "A lousy Prelude replacement by a lousy dude"; 35643 35826 license = stdenv.lib.licenses.bsd3; ··· 36490 36673 homepage = "https://github.com/bitemyapp/bloodhound"; 36491 36674 description = "ElasticSearch client library for Haskell"; 36492 36675 license = stdenv.lib.licenses.bsd3; 36676 + }) {}; 36677 + 36678 + "bloodhound_0_15_0_1" = callPackage 36679 + ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers 36680 + , data-default-class, errors, exceptions, generics-sop, hashable 36681 + , hspec, http-client, http-types, mtl, mtl-compat, network-uri 36682 + , QuickCheck, quickcheck-properties, scientific, semigroups 36683 + , temporary, text, time, transformers, unix-compat 36684 + , unordered-containers, vector 36685 + }: 36686 + mkDerivation { 36687 + pname = "bloodhound"; 36688 + version = "0.15.0.1"; 36689 + sha256 = "0g85fp2vppx6p1zbx506jnsfcik8q7nmc98fwrhcckgvkbdpi2v8"; 36690 + libraryHaskellDepends = [ 36691 + aeson base blaze-builder bytestring containers data-default-class 36692 + exceptions hashable http-client http-types mtl mtl-compat 36693 + network-uri scientific semigroups text time transformers 36694 + unordered-containers vector 36695 + ]; 36696 + testHaskellDepends = [ 36697 + aeson base bytestring containers errors exceptions generics-sop 36698 + hspec http-client http-types mtl network-uri QuickCheck 36699 + quickcheck-properties semigroups temporary text time unix-compat 36700 + unordered-containers vector 36701 + ]; 36702 + homepage = "https://github.com/bitemyapp/bloodhound"; 36703 + description = "ElasticSearch client library for Haskell"; 36704 + license = stdenv.lib.licenses.bsd3; 36705 + hydraPlatforms = stdenv.lib.platforms.none; 36493 36706 }) {}; 36494 36707 36495 36708 "bloodhound-amazonka-auth" = callPackage ··· 37672 37885 hydraPlatforms = stdenv.lib.platforms.none; 37673 37886 }) {}; 37674 37887 37888 + "brick-skylighting" = callPackage 37889 + ({ mkDerivation, base, brick, containers, skylighting, text, vty }: 37890 + mkDerivation { 37891 + pname = "brick-skylighting"; 37892 + version = "0.1"; 37893 + sha256 = "189qpq2cg45binlb9nq43h05g97ch56855xlz2givxw8psb0kb1i"; 37894 + isLibrary = true; 37895 + isExecutable = true; 37896 + libraryHaskellDepends = [ 37897 + base brick containers skylighting text vty 37898 + ]; 37899 + executableHaskellDepends = [ base brick skylighting text vty ]; 37900 + homepage = "https://github.com/jtdaugherty/brick-skylighting/"; 37901 + description = "Show syntax-highlighted text in your Brick UI"; 37902 + license = stdenv.lib.licenses.bsd3; 37903 + hydraPlatforms = stdenv.lib.platforms.none; 37904 + }) {}; 37905 + 37675 37906 "bricks" = callPackage 37676 37907 ({ mkDerivation, base, containers, doctest, hedgehog, parsec 37677 37908 , template-haskell, text ··· 39849 40080 }) {}; 39850 40081 39851 40082 "cabal-plan" = callPackage 39852 - ({ mkDerivation, aeson, base, base-compat, base-orphans 39853 - , base16-bytestring, bytestring, containers, directory, filepath 39854 - , text, vector 40083 + ({ mkDerivation, aeson, ansi-terminal, base, base-compat 40084 + , base-orphans, base16-bytestring, bytestring, containers 40085 + , directory, filepath, mtl, optparse-applicative, parsec, text 40086 + , vector 39855 40087 }: 39856 40088 mkDerivation { 39857 40089 pname = "cabal-plan"; 39858 40090 version = "0.3.0.0"; 39859 40091 sha256 = "1axi3a60zq08d760w2x6akmszad599kij0r8zmlq8pin9mmmggls"; 40092 + configureFlags = [ "-fexe" ]; 39860 40093 isLibrary = true; 39861 40094 isExecutable = true; 39862 40095 libraryHaskellDepends = [ 39863 40096 aeson base base-compat base-orphans base16-bytestring bytestring 39864 40097 containers directory filepath text vector 40098 + ]; 40099 + executableHaskellDepends = [ 40100 + ansi-terminal base base-compat bytestring containers mtl 40101 + optparse-applicative parsec text vector 39865 40102 ]; 39866 40103 description = "Library and utiltity for processing cabal's plan.json file"; 39867 40104 license = stdenv.lib.licenses.gpl3; ··· 40181 40418 40182 40419 "cabal2nix" = callPackage 40183 40420 ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal 40184 - , cabal-doctest, containers, deepseq, directory 40185 - , distribution-nixpkgs, doctest, filepath, hackage-db, hopenssl 40186 - , hpack, language-nix, lens, monad-par, monad-par-extras, mtl 40187 - , optparse-applicative, pretty, process, split, text, time 40188 - , transformers, utf8-string, yaml 40421 + , containers, deepseq, directory, distribution-nixpkgs, filepath 40422 + , hackage-db, hopenssl, hpack, language-nix, lens, monad-par 40423 + , monad-par-extras, mtl, optparse-applicative, pretty, process 40424 + , split, text, time, transformers, utf8-string, yaml 40189 40425 }: 40190 40426 mkDerivation { 40191 40427 pname = "cabal2nix"; 40192 - version = "2.8"; 40193 - sha256 = "1s7nsrknn7i5j0wwz89m6x5qab9f6bz3ix82vp7w948xh8dsb0nf"; 40428 + version = "2.8.1"; 40429 + sha256 = "1ahdqyiw76fixk90bi1b87ym5ii09fskpk0q9f9csbdmjif945x7"; 40194 40430 isLibrary = true; 40195 40431 isExecutable = true; 40196 - setupHaskellDepends = [ base Cabal cabal-doctest ]; 40197 40432 libraryHaskellDepends = [ 40198 40433 aeson ansi-wl-pprint base bytestring Cabal containers deepseq 40199 40434 directory distribution-nixpkgs filepath hackage-db hopenssl hpack ··· 40205 40440 distribution-nixpkgs filepath hopenssl language-nix lens monad-par 40206 40441 monad-par-extras mtl optparse-applicative pretty utf8-string 40207 40442 ]; 40208 - testHaskellDepends = [ 40209 - aeson ansi-wl-pprint base bytestring Cabal containers deepseq 40210 - directory distribution-nixpkgs doctest filepath hackage-db hopenssl 40211 - hpack language-nix lens optparse-applicative pretty process split 40212 - text time transformers yaml 40213 - ]; 40214 40443 homepage = "https://github.com/nixos/cabal2nix#readme"; 40215 40444 description = "Convert Cabal files into Nix build instructions"; 40216 40445 license = stdenv.lib.licenses.bsd3; ··· 40218 40447 }) {}; 40219 40448 40220 40449 "cabal2spec" = callPackage 40221 - ({ mkDerivation, base, bytestring, Cabal, directory, filepath 40222 - , haskell98, old-locale, process, tar, time, unix, Unixutils, zlib 40450 + ({ mkDerivation, base, Cabal, filepath, optparse-applicative, tasty 40451 + , tasty-golden, time 40223 40452 }: 40224 40453 mkDerivation { 40225 40454 pname = "cabal2spec"; 40226 - version = "1.0"; 40227 - sha256 = "08y8rwj86n7f3bqfv2ximlx8qas12zspiz6ix8gg01whsry43nsj"; 40228 - isLibrary = false; 40455 + version = "2.0.0"; 40456 + sha256 = "16xvv9qg1rxxnb9mdymx574kx6awhrn855x59ihl27bzp2q2pa53"; 40457 + isLibrary = true; 40229 40458 isExecutable = true; 40459 + libraryHaskellDepends = [ base Cabal filepath time ]; 40230 40460 executableHaskellDepends = [ 40231 - base bytestring Cabal directory filepath haskell98 old-locale 40232 - process tar time unix Unixutils zlib 40461 + base Cabal filepath optparse-applicative 40233 40462 ]; 40234 - homepage = "https://fedorahosted.org/cabal2spec/"; 40235 - description = "Generates RPM Spec files from cabal files"; 40236 - license = "GPL"; 40237 - hydraPlatforms = stdenv.lib.platforms.none; 40463 + testHaskellDepends = [ base Cabal filepath tasty tasty-golden ]; 40464 + homepage = "https://github.com/peti/cabal2spec"; 40465 + description = "Convert Cabal files into rpm spec files"; 40466 + license = stdenv.lib.licenses.gpl3; 40467 + maintainers = with stdenv.lib.maintainers; [ peti ]; 40238 40468 }) {}; 40239 40469 40240 40470 "cabalQuery" = callPackage ··· 41856 42086 41857 42087 "cassava-records" = callPackage 41858 42088 ({ mkDerivation, attoparsec, base, bytestring, cassava, containers 41859 - , foldl, HUnit, lens, pptable, QuickCheck, tasty, tasty-hunit 41860 - , tasty-quickcheck, template-haskell, text, unordered-containers 41861 - , vector 42089 + , foldl, HUnit, QuickCheck, tasty, tasty-hunit, tasty-quickcheck 42090 + , template-haskell, text, unordered-containers, vector 41862 42091 }: 41863 42092 mkDerivation { 41864 42093 pname = "cassava-records"; 41865 - version = "0.1.0.1"; 41866 - sha256 = "0j089vmjckdcvkbzr1w156kgxz9k94flja45xndsf602c7r21382"; 41867 - isLibrary = true; 41868 - isExecutable = true; 42094 + version = "0.1.0.4"; 42095 + sha256 = "13dgcqrlvcqifgisfk80f9siwzzbk96jhhbrnmrpmg95270k5y0i"; 41869 42096 libraryHaskellDepends = [ 41870 42097 attoparsec base bytestring cassava foldl template-haskell text 41871 42098 unordered-containers vector 41872 - ]; 41873 - executableHaskellDepends = [ 41874 - attoparsec base bytestring cassava foldl lens pptable 41875 - template-haskell text unordered-containers vector 41876 42099 ]; 41877 42100 testHaskellDepends = [ 41878 42101 attoparsec base bytestring cassava containers foldl HUnit ··· 42156 42379 pname = "cayley-client"; 42157 42380 version = "0.4.1"; 42158 42381 sha256 = "11q92jbc4sgvif6akd5vvsdj3ncx0xhwk0mimyc55m4m7srjdplq"; 42382 + libraryHaskellDepends = [ 42383 + aeson attoparsec base binary bytestring exceptions http-client 42384 + http-conduit lens lens-aeson mtl text transformers 42385 + unordered-containers vector 42386 + ]; 42387 + testHaskellDepends = [ aeson base hspec unordered-containers ]; 42388 + homepage = "https://github.com/MichelBoucey/cayley-client"; 42389 + description = "A Haskell client for the Cayley graph database"; 42390 + license = stdenv.lib.licenses.bsd3; 42391 + hydraPlatforms = stdenv.lib.platforms.none; 42392 + }) {}; 42393 + 42394 + "cayley-client_0_4_2" = callPackage 42395 + ({ mkDerivation, aeson, attoparsec, base, binary, bytestring 42396 + , exceptions, hspec, http-client, http-conduit, lens, lens-aeson 42397 + , mtl, text, transformers, unordered-containers, vector 42398 + }: 42399 + mkDerivation { 42400 + pname = "cayley-client"; 42401 + version = "0.4.2"; 42402 + sha256 = "1pzsr7jcqsi27mnxgq4y5np4ysig29cmk27iqp0m73xj5fiss6z8"; 42159 42403 libraryHaskellDepends = [ 42160 42404 aeson attoparsec base binary bytestring exceptions http-client 42161 42405 http-conduit lens lens-aeson mtl text transformers ··· 42483 42727 license = stdenv.lib.licenses.bsd3; 42484 42728 }) {}; 42485 42729 42730 + "cereal_0_5_5_0" = callPackage 42731 + ({ mkDerivation, array, base, bytestring, containers, ghc-prim 42732 + , QuickCheck, test-framework, test-framework-quickcheck2 42733 + }: 42734 + mkDerivation { 42735 + pname = "cereal"; 42736 + version = "0.5.5.0"; 42737 + sha256 = "08k8y6nf3n8h8gzw4a44mssy7rhgpmfj28lhczjz4vgszc7k55qb"; 42738 + libraryHaskellDepends = [ 42739 + array base bytestring containers ghc-prim 42740 + ]; 42741 + testHaskellDepends = [ 42742 + base bytestring QuickCheck test-framework 42743 + test-framework-quickcheck2 42744 + ]; 42745 + homepage = "https://github.com/GaloisInc/cereal"; 42746 + description = "A binary serialization library"; 42747 + license = stdenv.lib.licenses.bsd3; 42748 + hydraPlatforms = stdenv.lib.platforms.none; 42749 + }) {}; 42750 + 42486 42751 "cereal-conduit" = callPackage 42487 42752 ({ mkDerivation, base, bytestring, cereal, conduit, HUnit, mtl 42488 42753 , resourcet, transformers ··· 43205 43470 homepage = "https://github.com/matsubara0507/chatwork#readme"; 43206 43471 description = "The ChatWork API in Haskell"; 43207 43472 license = stdenv.lib.licenses.mit; 43473 + }) {}; 43474 + 43475 + "chatwork_0_1_3_0" = callPackage 43476 + ({ mkDerivation, aeson, aeson-casing, base, bytestring, connection 43477 + , data-default-class, hspec, http-api-data, http-client 43478 + , http-client-tls, http-types, req, servant-server, text, warp 43479 + }: 43480 + mkDerivation { 43481 + pname = "chatwork"; 43482 + version = "0.1.3.0"; 43483 + sha256 = "1b6s5f2v4qc19l2psbpwlx6nyq0285mpfl25gfv4p9xrsdmqcyr4"; 43484 + isLibrary = true; 43485 + isExecutable = true; 43486 + libraryHaskellDepends = [ 43487 + aeson aeson-casing base bytestring connection data-default-class 43488 + http-api-data http-client http-client-tls http-types req text 43489 + ]; 43490 + executableHaskellDepends = [ 43491 + aeson aeson-casing base bytestring connection data-default-class 43492 + http-api-data http-client http-client-tls http-types req text 43493 + ]; 43494 + testHaskellDepends = [ 43495 + aeson aeson-casing base bytestring connection data-default-class 43496 + hspec http-api-data http-client http-client-tls http-types req 43497 + servant-server text warp 43498 + ]; 43499 + homepage = "https://github.com/matsubara0507/chatwork#readme"; 43500 + description = "The ChatWork API in Haskell"; 43501 + license = stdenv.lib.licenses.mit; 43502 + hydraPlatforms = stdenv.lib.platforms.none; 43208 43503 }) {}; 43209 43504 43210 43505 "cheapskate" = callPackage ··· 46117 46412 license = stdenv.lib.licenses.bsd3; 46118 46413 }) {}; 46119 46414 46415 + "cmdargs_0_10_20" = callPackage 46416 + ({ mkDerivation, base, filepath, process, template-haskell 46417 + , transformers 46418 + }: 46419 + mkDerivation { 46420 + pname = "cmdargs"; 46421 + version = "0.10.20"; 46422 + sha256 = "0cbkmgrcnwgigg6z88y3c09gm7g6dwm7gzbgr53h8k1xik29s9hf"; 46423 + isLibrary = true; 46424 + isExecutable = true; 46425 + libraryHaskellDepends = [ 46426 + base filepath process template-haskell transformers 46427 + ]; 46428 + executableHaskellDepends = [ 46429 + base filepath process template-haskell transformers 46430 + ]; 46431 + homepage = "https://github.com/ndmitchell/cmdargs#readme"; 46432 + description = "Command line argument processing"; 46433 + license = stdenv.lib.licenses.bsd3; 46434 + hydraPlatforms = stdenv.lib.platforms.none; 46435 + }) {}; 46436 + 46120 46437 "cmdargs-browser" = callPackage 46121 46438 ({ mkDerivation, base, bytestring, cmdargs, directory, filepath 46122 46439 , http-types, process, text, transformers, wai, wai-handler-launch ··· 46660 46977 homepage = "http://code.haskell.org/~bkomuves/"; 46661 46978 description = "Equivariant CSM classes of coincident root loci"; 46662 46979 license = stdenv.lib.licenses.bsd3; 46980 + hydraPlatforms = stdenv.lib.platforms.none; 46663 46981 }) {}; 46664 46982 46665 46983 "colada" = callPackage ··· 47198 47516 homepage = "http://code.haskell.org/~bkomuves/"; 47199 47517 description = "Generate and manipulate various combinatorial objects"; 47200 47518 license = stdenv.lib.licenses.bsd3; 47519 + hydraPlatforms = stdenv.lib.platforms.none; 47201 47520 }) {}; 47202 47521 47203 47522 "combinat-diagrams" = callPackage ··· 47215 47534 homepage = "http://code.haskell.org/~bkomuves/"; 47216 47535 description = "Graphical representations for various combinatorial objects"; 47217 47536 license = stdenv.lib.licenses.bsd3; 47537 + hydraPlatforms = stdenv.lib.platforms.none; 47218 47538 }) {}; 47219 47539 47220 47540 "combinator-interactive" = callPackage ··· 47665 47985 ({ mkDerivation, base, containers, transformers, vector }: 47666 47986 mkDerivation { 47667 47987 pname = "compactable"; 47668 - version = "0.1.0.3"; 47669 - sha256 = "0zcazqwmyd458iv0j572fc8p13lbb57kdpfviqx2qlwmicb7i8z7"; 47988 + version = "0.1.0.4"; 47989 + sha256 = "1xf13k0syj8ssjgf2snddkgljwxpb4gpl0di9hsf1iy1wcx6pgh6"; 47670 47990 libraryHaskellDepends = [ base containers transformers vector ]; 47671 - description = "A generalization for containers that can be stripped of Nothings"; 47991 + description = "A typeclass for structures which can be catMaybed, filtered, and partitioned"; 47672 47992 license = stdenv.lib.licenses.bsd3; 47673 47993 hydraPlatforms = stdenv.lib.platforms.none; 47674 47994 }) {}; ··· 48082 48402 ({ mkDerivation, base }: 48083 48403 mkDerivation { 48084 48404 pname = "composition-prelude"; 48085 - version = "1.1.0.0"; 48086 - sha256 = "12wiwbpkh663xmdvw4rhf605vlghnl1gmq55zaqdpwymqzb0y5f4"; 48405 + version = "1.1.0.2"; 48406 + sha256 = "1r6i0b9kphx8pmmlkna50gdsqwsmsc538nxhax3imxydi2lhxsdd"; 48087 48407 libraryHaskellDepends = [ base ]; 48088 48408 homepage = "https://github.com/vmchale/composition-prelude#readme"; 48089 48409 description = "Higher-order function combinators"; ··· 48649 48969 license = stdenv.lib.licenses.bsd2; 48650 48970 }) {}; 48651 48971 48972 + "concurrent-output_1_10_2" = callPackage 48973 + ({ mkDerivation, ansi-terminal, async, base, directory, exceptions 48974 + , process, stm, terminal-size, text, transformers, unix 48975 + }: 48976 + mkDerivation { 48977 + pname = "concurrent-output"; 48978 + version = "1.10.2"; 48979 + sha256 = "02kfg61f7lm8796n4pdi7yvscg8n869vhl9i6rd9rpyb4l9myzd1"; 48980 + libraryHaskellDepends = [ 48981 + ansi-terminal async base directory exceptions process stm 48982 + terminal-size text transformers unix 48983 + ]; 48984 + description = "Ungarble output from several threads or commands"; 48985 + license = stdenv.lib.licenses.bsd2; 48986 + hydraPlatforms = stdenv.lib.platforms.none; 48987 + }) {}; 48988 + 48652 48989 "concurrent-rpc" = callPackage 48653 48990 ({ mkDerivation, base }: 48654 48991 mkDerivation { ··· 49399 49736 ({ mkDerivation, base, extra, hspec, lens, parsec, text }: 49400 49737 mkDerivation { 49401 49738 pname = "config-parser"; 49402 - version = "1.1.0.1"; 49403 - sha256 = "1v3lqq8bnp2s9zyfpa9jq80wwbnsx3mww82xmwc3yi4mvw7vnmc1"; 49739 + version = "1.2.0.0"; 49740 + sha256 = "1jmb8c2ksxp9gfryymg100hjfn5kfshi95a1533d6h18ypqd5zb3"; 49404 49741 libraryHaskellDepends = [ base parsec text ]; 49405 49742 testHaskellDepends = [ base extra hspec lens parsec text ]; 49406 49743 homepage = "https://github.com/protoben/config-parser"; ··· 50088 50425 hydraPlatforms = stdenv.lib.platforms.none; 50089 50426 }) {}; 50090 50427 50091 - "containers_0_5_10_2" = callPackage 50428 + "containers_0_5_11_0" = callPackage 50092 50429 ({ mkDerivation, array, base, ChasingBottoms, criterion, deepseq 50093 50430 , ghc-prim, HUnit, QuickCheck, random, test-framework 50094 50431 , test-framework-hunit, test-framework-quickcheck2, transformers 50095 50432 }: 50096 50433 mkDerivation { 50097 50434 pname = "containers"; 50098 - version = "0.5.10.2"; 50099 - sha256 = "08wc6asnyjdvabqyp15lsbccqwbjy77zjdhwrbg2q9xyj3rgwkm0"; 50435 + version = "0.5.11.0"; 50436 + sha256 = "0j29w09kvcn1c0yi4clmrdbgs2gqmpxs2m7q80ib2ix1smm25kaq"; 50100 50437 libraryHaskellDepends = [ array base deepseq ghc-prim ]; 50101 50438 testHaskellDepends = [ 50102 50439 array base ChasingBottoms deepseq ghc-prim HUnit QuickCheck ··· 50365 50702 ({ mkDerivation, base }: 50366 50703 mkDerivation { 50367 50704 pname = "control-dotdotdot"; 50368 - version = "0.1.0.0"; 50369 - sha256 = "0wacfs0s0dy2vzj8yxm3zqsjc93fm8m4iiw5x92wpiz2z2lm3k8d"; 50705 + version = "0.1.0.1"; 50706 + sha256 = "0rwi5zwvqn18g7qyp9aw51w3yzkqbff9g7rcqdk1l871fvq8qhha"; 50370 50707 libraryHaskellDepends = [ base ]; 50371 50708 homepage = "https://github.com/erisco/control-dotdotdot"; 50372 50709 description = "Haskell operator `g ... f = \x1 .. xn -> g (f x1 .. xn)`."; ··· 53691 54028 license = stdenv.lib.licenses.bsd3; 53692 54029 }) {}; 53693 54030 54031 + "cubicbezier_0_6_0_5" = callPackage 54032 + ({ mkDerivation, base, containers, fast-math, integration, matrices 54033 + , microlens, microlens-mtl, microlens-th, mtl, parsec, tasty 54034 + , tasty-hunit, vector, vector-space 54035 + }: 54036 + mkDerivation { 54037 + pname = "cubicbezier"; 54038 + version = "0.6.0.5"; 54039 + sha256 = "0n17nr20skrds3b9gzy0v86jgnqz8zbds796n9cl0z6rh9bq5jf5"; 54040 + libraryHaskellDepends = [ 54041 + base containers fast-math integration matrices microlens 54042 + microlens-mtl microlens-th mtl vector vector-space 54043 + ]; 54044 + testHaskellDepends = [ base parsec tasty tasty-hunit ]; 54045 + description = "Efficient manipulating of 2D cubic bezier curves"; 54046 + license = stdenv.lib.licenses.bsd3; 54047 + hydraPlatforms = stdenv.lib.platforms.none; 54048 + }) {}; 54049 + 53694 54050 "cubicspline" = callPackage 53695 54051 ({ mkDerivation, base, hmatrix, safe }: 53696 54052 mkDerivation { ··· 53919 54275 homepage = "https://github.com/koterpillar/current-locale"; 53920 54276 description = "Get the current system locale in System.Locale format"; 53921 54277 license = stdenv.lib.licenses.mit; 54278 + }) {}; 54279 + 54280 + "curry" = callPackage 54281 + ({ mkDerivation, base }: 54282 + mkDerivation { 54283 + pname = "curry"; 54284 + version = "0.0.0.0"; 54285 + sha256 = "09kwv72pww29xhp4sp7czp3pgjdggzs5ggj8cmzng8xzzgsgd1dv"; 54286 + libraryHaskellDepends = [ base ]; 54287 + description = "Curry types"; 54288 + license = stdenv.lib.licenses.bsd3; 54289 + hydraPlatforms = stdenv.lib.platforms.none; 53922 54290 }) {}; 53923 54291 53924 54292 "curry-base" = callPackage ··· 55658 56026 ({ mkDerivation, base, containers }: 55659 56027 mkDerivation { 55660 56028 pname = "data-foldapp"; 55661 - version = "0.1.0.0"; 55662 - sha256 = "0m2rwai52q712fxkpk4k23cc8x9dx87c8wwwsg9w5y5pxq78csn8"; 56029 + version = "0.1.1.0"; 56030 + sha256 = "1415cf59wkf1599qcqmrpn9m4v9br3d763v1809mwg9bm2310x65"; 55663 56031 libraryHaskellDepends = [ base containers ]; 55664 56032 homepage = "https://github.com/erisco/data-foldapp"; 55665 56033 description = "Fold function applications. Framework for variadic functions."; ··· 59307 59675 hydraPlatforms = stdenv.lib.platforms.none; 59308 59676 }) {}; 59309 59677 59678 + "diagrams-builder_0_8_0_2" = callPackage 59679 + ({ mkDerivation, base, base-orphans, bytestring, cmdargs 59680 + , diagrams-cairo, diagrams-lib, diagrams-postscript 59681 + , diagrams-rasterific, diagrams-svg, directory, exceptions 59682 + , filepath, hashable, haskell-src-exts, haskell-src-exts-simple 59683 + , hint, JuicyPixels, lens, mtl, split, svg-builder, transformers 59684 + }: 59685 + mkDerivation { 59686 + pname = "diagrams-builder"; 59687 + version = "0.8.0.2"; 59688 + sha256 = "1jr98sza6bhzq9myfb9f2p8lfbs9qcxck67h2hvxisgpvmy0gjn2"; 59689 + configureFlags = [ "-fcairo" "-fps" "-frasterific" "-fsvg" ]; 59690 + isLibrary = true; 59691 + isExecutable = true; 59692 + libraryHaskellDepends = [ 59693 + base base-orphans cmdargs diagrams-lib directory exceptions 59694 + filepath hashable haskell-src-exts haskell-src-exts-simple hint 59695 + lens mtl split transformers 59696 + ]; 59697 + executableHaskellDepends = [ 59698 + base bytestring cmdargs diagrams-cairo diagrams-lib 59699 + diagrams-postscript diagrams-rasterific diagrams-svg directory 59700 + filepath JuicyPixels lens svg-builder 59701 + ]; 59702 + homepage = "http://projects.haskell.org/diagrams"; 59703 + description = "hint-based build service for the diagrams graphics EDSL"; 59704 + license = stdenv.lib.licenses.bsd3; 59705 + hydraPlatforms = stdenv.lib.platforms.none; 59706 + }) {}; 59707 + 59310 59708 "diagrams-cairo" = callPackage 59311 59709 ({ mkDerivation, array, base, bytestring, cairo, colour, containers 59312 59710 , data-default-class, diagrams-core, diagrams-lib, filepath ··· 62114 62512 license = stdenv.lib.licenses.bsd3; 62115 62513 }) {}; 62116 62514 62515 + "dns_3_0_1" = callPackage 62516 + ({ mkDerivation, async, attoparsec, auto-update, base 62517 + , base64-bytestring, binary, bytestring, conduit, conduit-extra 62518 + , containers, cryptonite, doctest, hspec, iproute, mtl, network 62519 + , psqueues, QuickCheck, safe, time, word8 62520 + }: 62521 + mkDerivation { 62522 + pname = "dns"; 62523 + version = "3.0.1"; 62524 + sha256 = "1aq8n0qglvx134fl8ry1liw7kpw7flm631s9qb7is7bw510wgdd6"; 62525 + libraryHaskellDepends = [ 62526 + async attoparsec auto-update base base64-bytestring binary 62527 + bytestring conduit conduit-extra containers cryptonite iproute mtl 62528 + network psqueues safe time 62529 + ]; 62530 + testHaskellDepends = [ 62531 + base bytestring doctest hspec iproute QuickCheck word8 62532 + ]; 62533 + testTarget = "spec"; 62534 + description = "DNS library in Haskell"; 62535 + license = stdenv.lib.licenses.bsd3; 62536 + hydraPlatforms = stdenv.lib.platforms.none; 62537 + }) {}; 62538 + 62117 62539 "dnscache" = callPackage 62118 62540 ({ mkDerivation, base, bytestring, containers, contstuff, dns 62119 62541 , iproute, time ··· 62276 62698 license = stdenv.lib.licenses.bsd3; 62277 62699 }) {}; 62278 62700 62701 + "docker_0_5_0_0" = callPackage 62702 + ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit 62703 + , conduit-combinators, conduit-extra, connection, containers 62704 + , data-default-class, directory, exceptions, filemanip, filepath 62705 + , http-client, http-client-tls, http-conduit, http-types, lens 62706 + , lens-aeson, monad-control, mtl, network, process, QuickCheck 62707 + , resourcet, scientific, tar, tasty, tasty-hunit, tasty-quickcheck 62708 + , temporary, text, time, tls, transformers, transformers-base 62709 + , unordered-containers, uuid, vector, x509, x509-store, x509-system 62710 + , zlib 62711 + }: 62712 + mkDerivation { 62713 + pname = "docker"; 62714 + version = "0.5.0.0"; 62715 + sha256 = "1zaypbnk0dk5bwr8zxq5bmq5aqzgcgl0sqvxqq115ia863m0d1wv"; 62716 + libraryHaskellDepends = [ 62717 + aeson base blaze-builder bytestring conduit conduit-combinators 62718 + conduit-extra containers data-default-class directory exceptions 62719 + filemanip filepath http-client http-conduit http-types 62720 + monad-control mtl network resourcet scientific tar temporary text 62721 + time tls transformers transformers-base unordered-containers uuid 62722 + vector x509 x509-store x509-system zlib 62723 + ]; 62724 + testHaskellDepends = [ 62725 + aeson base bytestring connection containers directory http-client 62726 + http-client-tls http-types lens lens-aeson process QuickCheck tasty 62727 + tasty-hunit tasty-quickcheck text transformers unordered-containers 62728 + vector 62729 + ]; 62730 + homepage = "https://github.com/denibertovic/docker-hs"; 62731 + description = "An API client for docker written in Haskell"; 62732 + license = stdenv.lib.licenses.bsd3; 62733 + hydraPlatforms = stdenv.lib.platforms.none; 62734 + }) {}; 62735 + 62279 62736 "docker-build-cacher" = callPackage 62280 62737 ({ mkDerivation, base, containers, foldl, language-docker 62281 62738 , system-filepath, text, turtle ··· 64993 65450 ({ mkDerivation, base, type-level-sets }: 64994 65451 mkDerivation { 64995 65452 pname = "effect-monad"; 64996 - version = "0.7.0.0"; 64997 - sha256 = "05jlh86hfxawkbckvw2f2xj8yc36w2hr1w3l6q75359mwa7bp7fy"; 65453 + version = "0.8.1.0"; 65454 + sha256 = "0lrx586ij1c09hv1rj14l2xi3papzdg8496kas6czdld0kfj8kw1"; 64998 65455 libraryHaskellDepends = [ base type-level-sets ]; 64999 - description = "Embeds effect systems into Haskell using graded monads"; 65456 + description = "Embeds effect systems and program logics into Haskell using graded monads and parameterised monads"; 65000 65457 license = stdenv.lib.licenses.bsd3; 65001 65458 hydraPlatforms = stdenv.lib.platforms.none; 65002 65459 }) {}; ··· 66240 66697 license = stdenv.lib.licenses.bsd3; 66241 66698 }) {}; 66242 66699 66700 + "email-validate_2_3_2_1" = callPackage 66701 + ({ mkDerivation, attoparsec, base, bytestring, doctest, hspec 66702 + , QuickCheck, template-haskell 66703 + }: 66704 + mkDerivation { 66705 + pname = "email-validate"; 66706 + version = "2.3.2.1"; 66707 + sha256 = "0qvxysiap3r4mi3xff5nsk9qv6diqxfgwj186bypbamzvzlz0lav"; 66708 + libraryHaskellDepends = [ 66709 + attoparsec base bytestring template-haskell 66710 + ]; 66711 + testHaskellDepends = [ base bytestring doctest hspec QuickCheck ]; 66712 + homepage = "https://github.com/Porges/email-validate-hs"; 66713 + description = "Email address validation"; 66714 + license = stdenv.lib.licenses.bsd3; 66715 + hydraPlatforms = stdenv.lib.platforms.none; 66716 + }) {}; 66717 + 66243 66718 "email-validate-json" = callPackage 66244 66719 ({ mkDerivation, aeson, base, email-validate, text }: 66245 66720 mkDerivation { ··· 69602 70077 license = stdenv.lib.licenses.bsd3; 69603 70078 }) {}; 69604 70079 70080 + "extensible_0_4_7_1" = callPackage 70081 + ({ mkDerivation, base, comonad, constraints, deepseq, ghc-prim 70082 + , hashable, lens, monad-skeleton, mtl, primitive, profunctors 70083 + , QuickCheck, semigroups, StateVar, tagged, template-haskell 70084 + , transformers, vector 70085 + }: 70086 + mkDerivation { 70087 + pname = "extensible"; 70088 + version = "0.4.7.1"; 70089 + sha256 = "04gb1havami26mkwdr9vbqs28r1rc9ggd9xxcaf6zw9s5z2hvr5a"; 70090 + libraryHaskellDepends = [ 70091 + base comonad constraints deepseq ghc-prim hashable monad-skeleton 70092 + mtl primitive profunctors QuickCheck semigroups StateVar tagged 70093 + template-haskell transformers vector 70094 + ]; 70095 + testHaskellDepends = [ base lens QuickCheck template-haskell ]; 70096 + homepage = "https://github.com/fumieval/extensible"; 70097 + description = "Extensible, efficient, optics-friendly data types and effects"; 70098 + license = stdenv.lib.licenses.bsd3; 70099 + hydraPlatforms = stdenv.lib.platforms.none; 70100 + }) {}; 70101 + 69605 70102 "extensible-data" = callPackage 69606 70103 ({ mkDerivation, base, data-lens, hashable, template-haskell 69607 70104 , unordered-containers ··· 71866 72363 license = stdenv.lib.licenses.bsd3; 71867 72364 }) {}; 71868 72365 71869 - "filepath_1_4_1_2" = callPackage 72366 + "filepath_1_4_2" = callPackage 71870 72367 ({ mkDerivation, base, QuickCheck }: 71871 72368 mkDerivation { 71872 72369 pname = "filepath"; 71873 - version = "1.4.1.2"; 71874 - sha256 = "1hrbi7ckrkqzw73ziqiyh00xp28c79pk0jrj1vqiq5nwfs3hryvv"; 72370 + version = "1.4.2"; 72371 + sha256 = "0bnryq00xbcsswxmahl42x85bfh23mxsap0gq8q0dm1v67ij7a0q"; 71875 72372 libraryHaskellDepends = [ base ]; 71876 72373 testHaskellDepends = [ base QuickCheck ]; 71877 72374 homepage = "https://github.com/haskell/filepath#readme"; ··· 73962 74459 }) {}; 73963 74460 73964 74461 "folgerhs" = callPackage 73965 - ({ mkDerivation, base, xml }: 74462 + ({ mkDerivation, array, base, containers, gloss 74463 + , optparse-applicative, xml 74464 + }: 73966 74465 mkDerivation { 73967 74466 pname = "folgerhs"; 73968 - version = "0.1.0.1"; 73969 - sha256 = "0kn89abvbk7faynhsyg177rayxddvwnkgsjb5cng8044n9glw9sb"; 74467 + version = "0.3.0.2"; 74468 + sha256 = "0dxig93mf29778sq71wz913d405g07dzkpbjp8cm4xsz1p86xryh"; 73970 74469 isLibrary = true; 73971 74470 isExecutable = true; 73972 - libraryHaskellDepends = [ base xml ]; 73973 - executableHaskellDepends = [ base xml ]; 73974 - homepage = "https://github.com/SU-LOSP/tools#readme"; 74471 + libraryHaskellDepends = [ array base containers gloss xml ]; 74472 + executableHaskellDepends = [ 74473 + array base containers gloss optparse-applicative xml 74474 + ]; 74475 + homepage = "https://github.com/SU-LOSP/folgerhs#readme"; 73975 74476 description = "Toolset for Folger Shakespeare Library's XML annotated plays"; 73976 74477 license = stdenv.lib.licenses.gpl3; 73977 74478 }) {}; ··· 75261 75762 }) {}; 75262 75763 75263 75764 "freelude" = callPackage 75264 - ({ mkDerivation, array, base, containers, doctest, indextype 75265 - , transformers 75765 + ({ mkDerivation, array, base, bytestring, containers, doctest 75766 + , indextype, text, transformers 75266 75767 }: 75267 75768 mkDerivation { 75268 75769 pname = "freelude"; 75269 - version = "0.1.0.1"; 75270 - sha256 = "0a16vbm17dvvfk9wp8y9df8qypy14vld4yq20hh273p2cdxx5p2n"; 75770 + version = "0.3.1.0"; 75771 + sha256 = "1rz7xpffyw4nl7iaxfmhzzmn7kyvv8rfh4wvv2d02i2ihfykirxs"; 75271 75772 libraryHaskellDepends = [ 75272 - array base containers indextype transformers 75773 + array base bytestring containers indextype text transformers 75273 75774 ]; 75274 75775 testHaskellDepends = [ 75275 - array base containers doctest indextype transformers 75776 + array base bytestring containers doctest indextype text 75777 + transformers 75276 75778 ]; 75277 75779 homepage = "https://github.com/clintonmead/freelude#readme"; 75278 75780 description = "A generalisation of the Category->Functor->Applicative->Monad hierarchy and more"; ··· 77920 78422 pname = "generic-xmlpickler"; 77921 78423 version = "0.1.0.5"; 77922 78424 sha256 = "1brnlgnbys811qy64aps2j03ks2p0rkihaqzaszfwl80cpsn05ym"; 77923 - revision = "5"; 77924 - editedCabalFile = "18hs5adb6wfasazdlv2wf92xszyjw94i3v20w8058hl7q1ax9dv0"; 78425 + revision = "6"; 78426 + editedCabalFile = "0jc2rnh8kyzay8ny59ahqb9q6vmp7si4aps1a42la79735078x51"; 77925 78427 libraryHaskellDepends = [ base generic-deriving hxt text ]; 77926 78428 testHaskellDepends = [ 77927 78429 base hxt hxt-pickle-utils tasty tasty-hunit tasty-th ··· 78791 79293 hydraPlatforms = stdenv.lib.platforms.none; 78792 79294 }) {}; 78793 79295 79296 + "geos" = callPackage 79297 + ({ mkDerivation, base, bytestring, cassava, geos_c, hspec, mtl 79298 + , transformers, vector 79299 + }: 79300 + mkDerivation { 79301 + pname = "geos"; 79302 + version = "0.1.0.0"; 79303 + sha256 = "02r9c063kkqalyadfqwhhwfb42kky7nkfp5k968l1qidyx6aha5j"; 79304 + libraryHaskellDepends = [ 79305 + base bytestring cassava mtl transformers vector 79306 + ]; 79307 + librarySystemDepends = [ geos_c ]; 79308 + testHaskellDepends = [ base bytestring cassava hspec mtl vector ]; 79309 + testSystemDepends = [ geos_c ]; 79310 + description = "Bindings for GEOS"; 79311 + license = stdenv.lib.licenses.mit; 79312 + hydraPlatforms = stdenv.lib.platforms.none; 79313 + }) {geos_c = null;}; 79314 + 78794 79315 "getemx" = callPackage 78795 79316 ({ mkDerivation, base, curl, directory, filepath, haskell98, hxt 78796 79317 , mtl, old-locale, process, time ··· 81811 82332 license = stdenv.lib.licenses.gpl3; 81812 82333 }) {inherit (pkgs) git;}; 81813 82334 82335 + "github-data" = callPackage 82336 + ({ mkDerivation, aeson, aeson-compat, base, base-compat 82337 + , base16-bytestring, binary, binary-orphans, bytestring, containers 82338 + , deepseq, deepseq-generics, exceptions, hashable, http-client 82339 + , http-types, iso8601-time, network-uri, text, time, tls 82340 + , transformers, transformers-compat, unordered-containers, vector 82341 + , vector-instances 82342 + }: 82343 + mkDerivation { 82344 + pname = "github-data"; 82345 + version = "0.18"; 82346 + sha256 = "1rqnjw8cz4xby1gbc9w8wpk1z0vg8wsm8jq7qz0ncjrm8manii5p"; 82347 + libraryHaskellDepends = [ 82348 + aeson aeson-compat base base-compat base16-bytestring binary 82349 + binary-orphans bytestring containers deepseq deepseq-generics 82350 + exceptions hashable http-client http-types iso8601-time network-uri 82351 + text time tls transformers transformers-compat unordered-containers 82352 + vector vector-instances 82353 + ]; 82354 + homepage = "https://github.com/strake/github.hs"; 82355 + description = "Access to the GitHub API, v3"; 82356 + license = stdenv.lib.licenses.bsd3; 82357 + }) {}; 82358 + 81814 82359 "github-post-receive" = callPackage 81815 82360 ({ mkDerivation, aeson, base, bytestring, containers 81816 82361 , email-validate, http-types, text, wai, wai-logger, warp ··· 90548 91093 license = stdenv.lib.licenses.bsd3; 90549 91094 }) {}; 90550 91095 91096 + "hamilton_0_1_0_2" = callPackage 91097 + ({ mkDerivation, ad, ansi-wl-pprint, base, comonad, containers 91098 + , free, hmatrix, hmatrix-gsl, optparse-applicative 91099 + , typelits-witnesses, vector, vector-sized, vty 91100 + }: 91101 + mkDerivation { 91102 + pname = "hamilton"; 91103 + version = "0.1.0.2"; 91104 + sha256 = "1fhwvimqim9jj33wps42wsbwjz28h3waqn7wrwhqci307xbcib0m"; 91105 + isLibrary = true; 91106 + isExecutable = true; 91107 + libraryHaskellDepends = [ 91108 + ad base comonad free hmatrix hmatrix-gsl typelits-witnesses 91109 + vector-sized 91110 + ]; 91111 + executableHaskellDepends = [ 91112 + ansi-wl-pprint base containers hmatrix optparse-applicative vector 91113 + vector-sized vty 91114 + ]; 91115 + homepage = "https://github.com/mstksg/hamilton"; 91116 + description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD"; 91117 + license = stdenv.lib.licenses.bsd3; 91118 + hydraPlatforms = stdenv.lib.platforms.none; 91119 + }) {}; 91120 + 90551 91121 "hamlet" = callPackage 90552 91122 ({ mkDerivation, base, shakespeare }: 90553 91123 mkDerivation { ··· 95314 95884 }: 95315 95885 mkDerivation { 95316 95886 pname = "haskey-btree"; 95317 - version = "0.2.0.0"; 95318 - sha256 = "00gp5fh64b26bqrchdrpdl8s46fdzglsqi07xf0cfrfcm867az23"; 95887 + version = "0.2.0.1"; 95888 + sha256 = "025g1sa41fa29v69hpbghabq2irkb498a6b48bgp0nb8m3cmz2ls"; 95319 95889 libraryHaskellDepends = [ 95320 95890 base binary bytestring containers hashable mtl semigroups text 95321 95891 transformers vector ··· 97063 97633 }: 97064 97634 mkDerivation { 97065 97635 pname = "hblas"; 97066 - version = "0.3.2.1"; 97067 - sha256 = "05c2mqhwjq0r8jyaj0cncaxn4n5x27dd8z6lv8g8cdc7r749q59y"; 97636 + version = "0.3.2.2"; 97637 + sha256 = "1r38ch9xi02dg4pfngpp3rndrla14w75pijkdb6kkq5r80i7hxmw"; 97068 97638 revision = "2"; 97069 - editedCabalFile = "02cxp6nxr2x1ka8bq8zjlx6kjy54lzsc9bdw1zf981f3i8yz9cj8"; 97639 + editedCabalFile = "0rvym111j5rpdx8cng1nwy7fg1f84wcfzfbwi8qgcvg29126jbnf"; 97070 97640 libraryHaskellDepends = [ base primitive storable-complex vector ]; 97071 97641 librarySystemDepends = [ blas liblapack ]; 97072 97642 testHaskellDepends = [ base HUnit tasty tasty-hunit vector ]; ··· 98078 98648 license = stdenv.lib.licenses.bsd3; 98079 98649 }) {}; 98080 98650 98651 + "hedgehog-corpus" = callPackage 98652 + ({ mkDerivation, base }: 98653 + mkDerivation { 98654 + pname = "hedgehog-corpus"; 98655 + version = "0.1.0"; 98656 + sha256 = "1whrszkd03d9a86vqnp38sq8gs2hfdc39wxcf5c12w3767c9qmn3"; 98657 + libraryHaskellDepends = [ base ]; 98658 + homepage = "https://github.com/tmcgilchrist/hedgehog-corpus"; 98659 + description = "hedgehog-corpus"; 98660 + license = stdenv.lib.licenses.bsd3; 98661 + }) {}; 98662 + 98081 98663 "hedgehog-gen-json" = callPackage 98082 98664 ({ mkDerivation, aeson, base, bytestring, containers, exceptions 98083 98665 , hedgehog, lens, protolude, regex-genex, regex-posix, scientific ··· 102034 102616 license = stdenv.lib.licenses.bsd3; 102035 102617 }) {}; 102036 102618 102619 + "hlist" = callPackage 102620 + ({ mkDerivation, base }: 102621 + mkDerivation { 102622 + pname = "hlist"; 102623 + version = "0.0.0.0"; 102624 + sha256 = "128y1l4bjyrsvx188mx58x8a98j7jk931h0nv5bprpxjkc71c32k"; 102625 + libraryHaskellDepends = [ base ]; 102626 + description = "Heterogeneous list"; 102627 + license = stdenv.lib.licenses.bsd3; 102628 + hydraPlatforms = stdenv.lib.platforms.none; 102629 + }) {}; 102630 + 102037 102631 "hlogger" = callPackage 102038 102632 ({ mkDerivation, base, old-locale, time }: 102039 102633 mkDerivation { ··· 102314 102908 ({ mkDerivation, base, doctest, hmatrix, nlopt-haskell, vector }: 102315 102909 mkDerivation { 102316 102910 pname = "hmatrix-nlopt"; 102317 - version = "0.1.0.0"; 102318 - sha256 = "12h2svm2x3bc9ivii90f8cr4npwpagchazlmgj36x381aqradsf2"; 102911 + version = "0.1.1.0"; 102912 + sha256 = "1fgicpzi811ifdyrc8gzd8dgb0f14lw92rdidmbps3yisczysz29"; 102319 102913 libraryHaskellDepends = [ base hmatrix nlopt-haskell vector ]; 102320 102914 testHaskellDepends = [ base doctest ]; 102321 102915 homepage = "https://github.com/peddie/hmatrix-nlopt"; ··· 102756 103350 homepage = "http://github.com/jwiegley/hnix"; 102757 103351 description = "Haskell implementation of the Nix language"; 102758 103352 license = stdenv.lib.licenses.bsd3; 103353 + }) {}; 103354 + 103355 + "hnix_0_4_0" = callPackage 103356 + ({ mkDerivation, ansi-wl-pprint, base, containers, criterion 103357 + , data-fix, deepseq, deriving-compat, parsers, regex-tdfa 103358 + , regex-tdfa-text, semigroups, tasty, tasty-hunit, tasty-th, text 103359 + , transformers, trifecta, unordered-containers 103360 + }: 103361 + mkDerivation { 103362 + pname = "hnix"; 103363 + version = "0.4.0"; 103364 + sha256 = "0rgx97ckv5zvly6x76h7nncswfw0ik4bhnlj8n5bpl4rqzd7d4fd"; 103365 + isLibrary = true; 103366 + isExecutable = true; 103367 + libraryHaskellDepends = [ 103368 + ansi-wl-pprint base containers data-fix deepseq deriving-compat 103369 + parsers regex-tdfa regex-tdfa-text semigroups text transformers 103370 + trifecta unordered-containers 103371 + ]; 103372 + executableHaskellDepends = [ 103373 + ansi-wl-pprint base containers data-fix deepseq 103374 + ]; 103375 + testHaskellDepends = [ 103376 + base containers data-fix tasty tasty-hunit tasty-th text 103377 + ]; 103378 + benchmarkHaskellDepends = [ base containers criterion text ]; 103379 + homepage = "http://github.com/jwiegley/hnix"; 103380 + description = "Haskell implementation of the Nix language"; 103381 + license = stdenv.lib.licenses.bsd3; 103382 + hydraPlatforms = stdenv.lib.platforms.none; 102759 103383 }) {}; 102760 103384 102761 103385 "hnn" = callPackage ··· 102785 103409 isExecutable = true; 102786 103410 executableHaskellDepends = [ base ]; 102787 103411 license = stdenv.lib.licenses.unfree; 103412 + hydraPlatforms = stdenv.lib.platforms.none; 102788 103413 }) {}; 102789 103414 102790 103415 "hnormalise" = callPackage ··· 104909 105534 homepage = "https://github.com/quixoftic/hpio#readme"; 104910 105535 description = "Monads for GPIO in Haskell"; 104911 105536 license = stdenv.lib.licenses.bsd3; 105537 + hydraPlatforms = stdenv.lib.platforms.none; 105538 + }) {}; 105539 + 105540 + "hpio_0_9_0_3" = callPackage 105541 + ({ mkDerivation, async, base, bytestring, containers, directory 105542 + , doctest, exceptions, filepath, hlint, hspec, monad-control 105543 + , monad-logger, mtl, optparse-applicative, protolude, QuickCheck 105544 + , text, transformers, transformers-base, unix, unix-bytestring 105545 + }: 105546 + mkDerivation { 105547 + pname = "hpio"; 105548 + version = "0.9.0.3"; 105549 + sha256 = "0cz7dxxxxfr142gr3hrq1k1x8axdgvyw7bsjsd1v9spka2i03rcd"; 105550 + isLibrary = true; 105551 + isExecutable = true; 105552 + libraryHaskellDepends = [ 105553 + base bytestring containers directory exceptions filepath 105554 + monad-control monad-logger mtl protolude QuickCheck text 105555 + transformers transformers-base unix unix-bytestring 105556 + ]; 105557 + executableHaskellDepends = [ 105558 + async base exceptions mtl optparse-applicative protolude text 105559 + transformers 105560 + ]; 105561 + testHaskellDepends = [ 105562 + base containers directory doctest exceptions filepath hlint hspec 105563 + protolude QuickCheck 105564 + ]; 105565 + homepage = "https://github.com/quixoftic/hpio#readme"; 105566 + description = "Monads for GPIO in Haskell"; 105567 + license = stdenv.lib.licenses.bsd3; 105568 + hydraPlatforms = stdenv.lib.platforms.none; 104912 105569 }) {}; 104913 105570 104914 105571 "hplayground" = callPackage ··· 105343 106000 license = stdenv.lib.licenses.mit; 105344 106001 hydraPlatforms = stdenv.lib.platforms.none; 105345 106002 }) {}; 105346 - 105347 - "hruby_0_3_4_4" = callPackage 105348 - ({ mkDerivation, aeson, attoparsec, base, bytestring, QuickCheck 105349 - , ruby, scientific, stm, text, unordered-containers, vector 105350 - }: 105351 - mkDerivation { 105352 - pname = "hruby"; 105353 - version = "0.3.4.4"; 105354 - sha256 = "08997g32rnmwznzywf1k0bmki0kbcwss9s4lka6s501l54gp1ij9"; 105355 - libraryHaskellDepends = [ 105356 - aeson attoparsec base bytestring scientific stm text 105357 - unordered-containers vector 105358 - ]; 105359 - librarySystemDepends = [ ruby ]; 105360 - testHaskellDepends = [ 105361 - aeson attoparsec base QuickCheck text vector 105362 - ]; 105363 - description = "Embed a Ruby intepreter in your Haskell program !"; 105364 - license = stdenv.lib.licenses.bsd3; 105365 - hydraPlatforms = stdenv.lib.platforms.none; 105366 - }) {inherit (pkgs) ruby;}; 105367 106003 105368 106004 "hruby" = callPackage 105369 106005 ({ mkDerivation, aeson, attoparsec, base, bytestring, QuickCheck ··· 106921 107557 }: 106922 107558 mkDerivation { 106923 107559 pname = "hsdev"; 106924 - version = "0.3.0.1"; 106925 - sha256 = "02wwwxbr6ymmxw3g0m47bxm82mdh755f8jr6vjcbmdb60bqn9lrn"; 107560 + version = "0.3.0.3"; 107561 + sha256 = "03silw148f3wr62j5zdyy1qq6jmsmfhijmghcv0bf7sgv0lgaycv"; 106926 107562 isLibrary = true; 106927 107563 isExecutable = true; 106928 107564 libraryHaskellDepends = [ ··· 110158 110794 license = stdenv.lib.licenses.mit; 110159 110795 }) {}; 110160 110796 110161 - "http-client_0_5_8" = callPackage 110797 + "http-client_0_5_9" = callPackage 110162 110798 ({ mkDerivation, array, async, base, base64-bytestring 110163 110799 , blaze-builder, bytestring, case-insensitive, containers, cookie 110164 110800 , deepseq, directory, exceptions, filepath, ghc-prim, hspec ··· 110167 110803 }: 110168 110804 mkDerivation { 110169 110805 pname = "http-client"; 110170 - version = "0.5.8"; 110171 - sha256 = "13khi2vsx2la0s4pvysdfharjnbway7nbv1fcw4bjld8crbpwb68"; 110172 - revision = "1"; 110173 - editedCabalFile = "023gnif575iaq25af2d4dwcppagnph74ig3xdsda1fp1k5cwif9q"; 110806 + version = "0.5.9"; 110807 + sha256 = "0bccpvinzc7z5v83grjzvd3g3kdz2q5h2206l7x9jh4bvz9prblf"; 110174 110808 libraryHaskellDepends = [ 110175 110809 array base base64-bytestring blaze-builder bytestring 110176 110810 case-insensitive containers cookie deepseq exceptions filepath ··· 115297 115931 pname = "imprint"; 115298 115932 version = "0.0.1.0"; 115299 115933 sha256 = "0f56zy6ay6wvcvqfplvc3gckngxngxm9r62h1w36lxm74xy8544v"; 115934 + revision = "1"; 115935 + editedCabalFile = "13418pfcsanj7cl651v4qqbypgjkrpld2gs560kpw3k2lj6w4wa0"; 115300 115936 libraryHaskellDepends = [ base binary bytestring constraints ]; 115301 115937 testHaskellDepends = [ base binary constraints hspec ]; 115302 115938 homepage = "https://github.com/mrkkrp/imprint"; ··· 115325 115961 }: 115326 115962 mkDerivation { 115327 115963 pname = "impure-containers"; 115328 - version = "0.4.2"; 115329 - sha256 = "04g7xsa9mylfcjahlr3d81k8cvf0fi4rg8wkk2x4z6hmidy5s4kg"; 115964 + version = "0.4.3"; 115965 + sha256 = "003r3ppwdwndg8q84bnh299f04b88bhnxxl65nbrz9xl77lfz2y0"; 115330 115966 libraryHaskellDepends = [ 115331 115967 base containers ghc-prim hashable primitive vector 115332 115968 ]; ··· 117098 117734 license = stdenv.lib.licenses.bsd3; 117099 117735 }) {}; 117100 117736 117737 + "invertible_0_2_0_3" = callPackage 117738 + ({ mkDerivation, base, haskell-src-meta, invariant, lens 117739 + , partial-isomorphisms, QuickCheck, semigroupoids, template-haskell 117740 + , transformers, TypeCompose 117741 + }: 117742 + mkDerivation { 117743 + pname = "invertible"; 117744 + version = "0.2.0.3"; 117745 + sha256 = "0pckhl1nv6w66k3ll9q1bwbmzl2rpbwk6c3xkm7dscxzjzw43qwf"; 117746 + libraryHaskellDepends = [ 117747 + base haskell-src-meta invariant lens partial-isomorphisms 117748 + semigroupoids template-haskell transformers TypeCompose 117749 + ]; 117750 + testHaskellDepends = [ base QuickCheck transformers ]; 117751 + description = "bidirectional arrows, bijective functions, and invariant functors"; 117752 + license = stdenv.lib.licenses.bsd3; 117753 + hydraPlatforms = stdenv.lib.platforms.none; 117754 + }) {}; 117755 + 117101 117756 "invertible-hlist" = callPackage 117102 117757 ({ mkDerivation, base, HList, invertible }: 117103 117758 mkDerivation { ··· 117455 118110 hydraPlatforms = stdenv.lib.platforms.none; 117456 118111 }) {}; 117457 118112 118113 + "ip_1_1_2" = callPackage 118114 + ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion 118115 + , doctest, hashable, HUnit, primitive, QuickCheck 118116 + , quickcheck-classes, test-framework, test-framework-hunit 118117 + , test-framework-quickcheck2, text, vector 118118 + }: 118119 + mkDerivation { 118120 + pname = "ip"; 118121 + version = "1.1.2"; 118122 + sha256 = "16vjbcrjpvs4wh89r4k3d5hpkklvcvrk50qjnx67bsi2jjhcn0aj"; 118123 + libraryHaskellDepends = [ 118124 + aeson attoparsec base bytestring hashable primitive text vector 118125 + ]; 118126 + testHaskellDepends = [ 118127 + attoparsec base bytestring doctest HUnit QuickCheck 118128 + quickcheck-classes test-framework test-framework-hunit 118129 + test-framework-quickcheck2 text 118130 + ]; 118131 + benchmarkHaskellDepends = [ 118132 + attoparsec base bytestring criterion text 118133 + ]; 118134 + homepage = "https://github.com/andrewthad/haskell-ip#readme"; 118135 + description = "Library for IP and MAC addresses"; 118136 + license = stdenv.lib.licenses.bsd3; 118137 + hydraPlatforms = stdenv.lib.platforms.none; 118138 + }) {}; 118139 + 117458 118140 "ip-quoter" = callPackage 117459 118141 ({ mkDerivation, base, cpu, network, tasty, tasty-hunit 117460 118142 , template-haskell ··· 119727 120409 license = stdenv.lib.licenses.mit; 119728 120410 }) {}; 119729 120411 120412 + "js-jquery_3_3_1" = callPackage 120413 + ({ mkDerivation, base, HTTP }: 120414 + mkDerivation { 120415 + pname = "js-jquery"; 120416 + version = "3.3.1"; 120417 + sha256 = "16q68jzbs7kp07dnq8cprdcc8fd41rim38039vg0w4x11lgniq70"; 120418 + enableSeparateDataOutput = true; 120419 + libraryHaskellDepends = [ base ]; 120420 + testHaskellDepends = [ base HTTP ]; 120421 + doCheck = false; 120422 + homepage = "https://github.com/ndmitchell/js-jquery#readme"; 120423 + description = "Obtain minified jQuery code"; 120424 + license = stdenv.lib.licenses.mit; 120425 + hydraPlatforms = stdenv.lib.platforms.none; 120426 + }) {}; 120427 + 119730 120428 "jsaddle" = callPackage 119731 120429 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 119732 120430 , bytestring, containers, deepseq, filepath, ghc-prim, http-types ··· 120435 121133 pname = "json-schema"; 120436 121134 version = "0.7.4.1"; 120437 121135 sha256 = "15kwgpkryd865nls9zm6ya6jzmiygsb537ij7ps39dzasqbnl3an"; 120438 - revision = "11"; 120439 - editedCabalFile = "0jnlgkr1dikkcy4ln942c14lmpj49287b74dqcc5rd6sgxcm7xq2"; 121136 + revision = "12"; 121137 + editedCabalFile = "0x3cvndfshy4sd66m2xilyp876kvmgw5flagawamwis6hs8pfdi2"; 120440 121138 libraryHaskellDepends = [ 120441 121139 aeson base containers generic-aeson generic-deriving mtl scientific 120442 121140 text time unordered-containers vector ··· 123399 124097 "nlopt-haskell" = callPackage 123400 124098 "nlopt-haskell" = callPackage 123401 124099 license = "GPL"; 124100 + maintainers = with stdenv.lib.maintainers; [ peti ]; 123402 124101 }) {}; 123403 124102 123404 124103 "nlopt-haskell" = callPackage ··· 123444 124143 "nlopt-haskell" = callPackage 123445 124144 "nlopt-haskell" = callPackage 123446 124145 license = "GPL"; 124146 + maintainers = with stdenv.lib.maintainers; [ peti ]; 123447 124147 }) {}; 123448 124148 123449 124149 "nlopt-haskell" = callPackage ··· 123962 124662 }: 123963 124663 mkDerivation { 123964 124664 "nlopt-haskell" = callPackage 123965 - version = "0.1.0.3"; 123966 - "nlopt-haskell" = callPackage 124665 + version = "0.1.1.5"; 124666 + sha256 = "1lgfrighhqm56s7i0kdpz4fhkmav4p474xiw2xns07g65dr223a8"; 123967 124667 enableSeparateDataOutput = true; 123968 124668 libraryHaskellDepends = [ 123969 124669 "nlopt-haskell" = callPackage ··· 123974 124674 "nlopt-haskell" = callPackage 123975 124675 ]; 123976 124676 benchmarkHaskellDepends = [ base criterion ]; 123977 - "nlopt-haskell" = callPackage 123978 124677 "nlopt-haskell" = callPackage 123979 124678 license = stdenv.lib.licenses.bsd3; 123980 124679 }) {}; ··· 124529 125228 ]; 124530 125229 "nlopt-haskell" = callPackage 124531 125230 "nlopt-haskell" = callPackage 125231 + license = stdenv.lib.licenses.bsd3; 125232 + }) {}; 125233 + 125234 + "language-js" = callPackage 125235 + ({ mkDerivation, base, hspec, parsec }: 125236 + mkDerivation { 125237 + pname = "language-js"; 125238 + version = "0.2.0"; 125239 + sha256 = "0j87w6sqyl67ad9qar2q240kbzksds3a301cdykjfa3n6a0r81z1"; 125240 + libraryHaskellDepends = [ base parsec ]; 125241 + testHaskellDepends = [ base hspec parsec ]; 125242 + homepage = "https://github.com/diasbruno/language-js#readme"; 125243 + description = "javascript parser for es6 and es7"; 124532 125244 license = stdenv.lib.licenses.bsd3; 124533 125245 }) {}; 124534 125246 ··· 127659 128371 license = stdenv.lib.licenses.bsd3; 127660 128372 }) {}; 127661 128373 128374 + "lifted-async_0_9_3_3" = callPackage 128375 + ({ mkDerivation, async, base, constraints, criterion, deepseq 128376 + , HUnit, lifted-base, monad-control, mtl, tasty, tasty-hunit 128377 + , tasty-th, transformers-base 128378 + }: 128379 + mkDerivation { 128380 + pname = "lifted-async"; 128381 + version = "0.9.3.3"; 128382 + sha256 = "1gqd4ih72mky1s97120yx9gmabaxb1l54b3jwijsl8fxng5djdxf"; 128383 + libraryHaskellDepends = [ 128384 + async base constraints lifted-base monad-control transformers-base 128385 + ]; 128386 + testHaskellDepends = [ 128387 + async base HUnit lifted-base monad-control mtl tasty tasty-hunit 128388 + tasty-th 128389 + ]; 128390 + benchmarkHaskellDepends = [ async base criterion deepseq ]; 128391 + homepage = "https://github.com/maoe/lifted-async"; 128392 + description = "Run lifted IO operations asynchronously and wait for their results"; 128393 + license = stdenv.lib.licenses.bsd3; 128394 + hydraPlatforms = stdenv.lib.platforms.none; 128395 + }) {}; 128396 + 127662 128397 "lifted-base" = callPackage 127663 128398 ({ mkDerivation, base, criterion, HUnit, monad-control, monad-peel 127664 128399 , test-framework, test-framework-hunit, transformers ··· 132480 133215 hydraPlatforms = stdenv.lib.platforms.none; 132481 133216 }) {}; 132482 133217 133218 + "magicbane_0_2_0" = callPackage 133219 + ({ mkDerivation, aeson, aeson-qq, async, attoparsec, base 133220 + , bytestring, conduit, conduit-combinators, data-default, data-has 133221 + , ekg-core, ekg-wai, envy, errors, fast-logger, http-api-data 133222 + , http-client, http-client-tls, http-conduit, http-link-header 133223 + , http-types, lifted-async, lifted-base, monad-control 133224 + , monad-logger, monad-metrics, mono-traversable, mtl, network-uri 133225 + , raw-strings-qq, refined, safe-exceptions, servant-server, split 133226 + , string-conversions, text, transformers, transformers-base 133227 + , unordered-containers, wai, wai-cli, wai-middleware-metrics 133228 + }: 133229 + mkDerivation { 133230 + pname = "magicbane"; 133231 + version = "0.2.0"; 133232 + sha256 = "0v67mycp7mgawcwnkw68pivyicp9p2nj0f9isrdb14x5smm1f1zd"; 133233 + libraryHaskellDepends = [ 133234 + aeson aeson-qq async attoparsec base bytestring conduit 133235 + conduit-combinators data-default data-has ekg-core ekg-wai envy 133236 + errors fast-logger http-api-data http-client http-client-tls 133237 + http-conduit http-link-header http-types lifted-async lifted-base 133238 + monad-control monad-logger monad-metrics mono-traversable mtl 133239 + network-uri raw-strings-qq refined safe-exceptions servant-server 133240 + split string-conversions text transformers transformers-base 133241 + unordered-containers wai wai-cli wai-middleware-metrics 133242 + ]; 133243 + homepage = "https://github.com/myfreeweb/magicbane#readme"; 133244 + description = "A web framework that integrates Servant, EKG, fast-logger, wai-cli…"; 133245 + license = stdenv.lib.licenses.publicDomain; 133246 + hydraPlatforms = stdenv.lib.platforms.none; 133247 + }) {}; 133248 + 132483 133249 "magico" = callPackage 132484 133250 ({ mkDerivation, base, hmatrix, transformers, utility-ht }: 132485 133251 mkDerivation { ··· 135048 135814 }: 135049 135815 mkDerivation { 135050 135816 pname = "mellon-core"; 135051 - version = "0.8.0.3"; 135052 - sha256 = "10grfkc0ljvjpw2qvpv9gimnh51xwzqsbdzd24jk1d52adb4vbzd"; 135817 + version = "0.8.0.4"; 135818 + sha256 = "03gh3ks6k3y11sga15bnknqw7j29kfhgw8zvfz87vgw5xlsva3j2"; 135053 135819 libraryHaskellDepends = [ async base mtl time transformers ]; 135054 135820 testHaskellDepends = [ 135055 135821 async base doctest hlint hspec mtl QuickCheck quickcheck-instances ··· 135065 135831 ({ mkDerivation, base, hlint, hpio, mellon-core }: 135066 135832 mkDerivation { 135067 135833 pname = "mellon-gpio"; 135068 - version = "0.8.0.3"; 135069 - sha256 = "0sz24f9ymy4hwpmwkqlb7v1rjfs8fz4bx9rfvzag5bprwgg4ayq9"; 135834 + version = "0.8.0.4"; 135835 + sha256 = "0b12wvv11ny3rdrd8wg236zn8yy3szm85n7qjdyiiznx2jf33rm7"; 135070 135836 libraryHaskellDepends = [ base hpio mellon-core ]; 135071 135837 testHaskellDepends = [ base hlint ]; 135072 135838 homepage = "https://github.com/quixoftic/mellon#readme"; ··· 135087 135853 }: 135088 135854 mkDerivation { 135089 135855 pname = "mellon-web"; 135090 - version = "0.8.0.3"; 135091 - sha256 = "08ar679w1b3an6qf492pd3fjyrk0i7kbzv9qw2agibbdcpaw8pnk"; 135856 + version = "0.8.0.4"; 135857 + sha256 = "1fyd8vkdym9rm54dbcnn9821jdmbvdyl942339m6prnc2188hkcc"; 135092 135858 isLibrary = true; 135093 135859 isExecutable = true; 135094 135860 libraryHaskellDepends = [ ··· 135402 136168 license = stdenv.lib.licenses.bsd3; 135403 136169 }) {}; 135404 136170 135405 - "memory_0_14_13" = callPackage 136171 + "memory_0_14_14" = callPackage 135406 136172 ({ mkDerivation, base, basement, bytestring, deepseq, foundation 135407 136173 , ghc-prim, tasty, tasty-hunit, tasty-quickcheck 135408 136174 }: 135409 136175 mkDerivation { 135410 136176 pname = "memory"; 135411 - version = "0.14.13"; 135412 - sha256 = "0ycxk9yp0bd29jqn48vzblxaa8sny8mw652icyvg3zg3sjg9pjxd"; 136177 + version = "0.14.14"; 136178 + sha256 = "03lnb7nqshddiwqbz1vpba7mb6l80nav896rr77vlp8m41b9h6qx"; 135413 136179 libraryHaskellDepends = [ 135414 136180 base basement bytestring deepseq foundation ghc-prim 135415 136181 ]; 135416 136182 testHaskellDepends = [ 135417 - base basement foundation tasty tasty-hunit tasty-quickcheck 136183 + base basement bytestring foundation tasty tasty-hunit 136184 + tasty-quickcheck 135418 136185 ]; 135419 136186 homepage = "https://github.com/vincenthz/hs-memory"; 135420 136187 description = "memory and related abstraction stuff"; ··· 137326 138093 license = stdenv.lib.licenses.bsd3; 137327 138094 }) {}; 137328 138095 137329 - "mmark_0_0_5_1" = callPackage 138096 + "mmark_0_0_5_2" = callPackage 137330 138097 ({ mkDerivation, aeson, base, case-insensitive, containers 137331 138098 , criterion, data-default-class, deepseq, dlist, email-validate 137332 138099 , foldl, hashable, hspec, hspec-megaparsec, html-entity-map, lucid ··· 137336 138103 }: 137337 138104 mkDerivation { 137338 138105 pname = "mmark"; 137339 - version = "0.0.5.1"; 137340 - sha256 = "0zx2lcz8ha1s5apr3hnxv4kms1n2c5rajyxhz9gck7kxpx2yviqz"; 138106 + version = "0.0.5.2"; 138107 + sha256 = "1ap0m90dcnxixr8nxvq8i2nj51gmf293cw8bya6i63zw69ip18z4"; 137341 138108 enableSeparateDataOutput = true; 137342 138109 libraryHaskellDepends = [ 137343 138110 aeson base case-insensitive containers data-default-class deepseq ··· 137363 138130 }: 137364 138131 mkDerivation { 137365 138132 pname = "mmark-cli"; 137366 - version = "0.0.1.0"; 137367 - sha256 = "1ix5c7xirhnrbnqp63ff78ddmwq8jimwmadavridanp3cf2wygx2"; 138133 + version = "0.0.2.0"; 138134 + sha256 = "108vrkpb61b1fpyqwqqxx9d3c8jsn0igk3rfm56pxyps2rdpx7px"; 137368 138135 isLibrary = false; 137369 138136 isExecutable = true; 137370 138137 executableHaskellDepends = [ ··· 137373 138140 unordered-containers 137374 138141 ]; 137375 138142 homepage = "https://github.com/mmark-md/mmark-cli"; 137376 - description = "Description"; 138143 + description = "Command line interface to MMark markdown processor"; 137377 138144 license = stdenv.lib.licenses.bsd3; 137378 138145 hydraPlatforms = stdenv.lib.platforms.none; 137379 138146 }) {}; ··· 137398 138165 license = stdenv.lib.licenses.bsd3; 137399 138166 }) {}; 137400 138167 137401 - "mmark-ext_0_1_0_0" = callPackage 138168 + "mmark-ext_0_1_1_0" = callPackage 137402 138169 ({ mkDerivation, base, blaze-html, foldl, hspec, lucid, microlens 137403 138170 , mmark, modern-uri, skylighting, text 137404 138171 }: 137405 138172 mkDerivation { 137406 138173 pname = "mmark-ext"; 137407 - version = "0.1.0.0"; 137408 - sha256 = "1qwwhjmphxry6dfalhalmyvaw41gr2b70g39acrx4zcqlif6gg3x"; 137409 - revision = "1"; 137410 - editedCabalFile = "0qnadhdn9di4wwib57r05c7xkp3ir7xjdixlpajycpgnzr2p038a"; 138174 + version = "0.1.1.0"; 138175 + sha256 = "0vgsdiagr8bp02dpi8hn4libn0np2z74ksj2vm2x0a76haqlv8kc"; 137411 138176 enableSeparateDataOutput = true; 137412 138177 libraryHaskellDepends = [ 137413 138178 base blaze-html foldl lucid microlens mmark modern-uri skylighting 137414 138179 text 137415 138180 ]; 137416 138181 testHaskellDepends = [ base hspec lucid mmark text ]; 137417 - homepage = "https://github.com/mrkkrp/mmark-ext"; 138182 + homepage = "https://github.com/mmark-md/mmark-ext"; 137418 138183 description = "Commonly useful extensions for MMark markdown processor"; 137419 138184 license = stdenv.lib.licenses.bsd3; 137420 138185 hydraPlatforms = stdenv.lib.platforms.none; ··· 138349 139114 license = stdenv.lib.licenses.mit; 138350 139115 }) {}; 138351 139116 138352 - "monad-logger_0_3_28" = callPackage 139117 + "monad-logger_0_3_28_1" = callPackage 138353 139118 ({ mkDerivation, base, blaze-builder, bytestring, conduit 138354 139119 , conduit-extra, exceptions, fast-logger, lifted-base 138355 139120 , monad-control, monad-loops, mtl, resourcet, stm, stm-chans ··· 138358 139123 }: 138359 139124 mkDerivation { 138360 139125 pname = "monad-logger"; 138361 - version = "0.3.28"; 138362 - sha256 = "0xmi4b52zdaydcjh4hzr3q3vajhkhjljjbfp3grhx1pc41wycfhr"; 139126 + version = "0.3.28.1"; 139127 + sha256 = "15gpr6wgyqfiz780p8l4lfxmxnanpviyvkba20hdsx92czq64cgr"; 138363 139128 libraryHaskellDepends = [ 138364 139129 base blaze-builder bytestring conduit conduit-extra exceptions 138365 139130 fast-logger lifted-base monad-control monad-loops mtl resourcet stm ··· 140708 141473 }) {}; 140709 141474 140710 141475 "mtl-tf" = callPackage 140711 - ({ mkDerivation, base }: 141476 + ({ mkDerivation, base, transformers }: 140712 141477 mkDerivation { 140713 141478 pname = "mtl-tf"; 140714 - version = "0.1"; 140715 - sha256 = "0qfmswdkj95bh6wkic8hh002wsxqlrylw45k6w9iyzv4saqnl22f"; 140716 - libraryHaskellDepends = [ base ]; 140717 - description = "Monad transformer library using type families"; 141479 + version = "0.2.1.0"; 141480 + sha256 = "0z9vinxhbbg4lpf8mxi0h3jbz4kv6x3ih05q44kjh4z8mpm9szzy"; 141481 + libraryHaskellDepends = [ base transformers ]; 141482 + description = "Monad Transformer Library with Type Families"; 140718 141483 license = stdenv.lib.licenses.bsd3; 140719 141484 hydraPlatforms = stdenv.lib.platforms.none; 140720 141485 }) {}; ··· 143155 143920 }: 143156 143921 mkDerivation { 143157 143922 pname = "nbt"; 143158 - version = "0.6"; 143159 - sha256 = "0lcnxlj0cfrw840saay3lxyjmc00rxhksqa6ccyhg8119y20gcjd"; 143923 + version = "0.7"; 143924 + sha256 = "10iby4sg50la1k635ygdqf5h50rvidl0k871brdjs8b9hi1vlv5r"; 143160 143925 enableSeparateDataOutput = true; 143161 143926 libraryHaskellDepends = [ array base bytestring cereal text ]; 143162 143927 testHaskellDepends = [ ··· 143494 144259 hydraPlatforms = stdenv.lib.platforms.none; 143495 144260 }) {}; 143496 144261 144262 + "nest" = callPackage 144263 + ({ mkDerivation, base, bytestring, containers, hedgehog, text 144264 + , transformers, unix 144265 + }: 144266 + mkDerivation { 144267 + pname = "nest"; 144268 + version = "0.0.1"; 144269 + sha256 = "1ndd93z9yqa1slhb8wq3j5fr3rc2fna0cb5xqh9s3dynb966zqqk"; 144270 + libraryHaskellDepends = [ 144271 + base bytestring containers text transformers unix 144272 + ]; 144273 + testHaskellDepends = [ base bytestring containers hedgehog text ]; 144274 + license = stdenv.lib.licenses.bsd3; 144275 + hydraPlatforms = stdenv.lib.platforms.none; 144276 + }) {}; 144277 + 143497 144278 "nested-routes" = callPackage 143498 144279 ({ mkDerivation, attoparsec, base, bifunctors, bytestring 143499 144280 , composition-extra, errors, exceptions, extractable-singleton ··· 145360 146141 }: 145361 146142 mkDerivation { 145362 146143 pname = "ngx-export"; 145363 - version = "1.0.1"; 145364 - sha256 = "1n2d9sh8df6532716pbyxklr3k7lykb6hjf2b976jfd9qrgw505z"; 146144 + version = "1.1.0"; 146145 + sha256 = "1d3xz1jsvnr0rg5y0rpkrlwzng589abq8w5ylg7d5pmr75ih2a0n"; 145365 146146 libraryHaskellDepends = [ 145366 146147 async base binary bytestring deepseq monad-loops template-haskell 145367 146148 unix ··· 145720 146501 ({ mkDerivation, base, nlopt, vector }: 145721 146502 mkDerivation { 145722 146503 pname = "nlopt-haskell"; 145723 - version = "0.1.0.0"; 145724 - sha256 = "0skh0bsms2nsw3dwi4ibjs579bbpc8ya158nrhyn3yxgdx79qgnj"; 146504 + version = "0.1.1.0"; 146505 + sha256 = "1jgszhkr6xc94rjasrhbfm618yz5l37zkibaxycn50fzvsilgfgg"; 145725 146506 libraryHaskellDepends = [ base vector ]; 145726 146507 librarySystemDepends = [ nlopt ]; 145727 146508 testHaskellDepends = [ base vector ]; ··· 147653 148434 hydraPlatforms = stdenv.lib.platforms.none; 147654 148435 }) {}; 147655 148436 148437 + "odpic-raw" = callPackage 148438 + ({ mkDerivation, base, bytestring, c2hs, hspec, odpic, QuickCheck 148439 + }: 148440 + mkDerivation { 148441 + pname = "odpic-raw"; 148442 + version = "0.1.2"; 148443 + sha256 = "1v6ww4ix4l0vi27x4x2ar3ldx6h8lhm701iis4164indq9dp2yy7"; 148444 + libraryHaskellDepends = [ base bytestring ]; 148445 + librarySystemDepends = [ odpic ]; 148446 + libraryToolDepends = [ c2hs ]; 148447 + testHaskellDepends = [ base hspec QuickCheck ]; 148448 + homepage = "https://github.com/leptonyu/odpic-raw#readme"; 148449 + license = stdenv.lib.licenses.bsd3; 148450 + hydraPlatforms = stdenv.lib.platforms.none; 148451 + }) {odpic = null;}; 148452 + 147656 148453 "oeis" = callPackage 147657 148454 ({ mkDerivation, base, HTTP, HUnit, network, network-uri 147658 148455 , test-framework, test-framework-hunit ··· 149233 150030 }: 149234 150031 mkDerivation { 149235 150032 pname = "optimization"; 149236 - version = "0.1.7"; 149237 - sha256 = "1y490h96qvn9w3z360adbxmbcvw3zpirgfs02hbjkarxi13z4shn"; 150033 + version = "0.1.9"; 150034 + sha256 = "0v1bi97jvdnn4jfknsnayaqdawckh7xxcnkr5nwvxqnpckg89yyf"; 149238 150035 libraryHaskellDepends = [ 149239 150036 ad base distributive linear semigroupoids vector 149240 150037 ]; ··· 152532 153329 homepage = "https://github.com/PasswordManager/passman-core#readme"; 152533 153330 description = "Deterministic password generator core"; 152534 153331 license = stdenv.lib.licenses.gpl3; 152535 - hydraPlatforms = stdenv.lib.platforms.none; 152536 - broken = true; 152537 153332 }) {}; 152538 153333 152539 153334 "passwords" = callPackage ··· 157261 158056 157262 158057 "plot-light" = callPackage 157263 158058 ({ mkDerivation, attoparsec, attoparsec-time, base, blaze-svg 157264 - , colour, hspec, mtl, palette, QuickCheck, scientific, text, time 158059 + , colour, containers, data-default, hspec, mtl, palette, QuickCheck 158060 + , scientific, text, time 157265 158061 }: 157266 158062 mkDerivation { 157267 158063 pname = "plot-light"; 157268 - version = "0.2.7"; 157269 - sha256 = "0w1mbhws7fs0kld61fd9f9xyvfpzsjhh6ic6ny89gka4421p002s"; 158064 + version = "0.2.9"; 158065 + sha256 = "0sz69a8q6r67s9d75vgb3x7iyp8vgrd2q85w2pykzpnpbdi56q5m"; 157270 158066 isLibrary = true; 157271 158067 isExecutable = true; 157272 158068 enableSeparateDataOutput = true; 157273 158069 libraryHaskellDepends = [ 157274 - attoparsec base blaze-svg colour mtl palette scientific text time 158070 + attoparsec base blaze-svg colour containers data-default hspec mtl 158071 + palette QuickCheck scientific text time 157275 158072 ]; 157276 158073 executableHaskellDepends = [ 157277 158074 attoparsec attoparsec-time base blaze-svg colour palette scientific ··· 157377 158174 }: 157378 158175 mkDerivation { 157379 158176 pname = "plugins"; 157380 - version = "1.5.6.0"; 157381 - sha256 = "1l40i9n4iqsj2pw5kv7p8mkfg9vninplasz27zdgfs4hxd9pxl8q"; 157382 - revision = "1"; 157383 - editedCabalFile = "0l4sx1d9lgs6yr23dq4ccz1la9i94cz4nfvpdkpr5wni40mzl2m3"; 158177 + version = "1.5.7"; 158178 + sha256 = "1l9ymnsxvgjp7p2j5mvyygrsg7qf2yam1k4y3gz8s2l6kl78ri5f"; 157384 158179 libraryHaskellDepends = [ 157385 158180 array base Cabal containers directory filepath ghc ghc-paths 157386 158181 ghc-prim haskell-src process random 157387 158182 ]; 157388 - homepage = "http://hub.darcs.net/stepcut/plugins"; 158183 + homepage = "https://github.com/stepcut/plugins"; 157389 158184 description = "Dynamic linking for Haskell and C objects"; 157390 158185 license = stdenv.lib.licenses.bsd3; 157391 158186 hydraPlatforms = stdenv.lib.platforms.none; ··· 157597 158392 pname = "pointed"; 157598 158393 version = "5"; 157599 158394 sha256 = "05sxac90xv4j8glmf2mxs0smmv6vhia0qaaag5v37ar5a6pvh1l9"; 157600 - revision = "1"; 157601 - editedCabalFile = "170gqax34qch77zzqwq95z2lzq9da8gmfxg1vcll4aphhafwgzzp"; 158395 + revision = "2"; 158396 + editedCabalFile = "0x0x44mm29s3ycx17hw0clqvicbypf1w4r01gv3sbvzyy31qph7g"; 157602 158397 libraryHaskellDepends = [ 157603 158398 base comonad containers data-default-class hashable kan-extensions 157604 158399 semigroupoids semigroups stm tagged transformers ··· 157607 158402 homepage = "http://github.com/ekmett/pointed/"; 157608 158403 description = "Pointed and copointed data"; 157609 158404 license = stdenv.lib.licenses.bsd3; 158405 + }) {}; 158406 + 158407 + "pointed_5_0_1" = callPackage 158408 + ({ mkDerivation, base, comonad, containers, data-default-class 158409 + , hashable, kan-extensions, semigroupoids, semigroups, stm, tagged 158410 + , transformers, transformers-compat, unordered-containers 158411 + }: 158412 + mkDerivation { 158413 + pname = "pointed"; 158414 + version = "5.0.1"; 158415 + sha256 = "1p91a762xglckscnhpflxzav8byf49a02mli3983i4kpr2jkaimr"; 158416 + libraryHaskellDepends = [ 158417 + base comonad containers data-default-class hashable kan-extensions 158418 + semigroupoids semigroups stm tagged transformers 158419 + transformers-compat unordered-containers 158420 + ]; 158421 + homepage = "http://github.com/ekmett/pointed/"; 158422 + description = "Pointed and copointed data"; 158423 + license = stdenv.lib.licenses.bsd3; 158424 + hydraPlatforms = stdenv.lib.platforms.none; 157610 158425 }) {}; 157611 158426 157612 158427 "pointedalternative" = callPackage ··· 158117 158932 }: 158118 158933 mkDerivation { 158119 158934 pname = "pomaps"; 158120 - version = "0.0.0.2"; 158121 - sha256 = "1lsiwpyg5bl5si5ral8lin4hbgbczbf8b4jwd8v1nh2s9293rpb9"; 158935 + version = "0.0.0.3"; 158936 + sha256 = "1gxfaqcg6d9wkm67d8rrjvigy9kvvh9403v3jk790x9pfydcjvym"; 158122 158937 libraryHaskellDepends = [ 158123 158938 base containers deepseq ghc-prim lattices 158124 158939 ]; ··· 158920 159735 license = stdenv.lib.licenses.bsd3; 158921 159736 }) {inherit (pkgs) postgresql;}; 158922 159737 159738 + "postgresql-libpq_0_9_4_0" = callPackage 159739 + ({ mkDerivation, base, bytestring, postgresql, unix }: 159740 + mkDerivation { 159741 + pname = "postgresql-libpq"; 159742 + version = "0.9.4.0"; 159743 + sha256 = "15laa8m6i4girhr0i3xscgsl30iqj61mx5vbl67wasb8rwx0pi82"; 159744 + libraryHaskellDepends = [ base bytestring unix ]; 159745 + librarySystemDepends = [ postgresql ]; 159746 + homepage = "https://github.com/lpsmith/postgresql-libpq"; 159747 + description = "low-level binding to libpq"; 159748 + license = stdenv.lib.licenses.bsd3; 159749 + hydraPlatforms = stdenv.lib.platforms.none; 159750 + }) {inherit (pkgs) postgresql;}; 159751 + 158923 159752 "postgresql-named" = callPackage 158924 159753 ({ mkDerivation, base, bytestring, extra, generics-sop, hspec, mtl 158925 159754 , postgresql-libpq, postgresql-simple, utf8-string ··· 159945 160774 hydraPlatforms = stdenv.lib.platforms.none; 159946 160775 }) {}; 159947 160776 160777 + "prefix-expression" = callPackage 160778 + ({ mkDerivation, base, hspec, regex-pcre-builtin }: 160779 + mkDerivation { 160780 + pname = "prefix-expression"; 160781 + version = "1.2.2"; 160782 + sha256 = "0i0npw5wn8fa0ix91792bm249zdn5w146i44x0p6wqlx409b3837"; 160783 + libraryHaskellDepends = [ base regex-pcre-builtin ]; 160784 + testHaskellDepends = [ base hspec ]; 160785 + homepage = "https://github.com/VonFry/prefix-expression"; 160786 + license = stdenv.lib.licenses.bsd3; 160787 + }) {}; 160788 + 159948 160789 "prefix-units" = callPackage 159949 160790 ({ mkDerivation, base, Cabal, HUnit, QuickCheck, test-framework 159950 160791 , test-framework-hunit, test-framework-quickcheck2 ··· 160739 161580 license = stdenv.lib.licenses.bsd3; 160740 161581 }) {}; 160741 161582 161583 + "primitive_0_6_3_0" = callPackage 161584 + ({ mkDerivation, base, ghc-prim, transformers }: 161585 + mkDerivation { 161586 + pname = "primitive"; 161587 + version = "0.6.3.0"; 161588 + sha256 = "0mcmbnj08wd6zfwn7xk6zf5hy5zwbla5v78pw0dpymqg9s0gzpnd"; 161589 + libraryHaskellDepends = [ base ghc-prim transformers ]; 161590 + testHaskellDepends = [ base ghc-prim ]; 161591 + homepage = "https://github.com/haskell/primitive"; 161592 + description = "Primitive memory-related operations"; 161593 + license = stdenv.lib.licenses.bsd3; 161594 + hydraPlatforms = stdenv.lib.platforms.none; 161595 + }) {}; 161596 + 160742 161597 "primitive-simd" = callPackage 160743 161598 ({ mkDerivation, base, criterion, deepseq, ghc-prim, primitive 160744 161599 , random, vector ··· 161040 161895 license = stdenv.lib.licenses.mit; 161041 161896 }) {}; 161042 161897 161043 - "process_1_6_2_0" = callPackage 161898 + "process_1_6_3_0" = callPackage 161044 161899 ({ mkDerivation, base, bytestring, deepseq, directory, filepath 161045 161900 , unix 161046 161901 }: 161047 161902 mkDerivation { 161048 161903 pname = "process"; 161049 - version = "1.6.2.0"; 161050 - sha256 = "0gsyzwvid2w1z5m0w492sqb8q8c86q9wa7iqjadcdhbv8ag9z6xm"; 161904 + version = "1.6.3.0"; 161905 + sha256 = "0lxkl0gmyy2sn3r9c7dyz8vz1cm6nvygmgrizilliir5bp42m8cc"; 161051 161906 libraryHaskellDepends = [ base deepseq directory filepath unix ]; 161052 161907 testHaskellDepends = [ base bytestring directory ]; 161053 161908 description = "Process libraries"; ··· 164865 165720 pname = "quickcheck-special"; 164866 165721 version = "0.1.0.6"; 164867 165722 sha256 = "1dhwgy1jwglp4y3nbysr1i182415aibqlcsrvwxn2c5x162qjwwm"; 165723 + revision = "1"; 165724 + editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; 164868 165725 libraryHaskellDepends = [ base QuickCheck special-values ]; 164869 165726 homepage = "https://github.com/minad/quickcheck-special#readme"; 164870 165727 description = "Edge cases and special values for QuickCheck Arbitrary instances"; ··· 165783 166640 license = stdenv.lib.licenses.mit; 165784 166641 }) {}; 165785 166642 166643 + "rakuten_0_1_0_5" = callPackage 166644 + ({ mkDerivation, aeson, base, bytestring, connection, constraints 166645 + , data-default-class, extensible, hspec, http-api-data, http-client 166646 + , http-client-tls, http-types, lens, req, servant-server, text 166647 + , unordered-containers, warp 166648 + }: 166649 + mkDerivation { 166650 + pname = "rakuten"; 166651 + version = "0.1.0.5"; 166652 + sha256 = "1197vkml0pvrdqvh55bvsb52rzqfj6p6vrpihr5ci7flp4h9wkp1"; 166653 + libraryHaskellDepends = [ 166654 + aeson base bytestring connection constraints data-default-class 166655 + extensible http-api-data http-client http-client-tls http-types 166656 + lens req text unordered-containers 166657 + ]; 166658 + testHaskellDepends = [ 166659 + aeson base bytestring connection constraints data-default-class 166660 + extensible hspec http-api-data http-client http-client-tls 166661 + http-types lens req servant-server text unordered-containers warp 166662 + ]; 166663 + homepage = "https://github.com/matsubara0507/rakuten#readme"; 166664 + description = "The Rakuten API in Haskell"; 166665 + license = stdenv.lib.licenses.mit; 166666 + hydraPlatforms = stdenv.lib.platforms.none; 166667 + }) {}; 166668 + 165786 166669 "ralist" = callPackage 165787 166670 ({ mkDerivation, base, criterion, deepseq, hspec }: 165788 166671 mkDerivation { ··· 167754 168637 license = stdenv.lib.licenses.mit; 167755 168638 }) {}; 167756 168639 167757 - "rebase_1_2_2" = callPackage 168640 + "rebase_1_2_3" = callPackage 167758 168641 ({ mkDerivation, base, base-prelude, bifunctors, bytestring 167759 168642 , containers, contravariant, contravariant-extras, deepseq, dlist 167760 168643 , either, fail, hashable, mtl, profunctors, scientific ··· 167763 168646 }: 167764 168647 mkDerivation { 167765 168648 pname = "rebase"; 167766 - version = "1.2.2"; 167767 - sha256 = "11p4wg2xissj4xzw80dww2srj2ylgw3wlnapykizy2fwjl1az9k4"; 168649 + version = "1.2.3"; 168650 + sha256 = "1glnxvgf79qm2iz4xxdn6zygjff42cyakk1nah2wrzkkrr11axqk"; 167768 168651 libraryHaskellDepends = [ 167769 168652 base base-prelude bifunctors bytestring containers contravariant 167770 168653 contravariant-extras deepseq dlist either fail hashable mtl ··· 170802 171685 }: 170803 171686 mkDerivation { 170804 171687 pname = "reqcatcher"; 170805 - version = "0.1.0.0"; 170806 - sha256 = "0lcismi3aj6h2s2snv80w2pdk389zffd0cjrbd2y9285vw401mvm"; 171688 + version = "0.1.0.1"; 171689 + sha256 = "1ywh83ydy48mlix7mglnkhsjj3b13jqs2gs52by6q1g438nb31in"; 170807 171690 libraryHaskellDepends = [ base http-types network text wai warp ]; 170808 171691 testHaskellDepends = [ 170809 171692 base http-client http-types HUnit lens tasty tasty-hunit wai wreq ··· 171171 172054 license = stdenv.lib.licenses.bsd3; 171172 172055 }) {}; 171173 172056 172057 + "rest-client_0_5_2_1" = callPackage 172058 + ({ mkDerivation, aeson-utils, base, bytestring, case-insensitive 172059 + , data-default, exceptions, http-client, http-conduit, http-types 172060 + , hxt, hxt-pickle-utils, monad-control, mtl, resourcet, rest-types 172061 + , tostring, transformers, transformers-base, transformers-compat 172062 + , uri-encode, utf8-string 172063 + }: 172064 + mkDerivation { 172065 + pname = "rest-client"; 172066 + version = "0.5.2.1"; 172067 + sha256 = "0axilkrqjbq1l30cnm05fl0mm3ngnijnxgl6idi6mcydyrdgl14n"; 172068 + libraryHaskellDepends = [ 172069 + aeson-utils base bytestring case-insensitive data-default 172070 + exceptions http-client http-conduit http-types hxt hxt-pickle-utils 172071 + monad-control mtl resourcet rest-types tostring transformers 172072 + transformers-base transformers-compat uri-encode utf8-string 172073 + ]; 172074 + description = "Utility library for use in generated API client libraries"; 172075 + license = stdenv.lib.licenses.bsd3; 172076 + hydraPlatforms = stdenv.lib.platforms.none; 172077 + }) {}; 172078 + 171174 172079 "rest-core" = callPackage 171175 172080 ({ mkDerivation, aeson, aeson-utils, base, base-compat, bytestring 171176 172081 , case-insensitive, errors, fclabels, HUnit, hxt, hxt-pickle-utils ··· 171741 172646 homepage = "https://github.com/RobertFischer/rfc#README.md"; 171742 172647 description = "Robert Fischer's Common library, for all Robert Fischer's common needs"; 171743 172648 license = stdenv.lib.licenses.bsd3; 172649 + hydraPlatforms = stdenv.lib.platforms.none; 171744 172650 }) {}; 171745 172651 171746 172652 "rfc1413-server" = callPackage ··· 172062 172968 }: 172063 172969 mkDerivation { 172064 172970 pname = "rio"; 172065 - version = "0.0.0.0"; 172066 - sha256 = "168v27a9m98qcychn4rwrb67sfqs4s1brg79q1fqanpjjqslh8id"; 172971 + version = "0.0.1.0"; 172972 + sha256 = "006avzlv6ghwang3dhllxj7absa32sxw2qss2wdf3hxqbij6fy0b"; 172067 172973 libraryHaskellDepends = [ 172068 172974 base bytestring containers deepseq directory exceptions filepath 172069 172975 hashable microlens mtl text time typed-process unix unliftio 172070 172976 unordered-containers vector 172071 172977 ]; 172978 + homepage = "https://github.com/commercialhaskell/rio#readme"; 172072 172979 description = "A standard library for Haskell"; 172073 172980 license = stdenv.lib.licenses.mit; 172074 172981 hydraPlatforms = stdenv.lib.platforms.none; ··· 173367 174274 }: 173368 174275 mkDerivation { 173369 174276 pname = "rtcm"; 173370 - version = "0.2.13"; 173371 - sha256 = "06xxkm2h6kf6j90987p33nk54bbvwmrf81ywkdj0bvy0payiiyms"; 174277 + version = "0.2.14"; 174278 + sha256 = "1ypwxlfmlhx3zjmgi24y5mriprk9wjnc14l0lry38j4ml11glcsd"; 173372 174279 isLibrary = true; 173373 174280 isExecutable = true; 173374 174281 libraryHaskellDepends = [ ··· 173877 174784 pname = "safe-exceptions-checked"; 173878 174785 version = "0.1.0"; 173879 174786 sha256 = "0gyaq2pf87dqn0l6n3mi0qamf99y3zj5xxh513c0iqwdh8mma1yq"; 173880 - revision = "2"; 173881 - editedCabalFile = "18fwk5yr8zm4y215vbsl149jkn9pxyv3m8mgq3979pvs1c4kqivz"; 174787 + revision = "3"; 174788 + editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f"; 173882 174789 libraryHaskellDepends = [ 173883 174790 base deepseq safe-exceptions transformers 173884 174791 ]; ··· 174887 175794 license = stdenv.lib.licenses.lgpl3; 174888 175795 }) {}; 174889 175796 175797 + "sbp_2_3_5" = callPackage 175798 + ({ mkDerivation, aeson, array, base, base64-bytestring 175799 + , basic-prelude, binary, binary-conduit, bytestring, conduit 175800 + , conduit-extra, data-binary-ieee754, lens, lens-aeson, monad-loops 175801 + , resourcet, tasty, tasty-hunit, template-haskell, text, yaml 175802 + }: 175803 + mkDerivation { 175804 + pname = "sbp"; 175805 + version = "2.3.5"; 175806 + sha256 = "11jyvlpgy05y5602pi8mxpdrc1jg0lgaam2ijhyh7g33696rclgs"; 175807 + isLibrary = true; 175808 + isExecutable = true; 175809 + libraryHaskellDepends = [ 175810 + aeson array base base64-bytestring basic-prelude binary bytestring 175811 + data-binary-ieee754 lens lens-aeson monad-loops template-haskell 175812 + text 175813 + ]; 175814 + executableHaskellDepends = [ 175815 + aeson base basic-prelude binary-conduit bytestring conduit 175816 + conduit-extra resourcet yaml 175817 + ]; 175818 + testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; 175819 + homepage = "https://github.com/swift-nav/libsbp"; 175820 + description = "SwiftNav's SBP Library"; 175821 + license = stdenv.lib.licenses.lgpl3; 175822 + hydraPlatforms = stdenv.lib.platforms.none; 175823 + }) {}; 175824 + 174890 175825 "sbp2udp" = callPackage 174891 175826 ({ mkDerivation, base, basic-prelude, binary, binary-conduit 174892 175827 , bytestring, conduit, conduit-extra, network, optparse-generic ··· 178648 179583 license = stdenv.lib.licenses.bsd3; 178649 179584 }) {}; 178650 179585 179586 + "servant-exceptions_0_1_1" = callPackage 179587 + ({ mkDerivation, aeson, base, exceptions, http-media, http-types 179588 + , mtl, servant, servant-server, text, wai, warp 179589 + }: 179590 + mkDerivation { 179591 + pname = "servant-exceptions"; 179592 + version = "0.1.1"; 179593 + sha256 = "1qdb6ins7l0ryyrmg9j5pw428rlhkmzpbq5jqawfn01j8vf9yav5"; 179594 + isLibrary = true; 179595 + isExecutable = true; 179596 + libraryHaskellDepends = [ 179597 + aeson base exceptions http-media http-types mtl servant 179598 + servant-server text wai 179599 + ]; 179600 + executableHaskellDepends = [ 179601 + aeson base exceptions http-types servant-server text warp 179602 + ]; 179603 + homepage = "https://github.com/ch1bo/servant-exceptions#readme"; 179604 + license = stdenv.lib.licenses.bsd3; 179605 + hydraPlatforms = stdenv.lib.platforms.none; 179606 + }) {}; 179607 + 178651 179608 "servant-foreign" = callPackage 178652 179609 ({ mkDerivation, base, hspec, http-types, lens, servant, text }: 178653 179610 mkDerivation { ··· 178862 179819 homepage = "https://github.com/matsubara0507/servant-kotlin#readme"; 178863 179820 description = "Automatically derive Kotlin class to query servant webservices"; 178864 179821 license = stdenv.lib.licenses.mit; 179822 + }) {}; 179823 + 179824 + "servant-kotlin_0_1_0_3" = callPackage 179825 + ({ mkDerivation, aeson, base, containers, directory, formatting 179826 + , hspec, http-api-data, lens, servant, servant-foreign, shelly 179827 + , text, time, wl-pprint-text 179828 + }: 179829 + mkDerivation { 179830 + pname = "servant-kotlin"; 179831 + version = "0.1.0.3"; 179832 + sha256 = "1idki7vf2yph8sndpl8r9a5cngix3163yxb73l5l5fm9a78pk5gd"; 179833 + libraryHaskellDepends = [ 179834 + base containers directory formatting lens servant servant-foreign 179835 + text time wl-pprint-text 179836 + ]; 179837 + testHaskellDepends = [ 179838 + aeson base containers directory formatting hspec http-api-data lens 179839 + servant servant-foreign text time wl-pprint-text 179840 + ]; 179841 + benchmarkHaskellDepends = [ 179842 + aeson base containers directory formatting http-api-data lens 179843 + servant servant-foreign shelly text time wl-pprint-text 179844 + ]; 179845 + homepage = "https://github.com/matsubara0507/servant-kotlin#readme"; 179846 + description = "Automatically derive Kotlin class to query servant webservices"; 179847 + license = stdenv.lib.licenses.mit; 179848 + hydraPlatforms = stdenv.lib.platforms.none; 178865 179849 }) {}; 178866 179850 178867 179851 "servant-lucid" = callPackage ··· 179593 180577 license = stdenv.lib.licenses.bsd3; 179594 180578 }) {}; 179595 180579 180580 + "servant-websockets_1_1_0" = callPackage 180581 + ({ mkDerivation, aeson, async, base, bytestring, conduit 180582 + , exceptions, resourcet, servant-server, text, wai, wai-websockets 180583 + , warp, websockets 180584 + }: 180585 + mkDerivation { 180586 + pname = "servant-websockets"; 180587 + version = "1.1.0"; 180588 + sha256 = "0l8a5zc6wiwdfxv2kirb7kxky4zwj71rcrrg1zh07gc3vf4lqf33"; 180589 + isLibrary = true; 180590 + isExecutable = true; 180591 + libraryHaskellDepends = [ 180592 + aeson async base bytestring conduit exceptions resourcet 180593 + servant-server text wai wai-websockets warp websockets 180594 + ]; 180595 + executableHaskellDepends = [ 180596 + aeson base conduit servant-server text wai warp websockets 180597 + ]; 180598 + homepage = "https://github.com/moesenle/servant-websockets#readme"; 180599 + description = "Small library providing WebSocket endpoints for servant"; 180600 + license = stdenv.lib.licenses.bsd3; 180601 + hydraPlatforms = stdenv.lib.platforms.none; 180602 + }) {}; 180603 + 179596 180604 "servant-yaml" = callPackage 179597 180605 ({ mkDerivation, aeson, base, base-compat, bytestring, http-media 179598 180606 , servant, servant-server, wai, warp, yaml ··· 179726 180734 }: 179727 180735 mkDerivation { 179728 180736 pname = "serverless-haskell"; 179729 - version = "0.3.0"; 179730 - sha256 = "0fvm7nsk3401xdh81gb7jc35k5phc1gfs7dd1gal48ryjc89p2sj"; 180737 + version = "0.3.1"; 180738 + sha256 = "1s4b0x6hs0dighmqgpwnifhy7w5cszd207lwwryn2qp1zq463i2h"; 179731 180739 libraryHaskellDepends = [ 179732 180740 aeson aeson-casing amazonka-core amazonka-kinesis amazonka-s3 base 179733 180741 bytestring lens text time unix unordered-containers ··· 180644 181652 license = stdenv.lib.licenses.bsd3; 180645 181653 }) {}; 180646 181654 181655 + "shake-ats" = callPackage 181656 + ({ mkDerivation, base, directory, language-ats, shake, shake-ext 181657 + , text 181658 + }: 181659 + mkDerivation { 181660 + pname = "shake-ats"; 181661 + version = "0.1.0.3"; 181662 + sha256 = "05qsmdm1sdfw7zg6s0sfabkqrgi8jgxrvabnpikcbx7rjvaqjh7i"; 181663 + libraryHaskellDepends = [ 181664 + base directory language-ats shake shake-ext text 181665 + ]; 181666 + homepage = "https://github.com/vmchale/shake-ats#readme"; 181667 + description = "Utilities for building ATS projects with shake"; 181668 + license = stdenv.lib.licenses.bsd3; 181669 + }) {}; 181670 + 180647 181671 "shake-cabal-build" = callPackage 180648 181672 ({ mkDerivation, base, Cabal, directory, filepath, process }: 180649 181673 mkDerivation { ··· 180662 181686 }) {}; 180663 181687 180664 181688 "shake-ext" = callPackage 180665 - ({ mkDerivation, base, composition-prelude, language-ats, shake }: 181689 + ({ mkDerivation, base, composition-prelude, directory, language-ats 181690 + , mtl, shake, text 181691 + }: 180666 181692 mkDerivation { 180667 181693 pname = "shake-ext"; 180668 - version = "0.3.1.3"; 180669 - sha256 = "0yz8d4jycgr32sspdda1zy4z61bj91xi40dcr084w11z00a3yhms"; 181694 + version = "1.4.0.1"; 181695 + sha256 = "12rrrabi4vz7ajjw66kx52lgyybjhmp5aybk7d66sl2bql7phndc"; 180670 181696 libraryHaskellDepends = [ 180671 - base composition-prelude language-ats shake 181697 + base composition-prelude directory language-ats mtl shake text 180672 181698 ]; 180673 181699 homepage = "https://hub.darcs.net/vmchale/shake-ext"; 180674 181700 description = "Helper functions for linting with shake"; ··· 180807 181833 }: 180808 181834 mkDerivation { 180809 181835 pname = "shakers"; 180810 - version = "0.0.38"; 180811 - sha256 = "08wnf9cv4qsrnx2m3l1nfh74q6i14ng2js4h7gj3z5dv1ki3xwm9"; 181836 + version = "0.0.40"; 181837 + sha256 = "0jlihrgg0c2ksbj2dkzsp6c83m66dxdsy3993xpa018idjsm3cf9"; 180812 181838 isLibrary = true; 180813 181839 isExecutable = true; 180814 181840 libraryHaskellDepends = [ ··· 181276 182302 hydraPlatforms = stdenv.lib.platforms.none; 181277 182303 }) {}; 181278 182304 182305 + "shelly_1_7_0_1" = callPackage 182306 + ({ mkDerivation, async, base, bytestring, containers, directory 182307 + , enclosed-exceptions, exceptions, filepath, hspec, HUnit 182308 + , lifted-async, lifted-base, monad-control, mtl, process 182309 + , system-fileio, system-filepath, text, time, transformers 182310 + , transformers-base, unix-compat 182311 + }: 182312 + mkDerivation { 182313 + pname = "shelly"; 182314 + version = "1.7.0.1"; 182315 + sha256 = "0a4ngy8jqcscqhimgiyz7f9kqm23is7x7gyjxr0j6iq1dy57ahq3"; 182316 + isLibrary = true; 182317 + isExecutable = true; 182318 + libraryHaskellDepends = [ 182319 + async base bytestring containers directory enclosed-exceptions 182320 + exceptions lifted-async lifted-base monad-control mtl process 182321 + system-fileio system-filepath text time transformers 182322 + transformers-base unix-compat 182323 + ]; 182324 + testHaskellDepends = [ 182325 + async base bytestring containers directory enclosed-exceptions 182326 + exceptions filepath hspec HUnit lifted-async lifted-base 182327 + monad-control mtl process system-fileio system-filepath text time 182328 + transformers transformers-base unix-compat 182329 + ]; 182330 + homepage = "https://github.com/yesodweb/Shelly.hs"; 182331 + description = "shell-like (systems) programming in Haskell"; 182332 + license = stdenv.lib.licenses.bsd3; 182333 + hydraPlatforms = stdenv.lib.platforms.none; 182334 + }) {}; 182335 + 181279 182336 "shelly-extra" = callPackage 181280 182337 ({ mkDerivation, async, base, hspec, HUnit, mtl, SafeSemaphore 181281 182338 , shelly, text ··· 181807 182864 homepage = "http://code.haskell.org/~bkomuves/"; 181808 182865 description = "Thom polynomials of second order Thom-Boardman singularities"; 181809 182866 license = stdenv.lib.licenses.bsd3; 182867 + hydraPlatforms = stdenv.lib.platforms.none; 181810 182868 }) {}; 181811 182869 181812 182870 "sign" = callPackage ··· 183919 184977 }: 183920 184978 mkDerivation { 183921 184979 pname = "smallcaps"; 183922 - version = "0.6.0.4"; 183923 - sha256 = "1lw5zzfpizwrbpm981xr7sx1ac7iwkhwp541g276sszq927ls8n5"; 184980 + version = "0.6.0.5"; 184981 + sha256 = "06cqknha64gmf3rjjmcr3358fd5rii6xlgph5fvan0h25cnlk7nw"; 183924 184982 isLibrary = true; 183925 184983 isExecutable = true; 183926 184984 libraryHaskellDepends = [ ··· 186722 187780 }: 186723 187781 mkDerivation { 186724 187782 pname = "spake2"; 186725 - version = "0.4.1"; 186726 - sha256 = "0b9zs1mp7r8y1w79z1w7kpj84jyryhvy7md9ikihnl80cvnl6p7c"; 187783 + version = "0.4.2"; 187784 + sha256 = "02zvlh7pva2d2k56n3070wdp4chv6avhwzn7mg2zax1mzswd21r4"; 186727 187785 isLibrary = true; 186728 187786 isExecutable = true; 186729 187787 enableSeparateDataOutput = true; ··· 186787 187845 description = "Distributed Apache Spark applications in Haskell"; 186788 187846 license = stdenv.lib.licenses.bsd3; 186789 187847 hydraPlatforms = stdenv.lib.platforms.none; 187848 + }) {}; 187849 + 187850 + "sparql-protocol" = callPackage 187851 + ({ mkDerivation, aeson, base, bytestring, containers, exceptions 187852 + , http-client, lens, text, wreq 187853 + }: 187854 + mkDerivation { 187855 + pname = "sparql-protocol"; 187856 + version = "1.1.0.0"; 187857 + sha256 = "0nzgficvcbidxgsga106kgzwavf92qb75b6cd49fbp0fmw02krj7"; 187858 + libraryHaskellDepends = [ 187859 + aeson base bytestring containers exceptions http-client lens text 187860 + wreq 187861 + ]; 187862 + testHaskellDepends = [ base ]; 187863 + homepage = "https://github.com/ardamose123/sparql-protocol"; 187864 + description = "An SPARQL 1.1 Protocol client library."; 187865 + license = stdenv.lib.licenses.gpl3; 186790 187866 }) {}; 186791 187867 186792 187868 "sparse" = callPackage ··· 187406 188482 license = stdenv.lib.licenses.bsd3; 187407 188483 }) {}; 187408 188484 188485 + "split_0_2_3_3" = callPackage 188486 + ({ mkDerivation, base, QuickCheck }: 188487 + mkDerivation { 188488 + pname = "split"; 188489 + version = "0.2.3.3"; 188490 + sha256 = "04qlmkcyklznl03gsjg95b4nzb6i96gdapqg60rny9szgi7ngk8x"; 188491 + libraryHaskellDepends = [ base ]; 188492 + testHaskellDepends = [ base QuickCheck ]; 188493 + description = "Combinator library for splitting lists"; 188494 + license = stdenv.lib.licenses.bsd3; 188495 + hydraPlatforms = stdenv.lib.platforms.none; 188496 + }) {}; 188497 + 187409 188498 "split-channel" = callPackage 187410 188499 ({ mkDerivation, base }: 187411 188500 mkDerivation { ··· 190856 191945 }: 190857 191946 mkDerivation { 190858 191947 pname = "streaming-cassava"; 190859 - version = "0.1.0.0"; 190860 - sha256 = "17swzhq069rr041l33bwa5ybx1j6w9lvh3l3xs40m842njli2bac"; 191948 + version = "0.1.0.1"; 191949 + sha256 = "0dr58azgyw7ihxrabva7fh0yafq2kx12yvap4jl6ljnlwvcapa5i"; 190861 191950 libraryHaskellDepends = [ 190862 191951 base bytestring cassava mtl streaming streaming-bytestring 190863 191952 transformers ··· 191699 192788 license = stdenv.lib.licenses.mit; 191700 192789 }) {}; 191701 192790 192791 + "stripe-core_2_3_0" = callPackage 192792 + ({ mkDerivation, aeson, base, bytestring, mtl, text, time 192793 + , transformers, unordered-containers 192794 + }: 192795 + mkDerivation { 192796 + pname = "stripe-core"; 192797 + version = "2.3.0"; 192798 + sha256 = "08656c3s9326kgppwiys7whil47yw6qibjzmivjzykh6858j0kfm"; 192799 + libraryHaskellDepends = [ 192800 + aeson base bytestring mtl text time transformers 192801 + unordered-containers 192802 + ]; 192803 + homepage = "https://github.com/dmjio/stripe-haskell"; 192804 + description = "Stripe API for Haskell - Pure Core"; 192805 + license = stdenv.lib.licenses.mit; 192806 + hydraPlatforms = stdenv.lib.platforms.none; 192807 + }) {}; 192808 + 191702 192809 "stripe-haskell" = callPackage 191703 192810 ({ mkDerivation, base, stripe-core, stripe-http-streams }: 191704 192811 mkDerivation { ··· 191711 192818 license = stdenv.lib.licenses.mit; 191712 192819 }) {}; 191713 192820 192821 + "stripe-haskell_2_3_0" = callPackage 192822 + ({ mkDerivation, base, stripe-core, stripe-http-streams }: 192823 + mkDerivation { 192824 + pname = "stripe-haskell"; 192825 + version = "2.3.0"; 192826 + sha256 = "18358axxx2rkv06bh1n48hsx3bh3bj4h3xx1ma3hvv68l9cprwsm"; 192827 + libraryHaskellDepends = [ base stripe-core stripe-http-streams ]; 192828 + homepage = "https://github.com/dmjio/stripe"; 192829 + description = "Stripe API for Haskell"; 192830 + license = stdenv.lib.licenses.mit; 192831 + hydraPlatforms = stdenv.lib.platforms.none; 192832 + }) {}; 192833 + 191714 192834 "stripe-http-streams" = callPackage 191715 192835 ({ mkDerivation, aeson, base, bytestring, free, HsOpenSSL, hspec 191716 192836 , http-streams, io-streams, stripe-core, stripe-tests, text ··· 191731 192851 license = stdenv.lib.licenses.mit; 191732 192852 }) {}; 191733 192853 192854 + "stripe-http-streams_2_3_0" = callPackage 192855 + ({ mkDerivation, aeson, base, bytestring, free, HsOpenSSL, hspec 192856 + , http-streams, io-streams, stripe-core, stripe-tests, text 192857 + }: 192858 + mkDerivation { 192859 + pname = "stripe-http-streams"; 192860 + version = "2.3.0"; 192861 + sha256 = "0nn244ghmyibdrvzfz9k8skhsfh47sh8g34v1c63rkswqb4wpnsp"; 192862 + libraryHaskellDepends = [ 192863 + aeson base bytestring HsOpenSSL http-streams io-streams stripe-core 192864 + text 192865 + ]; 192866 + testHaskellDepends = [ 192867 + base free HsOpenSSL hspec http-streams stripe-core stripe-tests 192868 + ]; 192869 + doCheck = false; 192870 + description = "Stripe API for Haskell - http-streams backend"; 192871 + license = stdenv.lib.licenses.mit; 192872 + hydraPlatforms = stdenv.lib.platforms.none; 192873 + }) {}; 192874 + 191734 192875 "stripe-tests" = callPackage 191735 192876 ({ mkDerivation, aeson, base, bytestring, free, hspec, hspec-core 191736 192877 , mtl, random, stripe-core, text, time, transformers ··· 191747 192888 homepage = "https://github.com/dmjio/stripe-haskell"; 191748 192889 description = "Tests for Stripe API bindings for Haskell"; 191749 192890 license = stdenv.lib.licenses.mit; 192891 + }) {}; 192892 + 192893 + "stripe-tests_2_3_0" = callPackage 192894 + ({ mkDerivation, aeson, base, bytestring, free, hspec, hspec-core 192895 + , mtl, random, stripe-core, text, time, transformers 192896 + , unordered-containers 192897 + }: 192898 + mkDerivation { 192899 + pname = "stripe-tests"; 192900 + version = "2.3.0"; 192901 + sha256 = "14j0zvnrl0s2br0vwpm105wscdyddan62iqwrf0fg8c4mj6kpfrw"; 192902 + libraryHaskellDepends = [ 192903 + aeson base bytestring free hspec hspec-core mtl random stripe-core 192904 + text time transformers unordered-containers 192905 + ]; 192906 + homepage = "https://github.com/dmjio/stripe-haskell"; 192907 + description = "Tests for Stripe API bindings for Haskell"; 192908 + license = stdenv.lib.licenses.mit; 192909 + hydraPlatforms = stdenv.lib.platforms.none; 191750 192910 }) {}; 191751 192911 191752 192912 "strips" = callPackage ··· 195052 196212 license = stdenv.lib.licenses.bsd3; 195053 196213 }) {}; 195054 196214 196215 + "tagsoup_0_14_3" = callPackage 196216 + ({ mkDerivation, base, bytestring, containers, deepseq, directory 196217 + , process, QuickCheck, text, time 196218 + }: 196219 + mkDerivation { 196220 + pname = "tagsoup"; 196221 + version = "0.14.3"; 196222 + sha256 = "00j2rm2sx0syn16kg2402fz4k8yqfl9knmi367jsiycds1q9zzf9"; 196223 + libraryHaskellDepends = [ base bytestring containers text ]; 196224 + testHaskellDepends = [ 196225 + base bytestring deepseq directory process QuickCheck time 196226 + ]; 196227 + homepage = "https://github.com/ndmitchell/tagsoup#readme"; 196228 + description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; 196229 + license = stdenv.lib.licenses.bsd3; 196230 + hydraPlatforms = stdenv.lib.platforms.none; 196231 + }) {}; 196232 + 195055 196233 "tagsoup-ht" = callPackage 195056 196234 ({ mkDerivation, base, bytestring, containers, data-accessor 195057 196235 , explicit-exception, old-time, tagsoup, transformers, utility-ht ··· 195445 196623 license = stdenv.lib.licenses.mit; 195446 196624 }) {}; 195447 196625 196626 + "tar-conduit_0_2_0" = callPackage 196627 + ({ mkDerivation, base, bytestring, conduit, conduit-combinators 196628 + , containers, criterion, deepseq, directory, filepath, hspec, unix 196629 + , weigh 196630 + }: 196631 + mkDerivation { 196632 + pname = "tar-conduit"; 196633 + version = "0.2.0"; 196634 + sha256 = "01fqvm5wji1rgivqri0prp3k3drhr3gmmlcwy0v4qcwdhwgi0r2r"; 196635 + libraryHaskellDepends = [ 196636 + base bytestring conduit-combinators directory filepath unix 196637 + ]; 196638 + testHaskellDepends = [ 196639 + base bytestring conduit conduit-combinators containers deepseq 196640 + directory filepath hspec weigh 196641 + ]; 196642 + benchmarkHaskellDepends = [ 196643 + base bytestring conduit conduit-combinators containers criterion 196644 + deepseq directory filepath hspec 196645 + ]; 196646 + homepage = "https://github.com/snoyberg/tar-conduit#readme"; 196647 + description = "Extract and create tar files using conduit for streaming"; 196648 + license = stdenv.lib.licenses.mit; 196649 + hydraPlatforms = stdenv.lib.platforms.none; 196650 + }) {}; 196651 + 195448 196652 "tardis" = callPackage 195449 196653 ({ mkDerivation, base, mmorph, mtl }: 195450 196654 mkDerivation { ··· 195844 197048 pname = "tasty-hspec"; 195845 197049 version = "1.1.3.2"; 195846 197050 sha256 = "0n4pn89jz9i8d7mxsdp6ynwkg5gjyaipdy261parx64m3nxi4vcv"; 195847 - revision = "2"; 195848 - editedCabalFile = "1si8bkb5rqx0hfm2y52676x7d4zr4mpgd82sqp7na57f0w2j8hg2"; 197051 + revision = "3"; 197052 + editedCabalFile = "1qyk0mrzy4nv175xhva1wp7dchx7jnzb5p32bc0vd8pxz19pfljm"; 195849 197053 libraryHaskellDepends = [ 195850 197054 base hspec hspec-core QuickCheck random tagged tasty 195851 197055 tasty-quickcheck tasty-smallcheck ··· 196548 197752 }) {}; 196549 197753 196550 197754 "telegram-api" = callPackage 196551 - ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, filepath 196552 - , hjpath, hspec, http-api-data, http-client, http-client-tls 196553 - , http-media, http-types, mime-types, mtl, optparse-applicative 196554 - , random, servant, servant-client, string-conversions, text 196555 - , transformers, utf8-string 197755 + ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring 197756 + , containers, filepath, hjpath, hspec, http-api-data, http-client 197757 + , http-client-tls, http-media, http-types, mime-types, mtl 197758 + , optparse-applicative, random, servant, servant-client 197759 + , servant-client-core, string-conversions, text, transformers 197760 + , utf8-string 196556 197761 }: 196557 197762 mkDerivation { 196558 197763 pname = "telegram-api"; 196559 - version = "0.7.1.0"; 196560 - sha256 = "0shb5al3ih6qrs2aw1h03mfqk954gml1lnyh6svzcsz9z6f7hvbb"; 197764 + version = "0.7.2.0"; 197765 + sha256 = "1aixgyxz3izv9z3zwwsbvdnlg4lrhy7aa33zw98v70072a0rqaj2"; 196561 197766 enableSeparateDataOutput = true; 196562 197767 libraryHaskellDepends = [ 196563 - aeson base bytestring http-api-data http-client http-media 196564 - http-types mime-types mtl servant servant-client string-conversions 196565 - text transformers 197768 + aeson base bytestring containers http-api-data http-client 197769 + http-media http-types mime-types mtl servant servant-client 197770 + servant-client-core string-conversions text transformers 196566 197771 ]; 196567 197772 testHaskellDepends = [ 196568 197773 aeson ansi-wl-pprint base filepath hjpath hspec http-client 196569 197774 http-client-tls http-types optparse-applicative random servant 196570 - servant-client text transformers utf8-string 197775 + servant-client servant-client-core text transformers utf8-string 196571 197776 ]; 196572 197777 homepage = "http://github.com/klappvisor/haskell-telegram-api#readme"; 196573 197778 description = "Telegram Bot API bindings"; ··· 197338 198543 license = stdenv.lib.licenses.bsd3; 197339 198544 }) {}; 197340 198545 198546 + "terminal-progress-bar_0_1_2" = callPackage 198547 + ({ mkDerivation, async, base, HUnit, stm, stm-chans, terminal-size 198548 + , test-framework, test-framework-hunit 198549 + }: 198550 + mkDerivation { 198551 + pname = "terminal-progress-bar"; 198552 + version = "0.1.2"; 198553 + sha256 = "1r4i8h4625f4ixnppx3ng5lsay4msdgqy0mzl3p1z57aqxg1l84l"; 198554 + isLibrary = true; 198555 + isExecutable = true; 198556 + libraryHaskellDepends = [ async base stm stm-chans terminal-size ]; 198557 + testHaskellDepends = [ 198558 + base HUnit test-framework test-framework-hunit 198559 + ]; 198560 + homepage = "https://github.com/roelvandijk/terminal-progress-bar"; 198561 + description = "A simple progress bar in the terminal"; 198562 + license = stdenv.lib.licenses.bsd3; 198563 + hydraPlatforms = stdenv.lib.platforms.none; 198564 + }) {}; 198565 + 197341 198566 "terminal-size" = callPackage 197342 198567 ({ mkDerivation, base }: 197343 198568 mkDerivation { ··· 197362 198587 hydraPlatforms = stdenv.lib.platforms.none; 197363 198588 }) {}; 197364 198589 197365 - "terminfo_0_4_1_0" = callPackage 198590 + "terminfo_0_4_1_1" = callPackage 197366 198591 ({ mkDerivation, base, ncurses }: 197367 198592 mkDerivation { 197368 198593 pname = "terminfo"; 197369 - version = "0.4.1.0"; 197370 - sha256 = "0pgzx7byi4p2fwk6hcqnbs59bv4igzmhfkr5wrkkfsh4msqxflrz"; 198594 + version = "0.4.1.1"; 198595 + sha256 = "1pfd2vdk298v23af2zqcl66xxivrzwjjpdf3dr0fa0isl70fi3hp"; 197371 198596 libraryHaskellDepends = [ base ]; 197372 198597 librarySystemDepends = [ ncurses ]; 197373 198598 homepage = "https://github.com/judah/terminfo"; ··· 200674 201899 hydraPlatforms = stdenv.lib.platforms.none; 200675 201900 }) {}; 200676 201901 200677 - "time_1_8_0_4" = callPackage 201902 + "time_1_9" = callPackage 200678 201903 ({ mkDerivation, base, deepseq, QuickCheck, random, tasty 200679 201904 , tasty-hunit, tasty-quickcheck, unix 200680 201905 }: 200681 201906 mkDerivation { 200682 201907 pname = "time"; 200683 - version = "1.8.0.4"; 200684 - sha256 = "18m58vj490pk6vxfpda5r2rc1vkv0gy5sqgp5nhql0562m5xi8mk"; 201908 + version = "1.9"; 201909 + sha256 = "13nfiwsh1bq4w9rwmqm1iy9kxwrqbi82qpqlpcd02ywklh21silx"; 200685 201910 libraryHaskellDepends = [ base deepseq ]; 200686 201911 testHaskellDepends = [ 200687 201912 base deepseq QuickCheck random tasty tasty-hunit tasty-quickcheck ··· 205234 206459 license = stdenv.lib.licenses.bsd3; 205235 206460 }) {}; 205236 206461 205237 - "type-combinators-singletons_0_2_0_0" = callPackage 206462 + "type-combinators-singletons_0_2_1_0" = callPackage 205238 206463 ({ mkDerivation, base, singletons, type-combinators }: 205239 206464 mkDerivation { 205240 206465 pname = "type-combinators-singletons"; 205241 - version = "0.2.0.0"; 205242 - sha256 = "0mqg2c36z22zdjgmix54xfj9d218ypwjgvhvhxlhzw5x0ka506s5"; 206466 + version = "0.2.1.0"; 206467 + sha256 = "00cwlfcka2d1wcp7159r3sk3gz852dmc71jvjfr8bn1rrr781n0q"; 205243 206468 libraryHaskellDepends = [ base singletons type-combinators ]; 205244 206469 homepage = "https://github.com/mstksg/type-combinators-singletons"; 205245 206470 description = "Interop between /type-combinators/ and /singletons/"; ··· 205996 207221 license = stdenv.lib.licenses.mit; 205997 207222 }) {}; 205998 207223 205999 - "typelits-witnesses_0_3_0_0" = callPackage 207224 + "typelits-witnesses_0_3_0_1" = callPackage 206000 207225 ({ mkDerivation, base, base-compat, constraints, reflection 206001 207226 , transformers 206002 207227 }: 206003 207228 mkDerivation { 206004 207229 pname = "typelits-witnesses"; 206005 - version = "0.3.0.0"; 206006 - sha256 = "1rjc2wxm6cmvf03m3w3r19a9kya5ksk27zy00dmm3zqhq58ccb4v"; 207230 + version = "0.3.0.1"; 207231 + sha256 = "0d2537dwz5kiq81amrj2v00bvlwjfkidlz45g1h96zv78mlw1l7c"; 206007 207232 libraryHaskellDepends = [ 206008 207233 base base-compat constraints reflection transformers 206009 207234 ]; ··· 206807 208032 }) {}; 206808 208033 206809 208034 "unconstrained" = callPackage 206810 - ({ mkDerivation, base }: 208035 + ({ mkDerivation }: 206811 208036 mkDerivation { 206812 208037 pname = "unconstrained"; 206813 - version = "0.1.0.1"; 206814 - sha256 = "0wzkf8fqlqd11rcb7cvb7zsyg1ws5wyplgmsll6xbfbh68adh32p"; 206815 - libraryHaskellDepends = [ base ]; 208038 + version = "0.1.0.2"; 208039 + sha256 = "03811shhcfkcrsai3a1vw99g0pmg8m3cfi8gfiaf8b13l1k7lwfj"; 206816 208040 description = "Null constraint"; 206817 208041 license = stdenv.lib.licenses.bsd3; 206818 208042 }) {}; ··· 210669 211893 license = stdenv.lib.licenses.bsd3; 210670 211894 }) {}; 210671 211895 211896 + "vector-space_0_13" = callPackage 211897 + ({ mkDerivation, base, Boolean, MemoTrie, NumInstances }: 211898 + mkDerivation { 211899 + pname = "vector-space"; 211900 + version = "0.13"; 211901 + sha256 = "05yn93vnhzhpp2i6qb4b3dasvmpk71rab6vhssqvpb3qhdvxb482"; 211902 + libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ]; 211903 + description = "Vector & affine spaces, linear maps, and derivatives"; 211904 + license = stdenv.lib.licenses.bsd3; 211905 + hydraPlatforms = stdenv.lib.platforms.none; 211906 + }) {}; 211907 + 210672 211908 "vector-space-map" = callPackage 210673 211909 ({ mkDerivation, base, containers, doctest, vector-space }: 210674 211910 mkDerivation { ··· 211046 212282 license = stdenv.lib.licenses.bsd3; 211047 212283 }) {}; 211048 212284 212285 + "viewprof_0_0_0_13" = callPackage 212286 + ({ mkDerivation, base, brick, containers, directory, ghc-prof, lens 212287 + , scientific, text, vector, vector-algorithms, vty 212288 + }: 212289 + mkDerivation { 212290 + pname = "viewprof"; 212291 + version = "0.0.0.13"; 212292 + sha256 = "1ichcff012k1f9cqk01sixv3yx52krnhjfnw73yw06kacpd7i74z"; 212293 + isLibrary = false; 212294 + isExecutable = true; 212295 + executableHaskellDepends = [ 212296 + base brick containers directory ghc-prof lens scientific text 212297 + vector vector-algorithms vty 212298 + ]; 212299 + homepage = "https://github.com/maoe/viewprof"; 212300 + description = "Text-based interactive GHC .prof viewer"; 212301 + license = stdenv.lib.licenses.bsd3; 212302 + hydraPlatforms = stdenv.lib.platforms.none; 212303 + }) {}; 212304 + 211049 212305 "views" = callPackage 211050 212306 ({ mkDerivation, base, mtl }: 211051 212307 mkDerivation { ··· 215018 216274 license = stdenv.lib.licenses.bsd3; 215019 216275 }) {}; 215020 216276 215021 - "weeder_0_1_13" = callPackage 216277 + "weeder_1_0" = callPackage 215022 216278 ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq 215023 216279 , directory, extra, filepath, foundation, hashable, process, text 215024 216280 , unordered-containers, vector, yaml 215025 216281 }: 215026 216282 mkDerivation { 215027 216283 pname = "weeder"; 215028 - version = "0.1.13"; 215029 - sha256 = "0a0zfp1g5mh393v4d1js5a0fnkj03q5kzycsyp3x4nk37dnc67fy"; 216284 + version = "1.0"; 216285 + sha256 = "1s6xfzv49pism1z4qpid3745w8x06nddifzb9165j2h6n7fivgav"; 215030 216286 isLibrary = false; 215031 216287 isExecutable = true; 215032 216288 executableHaskellDepends = [ ··· 219034 220290 ({ mkDerivation, base, magic, mtl, random, unix, xmonad }: 219035 220291 mkDerivation { 219036 220292 pname = "xmonad-wallpaper"; 219037 - version = "0.0.1.3"; 219038 - sha256 = "0vw1pcfpsxcaqnq9s5p7my3jr6q38ndm7qd5x7m06wmakcalcbyy"; 220293 + version = "0.0.1.4"; 220294 + sha256 = "0f6214kqp86xnk1zginjiprnqlj2fzcvh3w5sv3yvqg98mwdd0cg"; 219039 220295 libraryHaskellDepends = [ base magic mtl random unix xmonad ]; 219040 220296 description = "xmonad wallpaper extension"; 219041 220297 license = stdenv.lib.licenses.lgpl3; ··· 220921 222177 license = stdenv.lib.licenses.mit; 220922 222178 }) {}; 220923 222179 222180 + "yesod-core_1_4_37_3" = callPackage 222181 + ({ mkDerivation, aeson, async, auto-update, base, blaze-builder 222182 + , blaze-html, blaze-markup, byteable, bytestring, case-insensitive 222183 + , cereal, clientsession, conduit, conduit-extra, containers, cookie 222184 + , criterion, data-default, deepseq, deepseq-generics, directory 222185 + , exceptions, fast-logger, hspec, hspec-expectations, http-types 222186 + , HUnit, lifted-base, monad-control, monad-logger, mtl, mwc-random 222187 + , network, old-locale, parsec, path-pieces, primitive, QuickCheck 222188 + , random, resourcet, safe, semigroups, shakespeare 222189 + , streaming-commons, template-haskell, text, time, transformers 222190 + , transformers-base, unix-compat, unordered-containers, vector, wai 222191 + , wai-extra, wai-logger, warp, word8 222192 + }: 222193 + mkDerivation { 222194 + pname = "yesod-core"; 222195 + version = "1.4.37.3"; 222196 + sha256 = "1jw1302p5s9jy7xghxzg9j63pn6b1hp957n1808qyk1iz7yrfsg0"; 222197 + libraryHaskellDepends = [ 222198 + aeson auto-update base blaze-builder blaze-html blaze-markup 222199 + byteable bytestring case-insensitive cereal clientsession conduit 222200 + conduit-extra containers cookie data-default deepseq 222201 + deepseq-generics directory exceptions fast-logger http-types 222202 + lifted-base monad-control monad-logger mtl mwc-random old-locale 222203 + parsec path-pieces primitive random resourcet safe semigroups 222204 + shakespeare template-haskell text time transformers 222205 + transformers-base unix-compat unordered-containers vector wai 222206 + wai-extra wai-logger warp word8 222207 + ]; 222208 + testHaskellDepends = [ 222209 + async base blaze-builder bytestring clientsession conduit 222210 + conduit-extra containers cookie hspec hspec-expectations http-types 222211 + HUnit lifted-base mwc-random network path-pieces QuickCheck random 222212 + resourcet shakespeare streaming-commons template-haskell text 222213 + transformers wai wai-extra 222214 + ]; 222215 + benchmarkHaskellDepends = [ 222216 + base blaze-html bytestring criterion shakespeare text transformers 222217 + ]; 222218 + homepage = "http://www.yesodweb.com/"; 222219 + description = "Creation of type-safe, RESTful web applications"; 222220 + license = stdenv.lib.licenses.mit; 222221 + hydraPlatforms = stdenv.lib.platforms.none; 222222 + }) {}; 222223 + 220924 222224 "yesod-crud" = callPackage 220925 222225 ({ mkDerivation, base, classy-prelude, containers, MissingH 220926 222226 , monad-control, persistent, random, safe, stm, uuid, yesod-core ··· 223632 224932 license = stdenv.lib.licenses.bsd3; 223633 224933 }) {inherit (pkgs) zip;}; 223634 224934 223635 - "zip-archive_0_3_2" = callPackage 224935 + "zip-archive_0_3_2_2" = callPackage 223636 224936 ({ mkDerivation, array, base, binary, bytestring, containers 223637 224937 , digest, directory, filepath, HUnit, mtl, old-time, pretty 223638 224938 , process, temporary, text, time, unix, zip, zlib 223639 224939 }: 223640 224940 mkDerivation { 223641 224941 pname = "zip-archive"; 223642 - version = "0.3.2"; 223643 - sha256 = "1k413av98vchpsqd3930w4sznih4jip98vbgyif86nbpji7mp44f"; 224942 + version = "0.3.2.2"; 224943 + sha256 = "1xyabamc3670r8qjwpyfxcbsxhsnzy6i9n5zx58maq830lwp2m9c"; 223644 224944 isLibrary = true; 223645 224945 isExecutable = true; 223646 224946 libraryHaskellDepends = [ ··· 223649 224949 ]; 223650 224950 executableHaskellDepends = [ base bytestring directory ]; 223651 224951 testHaskellDepends = [ 223652 - base bytestring directory HUnit old-time process temporary time 223653 - unix 224952 + base bytestring directory filepath HUnit old-time process temporary 224953 + time unix 223654 224954 ]; 223655 224955 testToolDepends = [ zip ]; 223656 224956 homepage = "http://github.com/jgm/zip-archive"; ··· 224226 225526 ]; 224227 225527 description = "Multi-file, colored, filtered log tailer"; 224228 225528 license = stdenv.lib.licenses.bsd3; 225529 + }) {}; 225530 + 225531 + "zuramaru" = callPackage 225532 + ({ mkDerivation, base, cmdargs, containers, distributive, doctest 225533 + , either, extensible, extra, lens, megaparsec, mono-traversable 225534 + , mtl, profunctors, readline, safe, safe-exceptions, silently 225535 + , singletons, string-qq, tasty, tasty-discover, tasty-hunit 225536 + , template-haskell, text, text-show, throwable-exceptions 225537 + , transformers 225538 + }: 225539 + mkDerivation { 225540 + pname = "zuramaru"; 225541 + version = "0.1.0.0"; 225542 + sha256 = "0g8kkwyjmsj5wqsqn6yxg9qr79ljfskc5qy4wg0xvlb8781xbj8m"; 225543 + isLibrary = true; 225544 + isExecutable = true; 225545 + libraryHaskellDepends = [ 225546 + base cmdargs containers distributive either extensible extra lens 225547 + megaparsec mono-traversable mtl profunctors readline safe 225548 + safe-exceptions singletons string-qq template-haskell text 225549 + text-show throwable-exceptions transformers 225550 + ]; 225551 + executableHaskellDepends = [ 225552 + base cmdargs containers distributive either extensible extra lens 225553 + megaparsec mono-traversable mtl profunctors readline safe 225554 + safe-exceptions singletons string-qq template-haskell text 225555 + text-show throwable-exceptions transformers 225556 + ]; 225557 + testHaskellDepends = [ 225558 + base cmdargs containers distributive doctest either extensible 225559 + extra lens megaparsec mono-traversable mtl profunctors readline 225560 + safe safe-exceptions silently singletons string-qq tasty 225561 + tasty-discover tasty-hunit template-haskell text text-show 225562 + throwable-exceptions transformers 225563 + ]; 225564 + homepage = "https://github.com/aiya000/hs-zuramaru"; 225565 + description = "A lisp processor, An inline-lisp, in Haskell"; 225566 + license = stdenv.lib.licenses.mit; 225567 + hydraPlatforms = stdenv.lib.platforms.none; 224229 225568 }) {}; 224230 225569 224231 225570 "zxcvbn-c" = callPackage
+36
pkgs/development/haskell-modules/hie-packages.nix
··· 72 72 doCheck = false; 73 73 description = "Simple interface to some of Cabal's configuration state, mainly used by ghc-mod"; 74 74 license = stdenv.lib.licenses.agpl3; 75 + hydraPlatforms = stdenv.lib.platforms.none; 76 + broken = true; 75 77 }) {}; 76 78 ghc-dump-tree_hie = callPackage 77 79 ({ mkDerivation, aeson, base, bytestring, ghc, optparse-applicative ··· 95 97 homepage = "https://github.com/edsko/ghc-dump-tree"; 96 98 description = "Dump GHC's parsed, renamed, and type checked ASTs"; 97 99 license = stdenv.lib.licenses.bsd3; 100 + hydraPlatforms = stdenv.lib.platforms.none; 101 + broken = true; 98 102 }) {}; 99 103 ghc-mod-core = callPackage 100 104 ({ mkDerivation, base, binary, bytestring, Cabal, cabal-helper ··· 124 128 homepage = "https://github.com/DanielG/ghc-mod"; 125 129 description = "Happy Haskell Hacking"; 126 130 license = stdenv.lib.licenses.agpl3; 131 + hydraPlatforms = stdenv.lib.platforms.none; 132 + broken = true; 127 133 }) { inherit cabal-helper; }; 128 134 ghc-mod_hie = callPackage 129 135 ({ mkDerivation, base, binary, bytestring, Cabal, cabal-doctest ··· 173 179 homepage = "https://github.com/DanielG/ghc-mod"; 174 180 description = "Happy Haskell Hacking"; 175 181 license = stdenv.lib.licenses.agpl3; 182 + hydraPlatforms = stdenv.lib.platforms.none; 183 + broken = true; 176 184 }) { shelltest = null; inherit cabal-helper; }; 177 185 HaRe_hie = callPackage 178 186 ({ mkDerivation, attoparsec, base, base-prelude, Cabal, cabal-helper ··· 211 219 homepage = "https://github.com/RefactoringTools/HaRe/wiki"; 212 220 description = "the Haskell Refactorer"; 213 221 license = stdenv.lib.licenses.bsd3; 222 + hydraPlatforms = stdenv.lib.platforms.none; 223 + broken = true; 214 224 }) { inherit cabal-helper; }; 215 225 ### hie packages 216 226 haskell-ide-engine = callPackage ··· 266 276 homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; 267 277 description = "Provide a common engine to power any Haskell IDE"; 268 278 license = stdenv.lib.licenses.bsd3; 279 + hydraPlatforms = stdenv.lib.platforms.none; 280 + broken = true; 269 281 }) { inherit hoogle; hoogleLocal = (self.hoogleLocal {}).override { inherit hoogle; }; }; 270 282 hie-apply-refact = callPackage 271 283 ({ mkDerivation, aeson, apply-refact, base, either, extra, ghc-mod ··· 283 295 ]; 284 296 description = "Haskell IDE Apply Refact plugin"; 285 297 license = stdenv.lib.licenses.bsd3; 298 + hydraPlatforms = stdenv.lib.platforms.none; 299 + broken = true; 286 300 }) { inherit ghc-mod; }; 287 301 hie-base = callPackage 288 302 ({ mkDerivation, aeson, base, haskell-lsp, text }: ··· 294 308 libraryHaskellDepends = [ aeson base haskell-lsp text ]; 295 309 description = "Haskell IDE API base types"; 296 310 license = stdenv.lib.licenses.bsd3; 311 + hydraPlatforms = stdenv.lib.platforms.none; 312 + broken = true; 297 313 }) {}; 298 314 hie-brittany = callPackage 299 315 ({ mkDerivation, aeson, base, brittany, ghc-mod, ghc-mod-core ··· 310 326 ]; 311 327 description = "Haskell IDE Hoogle plugin"; 312 328 license = stdenv.lib.licenses.bsd3; 329 + hydraPlatforms = stdenv.lib.platforms.none; 330 + broken = true; 313 331 }) { inherit ghc-mod; }; 314 332 hie-build-plugin = callPackage 315 333 ({ mkDerivation, aeson, base, bytestring, Cabal, cabal-helper ··· 328 346 ]; 329 347 description = "Haskell IDE build plugin"; 330 348 license = stdenv.lib.licenses.bsd3; 349 + hydraPlatforms = stdenv.lib.platforms.none; 350 + broken = true; 331 351 }) { inherit cabal-helper; }; 332 352 hie-eg-plugin-async = callPackage 333 353 ({ mkDerivation, base, ghc-mod-core, hie-plugin-api, stm ··· 343 363 ]; 344 364 description = "Haskell IDE example plugin, using async processes"; 345 365 license = stdenv.lib.licenses.bsd3; 366 + hydraPlatforms = stdenv.lib.platforms.none; 367 + broken = true; 346 368 }) {}; 347 369 hie-example-plugin2 = callPackage 348 370 ({ mkDerivation, base, hie-plugin-api, text }: ··· 354 376 libraryHaskellDepends = [ base hie-plugin-api text ]; 355 377 description = "Haskell IDE example plugin"; 356 378 license = stdenv.lib.licenses.bsd3; 379 + hydraPlatforms = stdenv.lib.platforms.none; 380 + broken = true; 357 381 }) {}; 358 382 hie-ghc-mod = callPackage 359 383 ({ mkDerivation, aeson, base, containers, ghc, ghc-mod, ghc-mod-core ··· 370 394 ]; 371 395 description = "Haskell IDE ghc-mod plugin"; 372 396 license = stdenv.lib.licenses.bsd3; 397 + hydraPlatforms = stdenv.lib.platforms.none; 398 + broken = true; 373 399 }) { inherit ghc-mod; }; 374 400 hie-ghc-tree = callPackage 375 401 ({ mkDerivation, aeson, base, ghc-dump-tree, ghc-mod, ghc-mod-core ··· 386 412 ]; 387 413 description = "Haskell IDE GHC Tree plugin"; 388 414 license = stdenv.lib.licenses.bsd3; 415 + hydraPlatforms = stdenv.lib.platforms.none; 416 + broken = true; 389 417 }) { inherit ghc-dump-tree ghc-mod; }; 390 418 hie-haddock = callPackage 391 419 ({ mkDerivation, aeson, base, containers, directory, either ··· 407 435 ]; 408 436 description = "Haskell IDE Haddock plugin"; 409 437 license = stdenv.lib.licenses.bsd3; 438 + hydraPlatforms = stdenv.lib.platforms.none; 439 + broken = true; 410 440 }) { inherit haddock-library HaRe ghc-mod; }; 411 441 hie-hare = callPackage 412 442 ({ mkDerivation, aeson, base, containers, Diff, either, ghc ··· 426 456 ]; 427 457 description = "Haskell IDE HaRe plugin"; 428 458 license = stdenv.lib.licenses.bsd3; 459 + hydraPlatforms = stdenv.lib.platforms.none; 460 + broken = true; 429 461 }) { inherit ghc-mod HaRe; }; 430 462 hie-hoogle = callPackage 431 463 ({ mkDerivation, aeson, base, directory, filepath, ghc-mod ··· 442 474 ]; 443 475 description = "Haskell IDE Hoogle plugin"; 444 476 license = stdenv.lib.licenses.bsd3; 477 + hydraPlatforms = stdenv.lib.platforms.none; 478 + broken = true; 445 479 }) { inherit ghc-mod hoogle; }; 446 480 hie-plugin-api = callPackage 447 481 ({ mkDerivation, aeson, base, containers, Diff, directory, either ··· 462 496 ]; 463 497 description = "Haskell IDE API for plugin communication"; 464 498 license = stdenv.lib.licenses.bsd3; 499 + hydraPlatforms = stdenv.lib.platforms.none; 500 + broken = true; 465 501 }) {}; 466 502 }
+1 -1
pkgs/development/interpreters/hy/default.nix
··· 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 4 name = "hy-${version}"; 5 - version = "0.12.1"; 5 + version = "0.13.1"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://pypi/h/hy/${name}.tar.gz";
+2 -2
pkgs/development/libraries/apr-util/default.nix
··· 13 13 with stdenv.lib; 14 14 15 15 stdenv.mkDerivation rec { 16 - name = "apr-util-1.6.0"; 16 + name = "apr-util-1.6.1"; 17 17 18 18 src = fetchurl { 19 19 url = "mirror://apache/apr/${name}.tar.bz2"; 20 - sha256 = "0k6a90d67xl36brz69s7adgkswjmw7isnjblm1naqmjblwzwjx44"; 20 + sha256 = "0nq3s1yn13vplgl6qfm09f7n0wm08malff9s59bqf9nid9xjzqfk"; 21 21 }; 22 22 23 23 patches = optional stdenv.isFreeBSD ./include-static-dependencies.patch;
+2 -2
pkgs/development/libraries/apr/default.nix
··· 1 1 { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "apr-1.6.2"; 4 + name = "apr-1.6.3"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://apache/apr/${name}.tar.bz2"; 8 - sha256 = "1gffipa87pflvgvw01dbkvgh75p8n2sr56m1pcl01avv6zm9q409"; 8 + sha256 = "0wiik6amxn6lkc55fv9yz5i3kbxnqbp36alrzabx1avsdp8hc7qk"; 9 9 }; 10 10 11 11 patches = stdenv.lib.optionals stdenv.isDarwin [ ./is-this-a-compiler-bug.patch ];
+9
pkgs/development/libraries/aspell/dictionaries.nix
··· 212 212 }; 213 213 }; 214 214 215 + tr = buildDict { 216 + shortName = "tr-0.50-0"; 217 + fullName = "Turkish"; 218 + src = fetchurl { 219 + url = mirror://gnu/aspell/dict/tr/aspell-tr-0.50-0.tar.bz2; 220 + sha256 = "0jpvpm96ga7s7rmsm6rbyrrr22b2dicxv2hy7ysv5y7bbq757ihb"; 221 + }; 222 + }; 223 + 215 224 uk = buildDict { 216 225 shortName = "uk-1.4.0-0"; 217 226 fullName = "Ukrainian";
+1 -10
pkgs/development/libraries/glibc/common.nix
··· 127 127 ] ++ lib.optionals withLinuxHeaders [ 128 128 "--enable-kernel=3.2.0" # can't get below with glibc >= 2.26 129 129 ] ++ lib.optionals (cross != null) [ 130 - (if cross.withTLS then "--with-tls" else "--without-tls") 131 130 (if cross ? float && cross.float == "soft" then "--without-fp" else "--with-fp") 132 131 ] ++ lib.optionals (cross != null) [ 133 132 "--with-__thread" ··· 156 155 // (removeAttrs args [ "withLinuxHeaders" "withGd" ]) // 157 156 158 157 { 159 - name = name + "-${version}${patchSuffix}" + 160 - lib.optionalString (cross != null) "-${cross.config}"; 158 + name = name + "-${version}${patchSuffix}"; 161 159 162 160 src = fetchurl { 163 161 url = "mirror://gnu/glibc/glibc-${version}.tar.xz"; ··· 190 188 libc_cv_forced_unwind=yes 191 189 libc_cv_c_cleanup=yes 192 190 libc_cv_gnu89_inline=yes 193 - # Only due to a problem in gcc configure scripts: 194 - libc_cv_sparc64_tls=${if cross.withTLS then "yes" else "no"} 195 191 EOF 196 - 197 - export BUILD_CC=gcc 198 - export CC="$crossConfig-gcc" 199 - export AR="$crossConfig-ar" 200 - export RANLIB="$crossConfig-ranlib" 201 192 ''; 202 193 203 194 preBuild = lib.optionalString withGd "unset NIX_DONT_SET_RPATH";
+5 -4
pkgs/development/libraries/libxc/default.nix
··· 1 1 { stdenv, fetchurl, gfortran, perl }: 2 2 3 3 let 4 - version = "2.2.3"; 4 + version = "3.0.1"; 5 + 5 6 in stdenv.mkDerivation { 6 7 name = "libxc-${version}"; 7 8 src = fetchurl { 8 - url = "http://www.tddft.org/programs/octopus/down.php?file=libxc/libxc-${version}.tar.gz"; 9 - sha256 = "1rv8vsf7zzw0g7j93rqcipzhk2pj1iq71bpkwf7zxivmgavh0arg"; 9 + url = "http://www.tddft.org/programs/octopus/down.php?file=libxc/${version}/libxc-${version}.tar.gz"; 10 + sha256 = "1xyac89yx03vm86rvk07ps1d39xss3amw46a1k53mv30mgr94rl3"; 10 11 }; 11 12 12 13 buildInputs = [ gfortran ]; ··· 25 26 description = "Library of exchange-correlation functionals for density-functional theory"; 26 27 homepage = http://octopus-code.org/wiki/Libxc; 27 28 license = licenses.lgpl3; 28 - platforms = platforms.linux; 29 + platforms = [ "x86_64-linux" ]; 29 30 maintainers = with maintainers; [ markuskowa ]; 30 31 }; 31 32 }
+2 -2
pkgs/development/libraries/openmpi/default.nix
··· 1 - {stdenv, fetchurl, gfortran, perl, libibverbs 1 + {stdenv, fetchurl, gfortran, perl, rdma-core 2 2 3 3 # Enable the Sun Grid Engine bindings 4 4 , enableSGE ? false ··· 21 21 }; 22 22 23 23 buildInputs = [ gfortran ] 24 - ++ optional (stdenv.isLinux || stdenv.isFreeBSD) libibverbs; 24 + ++ optional (stdenv.isLinux || stdenv.isFreeBSD) rdma-core; 25 25 26 26 nativeBuildInputs = [ perl ]; 27 27
+21 -26
pkgs/development/libraries/openssl/default.nix
··· 1 1 { stdenv, fetchurl, buildPackages, perl 2 - , hostPlatform 2 + , buildPlatform, hostPlatform 3 3 , fetchpatch 4 4 , withCryptodev ? false, cryptodevHeaders 5 5 , enableSSL2 ? false ··· 8 8 with stdenv.lib; 9 9 10 10 let 11 - 12 - opensslCrossSystem = hostPlatform.openssl.system or 13 - (throw "openssl needs its platform name cross building"); 14 - 15 11 common = args@{ version, sha256, patches ? [] }: stdenv.mkDerivation rec { 16 12 name = "openssl-${version}"; 17 13 ··· 24 20 (args.patches or []) 25 21 ++ [ ./nix-ssl-cert-file.patch ] 26 22 ++ optional (versionOlder version "1.1.0") 27 - (if stdenv.isDarwin then ./use-etc-ssl-certs-darwin.patch else ./use-etc-ssl-certs.patch) 23 + (if hostPlatform.isDarwin then ./use-etc-ssl-certs-darwin.patch else ./use-etc-ssl-certs.patch) 28 24 ++ optional (versionOlder version "1.0.2" && hostPlatform.isDarwin) 29 25 ./darwin-arch.patch; 30 26 31 27 outputs = [ "bin" "dev" "out" "man" ]; 32 28 setOutputFlags = false; 33 - separateDebugInfo = stdenv.isLinux; 29 + separateDebugInfo = hostPlatform.isLinux; 34 30 35 31 nativeBuildInputs = [ perl ]; 36 32 buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders; 37 33 38 - # On x86_64-darwin, "./config" misdetects the system as 39 - # "darwin-i386-cc". So specify the system type explicitly. 40 - configureScript = 41 - if stdenv.system == "x86_64-darwin" then "./Configure darwin64-x86_64-cc" 42 - else if stdenv.system == "x86_64-solaris" then "./Configure solaris64-x86_64-gcc" 43 - else "./config"; 34 + # TODO(@Ericson2314): Improve with mass rebuild 35 + configureScript = { 36 + "x86_64-darwin" = "./Configure darwin64-x86_64-cc"; 37 + "x86_64-solaris" = "./Configure solaris64-x86_64-gcc"; 38 + }.${hostPlatform.system} or ( 39 + if hostPlatform == buildPlatform 40 + then "./config" 41 + else if hostPlatform.isMinGW 42 + then "./Configure mingw${toString hostPlatform.parsed.cpu.bits}" 43 + else if hostPlatform.isLinux 44 + then "./Configure linux-generic${toString hostPlatform.parsed.cpu.bits}" 45 + else 46 + throw "Not sure what configuration to use for ${hostPlatform.config}" 47 + ); 48 + 49 + # TODO(@Ericson2314): Make unconditional on mass rebuild 50 + ${if buildPlatform != hostPlatform then "configurePlatforms" else null} = []; 44 51 45 52 configureFlags = [ 46 53 "shared" ··· 50 57 "-DHAVE_CRYPTODEV" 51 58 "-DUSE_CRYPTODEV_DIGESTS" 52 59 ] ++ stdenv.lib.optional enableSSL2 "enable-ssl2" 53 - ++ stdenv.lib.optional (versionAtLeast version "1.1.0" && stdenv.isAarch64) "no-afalgeng"; 60 + ++ stdenv.lib.optional (versionAtLeast version "1.1.0" && hostPlatform.isAarch64) "no-afalgeng"; 54 61 55 62 makeFlags = [ "MANDIR=$(man)/share/man" ]; 56 63 ··· 83 90 exit 1 84 91 fi 85 92 ''; 86 - 87 - crossAttrs = { 88 - # upstream patch: https://rt.openssl.org/Ticket/Display.html?id=2558 89 - postPatch = '' 90 - sed -i -e 's/[$][(]CROSS_COMPILE[)]windres/$(WINDRES)/' Makefile.shared 91 - ''; 92 - preConfigure='' 93 - # It's configure does not like --build or --host 94 - export configureFlags="${concatStringsSep " " (configureFlags ++ [ opensslCrossSystem ])}" 95 - ''; 96 - configureScript = "./Configure"; 97 - }; 98 93 99 94 meta = { 100 95 homepage = https://www.openssl.org/;
+2 -2
pkgs/development/libraries/webkitgtk/2.18.nix
··· 15 15 with stdenv.lib; 16 16 stdenv.mkDerivation rec { 17 17 name = "webkitgtk-${version}"; 18 - version = "2.18.5"; 18 + version = "2.18.6"; 19 19 20 20 meta = { 21 21 description = "Web content rendering engine, GTK+ port"; ··· 45 45 46 46 src = fetchurl { 47 47 url = "http://webkitgtk.org/releases/${name}.tar.xz"; 48 - sha256 = "1f1rsp14gkb2r1mrrxn2cnbs45vg38da27q4cf02zlxmgv680v8c"; 48 + sha256 = "0g5cpdijjv5hlrbi4i4dh97yrh5apnyvm90wpr9f84hgyk12r4ck"; 49 49 }; 50 50 51 51 # see if we can clean this up....
+10 -10
pkgs/development/node-packages/node-packages-v4.nix
··· 886 886 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 887 887 }; 888 888 }; 889 - "encodeurl-1.0.1" = { 889 + "encodeurl-1.0.2" = { 890 890 name = "encodeurl"; 891 891 packageName = "encodeurl"; 892 - version = "1.0.1"; 892 + version = "1.0.2"; 893 893 src = fetchurl { 894 - url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz"; 895 - sha1 = "79e3d58655346909fe6f0f45a5de68103b294d20"; 894 + url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; 895 + sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; 896 896 }; 897 897 }; 898 898 "end-of-stream-0.1.5" = { ··· 1354 1354 sha1 = "d9c8edde1da79d125a151b79533b978676346ae5"; 1355 1355 }; 1356 1356 }; 1357 - "glogg-1.0.0" = { 1357 + "glogg-1.0.1" = { 1358 1358 name = "glogg"; 1359 1359 packageName = "glogg"; 1360 - version = "1.0.0"; 1360 + version = "1.0.1"; 1361 1361 src = fetchurl { 1362 - url = "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz"; 1363 - sha1 = "7fe0f199f57ac906cf512feead8f90ee4a284fc5"; 1362 + url = "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz"; 1363 + sha512 = "0vr9sdx0f84b9s5vy72ralm494844c0p9kqqgcvy25gcn9abv57y7hwwafdsswc3z283v8bqa50j8gp740dd4biyngi5f15p9f2lxna"; 1364 1364 }; 1365 1365 }; 1366 1366 "graceful-fs-1.2.3" = { ··· 4150 4150 }) 4151 4151 (sources."gulplog-1.0.0" // { 4152 4152 dependencies = [ 4153 - (sources."glogg-1.0.0" // { 4153 + (sources."glogg-1.0.1" // { 4154 4154 dependencies = [ 4155 4155 sources."sparkles-1.0.0" 4156 4156 ]; ··· 5338 5338 sources."cookie-0.3.1" 5339 5339 sources."cookie-signature-1.0.6" 5340 5340 sources."depd-1.1.2" 5341 - sources."encodeurl-1.0.1" 5341 + sources."encodeurl-1.0.2" 5342 5342 sources."escape-html-1.0.3" 5343 5343 sources."etag-1.8.1" 5344 5344 (sources."finalhandler-1.1.0" // {
+471 -218
pkgs/development/node-packages/node-packages-v6.nix
··· 40 40 sha512 = "0x6yxaj489n9lbq0kfvdnpj1pacgv3r0vk5cnlla7w1jkvxzwaf0vbcnwd9gdaj6zkq69wm1g4zjvj37pyn1lajjkzl1f50l7cnr2ad"; 41 41 }; 42 42 }; 43 + "@sindresorhus/is-0.7.0" = { 44 + name = "_at_sindresorhus_slash_is"; 45 + packageName = "@sindresorhus/is"; 46 + version = "0.7.0"; 47 + src = fetchurl { 48 + url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz"; 49 + sha512 = "2ilygr40l2yqbk6lix4xnnnqsq6fxa6sysdxg49bg1ax5gzhwy3bcjbdlk7lndgh9055slpx6fybs3p8mhvbsnnjkmkqzrfy8l5mn1q"; 50 + }; 51 + }; 43 52 "@types/form-data-2.2.1" = { 44 53 name = "_at_types_slash_form-data"; 45 54 packageName = "@types/form-data"; ··· 67 76 sha512 = "0mhmzddyv8rhkha7ibpbsa5dfygzaa90438aqzpg9w7d31n093a7spx2zg4zfki4qrab71xrfb381hmqajn826cnrw9kc7kv2y5zl60"; 68 77 }; 69 78 }; 70 - "@types/request-2.0.12" = { 79 + "@types/request-2.0.13" = { 71 80 name = "_at_types_slash_request"; 72 81 packageName = "@types/request"; 73 - version = "2.0.12"; 82 + version = "2.0.13"; 74 83 src = fetchurl { 75 - url = "https://registry.npmjs.org/@types/request/-/request-2.0.12.tgz"; 76 - sha512 = "35i00ixsjahfplsbhfvs82yi2kkv8yjyd8n60mkl2yyznkhnbxwvvyf81v586bz8hz4pc3djnmibcpq65vjgbmcwpk7pq30khi6bwsl"; 84 + url = "https://registry.npmjs.org/@types/request/-/request-2.0.13.tgz"; 85 + sha512 = "3gbwnwgvm7d4jwixg004j635l89kvd2vll1wkv0rdlz5v8biqwnmgfg67nbj3lccvn4rhbalwpkrgvqz66j0n3d20fs02xyxr0z8x80"; 77 86 }; 78 87 }; 79 88 "@types/tough-cookie-2.3.2" = { ··· 373 382 sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa"; 374 383 }; 375 384 }; 376 - "addons-linter-0.32.0" = { 385 + "addons-linter-0.33.0" = { 377 386 name = "addons-linter"; 378 387 packageName = "addons-linter"; 379 - version = "0.32.0"; 388 + version = "0.33.0"; 380 389 src = fetchurl { 381 - url = "https://registry.npmjs.org/addons-linter/-/addons-linter-0.32.0.tgz"; 382 - sha512 = "06rxbp732pkw2510wzc8fzmf7160pl5a4j37jr2by4v736cqg66ai4avr7gs2i26zpzmpq0l4k1xzs6g5b5cgkbc49hiaccnvmw6a26"; 390 + url = "https://registry.npmjs.org/addons-linter/-/addons-linter-0.33.0.tgz"; 391 + sha1 = "0b2a75a6650e743fe22a34ec7cfd4647fd062efc"; 383 392 }; 384 393 }; 385 394 "addr-to-ip-port-1.4.2" = { ··· 1516 1525 sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; 1517 1526 }; 1518 1527 }; 1519 - "aws-sdk-2.185.0" = { 1528 + "aws-sdk-2.187.0" = { 1520 1529 name = "aws-sdk"; 1521 1530 packageName = "aws-sdk"; 1522 - version = "2.185.0"; 1531 + version = "2.187.0"; 1523 1532 src = fetchurl { 1524 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.185.0.tgz"; 1525 - sha1 = "a570b8cb1a083d88ed90f5f629144b1dcf6e1434"; 1533 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.187.0.tgz"; 1534 + sha1 = "04cb9a333d39c09753bf3ff63ec065b32b00db18"; 1526 1535 }; 1527 1536 }; 1528 1537 "aws-sign-0.2.0" = { ··· 2614 2623 sha1 = "6880eddca35cfede92c4fb2724221334f989145a"; 2615 2624 }; 2616 2625 }; 2617 - "blake2b-wasm-1.1.5" = { 2626 + "blake2b-wasm-1.1.7" = { 2618 2627 name = "blake2b-wasm"; 2619 2628 packageName = "blake2b-wasm"; 2620 - version = "1.1.5"; 2629 + version = "1.1.7"; 2621 2630 src = fetchurl { 2622 - url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.5.tgz"; 2623 - sha512 = "2a8y5gcrrzkv35qa7s8x34m4mmb2nbincn2amxsjwfgqijnqd57hsh7id6p5y21sxfqf1ffjcfb5p8k04n3h7g81mrfvn4207my65s7"; 2631 + url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.7.tgz"; 2632 + sha512 = "1q4aaql83818qzgh01c6x9jvcchmd6bq7r0kfs3f364vhwxnp7qc25y3h2ij5751mi1zhh96874ib0afn8an92xh3ag1kv5g2yhflm0"; 2624 2633 }; 2625 2634 }; 2626 2635 "blob-0.0.2" = { ··· 3505 3514 sha512 = "36i943khi87af4gif9r6imjgybqxq9cbd69z2h8p2s2j6scfbhrv7j3n591xl982fmyq29rkwh70a6qdcf3v0piwzfh8n2jf571v9q0"; 3506 3515 }; 3507 3516 }; 3517 + "cacheable-request-2.1.4" = { 3518 + name = "cacheable-request"; 3519 + packageName = "cacheable-request"; 3520 + version = "2.1.4"; 3521 + src = fetchurl { 3522 + url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz"; 3523 + sha1 = "0d808801b6342ad33c91df9d0b44dc09b91e5c3d"; 3524 + }; 3525 + }; 3508 3526 "cached-path-relative-1.0.1" = { 3509 3527 name = "cached-path-relative"; 3510 3528 packageName = "cached-path-relative"; ··· 4351 4369 sha1 = "eae0a2413f55c0942f818c229fefce845d7f3b1c"; 4352 4370 }; 4353 4371 }; 4372 + "clone-response-1.0.2" = { 4373 + name = "clone-response"; 4374 + packageName = "clone-response"; 4375 + version = "1.0.2"; 4376 + src = fetchurl { 4377 + url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz"; 4378 + sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b"; 4379 + }; 4380 + }; 4354 4381 "clone-stats-0.0.1" = { 4355 4382 name = "clone-stats"; 4356 4383 packageName = "clone-stats"; ··· 4756 4783 sha1 = "c0c352501cf6f52e9124e3ef89c9806e2022ebef"; 4757 4784 }; 4758 4785 }; 4759 - "common-tags-1.6.0" = { 4786 + "common-tags-1.7.2" = { 4760 4787 name = "common-tags"; 4761 4788 packageName = "common-tags"; 4762 - version = "1.6.0"; 4789 + version = "1.7.2"; 4763 4790 src = fetchurl { 4764 - url = "https://registry.npmjs.org/common-tags/-/common-tags-1.6.0.tgz"; 4765 - sha512 = "39ifv780sgxf996x5gl9y28kyk8q0250k7v9zh6lj68blh656k4nqkycnmbdgwln05969vx6ahc4v8zn6nya49a95kvqbadhw9a02dj"; 4791 + url = "https://registry.npmjs.org/common-tags/-/common-tags-1.7.2.tgz"; 4792 + sha512 = "0jx2cncv7x5ms1gg2vks5bhxi9c5jbwymfk42dzmp9vrxrmhrl9vaw4wsh4lvf65shxmq1v8f8s0i3rkyk2x8mrfpq2m30famkgv24f"; 4766 4793 }; 4767 4794 }; 4768 4795 "commoner-0.10.8" = { ··· 6485 6512 sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 6486 6513 }; 6487 6514 }; 6515 + "decamelize-2.0.0" = { 6516 + name = "decamelize"; 6517 + packageName = "decamelize"; 6518 + version = "2.0.0"; 6519 + src = fetchurl { 6520 + url = "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz"; 6521 + sha512 = "0zc3slyk7cc9xjfcnw3nk2d1vkq4kxrjalavqgp3zykbgnp5v12xcs47kr436k0izbzyxhkrdww94p5g1lcmzcdqncc9p0mqzk6jji2"; 6522 + }; 6523 + }; 6488 6524 "decode-uri-component-0.2.0" = { 6489 6525 name = "decode-uri-component"; 6490 6526 packageName = "decode-uri-component"; ··· 7169 7205 sha1 = "867aa4b093faa05f1de08c06f4d7b21fdf8698bc"; 7170 7206 }; 7171 7207 }; 7208 + "domain-browser-1.2.0" = { 7209 + name = "domain-browser"; 7210 + packageName = "domain-browser"; 7211 + version = "1.2.0"; 7212 + src = fetchurl { 7213 + url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz"; 7214 + sha512 = "1fcxv8rzfhs99afvhji7bs5ppxwn9mw040ixdgvkm6iabz72q61arly2lr57086rjn4g2vkb3rkih1cyc7z35kzv1jjciwyrs4g4y4f"; 7215 + }; 7216 + }; 7172 7217 "domelementtype-1.1.3" = { 7173 7218 name = "domelementtype"; 7174 7219 packageName = "domelementtype"; ··· 7557 7602 sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389"; 7558 7603 }; 7559 7604 }; 7560 - "encodeurl-1.0.1" = { 7605 + "encodeurl-1.0.2" = { 7561 7606 name = "encodeurl"; 7562 7607 packageName = "encodeurl"; 7563 - version = "1.0.1"; 7608 + version = "1.0.2"; 7564 7609 src = fetchurl { 7565 - url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz"; 7566 - sha1 = "79e3d58655346909fe6f0f45a5de68103b294d20"; 7610 + url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; 7611 + sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; 7567 7612 }; 7568 7613 }; 7569 7614 "encoding-0.1.12" = { ··· 7908 7953 sha1 = "a08cdde84ccdbf34d027a1451bc91d4bcd28a613"; 7909 7954 }; 7910 7955 }; 7911 - "es6-promise-4.2.2" = { 7956 + "es6-promise-4.2.4" = { 7912 7957 name = "es6-promise"; 7913 7958 packageName = "es6-promise"; 7914 - version = "4.2.2"; 7959 + version = "4.2.4"; 7915 7960 src = fetchurl { 7916 - url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.2.tgz"; 7917 - sha512 = "18ny66ql485risswmzx8r66ys0p4p48nznksxc407mgc36dc06212xd7pzb5mwcs0idzjzbhljw17v34h5gfps7khwa80rfzgkaq9id"; 7961 + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz"; 7962 + sha512 = "10hlgvxhshjxlbwvm1gnf1b01sv1fmh191a97l0h5gmcs9am1b6x937wnhkvvj5fkin10qscii8pcwnp9rlnpkgnrhfdyk0a9jlvmzw"; 7918 7963 }; 7919 7964 }; 7920 7965 "es6-promisify-5.0.0" = { ··· 9348 9393 sha512 = "2mxs6nll208xgqy9asgc0iq4k9ynd2aanig2qkfi3drd8axdafhhx36a58ssksmjgl6s1m2bh2j8igrlpm3k11cg58nhmqbxhlkmv2a"; 9349 9394 }; 9350 9395 }; 9351 - "follow-redirects-1.3.0" = { 9396 + "follow-redirects-1.4.1" = { 9352 9397 name = "follow-redirects"; 9353 9398 packageName = "follow-redirects"; 9354 - version = "1.3.0"; 9399 + version = "1.4.1"; 9355 9400 src = fetchurl { 9356 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.3.0.tgz"; 9357 - sha1 = "f684871fc116d2e329fda55ef67687f4fabc905c"; 9401 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.4.1.tgz"; 9402 + sha512 = "2z7ai3f3g9j48z90kds4070nb8v2q02n7131c2zjplb0zfjxjrd1m2fm8ykg7psj8fiwc4iidn2g9rr2w09qijbssddr0p8acyiw5mv"; 9358 9403 }; 9359 9404 }; 9360 9405 "for-each-0.3.2" = { ··· 10041 10086 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 10042 10087 }; 10043 10088 }; 10089 + "gettext-parser-1.1.0" = { 10090 + name = "gettext-parser"; 10091 + packageName = "gettext-parser"; 10092 + version = "1.1.0"; 10093 + src = fetchurl { 10094 + url = "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.1.0.tgz"; 10095 + sha1 = "2c5a6638d893934b9b55037d0ad82cb7004b2679"; 10096 + }; 10097 + }; 10044 10098 "git-raw-commits-1.3.0" = { 10045 10099 name = "git-raw-commits"; 10046 10100 packageName = "git-raw-commits"; ··· 10339 10393 sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; 10340 10394 }; 10341 10395 }; 10342 - "globals-11.1.0" = { 10396 + "globals-11.2.0" = { 10343 10397 name = "globals"; 10344 10398 packageName = "globals"; 10345 - version = "11.1.0"; 10399 + version = "11.2.0"; 10346 10400 src = fetchurl { 10347 - url = "https://registry.npmjs.org/globals/-/globals-11.1.0.tgz"; 10348 - sha512 = "24q4kgcwq3yjsidaajrrvd529l4yfxzv4icxzwl1y2l1nwpv8898gd4k5clygb2i4gsvyjdzm9xd28gwg0zm8iaq71m6kmav6vrcjxq"; 10401 + url = "https://registry.npmjs.org/globals/-/globals-11.2.0.tgz"; 10402 + sha512 = "0ad39906l0grsfy2953m3c6jkhbwakd89vbqprzz9g0cafvikzfcp5azqch3zm8pmyhc29sbbcfgnays990jvwmq9xgw8vv7m7bnc24"; 10349 10403 }; 10350 10404 }; 10351 10405 "globals-9.18.0" = { ··· 10384 10438 sha1 = "d9c8edde1da79d125a151b79533b978676346ae5"; 10385 10439 }; 10386 10440 }; 10387 - "glogg-1.0.0" = { 10441 + "glogg-1.0.1" = { 10388 10442 name = "glogg"; 10389 10443 packageName = "glogg"; 10390 - version = "1.0.0"; 10444 + version = "1.0.1"; 10391 10445 src = fetchurl { 10392 - url = "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz"; 10393 - sha1 = "7fe0f199f57ac906cf512feead8f90ee4a284fc5"; 10446 + url = "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz"; 10447 + sha512 = "0vr9sdx0f84b9s5vy72ralm494844c0p9kqqgcvy25gcn9abv57y7hwwafdsswc3z283v8bqa50j8gp740dd4biyngi5f15p9f2lxna"; 10394 10448 }; 10395 10449 }; 10396 10450 "got-1.2.2" = { ··· 10436 10490 src = fetchurl { 10437 10491 url = "https://registry.npmjs.org/got/-/got-7.1.0.tgz"; 10438 10492 sha512 = "0phvycaq4yl6jjpyc9vwmgghfy7a6nnpynscpgpbx74zjaa5dbpl1ag0jf7jvimfk0vf6xfjqgh67xdlvi0ycgvp1kasajapjiqr5b3"; 10493 + }; 10494 + }; 10495 + "got-8.0.3" = { 10496 + name = "got"; 10497 + packageName = "got"; 10498 + version = "8.0.3"; 10499 + src = fetchurl { 10500 + url = "https://registry.npmjs.org/got/-/got-8.0.3.tgz"; 10501 + sha512 = "2bglci1j77rvr4z2klmnr6d2qfqk0f60nm1myj9m0g2rzh7pd68hzki9nm8f5dpaxqr98ncjbd4rfzw75j35nvsfcyb2i1l9jjailak"; 10439 10502 }; 10440 10503 }; 10441 10504 "graceful-fs-1.2.3" = { ··· 11138 11201 src = fetchurl { 11139 11202 url = "https://registry.npmjs.org/http-basic/-/http-basic-2.5.1.tgz"; 11140 11203 sha1 = "8ce447bdb5b6c577f8a63e3fa78056ec4bb4dbfb"; 11204 + }; 11205 + }; 11206 + "http-cache-semantics-3.8.1" = { 11207 + name = "http-cache-semantics"; 11208 + packageName = "http-cache-semantics"; 11209 + version = "3.8.1"; 11210 + src = fetchurl { 11211 + url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz"; 11212 + sha512 = "3gsj16kpvygynld5ajbvg8ii3n3bka4waamdzx30wwhz72mdr6wvffm20rfnxwzid9fq49d5g333yjq5dz1qqbnk9bwcmrj9f5bda75"; 11141 11213 }; 11142 11214 }; 11143 11215 "http-errors-1.3.1" = { ··· 11356 11428 sha512 = "00xsmbx8jcjzsibwwgknlpjvndb7zv6jdxik5skqnbizbdssvcwa2r5a7gd1cf7mpr2827067sxqqca9fmmknjnin2vvm16yb1pn5g8"; 11357 11429 }; 11358 11430 }; 11359 - "hypercore-protocol-6.5.1" = { 11431 + "hypercore-protocol-6.5.2" = { 11360 11432 name = "hypercore-protocol"; 11361 11433 packageName = "hypercore-protocol"; 11362 - version = "6.5.1"; 11434 + version = "6.5.2"; 11363 11435 src = fetchurl { 11364 - url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.5.1.tgz"; 11365 - sha512 = "2xy5g8l7wws0bxrvj3pv90qsyb0g12zs8ahhcmd732jdq5y9f1j5jvywp2bvdcwfd0x4kh7hwqz7ma1hir8sh30nhbi5w6w4ig0qqyl"; 11436 + url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.5.2.tgz"; 11437 + sha512 = "03l77nma8ga06ywa469jzqgc13hjk9bg3w2cv95g3fwnqy2fvz8qpczcih65jscvk0ira5kpm3sk2vqh2whzzvnm19jlqrzi78v80n3"; 11366 11438 }; 11367 11439 }; 11368 - "hyperdrive-9.12.1" = { 11440 + "hyperdrive-9.12.2" = { 11369 11441 name = "hyperdrive"; 11370 11442 packageName = "hyperdrive"; 11371 - version = "9.12.1"; 11443 + version = "9.12.2"; 11372 11444 src = fetchurl { 11373 - url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.1.tgz"; 11374 - sha512 = "12z4ajhk7h587vm8vdm766xy59fwv9whbnmhc4a8ns51gx3zavgspk48fywffk3p8kk16pnam3lk8zx17daxb281lll1qwa1mw73061"; 11445 + url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.2.tgz"; 11446 + sha512 = "133iwkp8w88awfxffdjjfxl2wsrj99cdw1p2rvbv65q7mgficva14skid7vsd55r750lrvg0wbmlz0h4m44w6ypd7cvpb4hjvb2f815"; 11375 11447 }; 11376 11448 }; 11377 11449 "hyperdrive-http-4.2.2" = { ··· 11806 11878 sha1 = "332650e10854d8c0ac58c192bdc27a8bf7e7a30c"; 11807 11879 }; 11808 11880 }; 11881 + "into-stream-3.1.0" = { 11882 + name = "into-stream"; 11883 + packageName = "into-stream"; 11884 + version = "3.1.0"; 11885 + src = fetchurl { 11886 + url = "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz"; 11887 + sha1 = "96fb0a936c12babd6ff1752a17d05616abd094c6"; 11888 + }; 11889 + }; 11809 11890 "invariant-2.2.2" = { 11810 11891 name = "invariant"; 11811 11892 packageName = "invariant"; ··· 12481 12562 sha512 = "0c1pd4414iy40xq652p1zgqgmncmm7xcns96pfazd63v439vyc1z93bvzvbw5r2qc4fp24414ydnj4gdsqlq223pfg05ar2mmwd23rb"; 12482 12563 }; 12483 12564 }; 12484 - "is-resolvable-1.0.1" = { 12565 + "is-resolvable-1.1.0" = { 12485 12566 name = "is-resolvable"; 12486 12567 packageName = "is-resolvable"; 12487 - version = "1.0.1"; 12568 + version = "1.1.0"; 12488 12569 src = fetchurl { 12489 - url = "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.1.tgz"; 12490 - sha512 = "3kb6apf2r7xkp0saq6lbgg0y18fnqghd18rvmhhmbb537vsbs20rzq5n2xm51wync9igp4kprci8aggcm9iy6b0kp9ph1zgpihrg46b"; 12570 + url = "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz"; 12571 + sha512 = "0r8v3dkj5qbfh2wlj4w1msyqsw6j5myvxi88wkw36isscb97yyc2yc1pwm64djrmh1css6jp9p08cx1zb479fg4gv26prciaifdh05a"; 12491 12572 }; 12492 12573 }; 12493 12574 "is-retry-allowed-1.1.0" = { ··· 12974 13055 src = fetchurl { 12975 13056 url = "https://registry.npmjs.org/jshint/-/jshint-2.8.0.tgz"; 12976 13057 sha1 = "1d09a3bd913c4cadfa81bf18d582bd85bffe0d44"; 13058 + }; 13059 + }; 13060 + "json-buffer-3.0.0" = { 13061 + name = "json-buffer"; 13062 + packageName = "json-buffer"; 13063 + version = "3.0.0"; 13064 + src = fetchurl { 13065 + url = "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz"; 13066 + sha1 = "5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"; 12977 13067 }; 12978 13068 }; 12979 13069 "json-edm-parser-0.1.2" = { ··· 13517 13607 sha1 = "1e80454250018dbad4c3fe94497d6e67b6269c77"; 13518 13608 }; 13519 13609 }; 13610 + "keyv-3.0.0" = { 13611 + name = "keyv"; 13612 + packageName = "keyv"; 13613 + version = "3.0.0"; 13614 + src = fetchurl { 13615 + url = "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz"; 13616 + sha512 = "32ga97c763vprf4sjbb2f7gbngfppq9n1hy4cpq2h4yb1msrhh2zjimxib7p09mzgynm6askbigxlsqsm11p644avp4sf5nmng8f2vs"; 13617 + }; 13618 + }; 13520 13619 "kind-of-2.0.1" = { 13521 13620 name = "kind-of"; 13522 13621 packageName = "kind-of"; ··· 13580 13679 sha1 = "59c128e0dc5ce410201151194eeb9cbf858650f6"; 13581 13680 }; 13582 13681 }; 13583 - "knockout-3.4.2" = { 13682 + "knockout-3.5.0-beta" = { 13584 13683 name = "knockout"; 13585 13684 packageName = "knockout"; 13586 - version = "3.4.2"; 13685 + version = "3.5.0-beta"; 13587 13686 src = fetchurl { 13588 - url = "https://registry.npmjs.org/knockout/-/knockout-3.4.2.tgz"; 13589 - sha1 = "e87958de77ad1e936f7ce645bab8b5d7c456d937"; 13687 + url = "https://registry.npmjs.org/knockout/-/knockout-3.5.0-beta.tgz"; 13688 + sha512 = "2qh1bqb9lj7l92pwcrwmpcanbyn65rmni3swyv6hrphn7xbaw8mkir3w67sf4ardk1iqvz9waalq2wf2rgpvvblhva2n2hssq6as6yr"; 13590 13689 }; 13591 13690 }; 13592 13691 "kuduscript-1.0.15" = { ··· 14615 14714 sha1 = "376ff7b58ea3086a0f09facc74617eca501e1a18"; 14616 14715 }; 14617 14716 }; 14618 - "log-symbols-2.1.0" = { 14717 + "log-symbols-2.2.0" = { 14619 14718 name = "log-symbols"; 14620 14719 packageName = "log-symbols"; 14621 - version = "2.1.0"; 14720 + version = "2.2.0"; 14622 14721 src = fetchurl { 14623 - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-2.1.0.tgz"; 14624 - sha512 = "36h090zjf2rfivlbhl50iymid2wggwncngy539cylicpdwrc3jvyqpxs2mmmybqjir313xs70vliczq511zypjx8jphvm006fpqpdyc"; 14722 + url = "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz"; 14723 + sha512 = "093j1mha2zwbfkb6cvxr94l1dsx44607vvyxadxki3j69s40n2f6x6iqs6f9rzpvvqd8anclsqdlrm3klkwxixm4k2fl8bjr4b01qjm"; 14625 14724 }; 14626 14725 }; 14627 14726 "log-update-1.0.2" = { ··· 15137 15236 sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d"; 15138 15237 }; 15139 15238 }; 15140 - "mdn-data-1.0.0" = { 15239 + "mdn-data-1.1.0" = { 15141 15240 name = "mdn-data"; 15142 15241 packageName = "mdn-data"; 15143 - version = "1.0.0"; 15242 + version = "1.1.0"; 15144 15243 src = fetchurl { 15145 - url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.0.0.tgz"; 15146 - sha1 = "a69d9da76847b4d5834c1465ea25c0653a1fbf66"; 15244 + url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.0.tgz"; 15245 + sha512 = "3av1cblh8aix05jyfib9mhm57qx8fnkxgxs2g493mdm4815pisrn8rzgf9yxjiww6psa619aa8l62xigrbwfcag741bgls227f82blc"; 15147 15246 }; 15148 15247 }; 15149 15248 "mdns-js-1.0.1" = { ··· 16599 16698 sha1 = "02a71b008eaf7d55ae89fb9fd7685b7b88d7bc29"; 16600 16699 }; 16601 16700 }; 16602 - "needle-2.1.0" = { 16701 + "needle-2.1.1" = { 16603 16702 name = "needle"; 16604 16703 packageName = "needle"; 16605 - version = "2.1.0"; 16704 + version = "2.1.1"; 16606 16705 src = fetchurl { 16607 - url = "https://registry.npmjs.org/needle/-/needle-2.1.0.tgz"; 16608 - sha1 = "54acebad9cc1a11822cd9ca522fb7c131c583fa4"; 16706 + url = "https://registry.npmjs.org/needle/-/needle-2.1.1.tgz"; 16707 + sha1 = "f3d501d633e661d34cd9648ca6c42f782a44d071"; 16609 16708 }; 16610 16709 }; 16611 16710 "negotiator-0.3.0" = { ··· 16852 16951 sha512 = "05d8rzfa0aihb9s1i3fm0dmdvlspfrxf4pxnsd3nms75mviv86llgg2r30l7b38a9l93yb00k7dy1vs8h4nd30ihhyvyc88vb6wa374"; 16853 16952 }; 16854 16953 }; 16855 - "node-notifier-5.1.2" = { 16954 + "node-notifier-5.2.1" = { 16856 16955 name = "node-notifier"; 16857 16956 packageName = "node-notifier"; 16858 - version = "5.1.2"; 16957 + version = "5.2.1"; 16859 16958 src = fetchurl { 16860 - url = "https://registry.npmjs.org/node-notifier/-/node-notifier-5.1.2.tgz"; 16861 - sha1 = "2fa9e12605fa10009d44549d6fcd8a63dde0e4ff"; 16959 + url = "https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz"; 16960 + sha512 = "179bqs5pz252zanr7mca970h5748xj0fa6inw23x5g5fb0nk64wyh8d34jzah0x5s6wdw2lb0hnad2h257nqns999vd5s8x03w6r01h"; 16862 16961 }; 16863 16962 }; 16864 16963 "node-phantom-simple-2.2.4" = { ··· 17212 17311 sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; 17213 17312 }; 17214 17313 }; 17314 + "normalize-url-2.0.1" = { 17315 + name = "normalize-url"; 17316 + packageName = "normalize-url"; 17317 + version = "2.0.1"; 17318 + src = fetchurl { 17319 + url = "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz"; 17320 + sha512 = "0rykwifg14xfgm9m6md48rkqqxa2cya4xdsv7jjciacis2nz6dzaccpzyldlpvy14rvihpxbdiysfn49a8x8x5jw84klmxzh9di98qg"; 17321 + }; 17322 + }; 17215 17323 "npm-3.10.10" = { 17216 17324 name = "npm"; 17217 17325 packageName = "npm"; ··· 17230 17338 sha512 = "0nnr796ik5h8bsd3k9ygivivr3na2ksnf5iipf8dsnn20j10i9sgmhmsnzbimd2pqgjbrpp8gbpl2q7j5c7yjqjfirrh8xcc3v3gpws"; 17231 17339 }; 17232 17340 }; 17233 - "npm-keyword-4.2.0" = { 17341 + "npm-keyword-5.0.0" = { 17234 17342 name = "npm-keyword"; 17235 17343 packageName = "npm-keyword"; 17236 - version = "4.2.0"; 17344 + version = "5.0.0"; 17237 17345 src = fetchurl { 17238 - url = "https://registry.npmjs.org/npm-keyword/-/npm-keyword-4.2.0.tgz"; 17239 - sha1 = "98ffebfdbb1336f27ef5fe1baca0dcacd0acf6c0"; 17346 + url = "https://registry.npmjs.org/npm-keyword/-/npm-keyword-5.0.0.tgz"; 17347 + sha1 = "99b85aec29fcb388d2dd351f0013bf5268787e67"; 17240 17348 }; 17241 17349 }; 17242 17350 "npm-package-arg-5.1.2" = { ··· 18059 18167 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; 18060 18168 }; 18061 18169 }; 18170 + "p-is-promise-1.1.0" = { 18171 + name = "p-is-promise"; 18172 + packageName = "p-is-promise"; 18173 + version = "1.1.0"; 18174 + src = fetchurl { 18175 + url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz"; 18176 + sha1 = "9c9456989e9f6588017b0434d56097675c3da05e"; 18177 + }; 18178 + }; 18062 18179 "p-limit-1.2.0" = { 18063 18180 name = "p-limit"; 18064 18181 packageName = "p-limit"; ··· 18093 18210 src = fetchurl { 18094 18211 url = "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz"; 18095 18212 sha1 = "5eb3b353b7fce99f101a1038880bb054ebbea386"; 18213 + }; 18214 + }; 18215 + "p-timeout-2.0.1" = { 18216 + name = "p-timeout"; 18217 + packageName = "p-timeout"; 18218 + version = "2.0.1"; 18219 + src = fetchurl { 18220 + url = "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz"; 18221 + sha512 = "0h1wg3bw3pyf3vlnxxfnrs3h33lwbx5n1lz4cz8ivh7bi8vjd6makxf6p1xz1d70ww3gj2ghryhbg6w1myxacgirk51ym23qzksdizk"; 18096 18222 }; 18097 18223 }; 18098 18224 "p-try-1.0.0" = { ··· 18996 19122 sha512 = "2ihaln20qjx82jx73wgzirbyp8mfmhxr75am1h0w8n5hy2gsbgvw9dricv7h57ycxzax84bma96wjscmdszs5mr2lsyxpfjvhwl2601"; 18997 19123 }; 18998 19124 }; 19125 + "po2json-0.4.5" = { 19126 + name = "po2json"; 19127 + packageName = "po2json"; 19128 + version = "0.4.5"; 19129 + src = fetchurl { 19130 + url = "https://registry.npmjs.org/po2json/-/po2json-0.4.5.tgz"; 19131 + sha1 = "47bb2952da32d58a1be2f256a598eebc0b745118"; 19132 + }; 19133 + }; 18999 19134 "policyfile-0.0.4" = { 19000 19135 name = "policyfile"; 19001 19136 packageName = "policyfile"; ··· 19129 19264 src = fetchurl { 19130 19265 url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz"; 19131 19266 sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"; 19267 + }; 19268 + }; 19269 + "prepend-http-2.0.0" = { 19270 + name = "prepend-http"; 19271 + packageName = "prepend-http"; 19272 + version = "2.0.0"; 19273 + src = fetchurl { 19274 + url = "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz"; 19275 + sha1 = "e92434bfa5ea8c19f41cdfd401d741a3c819d897"; 19132 19276 }; 19133 19277 }; 19134 19278 "preserve-0.2.0" = { ··· 19707 19851 sha512 = "2mj8bx34brvh97wd2xcn5phgyd2wh3l1ma2xfd0m53yf68w1izp46pmz0s9az5f36mhlvl0mvfd6hp5abhi75fhyrz9wyx6jnx0jkgj"; 19708 19852 }; 19709 19853 }; 19710 - "pump-2.0.0" = { 19854 + "pump-2.0.1" = { 19711 19855 name = "pump"; 19712 19856 packageName = "pump"; 19713 - version = "2.0.0"; 19857 + version = "2.0.1"; 19714 19858 src = fetchurl { 19715 - url = "https://registry.npmjs.org/pump/-/pump-2.0.0.tgz"; 19716 - sha512 = "21jb2lq6ajsmcqs5j3yq4gpfzkpn9zfy514dmwd0rlh6r8c6iknng19c3kmpb607rk2xap7cw467qz5di30zki40phjbdmg6fk35ip8"; 19859 + url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz"; 19860 + sha512 = "288hcmlwdnqda84ylx9cv413ic0r59k0dp71hy7a200jsb7h1y63277jwdp1jdp13c1b3pl6g2gzr5gjv9p72f5sp7w3p0d34swrqxf"; 19717 19861 }; 19718 19862 }; 19719 19863 "pumpify-1.4.0" = { ··· 19957 20101 src = fetchurl { 19958 20102 url = "https://registry.npmjs.org/query-string/-/query-string-1.0.1.tgz"; 19959 20103 sha1 = "63ac953352499ad670a9681a75680f6bf3dd1faf"; 20104 + }; 20105 + }; 20106 + "query-string-5.0.1" = { 20107 + name = "query-string"; 20108 + packageName = "query-string"; 20109 + version = "5.0.1"; 20110 + src = fetchurl { 20111 + url = "https://registry.npmjs.org/query-string/-/query-string-5.0.1.tgz"; 20112 + sha512 = "0lcnspv96dv03600bgjxk2ypak8mysp77n47jkddpz6ldcgscwyan1akqjrddii4abb2brz6gr6yq9pcbdx63m9i16kk8m5028qrkv8"; 19960 20113 }; 19961 20114 }; 19962 20115 "querystring-0.2.0" = { ··· 20904 21057 sha1 = "ffa71bab952d62f7c1d49b7434355fbc68dffc5a"; 20905 21058 }; 20906 21059 }; 21060 + "responselike-1.0.2" = { 21061 + name = "responselike"; 21062 + packageName = "responselike"; 21063 + version = "1.0.2"; 21064 + src = fetchurl { 21065 + url = "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz"; 21066 + sha1 = "918720ef3b631c5642be068f15ade5a46f4ba1e7"; 21067 + }; 21068 + }; 20907 21069 "restify-4.0.3" = { 20908 21070 name = "restify"; 20909 21071 packageName = "restify"; ··· 21633 21795 sha1 = "f13bf928e42b9c3e79383e61cc3998b5d14e6cdd"; 21634 21796 }; 21635 21797 }; 21636 - "service-runner-2.4.8" = { 21798 + "service-runner-2.5.0" = { 21637 21799 name = "service-runner"; 21638 21800 packageName = "service-runner"; 21639 - version = "2.4.8"; 21801 + version = "2.5.0"; 21640 21802 src = fetchurl { 21641 - url = "https://registry.npmjs.org/service-runner/-/service-runner-2.4.8.tgz"; 21642 - sha1 = "5dd23353bc85bd128ed50b9d5f224ff99b5e8388"; 21803 + url = "https://registry.npmjs.org/service-runner/-/service-runner-2.5.0.tgz"; 21804 + sha1 = "78b347542c5c6ad2f31e78a10533045fc6414c1f"; 21643 21805 }; 21644 21806 }; 21645 21807 "set-blocking-2.0.0" = { ··· 21714 21876 sha512 = "2jlhhawfqdiga1m6if01ks1q3yx56k5vj6wf372589vkswvdflw7224viivxali56b0jjsckpmjy10rj6fcakhw2dbq2psr197kzw86"; 21715 21877 }; 21716 21878 }; 21717 - "sha.js-2.4.9" = { 21879 + "sha.js-2.4.10" = { 21718 21880 name = "sha.js"; 21719 21881 packageName = "sha.js"; 21720 - version = "2.4.9"; 21882 + version = "2.4.10"; 21721 21883 src = fetchurl { 21722 - url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.9.tgz"; 21723 - sha512 = "3l96mlw71zgkmfm9madd3jcndrpm2fm4jz2q5gz9mbm27mdg89hsbrg22pfl32ha76xa3pza83m2mc3b47pnq19mz3j6vkasn9dxk0v"; 21884 + url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.10.tgz"; 21885 + sha512 = "2lfna0mg4mzdki4p3q29rsgywbghvy6f6jy6b61zj68d2d936wfqjgqpsdjchfcqkiim53qknpcnq9iiafyidfrw154qf75a2n2cz5y"; 21724 21886 }; 21725 21887 }; 21726 21888 "shallow-clone-0.1.2" = { ··· 21804 21966 sha1 = "decbcf874b0d1e5fb72e14b164a9683048e9acb3"; 21805 21967 }; 21806 21968 }; 21969 + "shelljs-0.8.0" = { 21970 + name = "shelljs"; 21971 + packageName = "shelljs"; 21972 + version = "0.8.0"; 21973 + src = fetchurl { 21974 + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.0.tgz"; 21975 + sha512 = "0z8im8zw5g4r44mf2iiy61kxi5idq41b4cs6d4c3lv9shh8ag2gnp25kvwawg899bczvh9g95b07gcpabik39md8q2vmnwcjjizdgn1"; 21976 + }; 21977 + }; 21807 21978 "shellwords-0.1.1" = { 21808 21979 name = "shellwords"; 21809 21980 packageName = "shellwords"; ··· 21894 22065 sha512 = "2r1w3cxxmd92r19mjrlzwn6xypjd5vrx0gk21l2bmxcp1x54pavhmifbhq8llxfk6z2lmzly7g3l8rrdl19m65nzlcicwy7cfn3sha6"; 21895 22066 }; 21896 22067 }; 21897 - "simple-git-1.85.0" = { 22068 + "simple-git-1.89.0" = { 21898 22069 name = "simple-git"; 21899 22070 packageName = "simple-git"; 21900 - version = "1.85.0"; 22071 + version = "1.89.0"; 21901 22072 src = fetchurl { 21902 - url = "https://registry.npmjs.org/simple-git/-/simple-git-1.85.0.tgz"; 21903 - sha1 = "563ad291efc8a127735e8fbcd796967377614cd4"; 22073 + url = "https://registry.npmjs.org/simple-git/-/simple-git-1.89.0.tgz"; 22074 + sha1 = "ef52fe734d5060566ce187b2bbace36c2323e34c"; 21904 22075 }; 21905 22076 }; 21906 22077 "simple-lru-cache-0.0.2" = { ··· 22209 22380 sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l"; 22210 22381 }; 22211 22382 }; 22212 - "snyk-1.69.1" = { 22383 + "snyk-1.69.3" = { 22213 22384 name = "snyk"; 22214 22385 packageName = "snyk"; 22215 - version = "1.69.1"; 22386 + version = "1.69.3"; 22216 22387 src = fetchurl { 22217 - url = "https://registry.npmjs.org/snyk/-/snyk-1.69.1.tgz"; 22218 - sha1 = "48f65d6b679c566c92fcfd2278cd16746909660e"; 22388 + url = "https://registry.npmjs.org/snyk/-/snyk-1.69.3.tgz"; 22389 + sha1 = "c948a05982b206002a09d4e55fb16aee6d5e80e0"; 22219 22390 }; 22220 22391 }; 22221 22392 "snyk-config-1.0.1" = { ··· 22326 22497 sha1 = "13743a058437dff890baaf437c333c966a743cb6"; 22327 22498 }; 22328 22499 }; 22329 - "snyk-sbt-plugin-1.2.0" = { 22500 + "snyk-sbt-plugin-1.2.2" = { 22330 22501 name = "snyk-sbt-plugin"; 22331 22502 packageName = "snyk-sbt-plugin"; 22332 - version = "1.2.0"; 22503 + version = "1.2.2"; 22333 22504 src = fetchurl { 22334 - url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-1.2.0.tgz"; 22335 - sha512 = "002ibp199wy3pk8dldcfr83njcrgx7hk1c802hwa9skky7jw5c4infnaj9aignghi2l1w44p3cjk3xwbcrryldj3hh63vbyzpryg3qz"; 22505 + url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-1.2.2.tgz"; 22506 + sha512 = "1sq30kk2kq0flsak5759wylylzgm6ivd6di4lmbkahy858i26yf6kf86f2m86wvlz4fcmxsbcl7p0wkd498cx193v4nbr2hq39jyjlz"; 22336 22507 }; 22337 22508 }; 22338 22509 "snyk-tree-1.0.0" = { ··· 22722 22893 sha512 = "3nwgpximc17yn0lfg8658fxkm2hwbpvnbx5x1g0qgqvjm3vzld96rh1gf6iw1srbkicp0m825sq92r9bnj2r2gl8ys0f7fzivf0sjmx"; 22723 22894 }; 22724 22895 }; 22896 + "source-map-support-0.5.1" = { 22897 + name = "source-map-support"; 22898 + packageName = "source-map-support"; 22899 + version = "0.5.1"; 22900 + src = fetchurl { 22901 + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.1.tgz"; 22902 + sha512 = "276x5a16yv0nlzjdvspsnbkxqhv8lvfj7a0sfzkaasfcwa2rm1ni3h3c0fva63bfqnazbywvs4pzrnbwg43j7gpymjd9cbbndq5x4qi"; 22903 + }; 22904 + }; 22905 + "source-map-support-0.5.2" = { 22906 + name = "source-map-support"; 22907 + packageName = "source-map-support"; 22908 + version = "0.5.2"; 22909 + src = fetchurl { 22910 + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.2.tgz"; 22911 + sha512 = "3hgzhp5z7w8w0sadaa0m7sspd2ihnba3j1rd7l53l1mvx4wjblrbjq2642zz0xxkv4bag4hs4pms7dz5rc8hk5d61d49h6hjrwxqcgp"; 22912 + }; 22913 + }; 22725 22914 "source-map-url-0.4.0" = { 22726 22915 name = "source-map-url"; 22727 22916 packageName = "source-map-url"; ··· 23262 23451 sha1 = "b3f0fa419295202a5a289f6d6be9f4909a617193"; 23263 23452 }; 23264 23453 }; 23454 + "strict-uri-encode-1.1.0" = { 23455 + name = "strict-uri-encode"; 23456 + packageName = "strict-uri-encode"; 23457 + version = "1.1.0"; 23458 + src = fetchurl { 23459 + url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"; 23460 + sha1 = "279b225df1d582b1f54e65addd4352e18faa0713"; 23461 + }; 23462 + }; 23265 23463 "string-1.6.1" = { 23266 23464 name = "string"; 23267 23465 packageName = "string"; ··· 23613 23811 sha1 = "fb15027984751ee7152200e6cd21cd6e19a5de87"; 23614 23812 }; 23615 23813 }; 23616 - "superagent-3.5.2" = { 23617 - name = "superagent"; 23618 - packageName = "superagent"; 23619 - version = "3.5.2"; 23620 - src = fetchurl { 23621 - url = "https://registry.npmjs.org/superagent/-/superagent-3.5.2.tgz"; 23622 - sha1 = "3361a3971567504c351063abeaae0faa23dbf3f8"; 23623 - }; 23624 - }; 23625 23814 "superagent-3.8.2" = { 23626 23815 name = "superagent"; 23627 23816 packageName = "superagent"; ··· 24163 24352 sha1 = "c9c58b575be8407375cb5e2462dacee74359f41d"; 24164 24353 }; 24165 24354 }; 24166 - "timers-browserify-2.0.4" = { 24355 + "timers-browserify-2.0.6" = { 24167 24356 name = "timers-browserify"; 24168 24357 packageName = "timers-browserify"; 24169 - version = "2.0.4"; 24358 + version = "2.0.6"; 24170 24359 src = fetchurl { 24171 - url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.4.tgz"; 24172 - sha512 = "2pddj1k7206wrs3q5z7dzwc657rbdd2m00llzz0h1241fp0y5i32qi2slmfys217hqszbqmvnmjr32msgbjgzh33nxw6py49p4j35mr"; 24360 + url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.6.tgz"; 24361 + sha512 = "0zvmxvcvmv91k667dy2hzd9a2knvhizxvbx73gcnbi5na3ypc3mldfljw062d7n6y2mf7n2gwwc5wr4wrdih927fxahg8s0hinyf38x"; 24173 24362 }; 24174 24363 }; 24175 24364 "timespan-2.3.0" = { ··· 24181 24370 sha1 = "4902ce040bd13d845c8f59b27e9d59bad6f39929"; 24182 24371 }; 24183 24372 }; 24184 - "tiny-lr-1.0.5" = { 24373 + "tiny-lr-1.1.0" = { 24185 24374 name = "tiny-lr"; 24186 24375 packageName = "tiny-lr"; 24187 - version = "1.0.5"; 24376 + version = "1.1.0"; 24188 24377 src = fetchurl { 24189 - url = "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.0.5.tgz"; 24190 - sha512 = "2b8y1xdv7szw0hvad64rghp2zdahs6qhx0k79c0s9xa0a35zbcrb9b9gywixhcxqi1c9ab7ah8ibra22k8baakh7rvmhf904d559g32"; 24378 + url = "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.0.tgz"; 24379 + sha512 = "06rjm9vpcs6h1890gzzj8pbn5k70724dz61qnk2fjwgiva4klx9zzwds5iidlgc31p7q41x6qz81pbbh116ap3jznqw07camvqzm1bz"; 24191 24380 }; 24192 24381 }; 24193 24382 "tinycolor-0.0.1" = { ··· 24343 24532 sha1 = "d17aea72ff2fba39b9e43601be7b3ff72e089852"; 24344 24533 }; 24345 24534 }; 24346 - "toiletdb-1.4.0" = { 24535 + "toiletdb-1.4.1" = { 24347 24536 name = "toiletdb"; 24348 24537 packageName = "toiletdb"; 24349 - version = "1.4.0"; 24538 + version = "1.4.1"; 24350 24539 src = fetchurl { 24351 - url = "https://registry.npmjs.org/toiletdb/-/toiletdb-1.4.0.tgz"; 24352 - sha1 = "6c6f871834b22178c5490f9f832b58c3c7cba852"; 24540 + url = "https://registry.npmjs.org/toiletdb/-/toiletdb-1.4.1.tgz"; 24541 + sha512 = "0c9ayp39hvxd1lzl6cxvsxcys0jzfb698i3as3xrw3n9zpxwmx4sqwisv63bfsmdl10c6v4inpj5kvckhlr3nd3ny1pj264r0qags0l"; 24353 24542 }; 24354 24543 }; 24355 24544 "token-stream-0.0.1" = { ··· 24406 24595 sha1 = "d8c043b44c3c448c9397a3aec42d2df55887037b"; 24407 24596 }; 24408 24597 }; 24598 + "tosource-1.0.0" = { 24599 + name = "tosource"; 24600 + packageName = "tosource"; 24601 + version = "1.0.0"; 24602 + src = fetchurl { 24603 + url = "https://registry.npmjs.org/tosource/-/tosource-1.0.0.tgz"; 24604 + sha1 = "42d88dd116618bcf00d6106dd5446f3427902ff1"; 24605 + }; 24606 + }; 24409 24607 "touch-0.0.3" = { 24410 24608 name = "touch"; 24411 24609 packageName = "touch"; ··· 25441 25639 sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73"; 25442 25640 }; 25443 25641 }; 25642 + "url-parse-lax-3.0.0" = { 25643 + name = "url-parse-lax"; 25644 + packageName = "url-parse-lax"; 25645 + version = "3.0.0"; 25646 + src = fetchurl { 25647 + url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz"; 25648 + sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c"; 25649 + }; 25650 + }; 25444 25651 "url-to-options-1.0.1" = { 25445 25652 name = "url-to-options"; 25446 25653 packageName = "url-to-options"; ··· 25603 25810 sha512 = "2mcnn6w5as2dvz6rj4fb33174z3a1rl9bm2cfazrr4084gq7aal0bkmkwr1cjpkvy1zgni3zdk0570fx7cmnd0k0hg18wfb2hvbigfg"; 25604 25811 }; 25605 25812 }; 25606 - "uue-3.1.0" = { 25813 + "uue-3.1.1" = { 25607 25814 name = "uue"; 25608 25815 packageName = "uue"; 25609 - version = "3.1.0"; 25816 + version = "3.1.1"; 25610 25817 src = fetchurl { 25611 - url = "https://registry.npmjs.org/uue/-/uue-3.1.0.tgz"; 25612 - sha1 = "5d67d37030e66efebbb4b8aac46daf9b55befbf6"; 25818 + url = "https://registry.npmjs.org/uue/-/uue-3.1.1.tgz"; 25819 + sha512 = "29ykgvcsrhwbifm7aa4mf8876c6z2ksc26cnpxf3ljwhg7vfrjz2asvl7ylkjj91alnp2d7n1xvi5qphmn0a1ci091a20mdmnbzg91i"; 25613 25820 }; 25614 25821 }; 25615 25822 "uuid-2.0.3" = { ··· 26864 27071 sha1 = "52a63e56ca0b84a7f3a5f3d61872f126ad7a5943"; 26865 27072 }; 26866 27073 }; 27074 + "xregexp-4.0.0" = { 27075 + name = "xregexp"; 27076 + packageName = "xregexp"; 27077 + version = "4.0.0"; 27078 + src = fetchurl { 27079 + url = "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz"; 27080 + sha512 = "0b2p3pxs6fa0knpdw3qhcpqh47ci9w9r4lfhav4nsg7p7l73izpig0b3knkrsl72nq5ll4pk79is30vwm1c044lnbqyxfi8qkx8qz1w"; 27081 + }; 27082 + }; 26867 27083 "xsalsa20-1.0.2" = { 26868 27084 name = "xsalsa20"; 26869 27085 packageName = "xsalsa20"; ··· 27449 27665 dependencies = [ 27450 27666 sources."@types/form-data-2.2.1" 27451 27667 sources."@types/node-8.5.9" 27452 - sources."@types/request-2.0.12" 27668 + sources."@types/request-2.0.13" 27453 27669 sources."@types/tough-cookie-2.3.2" 27454 27670 sources."@types/uuid-3.4.3" 27455 27671 sources."JSV-4.0.2" ··· 28146 28362 sources."resolve-1.5.0" 28147 28363 sources."ripemd160-2.0.1" 28148 28364 sources."safe-buffer-5.1.1" 28149 - sources."sha.js-2.4.9" 28365 + sources."sha.js-2.4.10" 28150 28366 sources."shasum-1.0.2" 28151 28367 sources."shell-quote-1.6.1" 28152 28368 sources."source-map-0.5.7" ··· 28590 28806 sources."emojic-1.1.14" 28591 28807 sources."emojilib-2.2.12" 28592 28808 sources."escape-string-regexp-1.0.5" 28593 - sources."follow-redirects-1.3.0" 28809 + sources."follow-redirects-1.4.1" 28594 28810 sources."has-ansi-2.0.0" 28595 28811 sources."humanize-plus-1.8.2" 28596 28812 sources."is-buffer-1.1.6" ··· 28836 29052 sources."ee-first-1.1.1" 28837 29053 sources."elementtree-0.1.6" 28838 29054 sources."elliptic-6.4.0" 28839 - sources."encodeurl-1.0.1" 29055 + sources."encodeurl-1.0.2" 28840 29056 sources."end-of-stream-1.4.1" 28841 29057 sources."escape-html-1.0.3" 28842 29058 sources."escape-string-regexp-1.0.5" ··· 29034 29250 sources."send-0.16.1" 29035 29251 sources."serve-static-1.13.1" 29036 29252 sources."setprototypeof-1.1.0" 29037 - sources."sha.js-2.4.9" 29253 + sources."sha.js-2.4.10" 29038 29254 sources."shasum-1.0.2" 29039 29255 sources."shell-quote-1.6.1" 29040 29256 sources."shelljs-0.5.3" ··· 29190 29406 ]; 29191 29407 }) 29192 29408 sources."blake2b-2.1.2" 29193 - sources."blake2b-wasm-1.1.5" 29409 + sources."blake2b-wasm-1.1.7" 29194 29410 sources."body-0.1.0" 29195 29411 sources."boom-4.3.1" 29196 29412 sources."brace-expansion-1.1.8" ··· 29322 29538 sources."varint-5.0.0" 29323 29539 ]; 29324 29540 }) 29325 - sources."hypercore-protocol-6.5.1" 29326 - (sources."hyperdrive-9.12.1" // { 29541 + sources."hypercore-protocol-6.5.2" 29542 + (sources."hyperdrive-9.12.2" // { 29327 29543 dependencies = [ 29328 29544 sources."varint-4.0.1" 29329 29545 ]; ··· 29422 29638 ]; 29423 29639 }) 29424 29640 sources."protocol-buffers-encodings-1.1.0" 29425 - sources."pump-2.0.0" 29641 + sources."pump-2.0.1" 29426 29642 sources."punycode-1.4.1" 29427 29643 sources."qs-6.5.1" 29428 29644 (sources."random-access-file-1.8.1" // { ··· 29491 29707 sources."through2-2.0.3" 29492 29708 sources."thunky-1.0.2" 29493 29709 sources."to-buffer-1.1.0" 29494 - sources."toiletdb-1.4.0" 29710 + sources."toiletdb-1.4.1" 29495 29711 sources."tough-cookie-2.3.3" 29496 29712 sources."township-client-1.3.2" 29497 29713 sources."trim-0.0.1" ··· 29797 30013 sources."pump-1.0.3" 29798 30014 (sources."pumpify-1.4.0" // { 29799 30015 dependencies = [ 29800 - sources."pump-2.0.0" 30016 + sources."pump-2.0.1" 29801 30017 ]; 29802 30018 }) 29803 30019 sources."readable-stream-1.1.14" ··· 29858 30074 sources."assert-plus-1.0.0" 29859 30075 sources."async-2.6.0" 29860 30076 sources."asynckit-0.4.0" 29861 - sources."aws-sdk-2.185.0" 30077 + sources."aws-sdk-2.187.0" 29862 30078 sources."aws-sign2-0.7.0" 29863 30079 sources."aws4-1.6.0" 29864 30080 sources."base64-js-1.2.1" ··· 30443 30659 sources."fs.realpath-1.0.0" 30444 30660 sources."functional-red-black-tree-1.0.1" 30445 30661 sources."glob-7.1.2" 30446 - sources."globals-11.1.0" 30662 + sources."globals-11.2.0" 30447 30663 sources."globby-5.0.0" 30448 30664 sources."graceful-fs-4.1.11" 30449 30665 sources."has-ansi-2.0.0" ··· 30459 30675 sources."is-path-in-cwd-1.0.0" 30460 30676 sources."is-path-inside-1.0.1" 30461 30677 sources."is-promise-2.1.0" 30462 - sources."is-resolvable-1.0.1" 30678 + sources."is-resolvable-1.1.0" 30463 30679 sources."isarray-1.0.0" 30464 30680 sources."isexe-2.0.0" 30465 30681 sources."js-tokens-3.0.2" ··· 30623 30839 sources."fs.realpath-1.0.0" 30624 30840 sources."functional-red-black-tree-1.0.1" 30625 30841 sources."glob-7.1.2" 30626 - sources."globals-11.1.0" 30842 + sources."globals-11.2.0" 30627 30843 sources."globby-5.0.0" 30628 30844 sources."graceful-fs-4.1.11" 30629 30845 sources."has-ansi-2.0.0" ··· 30639 30855 sources."is-path-in-cwd-1.0.0" 30640 30856 sources."is-path-inside-1.0.1" 30641 30857 sources."is-promise-2.1.0" 30642 - sources."is-resolvable-1.0.1" 30858 + sources."is-resolvable-1.1.0" 30643 30859 sources."isarray-1.0.0" 30644 30860 sources."isexe-2.0.0" 30645 30861 sources."js-tokens-3.0.2" ··· 30779 30995 sources."delayed-stream-1.0.0" 30780 30996 sources."ecc-jsbn-0.1.1" 30781 30997 sources."error-ex-1.3.1" 30782 - sources."es6-promise-4.2.2" 30998 + sources."es6-promise-4.2.4" 30783 30999 sources."escape-string-regexp-1.0.5" 30784 31000 sources."exit-hook-1.1.1" 30785 31001 sources."extend-3.0.1" ··· 31121 31337 sources."microee-0.0.6" 31122 31338 sources."minilog-3.1.0" 31123 31339 sources."ms-2.0.0" 31124 - sources."simple-git-1.85.0" 31340 + sources."simple-git-1.89.0" 31125 31341 sources."tabtab-git+https://github.com/mixu/node-tabtab.git" 31126 31342 ]; 31127 31343 buildInputs = globalBuildInputs; ··· 31389 31605 sources."global-modules-1.0.0" 31390 31606 sources."global-prefix-1.0.2" 31391 31607 sources."globule-0.1.0" 31392 - sources."glogg-1.0.0" 31608 + sources."glogg-1.0.1" 31393 31609 sources."graceful-fs-3.0.11" 31394 31610 (sources."gulp-util-3.0.8" // { 31395 31611 dependencies = [ ··· 31841 32057 sources."diff-3.4.0" 31842 32058 sources."ee-first-1.1.1" 31843 32059 sources."elementtree-0.1.7" 31844 - sources."encodeurl-1.0.1" 32060 + sources."encodeurl-1.0.2" 31845 32061 sources."end-of-stream-1.4.1" 31846 32062 sources."error-7.0.2" 31847 32063 sources."escape-html-1.0.3" ··· 32008 32224 }) 32009 32225 sources."tar-stream-1.5.5" 32010 32226 sources."through-2.3.8" 32011 - sources."tiny-lr-1.0.5" 32227 + sources."tiny-lr-1.1.0" 32012 32228 sources."tmp-0.0.33" 32013 32229 sources."tslib-1.9.0" 32014 32230 sources."type-is-1.6.15" ··· 32556 32772 sources."duplexer3-0.1.4" 32557 32773 sources."ecc-jsbn-0.1.1" 32558 32774 sources."ee-first-1.1.1" 32559 - sources."encodeurl-1.0.1" 32775 + sources."encodeurl-1.0.2" 32560 32776 sources."errorhandler-1.5.0" 32561 32777 sources."escape-html-1.0.3" 32562 32778 sources."escape-string-regexp-1.0.5" ··· 32938 33154 sources."ecc-jsbn-0.1.1" 32939 33155 sources."ee-first-1.1.1" 32940 33156 sources."elliptic-6.4.0" 32941 - sources."encodeurl-1.0.1" 33157 + sources."encodeurl-1.0.2" 32942 33158 sources."engine.io-3.1.4" 32943 33159 sources."engine.io-client-3.1.4" 32944 33160 sources."engine.io-parser-2.1.2" ··· 33213 33429 sources."semver-5.5.0" 33214 33430 sources."set-immediate-shim-1.0.1" 33215 33431 sources."setprototypeof-1.0.3" 33216 - sources."sha.js-2.4.9" 33432 + sources."sha.js-2.4.10" 33217 33433 sources."shasum-1.0.2" 33218 33434 sources."shell-quote-1.6.1" 33219 33435 sources."slack-node-0.2.0" ··· 34128 34344 sources."ecc-jsbn-0.1.1" 34129 34345 sources."ee-first-1.1.1" 34130 34346 sources."emoji-regex-6.1.1" 34131 - sources."encodeurl-1.0.1" 34347 + sources."encodeurl-1.0.2" 34132 34348 sources."engine.io-3.1.4" 34133 34349 sources."engine.io-client-3.1.4" 34134 34350 sources."engine.io-parser-2.1.2" ··· 34342 34558 sources."destroy-1.0.4" 34343 34559 sources."duplexer-0.1.1" 34344 34560 sources."ee-first-1.1.1" 34345 - sources."encodeurl-1.0.1" 34561 + sources."encodeurl-1.0.2" 34346 34562 sources."escape-html-1.0.3" 34347 34563 sources."etag-1.8.1" 34348 34564 sources."event-stream-3.3.4" ··· 34991 35207 sources."detect-libc-1.0.3" 34992 35208 sources."ecc-jsbn-0.1.1" 34993 35209 sources."ee-first-1.1.1" 34994 - sources."encodeurl-1.0.1" 35210 + sources."encodeurl-1.0.2" 34995 35211 sources."error-ex-1.3.1" 34996 35212 sources."escape-html-1.0.3" 34997 35213 sources."etag-1.8.1" ··· 35742 35958 sources."duplexify-3.5.3" 35743 35959 sources."ecc-jsbn-0.1.1" 35744 35960 sources."ee-first-1.1.1" 35745 - sources."encodeurl-1.0.1" 35961 + sources."encodeurl-1.0.2" 35746 35962 sources."encoding-0.1.12" 35747 35963 sources."end-of-stream-1.4.1" 35748 35964 sources."entities-1.1.1" ··· 35798 36014 sources."hawk-3.1.3" 35799 36015 (sources."help-me-1.1.0" // { 35800 36016 dependencies = [ 35801 - sources."pump-2.0.0" 36017 + sources."pump-2.0.1" 35802 36018 ]; 35803 36019 }) 35804 36020 sources."hoek-2.16.3" ··· 36063 36279 sources."utf7-1.0.2" 36064 36280 sources."util-deprecate-1.0.2" 36065 36281 sources."utils-merge-1.0.0" 36066 - sources."uue-3.1.0" 36282 + sources."uue-3.1.1" 36067 36283 sources."uuid-3.2.1" 36068 36284 sources."vary-1.1.2" 36069 36285 sources."verror-1.10.0" ··· 36550 36766 sources."ms-2.0.0" 36551 36767 sources."mute-stream-0.0.6" 36552 36768 sources."nconf-0.7.2" 36553 - sources."needle-2.1.0" 36769 + sources."needle-2.1.1" 36554 36770 sources."nested-error-stacks-1.0.2" 36555 36771 sources."node-alias-1.0.4" 36556 36772 sources."node-status-codes-1.0.0" ··· 36624 36840 sources."shebang-regex-1.0.0" 36625 36841 sources."signal-exit-3.0.2" 36626 36842 sources."slide-1.1.6" 36627 - (sources."snyk-1.69.1" // { 36843 + (sources."snyk-1.69.3" // { 36628 36844 dependencies = [ 36629 36845 sources."async-0.9.2" 36630 36846 sources."camelcase-3.0.0" ··· 36651 36867 (sources."snyk-nuget-plugin-1.3.9" // { 36652 36868 dependencies = [ 36653 36869 sources."debug-3.1.0" 36654 - sources."es6-promise-4.2.2" 36870 + sources."es6-promise-4.2.4" 36655 36871 ]; 36656 36872 }) 36657 36873 (sources."snyk-php-plugin-1.3.2" // { ··· 36670 36886 sources."uuid-2.0.3" 36671 36887 ]; 36672 36888 }) 36673 - sources."snyk-sbt-plugin-1.2.0" 36889 + sources."snyk-sbt-plugin-1.2.2" 36674 36890 sources."snyk-tree-1.0.0" 36675 36891 sources."snyk-try-require-1.2.0" 36676 36892 sources."spawn-please-0.3.0" ··· 36792 37008 sources."debug-3.1.0" 36793 37009 sources."decamelize-1.2.0" 36794 37010 sources."error-ex-1.3.1" 36795 - sources."es6-promise-4.2.2" 37011 + sources."es6-promise-4.2.4" 36796 37012 sources."es6-promisify-5.0.0" 36797 37013 sources."escape-string-regexp-1.0.5" 36798 37014 sources."execa-0.7.0" ··· 37017 37233 sources."dtrace-provider-0.8.6" 37018 37234 sources."ecc-jsbn-0.1.1" 37019 37235 sources."ee-first-1.1.1" 37020 - sources."encodeurl-1.0.1" 37236 + sources."encodeurl-1.0.2" 37021 37237 sources."entities-1.1.1" 37022 37238 sources."error-ex-1.3.1" 37023 37239 sources."escape-html-1.0.3" ··· 37169 37385 sources."send-0.16.1" 37170 37386 sources."serve-favicon-2.4.5" 37171 37387 sources."serve-static-1.13.1" 37172 - (sources."service-runner-2.4.8" // { 37388 + (sources."service-runner-2.5.0" // { 37173 37389 dependencies = [ 37174 37390 sources."isarray-1.0.0" 37175 37391 sources."minimist-0.0.8" ··· 38188 38404 sources."ripemd160-2.0.1" 38189 38405 sources."safe-buffer-5.1.1" 38190 38406 sources."set-immediate-shim-1.0.1" 38191 - sources."sha.js-2.4.9" 38407 + sources."sha.js-2.4.10" 38192 38408 sources."shasum-1.0.2" 38193 38409 sources."shell-quote-1.6.1" 38194 38410 sources."source-map-0.5.7" ··· 38312 38528 sources."doctypes-1.1.0" 38313 38529 sources."ecc-jsbn-0.1.1" 38314 38530 sources."ee-first-1.1.1" 38315 - sources."encodeurl-1.0.1" 38531 + sources."encodeurl-1.0.2" 38316 38532 sources."end-of-stream-1.4.1" 38317 38533 sources."errno-0.1.6" 38318 38534 sources."escape-html-1.0.3" ··· 38802 39018 serve = nodeEnv.buildNodePackage { 38803 39019 name = "serve"; 38804 39020 packageName = "serve"; 38805 - version = "6.4.8"; 39021 + version = "6.4.9"; 38806 39022 src = fetchurl { 38807 - url = "https://registry.npmjs.org/serve/-/serve-6.4.8.tgz"; 38808 - sha512 = "0aj9v58ddjz3i5kw19jxc80y84jm22cdyzxfmfszql6p38w2hs1da4bwfx0f5gq32xrb5a8lqfb1ps8da8l9chwcbvac0m9bl2hl926"; 39023 + url = "https://registry.npmjs.org/serve/-/serve-6.4.9.tgz"; 39024 + sha512 = "2241nrhci4lgj15pxzvspx6m3vjdpcsih532sz1mi17fby8yiadv33d84v05z1465cszh35xhzf7kx3yirwzq5zbi7zvzhw13ddsqy0"; 38809 39025 }; 38810 39026 dependencies = [ 38811 39027 sources."@zeit/check-updates-1.0.5" ··· 38861 39077 sources."dot-prop-4.2.0" 38862 39078 sources."duplexer3-0.1.4" 38863 39079 sources."ee-first-1.1.1" 38864 - sources."encodeurl-1.0.1" 39080 + sources."encodeurl-1.0.2" 38865 39081 sources."escape-html-1.0.3" 38866 39082 sources."escape-string-regexp-1.0.5" 38867 39083 sources."etag-1.8.1" ··· 39069 39285 sources."ecc-jsbn-0.1.1" 39070 39286 sources."ee-first-1.1.1" 39071 39287 sources."emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz" 39072 - sources."encodeurl-1.0.1" 39288 + sources."encodeurl-1.0.2" 39073 39289 (sources."engine.io-1.3.1" // { 39074 39290 dependencies = [ 39075 39291 sources."debug-0.6.0" ··· 39299 39515 sources."dtrace-provider-0.8.6" 39300 39516 sources."ecc-jsbn-0.1.1" 39301 39517 sources."ee-first-1.1.1" 39302 - sources."encodeurl-1.0.1" 39518 + sources."encodeurl-1.0.2" 39303 39519 sources."entities-1.1.1" 39304 39520 sources."es6-shim-0.21.1" 39305 39521 sources."escape-html-1.0.3" ··· 39864 40080 sources."is-regex-1.0.4" 39865 40081 sources."is-symbol-1.0.1" 39866 40082 sources."js-yaml-3.10.0" 39867 - sources."mdn-data-1.0.0" 40083 + sources."mdn-data-1.1.0" 39868 40084 sources."minimist-0.0.8" 39869 40085 sources."mkdirp-0.5.1" 39870 40086 sources."nth-check-1.0.1" ··· 40336 40552 ungit = nodeEnv.buildNodePackage { 40337 40553 name = "ungit"; 40338 40554 packageName = "ungit"; 40339 - version = "1.4.5"; 40555 + version = "1.4.7"; 40340 40556 src = fetchurl { 40341 - url = "https://registry.npmjs.org/ungit/-/ungit-1.4.5.tgz"; 40342 - sha512 = "30mf9zybvwgw46nnl5cgwl8chkz32hxj5adyqwkp1gscw6k4jcv70ricjlgaj64k5j9mqjqrs00rjjddmbk33rmh73a1nr06v34fsff"; 40557 + url = "https://registry.npmjs.org/ungit/-/ungit-1.4.7.tgz"; 40558 + sha512 = "1fg2pwdf3d1qnlly7y0kpm8ghx56kc35993ww9v4xgpkdn7ga1s53190yjsifi6dj6j3v6602y8dnr5y0jyp4qm6v4rdb385dw5p2xs"; 40343 40559 }; 40344 40560 dependencies = [ 40345 40561 sources."abbrev-1.1.1" ··· 40430 40646 sources."ecc-jsbn-0.1.1" 40431 40647 sources."editions-1.3.3" 40432 40648 sources."ee-first-1.1.1" 40433 - sources."encodeurl-1.0.1" 40649 + sources."encodeurl-1.0.2" 40434 40650 sources."engine.io-3.1.4" 40435 40651 sources."engine.io-client-3.1.4" 40436 40652 sources."engine.io-parser-2.1.2" ··· 40513 40729 sources."superagent-0.21.0" 40514 40730 ]; 40515 40731 }) 40516 - sources."knockout-3.4.2" 40732 + sources."knockout-3.5.0-beta" 40517 40733 sources."lcid-1.0.0" 40518 40734 sources."locate-path-2.0.0" 40519 40735 sources."lodash-4.17.4" ··· 40648 40864 sources."strip-ansi-3.0.1" 40649 40865 sources."strip-eof-1.0.0" 40650 40866 sources."strip-json-comments-2.0.1" 40651 - (sources."superagent-3.5.2" // { 40867 + (sources."superagent-3.8.2" // { 40652 40868 dependencies = [ 40653 40869 sources."combined-stream-1.0.5" 40654 40870 sources."component-emitter-1.2.1" 40655 40871 sources."cookiejar-2.1.1" 40872 + sources."debug-3.1.0" 40656 40873 sources."delayed-stream-1.0.0" 40657 40874 sources."extend-3.0.1" 40658 40875 sources."form-data-2.3.1" ··· 40944 41161 sources."decamelize-1.2.0" 40945 41162 sources."des.js-1.0.0" 40946 41163 sources."diffie-hellman-5.0.2" 40947 - sources."domain-browser-1.1.7" 41164 + sources."domain-browser-1.2.0" 40948 41165 sources."elliptic-6.4.0" 40949 41166 sources."emojis-list-2.1.0" 40950 41167 sources."enhanced-resolve-3.4.1" ··· 41098 41315 sources."set-blocking-2.0.0" 41099 41316 sources."set-immediate-shim-1.0.1" 41100 41317 sources."setimmediate-1.0.5" 41101 - sources."sha.js-2.4.9" 41318 + sources."sha.js-2.4.10" 41102 41319 sources."shebang-command-1.2.0" 41103 41320 sources."shebang-regex-1.0.0" 41104 41321 sources."signal-exit-3.0.2" ··· 41116 41333 sources."strip-eof-1.0.0" 41117 41334 sources."supports-color-4.5.0" 41118 41335 sources."tapable-0.2.8" 41119 - sources."timers-browserify-2.0.4" 41336 + sources."timers-browserify-2.0.6" 41120 41337 sources."to-arraybuffer-1.0.1" 41121 41338 sources."tty-browserify-0.0.0" 41122 41339 sources."uglify-js-2.8.29" ··· 41176 41393 web-ext = nodeEnv.buildNodePackage { 41177 41394 name = "web-ext"; 41178 41395 packageName = "web-ext"; 41179 - version = "2.3.1"; 41396 + version = "2.3.2"; 41180 41397 src = fetchurl { 41181 - url = "https://registry.npmjs.org/web-ext/-/web-ext-2.3.1.tgz"; 41182 - sha1 = "b5b2cdd0d9a486d2f43fe29f9881e1f42f2f28d0"; 41398 + url = "https://registry.npmjs.org/web-ext/-/web-ext-2.3.2.tgz"; 41399 + sha1 = "45c7cb50cbea90d6127a3c4bb128802a67f67c93"; 41183 41400 }; 41184 41401 dependencies = [ 41185 41402 sources."@types/node-9.3.0" ··· 41193 41410 sources."adbkit-2.11.0" 41194 41411 sources."adbkit-logcat-1.1.0" 41195 41412 sources."adbkit-monkey-1.0.1" 41196 - (sources."addons-linter-0.32.0" // { 41413 + (sources."addons-linter-0.33.0" // { 41197 41414 dependencies = [ 41198 41415 sources."ajv-keywords-1.5.1" 41199 41416 sources."ansi-escapes-1.4.0" ··· 41202 41419 sources."async-2.6.0" 41203 41420 sources."cli-cursor-1.0.2" 41204 41421 sources."debug-3.1.0" 41422 + sources."decamelize-1.2.0" 41205 41423 sources."domelementtype-1.1.3" 41206 41424 sources."figures-1.7.0" 41207 - sources."globals-11.1.0" 41425 + sources."globals-11.2.0" 41208 41426 sources."inquirer-0.12.0" 41209 41427 sources."is-fullwidth-code-point-1.0.0" 41210 41428 sources."mute-stream-0.0.5" ··· 41217 41435 sources."rx-lite-3.1.2" 41218 41436 sources."slice-ansi-0.0.4" 41219 41437 sources."source-map-0.6.1" 41220 - (sources."source-map-support-0.4.18" // { 41221 - dependencies = [ 41222 - sources."source-map-0.5.7" 41223 - ]; 41224 - }) 41438 + sources."source-map-support-0.5.1" 41225 41439 sources."string-width-1.0.2" 41226 41440 sources."strip-ansi-4.0.0" 41227 41441 sources."supports-color-4.5.0" 41228 41442 sources."table-3.8.3" 41443 + sources."underscore-1.6.0" 41229 41444 (sources."yargs-10.0.3" // { 41230 41445 dependencies = [ 41231 41446 sources."ansi-regex-2.1.1" ··· 41284 41499 (sources."babel-register-6.26.0" // { 41285 41500 dependencies = [ 41286 41501 sources."chalk-1.1.3" 41502 + sources."source-map-support-0.4.18" 41287 41503 ]; 41288 41504 }) 41289 41505 sources."babel-runtime-6.26.0" ··· 41354 41570 sources."columnify-1.5.4" 41355 41571 sources."combined-stream-1.0.5" 41356 41572 sources."commander-2.13.0" 41357 - sources."common-tags-1.6.0" 41573 + sources."common-tags-1.7.2" 41358 41574 sources."compress-commons-1.2.2" 41359 41575 sources."concat-map-0.0.1" 41360 41576 sources."concat-stream-1.6.0" ··· 41379 41595 sources."dashdash-1.14.1" 41380 41596 sources."debounce-1.1.0" 41381 41597 sources."debug-2.6.9" 41382 - sources."decamelize-1.2.0" 41598 + sources."decamelize-2.0.0" 41383 41599 sources."deep-extend-0.4.2" 41384 41600 sources."deep-is-0.1.3" 41385 41601 sources."deepcopy-0.6.3" ··· 41405 41621 sources."ecc-jsbn-0.1.1" 41406 41622 sources."ecdsa-sig-formatter-1.0.9" 41407 41623 sources."emoji-regex-6.1.3" 41624 + sources."encoding-0.1.12" 41408 41625 sources."end-of-stream-1.4.1" 41409 41626 sources."entities-1.1.1" 41410 41627 sources."error-ex-1.3.1" ··· 41412 41629 sources."es6-error-4.1.1" 41413 41630 sources."es6-iterator-2.0.3" 41414 41631 sources."es6-map-0.1.5" 41415 - sources."es6-promise-4.2.2" 41632 + sources."es6-promise-4.2.4" 41416 41633 sources."es6-promisify-5.0.0" 41417 41634 sources."es6-set-0.1.5" 41418 41635 sources."es6-symbol-3.1.1" ··· 41439 41656 }) 41440 41657 sources."globals-9.18.0" 41441 41658 sources."is-fullwidth-code-point-2.0.0" 41659 + sources."shelljs-0.7.8" 41442 41660 sources."string-width-2.1.1" 41443 41661 sources."strip-ansi-3.0.1" 41444 41662 sources."supports-color-2.0.0" ··· 41505 41723 sources."get-caller-file-1.0.2" 41506 41724 sources."get-stream-3.0.0" 41507 41725 sources."getpass-0.1.7" 41726 + sources."gettext-parser-1.1.0" 41508 41727 (sources."git-rev-sync-1.9.1" // { 41509 41728 dependencies = [ 41510 41729 sources."shelljs-0.7.7" ··· 41524 41743 sources."har-validator-5.0.3" 41525 41744 sources."has-1.0.1" 41526 41745 sources."has-ansi-2.0.0" 41746 + sources."has-color-0.1.7" 41527 41747 sources."has-flag-2.0.0" 41528 41748 sources."hawk-6.0.2" 41529 41749 sources."hoek-4.2.0" ··· 41572 41792 sources."is-property-1.0.2" 41573 41793 sources."is-redirect-1.0.0" 41574 41794 sources."is-relative-0.1.3" 41575 - sources."is-resolvable-1.0.1" 41795 + sources."is-resolvable-1.1.0" 41576 41796 sources."is-retry-allowed-1.1.0" 41577 41797 sources."is-stream-1.1.0" 41578 41798 sources."is-typedarray-1.0.0" ··· 41655 41875 ]; 41656 41876 }) 41657 41877 sources."node-forge-0.7.1" 41658 - sources."node-notifier-5.1.2" 41878 + sources."node-notifier-5.2.1" 41879 + sources."nomnom-1.8.1" 41659 41880 sources."normalize-package-data-2.4.0" 41660 41881 sources."normalize-path-2.1.1" 41661 41882 sources."npm-run-path-2.0.2" ··· 41695 41916 sources."pinkie-promise-2.0.1" 41696 41917 sources."pino-4.10.3" 41697 41918 sources."pluralize-7.0.0" 41919 + (sources."po2json-0.4.5" // { 41920 + dependencies = [ 41921 + sources."ansi-styles-1.0.0" 41922 + sources."chalk-0.4.0" 41923 + sources."strip-ansi-0.1.1" 41924 + ]; 41925 + }) 41698 41926 sources."postcss-6.0.14" 41699 41927 sources."prelude-ls-1.1.2" 41700 41928 sources."prepend-http-1.0.4" ··· 41708 41936 sources."process-nextick-args-1.0.7" 41709 41937 sources."progress-2.0.0" 41710 41938 sources."pseudomap-1.0.2" 41711 - sources."pump-2.0.0" 41939 + sources."pump-2.0.1" 41712 41940 sources."punycode-1.4.1" 41713 41941 sources."qs-6.5.1" 41714 41942 sources."quick-format-unescaped-1.1.2" ··· 41766 41994 sources."semver-diff-2.1.0" 41767 41995 sources."set-blocking-2.0.0" 41768 41996 sources."set-immediate-shim-1.0.1" 41769 - sources."sha.js-2.4.9" 41997 + sources."sha.js-2.4.10" 41770 41998 sources."shebang-command-1.2.0" 41771 41999 sources."shebang-regex-1.0.0" 41772 42000 sources."shell-quote-1.6.1" 41773 - sources."shelljs-0.7.8" 42001 + sources."shelljs-0.8.0" 41774 42002 sources."shellwords-0.1.1" 41775 42003 (sources."sign-addon-0.2.2" // { 41776 42004 dependencies = [ ··· 41802 42030 sources."slice-ansi-1.0.0" 41803 42031 sources."sntp-2.1.0" 41804 42032 sources."source-map-0.5.7" 41805 - (sources."source-map-support-0.5.0" // { 42033 + (sources."source-map-support-0.5.2" // { 41806 42034 dependencies = [ 41807 42035 sources."source-map-0.6.1" 41808 42036 ]; ··· 41847 42075 sources."tmp-0.0.33" 41848 42076 sources."to-fast-properties-1.0.3" 41849 42077 sources."topo-1.1.0" 42078 + sources."tosource-1.0.0" 41850 42079 sources."tough-cookie-2.3.3" 41851 42080 sources."tr46-1.0.1" 41852 42081 sources."traverse-0.6.6" ··· 41904 42133 sources."xml2js-0.4.19" 41905 42134 sources."xmlbuilder-9.0.4" 41906 42135 sources."xmldom-0.1.27" 42136 + sources."xregexp-4.0.0" 41907 42137 sources."xtend-4.0.1" 41908 42138 sources."y18n-3.2.1" 41909 42139 sources."yallist-2.1.2" 41910 42140 (sources."yargs-6.6.0" // { 41911 42141 dependencies = [ 41912 42142 sources."camelcase-3.0.0" 42143 + sources."decamelize-1.2.0" 41913 42144 sources."find-up-1.1.2" 41914 42145 sources."is-fullwidth-code-point-1.0.0" 41915 42146 sources."os-locale-1.4.0" ··· 41976 42207 yo = nodeEnv.buildNodePackage { 41977 42208 name = "yo"; 41978 42209 packageName = "yo"; 41979 - version = "2.0.0"; 42210 + version = "2.0.1"; 41980 42211 src = fetchurl { 41981 - url = "https://registry.npmjs.org/yo/-/yo-2.0.0.tgz"; 41982 - sha512 = "3maxk0a2p7xyz9bkfyx3jd0inm9y7a3wc8b7rqx8p5fsmx8qkqnbvhxwn4210l689vd5p3xphn147dyclqsqmmgp7cqyswyyfsmm1lr"; 42212 + url = "https://registry.npmjs.org/yo/-/yo-2.0.1.tgz"; 42213 + sha512 = "390n0gdbxr25mr804mrwfqw6r6srk4q9spnsnnlfvlsfvr6dwd93nrgh0l2sr76a9jdw2jiycwc0241h6zch6hi0jlhg3w8hk6i4hyy"; 41983 42214 }; 41984 42215 dependencies = [ 42216 + sources."@sindresorhus/is-0.7.0" 41985 42217 sources."aggregate-error-1.0.0" 41986 42218 sources."ajv-5.5.2" 41987 42219 sources."ansi-0.3.1" ··· 42012 42244 sources."boxen-1.3.0" 42013 42245 sources."brace-expansion-1.1.8" 42014 42246 sources."builtin-modules-1.1.1" 42247 + sources."cacheable-request-2.1.4" 42015 42248 sources."camelcase-2.1.1" 42016 42249 sources."camelcase-keys-2.1.0" 42017 42250 sources."capture-stack-trace-1.0.0" ··· 42025 42258 sources."cli-width-2.2.0" 42026 42259 sources."clone-1.0.3" 42027 42260 sources."clone-regexp-1.0.0" 42261 + sources."clone-response-1.0.2" 42028 42262 sources."clone-stats-0.0.1" 42029 42263 sources."co-4.6.0" 42030 42264 sources."code-point-at-1.1.0" ··· 42048 42282 sources."dashdash-1.14.1" 42049 42283 sources."debug-2.6.9" 42050 42284 sources."decamelize-1.2.0" 42285 + sources."decode-uri-component-0.2.0" 42286 + sources."decompress-response-3.3.0" 42051 42287 sources."deep-extend-0.4.2" 42052 42288 sources."default-uid-1.0.0" 42053 42289 sources."delayed-stream-1.0.0" ··· 42055 42291 sources."diff-3.4.0" 42056 42292 sources."dot-prop-4.2.0" 42057 42293 sources."downgrade-root-1.2.2" 42058 - sources."duplexer2-0.1.4" 42059 42294 sources."duplexer3-0.1.4" 42060 42295 sources."each-async-1.1.1" 42061 42296 sources."ecc-jsbn-0.1.1" ··· 42077 42312 sources."foreachasync-3.0.0" 42078 42313 sources."forever-agent-0.6.1" 42079 42314 sources."form-data-2.3.1" 42315 + sources."from2-2.3.0" 42080 42316 sources."fs.realpath-1.0.0" 42081 42317 (sources."fullname-3.3.0" // { 42082 42318 dependencies = [ ··· 42092 42328 sources."glob-7.1.2" 42093 42329 sources."global-dirs-0.1.1" 42094 42330 sources."globby-6.1.0" 42095 - sources."got-6.7.1" 42331 + sources."got-8.0.3" 42096 42332 sources."graceful-fs-4.1.11" 42097 42333 sources."grouped-queue-0.3.3" 42098 42334 sources."har-schema-2.0.0" 42099 42335 sources."har-validator-5.0.3" 42100 42336 sources."has-ansi-2.0.0" 42101 42337 sources."has-flag-2.0.0" 42338 + sources."has-symbol-support-x-1.4.1" 42339 + sources."has-to-string-tag-x-1.4.1" 42102 42340 sources."has-unicode-2.0.1" 42103 42341 sources."hawk-6.0.2" 42104 42342 sources."hoek-4.2.0" 42105 42343 sources."hosted-git-info-2.5.0" 42344 + sources."http-cache-semantics-3.8.1" 42106 42345 sources."http-signature-1.2.0" 42107 42346 sources."humanize-string-1.0.1" 42108 42347 sources."iconv-lite-0.4.19" ··· 42146 42385 sources."xdg-basedir-2.0.0" 42147 42386 ]; 42148 42387 }) 42388 + sources."into-stream-3.1.0" 42149 42389 sources."is-arrayish-0.2.1" 42150 42390 sources."is-builtin-module-1.0.0" 42151 42391 sources."is-docker-1.1.0" ··· 42154 42394 sources."is-installed-globally-0.1.0" 42155 42395 sources."is-npm-1.0.0" 42156 42396 sources."is-obj-1.0.1" 42397 + sources."is-object-1.0.1" 42157 42398 sources."is-path-inside-1.0.1" 42399 + sources."is-plain-obj-1.1.0" 42158 42400 sources."is-promise-2.1.0" 42159 42401 sources."is-redirect-1.0.0" 42160 42402 sources."is-regexp-1.0.0" ··· 42168 42410 sources."isarray-1.0.0" 42169 42411 sources."isexe-2.0.0" 42170 42412 sources."isstream-0.1.2" 42413 + sources."isurl-1.0.0" 42171 42414 sources."jsbn-0.1.1" 42415 + sources."json-buffer-3.0.0" 42172 42416 sources."json-schema-0.2.3" 42173 42417 sources."json-schema-traverse-0.3.1" 42174 42418 sources."json-stringify-safe-5.0.1" 42175 42419 sources."jsprim-1.4.1" 42420 + sources."keyv-3.0.0" 42176 42421 sources."latest-version-3.1.0" 42177 42422 sources."load-json-file-1.1.0" 42178 42423 sources."locate-path-2.0.0" ··· 42200 42445 sources."mime-db-1.30.0" 42201 42446 sources."mime-types-2.1.17" 42202 42447 sources."mimic-fn-1.1.0" 42448 + sources."mimic-response-1.0.0" 42203 42449 sources."minimatch-3.0.4" 42204 42450 sources."minimist-1.2.0" 42205 42451 sources."mkdirp-0.5.1" 42206 42452 sources."ms-2.0.0" 42207 42453 sources."mute-stream-0.0.7" 42208 - sources."node-status-codes-1.0.0" 42209 42454 sources."normalize-package-data-2.4.0" 42210 - (sources."npm-keyword-4.2.0" // { 42455 + sources."normalize-url-2.0.1" 42456 + (sources."npm-keyword-5.0.0" // { 42211 42457 dependencies = [ 42212 - sources."got-5.7.1" 42213 - sources."timed-out-3.1.3" 42214 - sources."unzip-response-1.0.2" 42458 + sources."got-7.1.0" 42459 + sources."p-timeout-1.2.1" 42460 + sources."prepend-http-1.0.4" 42461 + sources."url-parse-lax-1.0.0" 42215 42462 ]; 42216 42463 }) 42217 42464 sources."npm-run-path-2.0.2" ··· 42234 42481 sources."osenv-0.1.4" 42235 42482 sources."osx-release-1.1.0" 42236 42483 sources."p-any-1.1.0" 42484 + sources."p-cancelable-0.3.0" 42237 42485 sources."p-finally-1.0.0" 42486 + sources."p-is-promise-1.1.0" 42238 42487 sources."p-limit-1.2.0" 42239 42488 sources."p-locate-2.0.0" 42240 42489 sources."p-some-2.0.1" 42490 + sources."p-timeout-2.0.1" 42241 42491 sources."p-try-1.0.0" 42242 - (sources."package-json-2.4.0" // { 42492 + (sources."package-json-4.0.1" // { 42243 42493 dependencies = [ 42244 - sources."got-5.7.1" 42245 - sources."timed-out-3.1.3" 42246 - sources."unzip-response-1.0.2" 42494 + sources."got-6.7.1" 42495 + sources."prepend-http-1.0.4" 42496 + sources."url-parse-lax-1.0.0" 42247 42497 ]; 42248 42498 }) 42249 42499 sources."pad-component-0.0.1" ··· 42263 42513 sources."pify-3.0.0" 42264 42514 sources."pinkie-2.0.4" 42265 42515 sources."pinkie-promise-2.0.1" 42266 - sources."prepend-http-1.0.4" 42516 + sources."prepend-http-2.0.0" 42267 42517 sources."process-nextick-args-1.0.7" 42268 42518 sources."pseudomap-1.0.2" 42269 42519 sources."punycode-1.4.1" 42270 42520 sources."qs-6.5.1" 42521 + sources."query-string-5.0.1" 42271 42522 sources."rc-1.2.4" 42272 - sources."read-all-stream-3.1.0" 42273 42523 sources."read-pkg-1.1.0" 42274 42524 (sources."read-pkg-up-2.0.0" // { 42275 42525 dependencies = [ ··· 42290 42540 sources."repeating-2.0.1" 42291 42541 sources."replace-ext-0.0.1" 42292 42542 sources."request-2.83.0" 42543 + sources."responselike-1.0.2" 42293 42544 sources."restore-cursor-2.0.0" 42294 42545 sources."root-check-1.0.0" 42295 42546 sources."run-async-2.3.0" ··· 42312 42563 sources."signal-exit-3.0.2" 42313 42564 sources."slide-1.1.6" 42314 42565 sources."sntp-2.1.0" 42566 + sources."sort-keys-2.0.0" 42315 42567 sources."sort-on-2.0.0" 42316 42568 sources."spawn-sync-1.0.15" 42317 42569 sources."spdx-correct-1.0.2" 42318 42570 sources."spdx-expression-parse-1.0.4" 42319 42571 sources."spdx-license-ids-1.2.2" 42320 42572 sources."sshpk-1.13.1" 42573 + sources."strict-uri-encode-1.1.0" 42321 42574 sources."string-length-1.0.1" 42322 42575 sources."string-width-2.1.1" 42323 42576 sources."string_decoder-1.0.3" ··· 42368 42621 sources."camelcase-4.1.0" 42369 42622 sources."chalk-2.3.0" 42370 42623 sources."execa-0.7.0" 42371 - sources."package-json-4.0.1" 42372 42624 sources."supports-color-4.5.0" 42373 42625 ]; 42374 42626 }) 42375 - sources."url-parse-lax-1.0.0" 42627 + sources."url-parse-lax-3.0.0" 42628 + sources."url-to-options-1.0.1" 42376 42629 sources."user-home-2.0.0" 42377 42630 sources."util-deprecate-1.0.2" 42378 42631 sources."uuid-3.2.1" ··· 42410 42663 sources."ansi-styles-3.2.0" 42411 42664 sources."chalk-2.3.0" 42412 42665 sources."debug-3.1.0" 42413 - sources."log-symbols-2.1.0" 42666 + sources."log-symbols-2.2.0" 42414 42667 sources."pify-2.3.0" 42415 42668 sources."supports-color-4.5.0" 42416 42669 ];
+1
pkgs/development/node-packages/node-packages-v8.json
··· 8 8 , "node-gyp" 9 9 , "node-gyp-build" 10 10 , "node-pre-gyp" 11 + , "pnpm" 11 12 , "semver" 12 13 , "sloc" 13 14 ]
+5448 -25
pkgs/development/node-packages/node-packages-v8.nix
··· 4 4 5 5 let 6 6 sources = { 7 + "@most/multicast-1.3.0" = { 8 + name = "_at_most_slash_multicast"; 9 + packageName = "@most/multicast"; 10 + version = "1.3.0"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@most/multicast/-/multicast-1.3.0.tgz"; 13 + sha512 = "2zs8n5gpgl9frbw960m4q63svcgvqkbb9iay3klw3qcj4c0hwbw6llbkj9h4v13s1fh5gc4k6zg2cxpz4vipbp6kzbrd9v0500zqq8d"; 14 + }; 15 + }; 16 + "@most/prelude-1.7.0" = { 17 + name = "_at_most_slash_prelude"; 18 + packageName = "@most/prelude"; 19 + version = "1.7.0"; 20 + src = fetchurl { 21 + url = "https://registry.npmjs.org/@most/prelude/-/prelude-1.7.0.tgz"; 22 + sha512 = "0cdx6nag042jl38sm34c4cpc70wya0xns7f5j9i3hs8kwca8lkgbss9db6jkgd090hpvxq2qh5fzxnfnw705ph1zklgmnxf9wgw4l1s"; 23 + }; 24 + }; 25 + "@pnpm/check-package-1.0.0" = { 26 + name = "_at_pnpm_slash_check-package"; 27 + packageName = "@pnpm/check-package"; 28 + version = "1.0.0"; 29 + src = fetchurl { 30 + url = "https://registry.npmjs.org/@pnpm/check-package/-/check-package-1.0.0.tgz"; 31 + sha512 = "1hg0g5snqp1lkmnmis335fpvg7xz93snvlbzqmyxxmyl0ab2d4wdlar6rwl7gr59113cpsyn2k3sawh656zrp6fp8q1rdy6x24a3pxc"; 32 + }; 33 + }; 34 + "@pnpm/default-fetcher-0.3.2" = { 35 + name = "_at_pnpm_slash_default-fetcher"; 36 + packageName = "@pnpm/default-fetcher"; 37 + version = "0.3.2"; 38 + src = fetchurl { 39 + url = "https://registry.npmjs.org/@pnpm/default-fetcher/-/default-fetcher-0.3.2.tgz"; 40 + sha512 = "25lb4pf7sqsw31h5rdaqii969bl19ypip4l3x19i28p3c2174zi1hk152y3r6z36rfp66sfwq0p6f6gvnx10lf46vigw02ppv7szk49"; 41 + }; 42 + }; 43 + "@pnpm/default-resolver-0.1.2" = { 44 + name = "_at_pnpm_slash_default-resolver"; 45 + packageName = "@pnpm/default-resolver"; 46 + version = "0.1.2"; 47 + src = fetchurl { 48 + url = "https://registry.npmjs.org/@pnpm/default-resolver/-/default-resolver-0.1.2.tgz"; 49 + sha512 = "3smnd8xcmslnba22i9p10f7a724whjm2wvjz3l9fvw23fw8d5nwn78xdkgrvpraqb7xw75xwq8cxj3nvmvib1iqpmp3pcx7j4px5fhx"; 50 + }; 51 + }; 52 + "@pnpm/fs-locker-1.0.1" = { 53 + name = "_at_pnpm_slash_fs-locker"; 54 + packageName = "@pnpm/fs-locker"; 55 + version = "1.0.1"; 56 + src = fetchurl { 57 + url = "https://registry.npmjs.org/@pnpm/fs-locker/-/fs-locker-1.0.1.tgz"; 58 + sha512 = "3nadpl6sinl2h484m7nnn1vsry8pp0kfxgw8apbnyhajqsq00chx3f2v93hl26xnxri2wlhz0s2pc15617xb0xlpln9n1lzrr43fqw2"; 59 + }; 60 + }; 61 + "@pnpm/git-fetcher-0.2.0" = { 62 + name = "_at_pnpm_slash_git-fetcher"; 63 + packageName = "@pnpm/git-fetcher"; 64 + version = "0.2.0"; 65 + src = fetchurl { 66 + url = "https://registry.npmjs.org/@pnpm/git-fetcher/-/git-fetcher-0.2.0.tgz"; 67 + sha512 = "2ax9drzzzrc2c7risivkxbv76nxdxafhfckl5g481b3k92gc8r8hl4j6kwrq8vl62sav010ssd7giadxs0b0h0nxqgwppsf0v942492"; 68 + }; 69 + }; 70 + "@pnpm/git-resolver-0.3.0" = { 71 + name = "_at_pnpm_slash_git-resolver"; 72 + packageName = "@pnpm/git-resolver"; 73 + version = "0.3.0"; 74 + src = fetchurl { 75 + url = "https://registry.npmjs.org/@pnpm/git-resolver/-/git-resolver-0.3.0.tgz"; 76 + sha512 = "3xh8kq7pykgpp39g7pjd7x9f834q2dj3jxw3fcrikim1vpn0xiim3g17mz9s87ci0cxrgxcrn2sd4qcap99z9jg5s577af64z4pj6qw"; 77 + }; 78 + }; 79 + "@pnpm/local-resolver-0.1.1" = { 80 + name = "_at_pnpm_slash_local-resolver"; 81 + packageName = "@pnpm/local-resolver"; 82 + version = "0.1.1"; 83 + src = fetchurl { 84 + url = "https://registry.npmjs.org/@pnpm/local-resolver/-/local-resolver-0.1.1.tgz"; 85 + sha512 = "3i66qx6iw71i07pg21k5j044r807ysq2ijy8q4a92jdg2a17w55ah2j59rs2mxsljl9kkxvp06852q8x00j2g8bbw2v5iivl5191h7y"; 86 + }; 87 + }; 88 + "@pnpm/logger-1.0.0" = { 89 + name = "_at_pnpm_slash_logger"; 90 + packageName = "@pnpm/logger"; 91 + version = "1.0.0"; 92 + src = fetchurl { 93 + url = "https://registry.npmjs.org/@pnpm/logger/-/logger-1.0.0.tgz"; 94 + sha512 = "2yi5y7s91gz8dhv7gjqar4mp7j6mr2m05irm9l85v2xlzsaqx7mcjw0gap3xmpfmbi1di5rb1g57l7k3zh4nrh0mzcixfd2ykkq86jm"; 95 + }; 96 + }; 97 + "@pnpm/npm-resolver-0.3.11" = { 98 + name = "_at_pnpm_slash_npm-resolver"; 99 + packageName = "@pnpm/npm-resolver"; 100 + version = "0.3.11"; 101 + src = fetchurl { 102 + url = "https://registry.npmjs.org/@pnpm/npm-resolver/-/npm-resolver-0.3.11.tgz"; 103 + sha512 = "1mjzlk9hv180r3igrcg3kmgvkp5wkv2ipsr4aqmcjzky8sgz152g22292ps6sndcggri71a8ivjzi61f36bxcz60vz55zvmi6mnawdz"; 104 + }; 105 + }; 106 + "@pnpm/outdated-0.2.5" = { 107 + name = "_at_pnpm_slash_outdated"; 108 + packageName = "@pnpm/outdated"; 109 + version = "0.2.5"; 110 + src = fetchurl { 111 + url = "https://registry.npmjs.org/@pnpm/outdated/-/outdated-0.2.5.tgz"; 112 + sha512 = "08y7lv6gzw8yyzj24djya1pzh8r41rciz102lhb3nq279dyg5sgzr18z6fqlff8krdw160a8adx5s4csmlmfah2akawpczz9h8zy609"; 113 + }; 114 + }; 115 + "@pnpm/package-requester-0.7.1" = { 116 + name = "_at_pnpm_slash_package-requester"; 117 + packageName = "@pnpm/package-requester"; 118 + version = "0.7.1"; 119 + src = fetchurl { 120 + url = "https://registry.npmjs.org/@pnpm/package-requester/-/package-requester-0.7.1.tgz"; 121 + sha512 = "09azfnn5831bniyy2va2bjwaxx2pvgbxwqzd82f4p4y4610b26ii3mpyhpd5l19via1il1ylxc73na8ih2ihgv8xi9x9jd4dv6lfnfz"; 122 + }; 123 + }; 124 + "@pnpm/pkgid-to-filename-1.0.0" = { 125 + name = "_at_pnpm_slash_pkgid-to-filename"; 126 + packageName = "@pnpm/pkgid-to-filename"; 127 + version = "1.0.0"; 128 + src = fetchurl { 129 + url = "https://registry.npmjs.org/@pnpm/pkgid-to-filename/-/pkgid-to-filename-1.0.0.tgz"; 130 + sha512 = "17f44ay160i8pd1sl26v7ph8vdbx6bhydp0jhdc6mslhlyp4bwd1i9220hjvpiyiqkx4hwb4pa5b6hqzq3nyz8ldmna084wfz5q6x8y"; 131 + }; 132 + }; 133 + "@pnpm/server-0.7.1" = { 134 + name = "_at_pnpm_slash_server"; 135 + packageName = "@pnpm/server"; 136 + version = "0.7.1"; 137 + src = fetchurl { 138 + url = "https://registry.npmjs.org/@pnpm/server/-/server-0.7.1.tgz"; 139 + sha512 = "0y2h510ps6kg1ssdwfpi0wrb4ps7jr28qrng2hfwh01r969f2j1nskajzvn6wa68hnfjq2ysajl66nwccrqydsj24w6dn2kl1jbl0b6"; 140 + }; 141 + }; 142 + "@pnpm/tarball-fetcher-0.3.4" = { 143 + name = "_at_pnpm_slash_tarball-fetcher"; 144 + packageName = "@pnpm/tarball-fetcher"; 145 + version = "0.3.4"; 146 + src = fetchurl { 147 + url = "https://registry.npmjs.org/@pnpm/tarball-fetcher/-/tarball-fetcher-0.3.4.tgz"; 148 + sha512 = "1mpgr0ywrzkxq013ci9rjc9w9jdmr4lp5x121wwnnlybnzsxb98vzkh9mhmlrm77i98sb2drv880d82wgkdxkzx2d445pcmcsmf4z0w"; 149 + }; 150 + }; 151 + "@pnpm/tarball-resolver-0.1.0" = { 152 + name = "_at_pnpm_slash_tarball-resolver"; 153 + packageName = "@pnpm/tarball-resolver"; 154 + version = "0.1.0"; 155 + src = fetchurl { 156 + url = "https://registry.npmjs.org/@pnpm/tarball-resolver/-/tarball-resolver-0.1.0.tgz"; 157 + sha512 = "3rdjpckjhhcamkin62ycyqqssvjxd1kx7k927z8m7ing9sqgsf2ascpg2wpp2kh1shbgl5kkldgbalnqm41xv09fqa9ka9rd3saxrr1"; 158 + }; 159 + }; 160 + "@pnpm/types-1.7.0" = { 161 + name = "_at_pnpm_slash_types"; 162 + packageName = "@pnpm/types"; 163 + version = "1.7.0"; 164 + src = fetchurl { 165 + url = "https://registry.npmjs.org/@pnpm/types/-/types-1.7.0.tgz"; 166 + sha512 = "2bww115m0q5d4m69xvm0kn8xmidncrp3xc8rn2sj03xpkhnd78mcn3m0ib13sq0mlhl4fgq3abvdhlhmxicdp3g6j9zb8awxkif0zm6"; 167 + }; 168 + }; 169 + "@sindresorhus/is-0.7.0" = { 170 + name = "_at_sindresorhus_slash_is"; 171 + packageName = "@sindresorhus/is"; 172 + version = "0.7.0"; 173 + src = fetchurl { 174 + url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz"; 175 + sha512 = "2ilygr40l2yqbk6lix4xnnnqsq6fxa6sysdxg49bg1ax5gzhwy3bcjbdlk7lndgh9055slpx6fybs3p8mhvbsnnjkmkqzrfy8l5mn1q"; 176 + }; 177 + }; 178 + "@types/archy-0.0.31" = { 179 + name = "_at_types_slash_archy"; 180 + packageName = "@types/archy"; 181 + version = "0.0.31"; 182 + src = fetchurl { 183 + url = "https://registry.npmjs.org/@types/archy/-/archy-0.0.31.tgz"; 184 + sha512 = "08lzn97gp9rbcmfs592xib111b3fn7nlvmnkn3vpxm2ins5as3p3s3447d5y22lgx6zr6696q9dv27mjgm1cabi1zh2amq57f5p3rxz"; 185 + }; 186 + }; 187 + "@types/byline-4.2.31" = { 188 + name = "_at_types_slash_byline"; 189 + packageName = "@types/byline"; 190 + version = "4.2.31"; 191 + src = fetchurl { 192 + url = "https://registry.npmjs.org/@types/byline/-/byline-4.2.31.tgz"; 193 + sha1 = "0e61fcb9c03e047d21c4496554c7116297ab60cd"; 194 + }; 195 + }; 196 + "@types/chalk-0.4.31" = { 197 + name = "_at_types_slash_chalk"; 198 + packageName = "@types/chalk"; 199 + version = "0.4.31"; 200 + src = fetchurl { 201 + url = "https://registry.npmjs.org/@types/chalk/-/chalk-0.4.31.tgz"; 202 + sha1 = "a31d74241a6b1edbb973cf36d97a2896834a51f9"; 203 + }; 204 + }; 205 + "@types/common-tags-1.4.0" = { 206 + name = "_at_types_slash_common-tags"; 207 + packageName = "@types/common-tags"; 208 + version = "1.4.0"; 209 + src = fetchurl { 210 + url = "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.4.0.tgz"; 211 + sha512 = "1s47pidf7gs7k79gxz1yy0rwhamf147h9ylvg9b6wfc8p3ixpzsq2xlj2w99mq9pi2j1g2flia2z21babjhrdzln1snggivxx46v38w"; 212 + }; 213 + }; 214 + "@types/get-port-3.2.0" = { 215 + name = "_at_types_slash_get-port"; 216 + packageName = "@types/get-port"; 217 + version = "3.2.0"; 218 + src = fetchurl { 219 + url = "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz"; 220 + sha512 = "3axab8z99gfcfzqvrqs2dq6qa24abjxblh17grpqxxgcz0wyg5xrabj5ss8zzcn7ybpgx2n2gy401hbdxgz96zvwig3g3343pqn08sf"; 221 + }; 222 + }; 223 + "@types/got-7.1.6" = { 224 + name = "_at_types_slash_got"; 225 + packageName = "@types/got"; 226 + version = "7.1.6"; 227 + src = fetchurl { 228 + url = "https://registry.npmjs.org/@types/got/-/got-7.1.6.tgz"; 229 + sha512 = "0l95rpnrhc6n7khfjm4cl59206f387xap0j2qrk1j6z5gginkxfnkps2l0jw4jq842ii0hzdcakgxnllc2zxmdzsdg2z1wkm28jqf1i"; 230 + }; 231 + }; 232 + "@types/load-json-file-2.0.7" = { 233 + name = "_at_types_slash_load-json-file"; 234 + packageName = "@types/load-json-file"; 235 + version = "2.0.7"; 236 + src = fetchurl { 237 + url = "https://registry.npmjs.org/@types/load-json-file/-/load-json-file-2.0.7.tgz"; 238 + sha512 = "1gwn4lafk2nq3nrxl8vjbndpb1ky25hkj4h7hjxh8kyxzlqmhk8258ah4a5g4fdv5yap970nkpsn8vsss3iwh7qah1b9vsmz66gmc9n"; 239 + }; 240 + }; 241 + "@types/mem-1.1.2" = { 242 + name = "_at_types_slash_mem"; 243 + packageName = "@types/mem"; 244 + version = "1.1.2"; 245 + src = fetchurl { 246 + url = "https://registry.npmjs.org/@types/mem/-/mem-1.1.2.tgz"; 247 + sha1 = "e3c8b095f2f2563b518f0aad59df9fe6a8b82065"; 248 + }; 249 + }; 250 + "@types/mz-0.0.32" = { 251 + name = "_at_types_slash_mz"; 252 + packageName = "@types/mz"; 253 + version = "0.0.32"; 254 + src = fetchurl { 255 + url = "https://registry.npmjs.org/@types/mz/-/mz-0.0.32.tgz"; 256 + sha512 = "3i9s14bzsibxc5700404s654iygj7j301kvrkmyf1wy5ncglr1m9rcgysfy5zhmsjpp96g009fm66hy1py92imjfa77pb51n9wz4bbk"; 257 + }; 258 + }; 259 + "@types/node-7.0.52" = { 260 + name = "_at_types_slash_node"; 261 + packageName = "@types/node"; 262 + version = "7.0.52"; 263 + src = fetchurl { 264 + url = "https://registry.npmjs.org/@types/node/-/node-7.0.52.tgz"; 265 + sha512 = "3jzvdqsd0pgl0ax2vbn9h8iawx4m6pjf21wb8lqz34glnacjz5l4qv2b3h53j2dbs497g6aqdvkxfahrwvkc9a1q5zy3c46q9174flf"; 266 + }; 267 + }; 268 + "@types/node-8.5.9" = { 269 + name = "_at_types_slash_node"; 270 + packageName = "@types/node"; 271 + version = "8.5.9"; 272 + src = fetchurl { 273 + url = "https://registry.npmjs.org/@types/node/-/node-8.5.9.tgz"; 274 + sha512 = "2j38fqqziiv6m51w16lz6lgivrkycvn4nwch7sdpg32hbl5kv5m2ngg4y4jrf0v1s7iryi5gyh9729b8l1p48cf9hf0gj567h13grxk"; 275 + }; 276 + }; 277 + "@types/node-9.3.0" = { 278 + name = "_at_types_slash_node"; 279 + packageName = "@types/node"; 280 + version = "9.3.0"; 281 + src = fetchurl { 282 + url = "https://registry.npmjs.org/@types/node/-/node-9.3.0.tgz"; 283 + sha512 = "0mhmzddyv8rhkha7ibpbsa5dfygzaa90438aqzpg9w7d31n093a7spx2zg4zfki4qrab71xrfb381hmqajn826cnrw9kc7kv2y5zl60"; 284 + }; 285 + }; 286 + "@types/nopt-3.0.29" = { 287 + name = "_at_types_slash_nopt"; 288 + packageName = "@types/nopt"; 289 + version = "3.0.29"; 290 + src = fetchurl { 291 + url = "https://registry.npmjs.org/@types/nopt/-/nopt-3.0.29.tgz"; 292 + sha1 = "f19df3db4c97ee1459a2740028320a71d70964ce"; 293 + }; 294 + }; 295 + "@types/npm-2.0.29" = { 296 + name = "_at_types_slash_npm"; 297 + packageName = "@types/npm"; 298 + version = "2.0.29"; 299 + src = fetchurl { 300 + url = "https://registry.npmjs.org/@types/npm/-/npm-2.0.29.tgz"; 301 + sha512 = "1ccspslp1mil7f8w4dj3khyxxv5fpakkky4s4bnvvsd2b1hgvwahpv8bk83rr9aq2as2q6hi3143g3b6aynh3ybpf6d9mlksw6qdjii"; 302 + }; 303 + }; 304 + "@types/p-limit-1.1.2" = { 305 + name = "_at_types_slash_p-limit"; 306 + packageName = "@types/p-limit"; 307 + version = "1.1.2"; 308 + src = fetchurl { 309 + url = "https://registry.npmjs.org/@types/p-limit/-/p-limit-1.1.2.tgz"; 310 + sha512 = "21nzl33ss5mcflc6p0b0wgfhijb97nf1zr3s52ffvq8xy1l0svqwy3alqpj8g1ycsjisblh4xrcigrn2bzak702z4jnpxpbss02jx96"; 311 + }; 312 + }; 313 + "@types/p-queue-1.1.0" = { 314 + name = "_at_types_slash_p-queue"; 315 + packageName = "@types/p-queue"; 316 + version = "1.1.0"; 317 + src = fetchurl { 318 + url = "https://registry.npmjs.org/@types/p-queue/-/p-queue-1.1.0.tgz"; 319 + sha512 = "1881hys9v61yxxzjmwckxgf0z5i562ix7xb6ibzfb6qmf40hl1ah8l2dlbqiq3vsglmy56vbjcndsx7skjnzrcapamdnhwapfcazdwl"; 320 + }; 321 + }; 322 + "@types/p-series-1.0.1" = { 323 + name = "_at_types_slash_p-series"; 324 + packageName = "@types/p-series"; 325 + version = "1.0.1"; 326 + src = fetchurl { 327 + url = "https://registry.npmjs.org/@types/p-series/-/p-series-1.0.1.tgz"; 328 + sha512 = "0vpq52z9kblmkbqdp6icimy1qiyklhjarryn4n4svpa96srz4q7k98496rf3dcgy1wpn79jfvg4ddibvw88x7rbbb2jkrhz9gmzs2vp"; 329 + }; 330 + }; 331 + "@types/ramda-0.25.16" = { 332 + name = "_at_types_slash_ramda"; 333 + packageName = "@types/ramda"; 334 + version = "0.25.16"; 335 + src = fetchurl { 336 + url = "https://registry.npmjs.org/@types/ramda/-/ramda-0.25.16.tgz"; 337 + sha512 = "1an84z8hbgidxn2dbkg8ln94z7si3a6a4cchv3ax86ci9bryiqm6q576m1chfbfag5zjm2pxk2h7s16n0b6qgd3i5y9wj541w95mp4c"; 338 + }; 339 + }; 340 + "@types/rc-0.0.1" = { 341 + name = "_at_types_slash_rc"; 342 + packageName = "@types/rc"; 343 + version = "0.0.1"; 344 + src = fetchurl { 345 + url = "https://registry.npmjs.org/@types/rc/-/rc-0.0.1.tgz"; 346 + sha1 = "1f5b8a1b3b1ac6d1fee137c53fac5fa0f28ae0d7"; 347 + }; 348 + }; 349 + "@types/retry-0.10.2" = { 350 + name = "_at_types_slash_retry"; 351 + packageName = "@types/retry"; 352 + version = "0.10.2"; 353 + src = fetchurl { 354 + url = "https://registry.npmjs.org/@types/retry/-/retry-0.10.2.tgz"; 355 + sha512 = "18ksn4fqz03wac8179aagjcfibm1k6lrzlpy8nzig47jn083sr64bsw1mdzbdwfxypi8flimg2l1g9prq6r0fqjbqyjvvahhmin98if"; 356 + }; 357 + }; 358 + "@types/semver-5.4.0" = { 359 + name = "_at_types_slash_semver"; 360 + packageName = "@types/semver"; 361 + version = "5.4.0"; 362 + src = fetchurl { 363 + url = "https://registry.npmjs.org/@types/semver/-/semver-5.4.0.tgz"; 364 + sha512 = "256379swd2mh4gi5vxsgk9pf7387g32xkw1vsj1jhs7q4njds107nmkkxpaddjv5w5cqwbiwl64sil7bgqdcg8fyjfdg13wxyyc449w"; 365 + }; 366 + }; 367 + "@types/update-notifier-1.0.3" = { 368 + name = "_at_types_slash_update-notifier"; 369 + packageName = "@types/update-notifier"; 370 + version = "1.0.3"; 371 + src = fetchurl { 372 + url = "https://registry.npmjs.org/@types/update-notifier/-/update-notifier-1.0.3.tgz"; 373 + sha512 = "0fivfj3sqfmhj3z8sp11iqc0hgzyyn50pximpbx56jk7rkvvw40pl0qzdlzcf97vm5c6yvdsixasgm0vh24gh79grxm237n2cvavd04"; 374 + }; 375 + }; 376 + "@types/uuid-3.4.3" = { 377 + name = "_at_types_slash_uuid"; 378 + packageName = "@types/uuid"; 379 + version = "3.4.3"; 380 + src = fetchurl { 381 + url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.3.tgz"; 382 + sha512 = "1psrs8sjpmhz8sz2zjkkd7743vzdi7q7vcj8p219q1pkfawr619rl1m5pczp69hbm1769kn8zwlbayjylhl7an5hkvkdd2bi04lpx75"; 383 + }; 384 + }; 385 + "@types/write-json-file-2.2.1" = { 386 + name = "_at_types_slash_write-json-file"; 387 + packageName = "@types/write-json-file"; 388 + version = "2.2.1"; 389 + src = fetchurl { 390 + url = "https://registry.npmjs.org/@types/write-json-file/-/write-json-file-2.2.1.tgz"; 391 + sha512 = "2sasn3m49kqb3y62b2k4avvmb5536z98sq6rkmq7wb441pxaxvqj1ajfxn08jxgg7d4bznfc7gf7knwdnbp2m8k83nimxg6jd9bzlr5"; 392 + }; 393 + }; 394 + "@zkochan/cmd-shim-2.2.4" = { 395 + name = "_at_zkochan_slash_cmd-shim"; 396 + packageName = "@zkochan/cmd-shim"; 397 + version = "2.2.4"; 398 + src = fetchurl { 399 + url = "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-2.2.4.tgz"; 400 + sha512 = "0s6wbip576kwjkjcvgf3l6fszrbp1n7ijpjhwjy02hvdfb0hj9ynfi92ninp5blfd1mdhfp361cb76c2y4z1dbyxyc8q5cs7sivag04"; 401 + }; 402 + }; 403 + "@zkochan/libnpx-9.6.1" = { 404 + name = "_at_zkochan_slash_libnpx"; 405 + packageName = "@zkochan/libnpx"; 406 + version = "9.6.1"; 407 + src = fetchurl { 408 + url = "https://registry.npmjs.org/@zkochan/libnpx/-/libnpx-9.6.1.tgz"; 409 + sha512 = "3lwjqxnqxn1jq5fnsdh31mvy9q4y5i000qd7xmra7wlmalxag1py7903f36s1l8bxfxh8j409vpnrz8pkhnc5vwipdn91kdzl8qvxj7"; 410 + }; 411 + }; 412 + "@zkochan/npm-package-arg-1.0.0" = { 413 + name = "_at_zkochan_slash_npm-package-arg"; 414 + packageName = "@zkochan/npm-package-arg"; 415 + version = "1.0.0"; 416 + src = fetchurl { 417 + url = "https://registry.npmjs.org/@zkochan/npm-package-arg/-/npm-package-arg-1.0.0.tgz"; 418 + sha512 = "2v87vqr2pjg6phz5h8mngbymf3b4fmqawisjfng2c424qib6bwldhfvkwqxqfla4s2bzry1qb5dm89if3lddvi3dbp2xqvy9k1h3wxr"; 419 + }; 420 + }; 421 + "JSONStream-1.3.2" = { 422 + name = "JSONStream"; 423 + packageName = "JSONStream"; 424 + version = "1.3.2"; 425 + src = fetchurl { 426 + url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz"; 427 + sha1 = "c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea"; 428 + }; 429 + }; 7 430 "abbrev-1.1.1" = { 8 431 name = "abbrev"; 9 432 packageName = "abbrev"; ··· 22 445 sha1 = "9a8eac8ff79866f3f9b4bb1443ca778f1598aeda"; 23 446 }; 24 447 }; 448 + "add-subtract-date-1.0.13" = { 449 + name = "add-subtract-date"; 450 + packageName = "add-subtract-date"; 451 + version = "1.0.13"; 452 + src = fetchurl { 453 + url = "https://registry.npmjs.org/add-subtract-date/-/add-subtract-date-1.0.13.tgz"; 454 + sha512 = "1jpp2jqxqm1ljj8a6xs15yl579jc48fdx4kflfd0faa78gy91gda0svy4jdv5dqqj1c5ccssq24kyz1ck5c3g4qykia2x32qmc2rc5x"; 455 + }; 456 + }; 457 + "agent-base-4.2.0" = { 458 + name = "agent-base"; 459 + packageName = "agent-base"; 460 + version = "4.2.0"; 461 + src = fetchurl { 462 + url = "https://registry.npmjs.org/agent-base/-/agent-base-4.2.0.tgz"; 463 + sha512 = "0i6q0c347f7z5c56gi1cggjiwvdhl3p9zfsysq66gqggk3prlqildnpva900rz8f8gfc8rav8jk7m51z9dhias0z7v3rnzyjm9pzr3k"; 464 + }; 465 + }; 466 + "agentkeepalive-3.3.0" = { 467 + name = "agentkeepalive"; 468 + packageName = "agentkeepalive"; 469 + version = "3.3.0"; 470 + src = fetchurl { 471 + url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.3.0.tgz"; 472 + sha512 = "0svpj8gbh57a1l3zcds9kd8dkh4r2fyacpkrxvffbpj5pgvbf26h93q31niqbqsciswdxlx0fhikljqwg40lvmwxl299nb2gfjmqa7p"; 473 + }; 474 + }; 25 475 "ajv-4.11.8" = { 26 476 name = "ajv"; 27 477 packageName = "ajv"; ··· 40 490 sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965"; 41 491 }; 42 492 }; 493 + "ansi-align-2.0.0" = { 494 + name = "ansi-align"; 495 + packageName = "ansi-align"; 496 + version = "2.0.0"; 497 + src = fetchurl { 498 + url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz"; 499 + sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f"; 500 + }; 501 + }; 43 502 "ansi-diff-stream-1.2.0" = { 44 503 name = "ansi-diff-stream"; 45 504 packageName = "ansi-diff-stream"; ··· 49 508 sha1 = "eb325c20ac3623ecd592011a9295d76d97de460e"; 50 509 }; 51 510 }; 511 + "ansi-escapes-1.4.0" = { 512 + name = "ansi-escapes"; 513 + packageName = "ansi-escapes"; 514 + version = "1.4.0"; 515 + src = fetchurl { 516 + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz"; 517 + sha1 = "d3a8a83b319aa67793662b13e761c7911422306e"; 518 + }; 519 + }; 520 + "ansi-escapes-3.0.0" = { 521 + name = "ansi-escapes"; 522 + packageName = "ansi-escapes"; 523 + version = "3.0.0"; 524 + src = fetchurl { 525 + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz"; 526 + sha512 = "06szfav8g7xywvqsis16nnkjqs2snhv37r4m53l1ax8k2sahvqv9id2klam32jajqd08ylw8g9wbcjr971igx6vh8idan76drrjby9v"; 527 + }; 528 + }; 529 + "ansi-parser-2.0.0" = { 530 + name = "ansi-parser"; 531 + packageName = "ansi-parser"; 532 + version = "2.0.0"; 533 + src = fetchurl { 534 + url = "https://registry.npmjs.org/ansi-parser/-/ansi-parser-2.0.0.tgz"; 535 + sha1 = "433498af32fee8c2a1df2c4e47941bc029bcf407"; 536 + }; 537 + }; 538 + "ansi-parser-3.0.0" = { 539 + name = "ansi-parser"; 540 + packageName = "ansi-parser"; 541 + version = "3.0.0"; 542 + src = fetchurl { 543 + url = "https://registry.npmjs.org/ansi-parser/-/ansi-parser-3.0.0.tgz"; 544 + sha1 = "945c0e7232caf5675217375b3eb8892008c14629"; 545 + }; 546 + }; 547 + "ansi-parser-3.2.8" = { 548 + name = "ansi-parser"; 549 + packageName = "ansi-parser"; 550 + version = "3.2.8"; 551 + src = fetchurl { 552 + url = "https://registry.npmjs.org/ansi-parser/-/ansi-parser-3.2.8.tgz"; 553 + sha1 = "ad80a6351ac5e58cc7e8a761abc037b5505041d0"; 554 + }; 555 + }; 52 556 "ansi-regex-2.1.1" = { 53 557 name = "ansi-regex"; 54 558 packageName = "ansi-regex"; ··· 67 571 sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 68 572 }; 69 573 }; 574 + "ansi-styles-2.2.1" = { 575 + name = "ansi-styles"; 576 + packageName = "ansi-styles"; 577 + version = "2.2.1"; 578 + src = fetchurl { 579 + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; 580 + sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; 581 + }; 582 + }; 70 583 "ansi-styles-3.2.0" = { 71 584 name = "ansi-styles"; 72 585 packageName = "ansi-styles"; ··· 76 589 sha512 = "2x19fs1qvg7ifsdvii4g8kqpa5hir1lm0k0y0fz6dhm5c8gh4z9il4wqczl078p2ikmrav23dmj86cxy8y1j22k4mv59d8qq6c8wx1n"; 77 590 }; 78 591 }; 592 + "ansicolors-0.3.2" = { 593 + name = "ansicolors"; 594 + packageName = "ansicolors"; 595 + version = "0.3.2"; 596 + src = fetchurl { 597 + url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"; 598 + sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"; 599 + }; 600 + }; 601 + "ansistyles-0.1.3" = { 602 + name = "ansistyles"; 603 + packageName = "ansistyles"; 604 + version = "0.1.3"; 605 + src = fetchurl { 606 + url = "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"; 607 + sha1 = "5de60415bda071bb37127854c864f41b23254539"; 608 + }; 609 + }; 610 + "ansy-1.0.13" = { 611 + name = "ansy"; 612 + packageName = "ansy"; 613 + version = "1.0.13"; 614 + src = fetchurl { 615 + url = "https://registry.npmjs.org/ansy/-/ansy-1.0.13.tgz"; 616 + sha512 = "1a13d7ws8k5vnckqfbrlmmmdxxmj0fjlsgs4h1g8ymmm6fz019gykr01kr479dsqzikgcbmz56jnfj1jjknllij7b840w7mzhvpxvyc"; 617 + }; 618 + }; 619 + "any-promise-1.3.0" = { 620 + name = "any-promise"; 621 + packageName = "any-promise"; 622 + version = "1.3.0"; 623 + src = fetchurl { 624 + url = "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz"; 625 + sha1 = "abc6afeedcea52e809cdc0376aed3ce39635d17f"; 626 + }; 627 + }; 79 628 "anymatch-1.3.2" = { 80 629 name = "anymatch"; 81 630 packageName = "anymatch"; ··· 112 661 sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3"; 113 662 }; 114 663 }; 664 + "archy-1.0.0" = { 665 + name = "archy"; 666 + packageName = "archy"; 667 + version = "1.0.0"; 668 + src = fetchurl { 669 + url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"; 670 + sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"; 671 + }; 672 + }; 115 673 "are-we-there-yet-1.1.4" = { 116 674 name = "are-we-there-yet"; 117 675 packageName = "are-we-there-yet"; ··· 119 677 src = fetchurl { 120 678 url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz"; 121 679 sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d"; 680 + }; 681 + }; 682 + "argparse-1.0.9" = { 683 + name = "argparse"; 684 + packageName = "argparse"; 685 + version = "1.0.9"; 686 + src = fetchurl { 687 + url = "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz"; 688 + sha1 = "73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"; 122 689 }; 123 690 }; 124 691 "arr-diff-2.0.0" = { ··· 139 706 sha512 = "2vdly17xk5kw7bfzajrjdnw4ml3wrfblx8064n0i4fxlchcscx2mvnwkq2bnnqvbqvdy4vs9ad462lz0rid7khysly9m9vzjiblly1g"; 140 707 }; 141 708 }; 709 + "array-find-index-1.0.2" = { 710 + name = "array-find-index"; 711 + packageName = "array-find-index"; 712 + version = "1.0.2"; 713 + src = fetchurl { 714 + url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz"; 715 + sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1"; 716 + }; 717 + }; 718 + "array-flatten-2.1.1" = { 719 + name = "array-flatten"; 720 + packageName = "array-flatten"; 721 + version = "2.1.1"; 722 + src = fetchurl { 723 + url = "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz"; 724 + sha1 = "426bb9da84090c1838d812c8150af20a8331e296"; 725 + }; 726 + }; 727 + "array-includes-3.0.3" = { 728 + name = "array-includes"; 729 + packageName = "array-includes"; 730 + version = "3.0.3"; 731 + src = fetchurl { 732 + url = "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz"; 733 + sha1 = "184b48f62d92d7452bb31b323165c7f8bd02266d"; 734 + }; 735 + }; 142 736 "array-lru-1.1.1" = { 143 737 name = "array-lru"; 144 738 packageName = "array-lru"; ··· 148 742 sha1 = "0c7e1b4e022ae166ff1e8448c595f3181fcd3337"; 149 743 }; 150 744 }; 745 + "array-union-1.0.2" = { 746 + name = "array-union"; 747 + packageName = "array-union"; 748 + version = "1.0.2"; 749 + src = fetchurl { 750 + url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"; 751 + sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; 752 + }; 753 + }; 754 + "array-uniq-1.0.3" = { 755 + name = "array-uniq"; 756 + packageName = "array-uniq"; 757 + version = "1.0.3"; 758 + src = fetchurl { 759 + url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"; 760 + sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; 761 + }; 762 + }; 151 763 "array-unique-0.2.1" = { 152 764 name = "array-unique"; 153 765 packageName = "array-unique"; ··· 155 767 src = fetchurl { 156 768 url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz"; 157 769 sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53"; 770 + }; 771 + }; 772 + "arrify-1.0.1" = { 773 + name = "arrify"; 774 + packageName = "arrify"; 775 + version = "1.0.1"; 776 + src = fetchurl { 777 + url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"; 778 + sha1 = "898508da2226f380df904728456849c1501a4b0d"; 779 + }; 780 + }; 781 + "as-table-1.0.31" = { 782 + name = "as-table"; 783 + packageName = "as-table"; 784 + version = "1.0.31"; 785 + src = fetchurl { 786 + url = "https://registry.npmjs.org/as-table/-/as-table-1.0.31.tgz"; 787 + sha1 = "d00180024ecbb6d1a747150df751d3716aea8166"; 788 + }; 789 + }; 790 + "asap-2.0.6" = { 791 + name = "asap"; 792 + packageName = "asap"; 793 + version = "2.0.6"; 794 + src = fetchurl { 795 + url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"; 796 + sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; 158 797 }; 159 798 }; 160 799 "asn1-0.2.3" = { ··· 256 895 sha1 = "83ef5ca860b2b32e4a0deedee8c771b9db57471e"; 257 896 }; 258 897 }; 898 + "babel-runtime-6.26.0" = { 899 + name = "babel-runtime"; 900 + packageName = "babel-runtime"; 901 + version = "6.26.0"; 902 + src = fetchurl { 903 + url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; 904 + sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 905 + }; 906 + }; 259 907 "balanced-match-1.0.0" = { 260 908 name = "balanced-match"; 261 909 packageName = "balanced-match"; ··· 265 913 sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 266 914 }; 267 915 }; 916 + "base64-js-0.0.8" = { 917 + name = "base64-js"; 918 + packageName = "base64-js"; 919 + version = "0.0.8"; 920 + src = fetchurl { 921 + url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz"; 922 + sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978"; 923 + }; 924 + }; 268 925 "bcrypt-pbkdf-1.0.1" = { 269 926 name = "bcrypt-pbkdf"; 270 927 packageName = "bcrypt-pbkdf"; ··· 283 940 sha512 = "1kvjv5hs1c53b5g2vghpnncn4zj397sa0vpbx1pzpn8ngq52s3xq9923gnl2kzkh1mhyrl277jrh87a766yks89qvz8b4jczr44xr9p"; 284 941 }; 285 942 }; 943 + "bindings-1.3.0" = { 944 + name = "bindings"; 945 + packageName = "bindings"; 946 + version = "1.3.0"; 947 + src = fetchurl { 948 + url = "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz"; 949 + sha512 = "15lvjac4av3h7xmks8jgd56vryz5xb27r8xcpfwhfyr9dv305lms5llc1x6nx6nfvha873d4vg04nfi89aj4jkxplrnjiyc9kjf34hf"; 950 + }; 951 + }; 286 952 "bitfield-rle-2.1.0" = { 287 953 name = "bitfield-rle"; 288 954 packageName = "bitfield-rle"; ··· 299 965 src = fetchurl { 300 966 url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-7.10.0.tgz"; 301 967 sha512 = "10md5792s6q3xwdrmwh1a8ax9w128g607b5qsbxzw8x0gl9184g754hprchl6mq8lmf4f8qylk2h8vavsnbn9yy9gzjnyh2kwrzmxky"; 968 + }; 969 + }; 970 + "bl-1.2.1" = { 971 + name = "bl"; 972 + packageName = "bl"; 973 + version = "1.2.1"; 974 + src = fetchurl { 975 + url = "https://registry.npmjs.org/bl/-/bl-1.2.1.tgz"; 976 + sha1 = "cac328f7bee45730d404b692203fcb590e172d5e"; 302 977 }; 303 978 }; 304 979 "blake2b-2.1.2" = { ··· 310 985 sha1 = "6880eddca35cfede92c4fb2724221334f989145a"; 311 986 }; 312 987 }; 313 - "blake2b-wasm-1.1.5" = { 988 + "blake2b-wasm-1.1.7" = { 314 989 name = "blake2b-wasm"; 315 990 packageName = "blake2b-wasm"; 316 - version = "1.1.5"; 991 + version = "1.1.7"; 317 992 src = fetchurl { 318 - url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.5.tgz"; 319 - sha512 = "2a8y5gcrrzkv35qa7s8x34m4mmb2nbincn2amxsjwfgqijnqd57hsh7id6p5y21sxfqf1ffjcfb5p8k04n3h7g81mrfvn4207my65s7"; 993 + url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.7.tgz"; 994 + sha512 = "1q4aaql83818qzgh01c6x9jvcchmd6bq7r0kfs3f364vhwxnp7qc25y3h2ij5751mi1zhh96874ib0afn8an92xh3ag1kv5g2yhflm0"; 320 995 }; 321 996 }; 322 997 "block-stream-0.0.9" = { ··· 328 1003 sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a"; 329 1004 }; 330 1005 }; 1006 + "bluebird-3.5.1" = { 1007 + name = "bluebird"; 1008 + packageName = "bluebird"; 1009 + version = "3.5.1"; 1010 + src = fetchurl { 1011 + url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz"; 1012 + sha512 = "2631bhp784qng0ifbypsmvijn6kjfvkhq2335kdz8ix5qi3wb3lbpg94xjn1av2s6i95ygr5a4y9j1721dw6zdbywwh1m48by4qpa1h"; 1013 + }; 1014 + }; 331 1015 "body-0.1.0" = { 332 1016 name = "body"; 333 1017 packageName = "body"; ··· 335 1019 src = fetchurl { 336 1020 url = "https://registry.npmjs.org/body/-/body-0.1.0.tgz"; 337 1021 sha1 = "e714fe28cd8848aa34cdf2c9f242bbe2e15d1cd8"; 1022 + }; 1023 + }; 1024 + "bole-3.0.2" = { 1025 + name = "bole"; 1026 + packageName = "bole"; 1027 + version = "3.0.2"; 1028 + src = fetchurl { 1029 + url = "https://registry.npmjs.org/bole/-/bole-3.0.2.tgz"; 1030 + sha1 = "bc8a483ca94049da9b837c1ad11cdfebee6e0514"; 338 1031 }; 339 1032 }; 340 1033 "boom-2.10.1" = { ··· 364 1057 sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437"; 365 1058 }; 366 1059 }; 1060 + "boxen-1.3.0" = { 1061 + name = "boxen"; 1062 + packageName = "boxen"; 1063 + version = "1.3.0"; 1064 + src = fetchurl { 1065 + url = "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz"; 1066 + sha512 = "0pmn5jcnph7yfgfhlncg1lys066cq44kavj4d9qhmyy9705w61pabpwlma09xg4xplzbxh78d3m4xwvjwk478r3xyqnmpzq79yy7lsc"; 1067 + }; 1068 + }; 367 1069 "brace-expansion-1.1.8" = { 368 1070 name = "brace-expansion"; 369 1071 packageName = "brace-expansion"; ··· 389 1091 src = fetchurl { 390 1092 url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz"; 391 1093 sha1 = "f351d32969d32fa5d7a5567154263d928ae3bd1f"; 1094 + }; 1095 + }; 1096 + "browserify-zlib-0.1.4" = { 1097 + name = "browserify-zlib"; 1098 + packageName = "browserify-zlib"; 1099 + version = "0.1.4"; 1100 + src = fetchurl { 1101 + url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz"; 1102 + sha1 = "bb35f8a519f600e0fa6b8485241c979d0141fb2d"; 1103 + }; 1104 + }; 1105 + "buffer-3.6.0" = { 1106 + name = "buffer"; 1107 + packageName = "buffer"; 1108 + version = "3.6.0"; 1109 + src = fetchurl { 1110 + url = "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz"; 1111 + sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb"; 392 1112 }; 393 1113 }; 394 1114 "buffer-alloc-unsafe-1.0.0" = { ··· 418 1138 sha512 = "3bgz1zhq9ng3gypq825f00p9qi9y6z7wvkkf28nhjlyifnb3lk1dkmbya84k0ja79zv8kmmhvalwcnnz92533ip7pnjp3is1w9cxyp3"; 419 1139 }; 420 1140 }; 1141 + "bug-killer-4.4.4" = { 1142 + name = "bug-killer"; 1143 + packageName = "bug-killer"; 1144 + version = "4.4.4"; 1145 + src = fetchurl { 1146 + url = "https://registry.npmjs.org/bug-killer/-/bug-killer-4.4.4.tgz"; 1147 + sha1 = "96e0322b9437a2b0672d78aacd1ed2bef11f945a"; 1148 + }; 1149 + }; 1150 + "builtin-modules-1.1.1" = { 1151 + name = "builtin-modules"; 1152 + packageName = "builtin-modules"; 1153 + version = "1.1.1"; 1154 + src = fetchurl { 1155 + url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"; 1156 + sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; 1157 + }; 1158 + }; 1159 + "builtins-1.0.3" = { 1160 + name = "builtins"; 1161 + packageName = "builtins"; 1162 + version = "1.0.3"; 1163 + src = fetchurl { 1164 + url = "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz"; 1165 + sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88"; 1166 + }; 1167 + }; 421 1168 "bulk-write-stream-1.1.3" = { 422 1169 name = "bulk-write-stream"; 423 1170 packageName = "bulk-write-stream"; ··· 427 1174 sha1 = "d29ca385fbd53f357aee5bd3d3028732b62ae275"; 428 1175 }; 429 1176 }; 1177 + "byline-5.0.0" = { 1178 + name = "byline"; 1179 + packageName = "byline"; 1180 + version = "5.0.0"; 1181 + src = fetchurl { 1182 + url = "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz"; 1183 + sha1 = "741c5216468eadc457b03410118ad77de8c1ddb1"; 1184 + }; 1185 + }; 430 1186 "bytes-3.0.0" = { 431 1187 name = "bytes"; 432 1188 packageName = "bytes"; ··· 436 1192 sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048"; 437 1193 }; 438 1194 }; 1195 + "bzip2-maybe-1.0.0" = { 1196 + name = "bzip2-maybe"; 1197 + packageName = "bzip2-maybe"; 1198 + version = "1.0.0"; 1199 + src = fetchurl { 1200 + url = "https://registry.npmjs.org/bzip2-maybe/-/bzip2-maybe-1.0.0.tgz"; 1201 + sha1 = "c9aef7008a6b943cbe99cc617125eb4bd478296b"; 1202 + }; 1203 + }; 1204 + "cacache-10.0.2" = { 1205 + name = "cacache"; 1206 + packageName = "cacache"; 1207 + version = "10.0.2"; 1208 + src = fetchurl { 1209 + url = "https://registry.npmjs.org/cacache/-/cacache-10.0.2.tgz"; 1210 + sha512 = "1nn7is7pd6vgcf96b9hym6ia3a0adgw2r4a4ckbb9ykm6risqsnw16kgqfrwvi37mpkzizricfnkns7d0d7agh1laws73imv7nxnn3n"; 1211 + }; 1212 + }; 1213 + "cacache-9.2.9" = { 1214 + name = "cacache"; 1215 + packageName = "cacache"; 1216 + version = "9.2.9"; 1217 + src = fetchurl { 1218 + url = "https://registry.npmjs.org/cacache/-/cacache-9.2.9.tgz"; 1219 + sha512 = "11qjza6qy62lkvynngcvx7nf2vhxvvp4g0l07a8zw5pzqc5iy0zznxzgs0dw1bb2i10dr2v7i624x6v9pkzp55snam9wk5jjf7ka642"; 1220 + }; 1221 + }; 1222 + "cacheable-request-2.1.4" = { 1223 + name = "cacheable-request"; 1224 + packageName = "cacheable-request"; 1225 + version = "2.1.4"; 1226 + src = fetchurl { 1227 + url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz"; 1228 + sha1 = "0d808801b6342ad33c91df9d0b44dc09b91e5c3d"; 1229 + }; 1230 + }; 1231 + "call-limit-1.1.0" = { 1232 + name = "call-limit"; 1233 + packageName = "call-limit"; 1234 + version = "1.1.0"; 1235 + src = fetchurl { 1236 + url = "https://registry.npmjs.org/call-limit/-/call-limit-1.1.0.tgz"; 1237 + sha1 = "6fd61b03f3da42a2cd0ec2b60f02bd0e71991fea"; 1238 + }; 1239 + }; 439 1240 "call-me-maybe-1.0.1" = { 440 1241 name = "call-me-maybe"; 441 1242 packageName = "call-me-maybe"; ··· 445 1246 sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b"; 446 1247 }; 447 1248 }; 1249 + "camelcase-4.1.0" = { 1250 + name = "camelcase"; 1251 + packageName = "camelcase"; 1252 + version = "4.1.0"; 1253 + src = fetchurl { 1254 + url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz"; 1255 + sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; 1256 + }; 1257 + }; 1258 + "capture-stack-trace-1.0.0" = { 1259 + name = "capture-stack-trace"; 1260 + packageName = "capture-stack-trace"; 1261 + version = "1.0.0"; 1262 + src = fetchurl { 1263 + url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz"; 1264 + sha1 = "4a6fa07399c26bba47f0b2496b4d0fb408c5550d"; 1265 + }; 1266 + }; 448 1267 "caseless-0.12.0" = { 449 1268 name = "caseless"; 450 1269 packageName = "caseless"; ··· 454 1273 sha1 = "1b681c21ff84033c826543090689420d187151dc"; 455 1274 }; 456 1275 }; 1276 + "chalk-1.1.3" = { 1277 + name = "chalk"; 1278 + packageName = "chalk"; 1279 + version = "1.1.3"; 1280 + src = fetchurl { 1281 + url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; 1282 + sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; 1283 + }; 1284 + }; 457 1285 "chalk-2.3.0" = { 458 1286 name = "chalk"; 459 1287 packageName = "chalk"; ··· 463 1291 sha512 = "3fj8njcdcvyplivm2fj19lqw8qv7gb8v7gd6a223pmn8f3di4zwkhyb09vzlmw3pnk4ib88kp4cg8r9i5k5rskalzdfh1l23ljp6gh3"; 464 1292 }; 465 1293 }; 1294 + "chownr-1.0.1" = { 1295 + name = "chownr"; 1296 + packageName = "chownr"; 1297 + version = "1.0.1"; 1298 + src = fetchurl { 1299 + url = "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz"; 1300 + sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181"; 1301 + }; 1302 + }; 1303 + "ci-info-1.1.2" = { 1304 + name = "ci-info"; 1305 + packageName = "ci-info"; 1306 + version = "1.1.2"; 1307 + src = fetchurl { 1308 + url = "https://registry.npmjs.org/ci-info/-/ci-info-1.1.2.tgz"; 1309 + sha512 = "1jbmihk48iby72h0b6k4rvhrnaydml49qyjcb83ix310ivjzd4zmdk3yxx1ssn6ryjblm7xzaswnwj53rxwcyn1fr0jm7bzvhy8hcdr"; 1310 + }; 1311 + }; 1312 + "cidr-regex-1.0.6" = { 1313 + name = "cidr-regex"; 1314 + packageName = "cidr-regex"; 1315 + version = "1.0.6"; 1316 + src = fetchurl { 1317 + url = "https://registry.npmjs.org/cidr-regex/-/cidr-regex-1.0.6.tgz"; 1318 + sha1 = "74abfd619df370b9d54ab14475568e97dd64c0c1"; 1319 + }; 1320 + }; 1321 + "class-methods-1.0.10" = { 1322 + name = "class-methods"; 1323 + packageName = "class-methods"; 1324 + version = "1.0.10"; 1325 + src = fetchurl { 1326 + url = "https://registry.npmjs.org/class-methods/-/class-methods-1.0.10.tgz"; 1327 + sha512 = "2j59qyqmhdcldp2k34mrcfx2rqblcv1c2902zzin1fzqamys2jxs32q341k4faclld17w96w7x3hnv2vjinn0jq0b6a7ld1icaay2wv"; 1328 + }; 1329 + }; 1330 + "cli-box-5.0.0" = { 1331 + name = "cli-box"; 1332 + packageName = "cli-box"; 1333 + version = "5.0.0"; 1334 + src = fetchurl { 1335 + url = "https://registry.npmjs.org/cli-box/-/cli-box-5.0.0.tgz"; 1336 + sha1 = "870ea8aa77e7c25179416ceccfe5ed0690804602"; 1337 + }; 1338 + }; 1339 + "cli-boxes-1.0.0" = { 1340 + name = "cli-boxes"; 1341 + packageName = "cli-boxes"; 1342 + version = "1.0.0"; 1343 + src = fetchurl { 1344 + url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz"; 1345 + sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143"; 1346 + }; 1347 + }; 1348 + "cli-cursor-2.1.0" = { 1349 + name = "cli-cursor"; 1350 + packageName = "cli-cursor"; 1351 + version = "2.1.0"; 1352 + src = fetchurl { 1353 + url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"; 1354 + sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; 1355 + }; 1356 + }; 466 1357 "cli-table-0.3.1" = { 467 1358 name = "cli-table"; 468 1359 packageName = "cli-table"; ··· 472 1363 sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"; 473 1364 }; 474 1365 }; 1366 + "cli-table2-0.2.0" = { 1367 + name = "cli-table2"; 1368 + packageName = "cli-table2"; 1369 + version = "0.2.0"; 1370 + src = fetchurl { 1371 + url = "https://registry.npmjs.org/cli-table2/-/cli-table2-0.2.0.tgz"; 1372 + sha1 = "2d1ef7f218a0e786e214540562d4bd177fe32d97"; 1373 + }; 1374 + }; 475 1375 "cli-truncate-1.1.0" = { 476 1376 name = "cli-truncate"; 477 1377 packageName = "cli-truncate"; ··· 490 1390 sha1 = "69431c7cb5af723774b0d3911b4c37512431910f"; 491 1391 }; 492 1392 }; 1393 + "cliui-3.2.0" = { 1394 + name = "cliui"; 1395 + packageName = "cliui"; 1396 + version = "3.2.0"; 1397 + src = fetchurl { 1398 + url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz"; 1399 + sha1 = "120601537a916d29940f934da3b48d585a39213d"; 1400 + }; 1401 + }; 1402 + "clone-1.0.3" = { 1403 + name = "clone"; 1404 + packageName = "clone"; 1405 + version = "1.0.3"; 1406 + src = fetchurl { 1407 + url = "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz"; 1408 + sha1 = "298d7e2231660f40c003c2ed3140decf3f53085f"; 1409 + }; 1410 + }; 1411 + "clone-response-1.0.2" = { 1412 + name = "clone-response"; 1413 + packageName = "clone-response"; 1414 + version = "1.0.2"; 1415 + src = fetchurl { 1416 + url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz"; 1417 + sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b"; 1418 + }; 1419 + }; 1420 + "clp-3.2.1" = { 1421 + name = "clp"; 1422 + packageName = "clp"; 1423 + version = "3.2.1"; 1424 + src = fetchurl { 1425 + url = "https://registry.npmjs.org/clp/-/clp-3.2.1.tgz"; 1426 + sha1 = "af1ed66db895a5c9ce9b6d32e9c33dee02b3edf2"; 1427 + }; 1428 + }; 1429 + "cmd-shim-2.0.2" = { 1430 + name = "cmd-shim"; 1431 + packageName = "cmd-shim"; 1432 + version = "2.0.2"; 1433 + src = fetchurl { 1434 + url = "https://registry.npmjs.org/cmd-shim/-/cmd-shim-2.0.2.tgz"; 1435 + sha1 = "6fcbda99483a8fd15d7d30a196ca69d688a2efdb"; 1436 + }; 1437 + }; 493 1438 "co-4.6.0" = { 494 1439 name = "co"; 495 1440 packageName = "co"; ··· 553 1498 sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; 554 1499 }; 555 1500 }; 1501 + "columnify-1.5.4" = { 1502 + name = "columnify"; 1503 + packageName = "columnify"; 1504 + version = "1.5.4"; 1505 + src = fetchurl { 1506 + url = "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz"; 1507 + sha1 = "4737ddf1c7b69a8a7c340570782e947eec8e78bb"; 1508 + }; 1509 + }; 556 1510 "combined-stream-1.0.5" = { 557 1511 name = "combined-stream"; 558 1512 packageName = "combined-stream"; ··· 580 1534 sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; 581 1535 }; 582 1536 }; 1537 + "common-tags-1.7.2" = { 1538 + name = "common-tags"; 1539 + packageName = "common-tags"; 1540 + version = "1.7.2"; 1541 + src = fetchurl { 1542 + url = "https://registry.npmjs.org/common-tags/-/common-tags-1.7.2.tgz"; 1543 + sha512 = "0jx2cncv7x5ms1gg2vks5bhxi9c5jbwymfk42dzmp9vrxrmhrl9vaw4wsh4lvf65shxmq1v8f8s0i3rkyk2x8mrfpq2m30famkgv24f"; 1544 + }; 1545 + }; 583 1546 "concat-map-0.0.1" = { 584 1547 name = "concat-map"; 585 1548 packageName = "concat-map"; ··· 598 1561 sha1 = "0aac662fd52be78964d5532f694784e70110acf7"; 599 1562 }; 600 1563 }; 1564 + "config-chain-1.1.11" = { 1565 + name = "config-chain"; 1566 + packageName = "config-chain"; 1567 + version = "1.1.11"; 1568 + src = fetchurl { 1569 + url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz"; 1570 + sha1 = "aba09747dfbe4c3e70e766a6e41586e1859fc6f2"; 1571 + }; 1572 + }; 1573 + "configstore-3.1.1" = { 1574 + name = "configstore"; 1575 + packageName = "configstore"; 1576 + version = "3.1.1"; 1577 + src = fetchurl { 1578 + url = "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz"; 1579 + sha512 = "2zmidvkp20q25yv6a5d7k1daawdg0w6ppgayxzpwfhyvmgwybkkv7ni0j4b2j9c8wjn8z33zf5d4bjr8jywb5qixc75vypyy87n90z6"; 1580 + }; 1581 + }; 601 1582 "connections-1.4.2" = { 602 1583 name = "connections"; 603 1584 packageName = "connections"; ··· 625 1606 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 626 1607 }; 627 1608 }; 1609 + "copy-concurrently-1.0.5" = { 1610 + name = "copy-concurrently"; 1611 + packageName = "copy-concurrently"; 1612 + version = "1.0.5"; 1613 + src = fetchurl { 1614 + url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz"; 1615 + sha512 = "3c1ggiqqnjgqlwdnimx94gm176c8rjsrih5qw2lbm642l8x7grx07v065k4j89c1p0adkm7v6sz11drb6j6sp51np2m1cazvycnhrvz"; 1616 + }; 1617 + }; 1618 + "core-js-2.5.3" = { 1619 + name = "core-js"; 1620 + packageName = "core-js"; 1621 + version = "2.5.3"; 1622 + src = fetchurl { 1623 + url = "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz"; 1624 + sha1 = "8acc38345824f16d8365b7c9b4259168e8ed603e"; 1625 + }; 1626 + }; 628 1627 "core-util-is-1.0.2" = { 629 1628 name = "core-util-is"; 630 1629 packageName = "core-util-is"; ··· 643 1642 sha1 = "11a45bc47ab30c54d00bb869ea1802fbcd9a09d0"; 644 1643 }; 645 1644 }; 1645 + "couleurs-5.0.0" = { 1646 + name = "couleurs"; 1647 + packageName = "couleurs"; 1648 + version = "5.0.0"; 1649 + src = fetchurl { 1650 + url = "https://registry.npmjs.org/couleurs/-/couleurs-5.0.0.tgz"; 1651 + sha1 = "1cd3ace5cca1bec0041578b27464b2676387f6db"; 1652 + }; 1653 + }; 1654 + "couleurs-6.0.9" = { 1655 + name = "couleurs"; 1656 + packageName = "couleurs"; 1657 + version = "6.0.9"; 1658 + src = fetchurl { 1659 + url = "https://registry.npmjs.org/couleurs/-/couleurs-6.0.9.tgz"; 1660 + sha1 = "b2b2a3ee37dae51875c9efd243ec7e7894afbc9e"; 1661 + }; 1662 + }; 1663 + "create-error-class-3.0.2" = { 1664 + name = "create-error-class"; 1665 + packageName = "create-error-class"; 1666 + version = "3.0.2"; 1667 + src = fetchurl { 1668 + url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz"; 1669 + sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; 1670 + }; 1671 + }; 1672 + "credentials-by-uri-1.0.0" = { 1673 + name = "credentials-by-uri"; 1674 + packageName = "credentials-by-uri"; 1675 + version = "1.0.0"; 1676 + src = fetchurl { 1677 + url = "https://registry.npmjs.org/credentials-by-uri/-/credentials-by-uri-1.0.0.tgz"; 1678 + sha512 = "3c5r91jgf91szpxfh7rh0c5wi3xzck43b8kzgmxi3ppw29hj9v9is6a3jh5divbgg7dr5diw6zysri7mpvji5jagh2ain0mcj81knjs"; 1679 + }; 1680 + }; 1681 + "cross-spawn-5.1.0" = { 1682 + name = "cross-spawn"; 1683 + packageName = "cross-spawn"; 1684 + version = "5.1.0"; 1685 + src = fetchurl { 1686 + url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"; 1687 + sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449"; 1688 + }; 1689 + }; 646 1690 "cryptiles-2.0.5" = { 647 1691 name = "cryptiles"; 648 1692 packageName = "cryptiles"; ··· 661 1705 sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"; 662 1706 }; 663 1707 }; 1708 + "crypto-random-string-1.0.0" = { 1709 + name = "crypto-random-string"; 1710 + packageName = "crypto-random-string"; 1711 + version = "1.0.0"; 1712 + src = fetchurl { 1713 + url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz"; 1714 + sha1 = "a230f64f568310e1498009940790ec99545bca7e"; 1715 + }; 1716 + }; 1717 + "csv-parser-1.12.0" = { 1718 + name = "csv-parser"; 1719 + packageName = "csv-parser"; 1720 + version = "1.12.0"; 1721 + src = fetchurl { 1722 + url = "https://registry.npmjs.org/csv-parser/-/csv-parser-1.12.0.tgz"; 1723 + sha512 = "3amd2y4wd86nqpmj4ngich00g73ldp4di353338vjdsgch52zgc7fl6mgh1yfm9n46nlifh7p0c6y8i8p5al90crkbfnsxw561m9lli"; 1724 + }; 1725 + }; 1726 + "currently-unhandled-0.4.1" = { 1727 + name = "currently-unhandled"; 1728 + packageName = "currently-unhandled"; 1729 + version = "0.4.1"; 1730 + src = fetchurl { 1731 + url = "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz"; 1732 + sha1 = "988df33feab191ef799a61369dd76c17adf957ea"; 1733 + }; 1734 + }; 1735 + "custom-return-1.0.10" = { 1736 + name = "custom-return"; 1737 + packageName = "custom-return"; 1738 + version = "1.0.10"; 1739 + src = fetchurl { 1740 + url = "https://registry.npmjs.org/custom-return/-/custom-return-1.0.10.tgz"; 1741 + sha512 = "3pk09pi85idb0ycy2hmh3k2cbphacc3hr7rdv157gb93vvk9hfgjnc9dv0k1qvb11h46zpya9njb07f9whrmn31zbx8cf1hchmknpaq"; 1742 + }; 1743 + }; 664 1744 "cycle-1.0.3" = { 665 1745 name = "cycle"; 666 1746 packageName = "cycle"; ··· 668 1748 src = fetchurl { 669 1749 url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; 670 1750 sha1 = "21e80b2be8580f98b468f379430662b046c34ad2"; 1751 + }; 1752 + }; 1753 + "cyclist-0.2.2" = { 1754 + name = "cyclist"; 1755 + packageName = "cyclist"; 1756 + version = "0.2.2"; 1757 + src = fetchurl { 1758 + url = "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz"; 1759 + sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640"; 671 1760 }; 672 1761 }; 673 1762 "dashdash-1.14.1" = { ··· 796 1885 sha1 = "ba7d58c309cf60c3924afad869b75192b61fe354"; 797 1886 }; 798 1887 }; 1888 + "data-uri-to-buffer-2.0.0" = { 1889 + name = "data-uri-to-buffer"; 1890 + packageName = "data-uri-to-buffer"; 1891 + version = "2.0.0"; 1892 + src = fetchurl { 1893 + url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-2.0.0.tgz"; 1894 + sha512 = "1pvmcndfngvwy1z5x3vhy8jvrcpaahgc8jhq7cpnjcb2zfacai445afjpykxyzy8s6css19p1rl3ab91vz22fa1ffkqhgygncs85ck1"; 1895 + }; 1896 + }; 1897 + "date-unit-ms-1.1.12" = { 1898 + name = "date-unit-ms"; 1899 + packageName = "date-unit-ms"; 1900 + version = "1.1.12"; 1901 + src = fetchurl { 1902 + url = "https://registry.npmjs.org/date-unit-ms/-/date-unit-ms-1.1.12.tgz"; 1903 + sha512 = "39jwcz9i3f80f9sqx06abcpk9zs9dw90gyy2pb603h1h5q0ph2qpx005wzmmn0phfg83d4nx2d14p3lgfn1ywa6yfcc71rnnbw3l3f3"; 1904 + }; 1905 + }; 799 1906 "datland-swarm-defaults-1.0.2" = { 800 1907 name = "datland-swarm-defaults"; 801 1908 packageName = "datland-swarm-defaults"; ··· 805 1912 sha1 = "277b895a39f1aa7f96a495a02fb3662a5ed9f2e0"; 806 1913 }; 807 1914 }; 1915 + "daty-1.1.4" = { 1916 + name = "daty"; 1917 + packageName = "daty"; 1918 + version = "1.1.4"; 1919 + src = fetchurl { 1920 + url = "https://registry.npmjs.org/daty/-/daty-1.1.4.tgz"; 1921 + sha512 = "0a8n1f6rfaa6k4r76b2rqgvfp9qvw5xj7w0lzjfv1g4fxcjllk519vj3jfrx540jiv2mbpky6jv17d3zhwc0jg0a9rbnc0k1m4m5dgs"; 1922 + }; 1923 + }; 1924 + "days-1.1.1" = { 1925 + name = "days"; 1926 + packageName = "days"; 1927 + version = "1.1.1"; 1928 + src = fetchurl { 1929 + url = "https://registry.npmjs.org/days/-/days-1.1.1.tgz"; 1930 + sha512 = "13wlz4m9gk0wf2w3x44y2gph1mmqmj8z1mfkhxpxhjk3rs7h28gj6lc8x0b6i966w00dvrws86da672vmizmy31whvj08q4bg0qhdxz"; 1931 + }; 1932 + }; 808 1933 "debug-2.6.9" = { 809 1934 name = "debug"; 810 1935 packageName = "debug"; ··· 823 1948 sha512 = "3g1hqsahr1ks2kpvdxrwzr57fj90nnr0hvwwrw8yyyzcv3i11sym8zwibxx67bl1mln0acddrzpkkdjjxnc6n2cm9fazmgzzsl1fzrr"; 824 1949 }; 825 1950 }; 1951 + "debuglog-1.0.1" = { 1952 + name = "debuglog"; 1953 + packageName = "debuglog"; 1954 + version = "1.0.1"; 1955 + src = fetchurl { 1956 + url = "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz"; 1957 + sha1 = "aa24ffb9ac3df9a2351837cfb2d279360cd78492"; 1958 + }; 1959 + }; 1960 + "decamelize-1.2.0" = { 1961 + name = "decamelize"; 1962 + packageName = "decamelize"; 1963 + version = "1.2.0"; 1964 + src = fetchurl { 1965 + url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 1966 + sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 1967 + }; 1968 + }; 1969 + "decode-uri-component-0.2.0" = { 1970 + name = "decode-uri-component"; 1971 + packageName = "decode-uri-component"; 1972 + version = "0.2.0"; 1973 + src = fetchurl { 1974 + url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 1975 + sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; 1976 + }; 1977 + }; 1978 + "decompress-maybe-1.0.0" = { 1979 + name = "decompress-maybe"; 1980 + packageName = "decompress-maybe"; 1981 + version = "1.0.0"; 1982 + src = fetchurl { 1983 + url = "https://registry.npmjs.org/decompress-maybe/-/decompress-maybe-1.0.0.tgz"; 1984 + sha1 = "adfe78c66cc069e64e824bd1405b85e75e6d1cbb"; 1985 + }; 1986 + }; 1987 + "decompress-response-3.3.0" = { 1988 + name = "decompress-response"; 1989 + packageName = "decompress-response"; 1990 + version = "3.3.0"; 1991 + src = fetchurl { 1992 + url = "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz"; 1993 + sha1 = "80a4dd323748384bfa248083622aedec982adff3"; 1994 + }; 1995 + }; 826 1996 "deep-equal-0.2.2" = { 827 1997 name = "deep-equal"; 828 1998 packageName = "deep-equal"; ··· 841 2011 sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f"; 842 2012 }; 843 2013 }; 2014 + "defaults-1.0.3" = { 2015 + name = "defaults"; 2016 + packageName = "defaults"; 2017 + version = "1.0.3"; 2018 + src = fetchurl { 2019 + url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"; 2020 + sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d"; 2021 + }; 2022 + }; 2023 + "deffy-2.0.0" = { 2024 + name = "deffy"; 2025 + packageName = "deffy"; 2026 + version = "2.0.0"; 2027 + src = fetchurl { 2028 + url = "https://registry.npmjs.org/deffy/-/deffy-2.0.0.tgz"; 2029 + sha1 = "f82e08eea518c4a0a30b1f03ec504d248af28932"; 2030 + }; 2031 + }; 2032 + "deffy-2.2.2" = { 2033 + name = "deffy"; 2034 + packageName = "deffy"; 2035 + version = "2.2.2"; 2036 + src = fetchurl { 2037 + url = "https://registry.npmjs.org/deffy/-/deffy-2.2.2.tgz"; 2038 + sha1 = "088f40913cb47078653fa6f697c206e03471d523"; 2039 + }; 2040 + }; 2041 + "define-properties-1.1.2" = { 2042 + name = "define-properties"; 2043 + packageName = "define-properties"; 2044 + version = "1.1.2"; 2045 + src = fetchurl { 2046 + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz"; 2047 + sha1 = "83a73f2fea569898fb737193c8f873caf6d45c94"; 2048 + }; 2049 + }; 2050 + "delay-2.0.0" = { 2051 + name = "delay"; 2052 + packageName = "delay"; 2053 + version = "2.0.0"; 2054 + src = fetchurl { 2055 + url = "https://registry.npmjs.org/delay/-/delay-2.0.0.tgz"; 2056 + sha1 = "9112eadc03e4ec7e00297337896f273bbd91fae5"; 2057 + }; 2058 + }; 844 2059 "delayed-stream-1.0.0" = { 845 2060 name = "delayed-stream"; 846 2061 packageName = "delayed-stream"; ··· 859 2074 sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; 860 2075 }; 861 2076 }; 2077 + "dependencies-hierarchy-2.0.1" = { 2078 + name = "dependencies-hierarchy"; 2079 + packageName = "dependencies-hierarchy"; 2080 + version = "2.0.1"; 2081 + src = fetchurl { 2082 + url = "https://registry.npmjs.org/dependencies-hierarchy/-/dependencies-hierarchy-2.0.1.tgz"; 2083 + sha512 = "1sfyf5x0ffhb2yh04wcwd0szfknjfrf21ibabzk780m31ww4fnzm01ddr9h3j1wfn4ib15pjvg24kylhs2l9g5fg9gnkirpa7zphyxz"; 2084 + }; 2085 + }; 2086 + "dependency-path-1.2.0" = { 2087 + name = "dependency-path"; 2088 + packageName = "dependency-path"; 2089 + version = "1.2.0"; 2090 + src = fetchurl { 2091 + url = "https://registry.npmjs.org/dependency-path/-/dependency-path-1.2.0.tgz"; 2092 + sha512 = "3fx4g67dcmnhggas6gyk3qd0376f5ff9imzi9n3npqjdbnxqd0niagdl591n64mlk8l8rrnkp39fj7cgbd05az9k5b2ir5pr73lf9aq"; 2093 + }; 2094 + }; 2095 + "detect-indent-5.0.0" = { 2096 + name = "detect-indent"; 2097 + packageName = "detect-indent"; 2098 + version = "5.0.0"; 2099 + src = fetchurl { 2100 + url = "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz"; 2101 + sha1 = "3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"; 2102 + }; 2103 + }; 862 2104 "detect-libc-1.0.3" = { 863 2105 name = "detect-libc"; 864 2106 packageName = "detect-libc"; ··· 868 2110 sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; 869 2111 }; 870 2112 }; 2113 + "dezalgo-1.0.3" = { 2114 + name = "dezalgo"; 2115 + packageName = "dezalgo"; 2116 + version = "1.0.3"; 2117 + src = fetchurl { 2118 + url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz"; 2119 + sha1 = "7f742de066fc748bc8db820569dddce49bf0d456"; 2120 + }; 2121 + }; 2122 + "diable-4.0.1" = { 2123 + name = "diable"; 2124 + packageName = "diable"; 2125 + version = "4.0.1"; 2126 + src = fetchurl { 2127 + url = "https://registry.npmjs.org/diable/-/diable-4.0.1.tgz"; 2128 + sha512 = "3xs7mj78f1pz54n7lgqczhksnznrsj1bz0733lnrsarqshqci89980q25yms1iva430jfxsjd9kgk4f1f30y3xpyi8krd0vkb57xkl6"; 2129 + }; 2130 + }; 871 2131 "diff-3.3.1" = { 872 2132 name = "diff"; 873 2133 packageName = "diff"; ··· 877 2137 sha512 = "31pj7v5gg5igmvwzk6zxw1wbvwjg6m9sfl0h3bs1x4q6idcw98vr8z8wcqk2603q0blpqkmkxp659kjj91wksr03yr8xlh16djcg8rh"; 878 2138 }; 879 2139 }; 2140 + "diff-dates-1.0.11" = { 2141 + name = "diff-dates"; 2142 + packageName = "diff-dates"; 2143 + version = "1.0.11"; 2144 + src = fetchurl { 2145 + url = "https://registry.npmjs.org/diff-dates/-/diff-dates-1.0.11.tgz"; 2146 + sha512 = "3n24i042lak0xiwsf39kqkmgfjpk3yy7b7s5j4yli6a41h438lh8khdn0zg71jz30vmz0iil8bpjbm0amy24mmbyf4vz5jwp7z312fj"; 2147 + }; 2148 + }; 2149 + "dint-2.0.2" = { 2150 + name = "dint"; 2151 + packageName = "dint"; 2152 + version = "2.0.2"; 2153 + src = fetchurl { 2154 + url = "https://registry.npmjs.org/dint/-/dint-2.0.2.tgz"; 2155 + sha512 = "1kj5zqj3mz3jr7624dszj4qnypqa6z1ll8ysn56mibmchrdfb6x82ncfr8jl1h2igla24kp7kbivpmzzjp1zbb29s2gwj9y0zzrmf9v"; 2156 + }; 2157 + }; 2158 + "dir-glob-2.0.0" = { 2159 + name = "dir-glob"; 2160 + packageName = "dir-glob"; 2161 + version = "2.0.0"; 2162 + src = fetchurl { 2163 + url = "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz"; 2164 + sha512 = "1m705yfirf97v4w87gfvylhhq9jlwjsgfp5x0p0cp33mc180ldmvgbs06zmr7by48d7r01n3awx4xz3m3vzba99gqww1wgka2na5fnz"; 2165 + }; 2166 + }; 880 2167 "directory-index-html-2.1.0" = { 881 2168 name = "directory-index-html"; 882 2169 packageName = "directory-index-html"; ··· 949 2236 sha1 = "672226dc74c8f799ad35307df936aba11acd6018"; 950 2237 }; 951 2238 }; 2239 + "dot-prop-4.2.0" = { 2240 + name = "dot-prop"; 2241 + packageName = "dot-prop"; 2242 + version = "4.2.0"; 2243 + src = fetchurl { 2244 + url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz"; 2245 + sha512 = "2wyv9brsq3dzp724y1q5z5j5ja83y834hgc193lnarfdycwz1ii3xg02qxx3dg05x3skwjm1di5s5a8hqi8l5v1afx2bia436pifhxm"; 2246 + }; 2247 + }; 2248 + "dotenv-4.0.0" = { 2249 + name = "dotenv"; 2250 + packageName = "dotenv"; 2251 + version = "4.0.0"; 2252 + src = fetchurl { 2253 + url = "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz"; 2254 + sha1 = "864ef1379aced55ce6f95debecdce179f7a0cd1d"; 2255 + }; 2256 + }; 2257 + "drive-by-path-1.0.0" = { 2258 + name = "drive-by-path"; 2259 + packageName = "drive-by-path"; 2260 + version = "1.0.0"; 2261 + src = fetchurl { 2262 + url = "https://registry.npmjs.org/drive-by-path/-/drive-by-path-1.0.0.tgz"; 2263 + sha512 = "2qa8hminmq4ccas79iblr6bhpi5db7pr4wprwabf3b26mzky20grbamh8w91x0305gr9ab0hg314dqbhk7fjqylrzc5f8aq21mkl9hm"; 2264 + }; 2265 + }; 2266 + "drivelist-5.2.12" = { 2267 + name = "drivelist"; 2268 + packageName = "drivelist"; 2269 + version = "5.2.12"; 2270 + src = fetchurl { 2271 + url = "https://registry.npmjs.org/drivelist/-/drivelist-5.2.12.tgz"; 2272 + sha512 = "16zzhdm5j9sxfgcgh547v4s5y3han38a5iwj8ap8glp5ql6vbrl01jj6dsjpiqlbjf56pxla8shnz64yjngvnq0zcdkabns4cr1i0lp"; 2273 + }; 2274 + }; 2275 + "duplexer3-0.1.4" = { 2276 + name = "duplexer3"; 2277 + packageName = "duplexer3"; 2278 + version = "0.1.4"; 2279 + src = fetchurl { 2280 + url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz"; 2281 + sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"; 2282 + }; 2283 + }; 952 2284 "duplexify-3.5.3" = { 953 2285 name = "duplexify"; 954 2286 packageName = "duplexify"; ··· 967 2299 sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505"; 968 2300 }; 969 2301 }; 2302 + "editor-1.0.0" = { 2303 + name = "editor"; 2304 + packageName = "editor"; 2305 + version = "1.0.0"; 2306 + src = fetchurl { 2307 + url = "https://registry.npmjs.org/editor/-/editor-1.0.0.tgz"; 2308 + sha1 = "60c7f87bd62bcc6a894fa8ccd6afb7823a24f742"; 2309 + }; 2310 + }; 2311 + "encode-registry-1.1.0" = { 2312 + name = "encode-registry"; 2313 + packageName = "encode-registry"; 2314 + version = "1.1.0"; 2315 + src = fetchurl { 2316 + url = "https://registry.npmjs.org/encode-registry/-/encode-registry-1.1.0.tgz"; 2317 + sha512 = "0s849n20b958rnb9r35b9i0l6zvpk0vx49c6xap06fy5iq1zz0ls0wqc1bdskw1v39z5xz4a8sfaigsw0rjfckic6xlxmw4ybvn9vf1"; 2318 + }; 2319 + }; 2320 + "encoding-0.1.12" = { 2321 + name = "encoding"; 2322 + packageName = "encoding"; 2323 + version = "0.1.12"; 2324 + src = fetchurl { 2325 + url = "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz"; 2326 + sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb"; 2327 + }; 2328 + }; 970 2329 "end-of-stream-1.4.1" = { 971 2330 name = "end-of-stream"; 972 2331 packageName = "end-of-stream"; ··· 976 2335 sha512 = "3cjrpi6n5i6gf8jaiwg31y2xkgx59szhhcj9myqwmdw16s9r6yvwznxd2lhqf96mpm6knyb3w2bcnksg5nzkrq6iada0k6nvdj2pjfl"; 977 2336 }; 978 2337 }; 2338 + "err-code-1.1.2" = { 2339 + name = "err-code"; 2340 + packageName = "err-code"; 2341 + version = "1.1.2"; 2342 + src = fetchurl { 2343 + url = "https://registry.npmjs.org/err-code/-/err-code-1.1.2.tgz"; 2344 + sha1 = "06e0116d3028f6aef4806849eb0ea6a748ae6960"; 2345 + }; 2346 + }; 2347 + "errno-0.1.6" = { 2348 + name = "errno"; 2349 + packageName = "errno"; 2350 + version = "0.1.6"; 2351 + src = fetchurl { 2352 + url = "https://registry.npmjs.org/errno/-/errno-0.1.6.tgz"; 2353 + sha512 = "0vny3xisd56kx193rhv6vpccjxlajjn9ss5wk96l1ya8zbpkwbjrrgrm9wpfm3xc8apx8z9xb0kjkw0y5qnc6gy1hf2qsas79093hr2"; 2354 + }; 2355 + }; 2356 + "error-ex-1.3.1" = { 2357 + name = "error-ex"; 2358 + packageName = "error-ex"; 2359 + version = "1.3.1"; 2360 + src = fetchurl { 2361 + url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz"; 2362 + sha1 = "f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"; 2363 + }; 2364 + }; 2365 + "es-abstract-1.10.0" = { 2366 + name = "es-abstract"; 2367 + packageName = "es-abstract"; 2368 + version = "1.10.0"; 2369 + src = fetchurl { 2370 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz"; 2371 + sha512 = "04nd5ylkfffc08vn5kjhz0saqh44nj19f5j3ahrrhf3zvc9da5rf6snnh63xv4gfhacjbax1jajzgqv4zpm77v806jf883a2w77zs7y"; 2372 + }; 2373 + }; 2374 + "es-to-primitive-1.1.1" = { 2375 + name = "es-to-primitive"; 2376 + packageName = "es-to-primitive"; 2377 + version = "1.1.1"; 2378 + src = fetchurl { 2379 + url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz"; 2380 + sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d"; 2381 + }; 2382 + }; 2383 + "es6-promise-4.2.4" = { 2384 + name = "es6-promise"; 2385 + packageName = "es6-promise"; 2386 + version = "4.2.4"; 2387 + src = fetchurl { 2388 + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz"; 2389 + sha512 = "10hlgvxhshjxlbwvm1gnf1b01sv1fmh191a97l0h5gmcs9am1b6x937wnhkvvj5fkin10qscii8pcwnp9rlnpkgnrhfdyk0a9jlvmzw"; 2390 + }; 2391 + }; 2392 + "es6-promisify-5.0.0" = { 2393 + name = "es6-promisify"; 2394 + packageName = "es6-promisify"; 2395 + version = "5.0.0"; 2396 + src = fetchurl { 2397 + url = "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz"; 2398 + sha1 = "5109d62f3e56ea967c4b63505aef08291c8a5203"; 2399 + }; 2400 + }; 979 2401 "escape-string-regexp-1.0.5" = { 980 2402 name = "escape-string-regexp"; 981 2403 packageName = "escape-string-regexp"; ··· 985 2407 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 986 2408 }; 987 2409 }; 2410 + "esprima-4.0.0" = { 2411 + name = "esprima"; 2412 + packageName = "esprima"; 2413 + version = "4.0.0"; 2414 + src = fetchurl { 2415 + url = "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz"; 2416 + sha512 = "27mkhd94y9vrr8pb97br0ym5h85rawwb0biswgwdfp31x0387y12k9p9598bi4fc83fif6crfzqiqmmjs4x7gcb22ml3z1fldqm7yx1"; 2417 + }; 2418 + }; 2419 + "exclude-arr-1.0.9" = { 2420 + name = "exclude-arr"; 2421 + packageName = "exclude-arr"; 2422 + version = "1.0.9"; 2423 + src = fetchurl { 2424 + url = "https://registry.npmjs.org/exclude-arr/-/exclude-arr-1.0.9.tgz"; 2425 + sha512 = "1j9b7mbjp9g840wwzgq7jmqx66qv2xwxl3z3330891qd1a4yrm1x3jsig1g0adx6q1lj9d9f6dsb0snm564f4ff8lxhiag0k645vap7"; 2426 + }; 2427 + }; 2428 + "execa-0.7.0" = { 2429 + name = "execa"; 2430 + packageName = "execa"; 2431 + version = "0.7.0"; 2432 + src = fetchurl { 2433 + url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz"; 2434 + sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; 2435 + }; 2436 + }; 2437 + "execa-0.8.0" = { 2438 + name = "execa"; 2439 + packageName = "execa"; 2440 + version = "0.8.0"; 2441 + src = fetchurl { 2442 + url = "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz"; 2443 + sha1 = "d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"; 2444 + }; 2445 + }; 2446 + "execa-0.9.0" = { 2447 + name = "execa"; 2448 + packageName = "execa"; 2449 + version = "0.9.0"; 2450 + src = fetchurl { 2451 + url = "https://registry.npmjs.org/execa/-/execa-0.9.0.tgz"; 2452 + sha512 = "2c2sw5624513vxbr2q2ay9x3qc80zfnwyr60n8cw35m1ji76yxhxv4nrk47iqd2wj1rv5l07klmncr2lfdzhfa0cn3si1pq4l30rd85"; 2453 + }; 2454 + }; 988 2455 "expand-brackets-0.1.5" = { 989 2456 name = "expand-brackets"; 990 2457 packageName = "expand-brackets"; ··· 1003 2470 sha1 = "a299effd335fe2721ebae8e257ec79644fc85337"; 1004 2471 }; 1005 2472 }; 2473 + "expand-template-1.1.0" = { 2474 + name = "expand-template"; 2475 + packageName = "expand-template"; 2476 + version = "1.1.0"; 2477 + src = fetchurl { 2478 + url = "https://registry.npmjs.org/expand-template/-/expand-template-1.1.0.tgz"; 2479 + sha512 = "34i2f4clwy5bpzgl137zwplybp5hn6ncxq0p794cx9m0crhgk31nfy0s8wp1v6hvw90h20c268r040g892dixy6zqq1xlm3ra8g0j4j"; 2480 + }; 2481 + }; 1006 2482 "extend-3.0.1" = { 1007 2483 name = "extend"; 1008 2484 packageName = "extend"; ··· 1057 2533 sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; 1058 2534 }; 1059 2535 }; 2536 + "fast-safe-stringify-1.1.13" = { 2537 + name = "fast-safe-stringify"; 2538 + packageName = "fast-safe-stringify"; 2539 + version = "1.1.13"; 2540 + src = fetchurl { 2541 + url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-1.1.13.tgz"; 2542 + sha1 = "a01e9cd9c9e491715c98a75a42d5f0bbd107ff76"; 2543 + }; 2544 + }; 1060 2545 "fd-read-stream-1.1.0" = { 1061 2546 name = "fd-read-stream"; 1062 2547 packageName = "fd-read-stream"; ··· 1066 2551 sha1 = "d303ccbfee02a9a56a3493fb08bcb59691aa53b1"; 1067 2552 }; 1068 2553 }; 2554 + "fetch-from-npm-registry-0.1.0" = { 2555 + name = "fetch-from-npm-registry"; 2556 + packageName = "fetch-from-npm-registry"; 2557 + version = "0.1.0"; 2558 + src = fetchurl { 2559 + url = "https://registry.npmjs.org/fetch-from-npm-registry/-/fetch-from-npm-registry-0.1.0.tgz"; 2560 + sha512 = "1264ixqa9c8kzm56hlq6y91d7rhzfkvbjy0asvj4xkdspwb5sy363n9g9frai3w415j9xyqfw8k73rcpw295gmhp790rnl5p1w0m88g"; 2561 + }; 2562 + }; 1069 2563 "filename-regex-2.0.1" = { 1070 2564 name = "filename-regex"; 1071 2565 packageName = "filename-regex"; ··· 1084 2578 sha1 = "50b77dfd7e469bc7492470963699fe7a8485a723"; 1085 2579 }; 1086 2580 }; 2581 + "fillo-1.0.11" = { 2582 + name = "fillo"; 2583 + packageName = "fillo"; 2584 + version = "1.0.11"; 2585 + src = fetchurl { 2586 + url = "https://registry.npmjs.org/fillo/-/fillo-1.0.11.tgz"; 2587 + sha512 = "36l602p8x6jkfpk75skz4dwjlpy9bna1zqpx7jgfjlalqbwa7b67wb8rv23cd6m5saklalf77irgvly60b5ziy611a4477idbrrr1fx"; 2588 + }; 2589 + }; 2590 + "find-packages-2.1.2" = { 2591 + name = "find-packages"; 2592 + packageName = "find-packages"; 2593 + version = "2.1.2"; 2594 + src = fetchurl { 2595 + url = "https://registry.npmjs.org/find-packages/-/find-packages-2.1.2.tgz"; 2596 + sha512 = "18j6pnfzxysg3ylhx9npp90infzxgczn174pd3mvy8mw13cshll2rzf6i9b27qfyzgq4chk7wbwy8wr1flmzlpll5g22c0ryp6dq2rh"; 2597 + }; 2598 + }; 2599 + "find-up-2.1.0" = { 2600 + name = "find-up"; 2601 + packageName = "find-up"; 2602 + version = "2.1.0"; 2603 + src = fetchurl { 2604 + url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"; 2605 + sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7"; 2606 + }; 2607 + }; 1087 2608 "findup-sync-0.3.0" = { 1088 2609 name = "findup-sync"; 1089 2610 packageName = "findup-sync"; ··· 1093 2614 sha1 = "37930aa5d816b777c03445e1966cc6790a4c0b16"; 1094 2615 }; 1095 2616 }; 2617 + "flat-colors-3.0.0" = { 2618 + name = "flat-colors"; 2619 + packageName = "flat-colors"; 2620 + version = "3.0.0"; 2621 + src = fetchurl { 2622 + url = "https://registry.npmjs.org/flat-colors/-/flat-colors-3.0.0.tgz"; 2623 + sha1 = "253ab1a23989c321f13b0acd4bf73fff4072ecb7"; 2624 + }; 2625 + }; 1096 2626 "flat-tree-1.6.0" = { 1097 2627 name = "flat-tree"; 1098 2628 packageName = "flat-tree"; ··· 1102 2632 sha1 = "fca30cddb9006fb656eb5ebc79aeb274e7fde9ed"; 1103 2633 }; 1104 2634 }; 2635 + "flush-write-stream-1.0.2" = { 2636 + name = "flush-write-stream"; 2637 + packageName = "flush-write-stream"; 2638 + version = "1.0.2"; 2639 + src = fetchurl { 2640 + url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.2.tgz"; 2641 + sha1 = "c81b90d8746766f1a609a46809946c45dd8ae417"; 2642 + }; 2643 + }; 1105 2644 "for-each-0.3.2" = { 1106 2645 name = "for-each"; 1107 2646 packageName = "for-each"; ··· 1129 2668 sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce"; 1130 2669 }; 1131 2670 }; 2671 + "foreach-2.0.5" = { 2672 + name = "foreach"; 2673 + packageName = "foreach"; 2674 + version = "2.0.5"; 2675 + src = fetchurl { 2676 + url = "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"; 2677 + sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99"; 2678 + }; 2679 + }; 1132 2680 "forever-agent-0.6.1" = { 1133 2681 name = "forever-agent"; 1134 2682 packageName = "forever-agent"; ··· 1156 2704 sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"; 1157 2705 }; 1158 2706 }; 2707 + "formatoid-1.2.2" = { 2708 + name = "formatoid"; 2709 + packageName = "formatoid"; 2710 + version = "1.2.2"; 2711 + src = fetchurl { 2712 + url = "https://registry.npmjs.org/formatoid/-/formatoid-1.2.2.tgz"; 2713 + sha512 = "3z818q9sgzw7jky4kc4gfmx15k3hhh7lj1dy17j30vcyzmx1p14k38d0a8nvl23f2sfm4bszam36wzz8niwkznr4m992wz009ipr6yy"; 2714 + }; 2715 + }; 2716 + "from2-1.3.0" = { 2717 + name = "from2"; 2718 + packageName = "from2"; 2719 + version = "1.3.0"; 2720 + src = fetchurl { 2721 + url = "https://registry.npmjs.org/from2/-/from2-1.3.0.tgz"; 2722 + sha1 = "88413baaa5f9a597cfde9221d86986cd3c061dfd"; 2723 + }; 2724 + }; 1159 2725 "from2-2.3.0" = { 1160 2726 name = "from2"; 1161 2727 packageName = "from2"; ··· 1165 2731 sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af"; 1166 2732 }; 1167 2733 }; 2734 + "fs-vacuum-1.2.10" = { 2735 + name = "fs-vacuum"; 2736 + packageName = "fs-vacuum"; 2737 + version = "1.2.10"; 2738 + src = fetchurl { 2739 + url = "https://registry.npmjs.org/fs-vacuum/-/fs-vacuum-1.2.10.tgz"; 2740 + sha1 = "b7629bec07a4031a2548fdf99f5ecf1cc8b31e36"; 2741 + }; 2742 + }; 2743 + "fs-write-stream-atomic-1.0.10" = { 2744 + name = "fs-write-stream-atomic"; 2745 + packageName = "fs-write-stream-atomic"; 2746 + version = "1.0.10"; 2747 + src = fetchurl { 2748 + url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz"; 2749 + sha1 = "b47df53493ef911df75731e70a9ded0189db40c9"; 2750 + }; 2751 + }; 1168 2752 "fs.realpath-1.0.0" = { 1169 2753 name = "fs.realpath"; 1170 2754 packageName = "fs.realpath"; ··· 1192 2776 sha1 = "9c31dae34767018fe1d249b24dada67d092da105"; 1193 2777 }; 1194 2778 }; 2779 + "function-bind-1.1.1" = { 2780 + name = "function-bind"; 2781 + packageName = "function-bind"; 2782 + version = "1.1.1"; 2783 + src = fetchurl { 2784 + url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; 2785 + sha512 = "38chm1mh077ksx6hy2sssfz4q29hf0ncb9k6ila7si54zqcpl5fxd1rh6wi82blqp7jcspf4aynr7jqhbsg2yc9y42xpqqp6c1jz2n8"; 2786 + }; 2787 + }; 2788 + "function.name-1.0.10" = { 2789 + name = "function.name"; 2790 + packageName = "function.name"; 2791 + version = "1.0.10"; 2792 + src = fetchurl { 2793 + url = "https://registry.npmjs.org/function.name/-/function.name-1.0.10.tgz"; 2794 + sha512 = "02zis7zxfkwajdf08z58mr0z2axddibclbk8xd849mkz7pq3y29s781fjycqigp3fdnwmy2mlvcnsg4z5hrfm44sr7gw30wx2p41x10"; 2795 + }; 2796 + }; 1195 2797 "gauge-2.7.4" = { 1196 2798 name = "gauge"; 1197 2799 packageName = "gauge"; ··· 1201 2803 sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; 1202 2804 }; 1203 2805 }; 2806 + "generate-function-1.1.0" = { 2807 + name = "generate-function"; 2808 + packageName = "generate-function"; 2809 + version = "1.1.0"; 2810 + src = fetchurl { 2811 + url = "https://registry.npmjs.org/generate-function/-/generate-function-1.1.0.tgz"; 2812 + sha1 = "54c21b080192b16d9877779c5bb81666e772365f"; 2813 + }; 2814 + }; 2815 + "generate-object-property-1.2.0" = { 2816 + name = "generate-object-property"; 2817 + packageName = "generate-object-property"; 2818 + version = "1.2.0"; 2819 + src = fetchurl { 2820 + url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"; 2821 + sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; 2822 + }; 2823 + }; 2824 + "genfun-4.0.1" = { 2825 + name = "genfun"; 2826 + packageName = "genfun"; 2827 + version = "4.0.1"; 2828 + src = fetchurl { 2829 + url = "https://registry.npmjs.org/genfun/-/genfun-4.0.1.tgz"; 2830 + sha1 = "ed10041f2e4a7f1b0a38466d17a5c3e27df1dfc1"; 2831 + }; 2832 + }; 2833 + "get-caller-file-1.0.2" = { 2834 + name = "get-caller-file"; 2835 + packageName = "get-caller-file"; 2836 + version = "1.0.2"; 2837 + src = fetchurl { 2838 + url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz"; 2839 + sha1 = "f702e63127e7e231c160a80c1554acb70d5047e5"; 2840 + }; 2841 + }; 2842 + "get-npm-tarball-url-2.0.1" = { 2843 + name = "get-npm-tarball-url"; 2844 + packageName = "get-npm-tarball-url"; 2845 + version = "2.0.1"; 2846 + src = fetchurl { 2847 + url = "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.0.1.tgz"; 2848 + sha512 = "051jj5v45fys9v10fpvga4wby8aq0wjydhfgynfip8bgyl7db3zkjzssqn4rv264br9b04mdc25hr9479zgqyffzdq7xxcjdi2dbsiw"; 2849 + }; 2850 + }; 2851 + "get-port-3.2.0" = { 2852 + name = "get-port"; 2853 + packageName = "get-port"; 2854 + version = "3.2.0"; 2855 + src = fetchurl { 2856 + url = "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz"; 2857 + sha1 = "dd7ce7de187c06c8bf353796ac71e099f0980ebc"; 2858 + }; 2859 + }; 2860 + "get-source-1.0.24" = { 2861 + name = "get-source"; 2862 + packageName = "get-source"; 2863 + version = "1.0.24"; 2864 + src = fetchurl { 2865 + url = "https://registry.npmjs.org/get-source/-/get-source-1.0.24.tgz"; 2866 + sha1 = "898dcc7b5592adba02e8bb82b8d2cda60cdae5c5"; 2867 + }; 2868 + }; 2869 + "get-stream-2.3.1" = { 2870 + name = "get-stream"; 2871 + packageName = "get-stream"; 2872 + version = "2.3.1"; 2873 + src = fetchurl { 2874 + url = "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz"; 2875 + sha1 = "5f38f93f346009666ee0150a054167f91bdd95de"; 2876 + }; 2877 + }; 2878 + "get-stream-3.0.0" = { 2879 + name = "get-stream"; 2880 + packageName = "get-stream"; 2881 + version = "3.0.0"; 2882 + src = fetchurl { 2883 + url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"; 2884 + sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; 2885 + }; 2886 + }; 1204 2887 "getpass-0.1.7" = { 1205 2888 name = "getpass"; 1206 2889 packageName = "getpass"; ··· 1208 2891 src = fetchurl { 1209 2892 url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; 1210 2893 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 2894 + }; 2895 + }; 2896 + "github-from-package-0.0.0" = { 2897 + name = "github-from-package"; 2898 + packageName = "github-from-package"; 2899 + version = "0.0.0"; 2900 + src = fetchurl { 2901 + url = "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz"; 2902 + sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce"; 1211 2903 }; 1212 2904 }; 1213 2905 "glob-5.0.15" = { ··· 1255 2947 sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f"; 1256 2948 }; 1257 2949 }; 2950 + "global-dirs-0.1.1" = { 2951 + name = "global-dirs"; 2952 + packageName = "global-dirs"; 2953 + version = "0.1.1"; 2954 + src = fetchurl { 2955 + url = "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz"; 2956 + sha1 = "b319c0dd4607f353f3be9cca4c72fc148c49f445"; 2957 + }; 2958 + }; 2959 + "globby-7.1.1" = { 2960 + name = "globby"; 2961 + packageName = "globby"; 2962 + version = "7.1.1"; 2963 + src = fetchurl { 2964 + url = "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz"; 2965 + sha1 = "fb2ccff9401f8600945dfada97440cca972b8680"; 2966 + }; 2967 + }; 2968 + "got-6.7.1" = { 2969 + name = "got"; 2970 + packageName = "got"; 2971 + version = "6.7.1"; 2972 + src = fetchurl { 2973 + url = "https://registry.npmjs.org/got/-/got-6.7.1.tgz"; 2974 + sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0"; 2975 + }; 2976 + }; 2977 + "got-8.0.3" = { 2978 + name = "got"; 2979 + packageName = "got"; 2980 + version = "8.0.3"; 2981 + src = fetchurl { 2982 + url = "https://registry.npmjs.org/got/-/got-8.0.3.tgz"; 2983 + sha512 = "2bglci1j77rvr4z2klmnr6d2qfqk0f60nm1myj9m0g2rzh7pd68hzki9nm8f5dpaxqr98ncjbd4rfzw75j35nvsfcyb2i1l9jjailak"; 2984 + }; 2985 + }; 1258 2986 "graceful-fs-4.1.11" = { 1259 2987 name = "graceful-fs"; 1260 2988 packageName = "graceful-fs"; ··· 1264 2992 sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"; 1265 2993 }; 1266 2994 }; 2995 + "graceful-git-1.0.1" = { 2996 + name = "graceful-git"; 2997 + packageName = "graceful-git"; 2998 + version = "1.0.1"; 2999 + src = fetchurl { 3000 + url = "https://registry.npmjs.org/graceful-git/-/graceful-git-1.0.1.tgz"; 3001 + sha512 = "31ajgk1zmq4zym3ckmr9n1x6n7sidg8naa3n8d2v6p8vr67g4gl7xxij5la1dxp6c9475pbrzq5vab7psp2dbjxvwdrzrlb8xwq83xp"; 3002 + }; 3003 + }; 1267 3004 "graceful-readlink-1.0.1" = { 1268 3005 name = "graceful-readlink"; 1269 3006 packageName = "graceful-readlink"; ··· 1271 3008 src = fetchurl { 1272 3009 url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"; 1273 3010 sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725"; 3011 + }; 3012 + }; 3013 + "graph-sequencer-2.0.0" = { 3014 + name = "graph-sequencer"; 3015 + packageName = "graph-sequencer"; 3016 + version = "2.0.0"; 3017 + src = fetchurl { 3018 + url = "https://registry.npmjs.org/graph-sequencer/-/graph-sequencer-2.0.0.tgz"; 3019 + sha1 = "bfb809b8af584f6f5287cdce507a30d4aea6ee70"; 1274 3020 }; 1275 3021 }; 1276 3022 "growl-1.10.3" = { ··· 1291 3037 sha1 = "a4274eeb32fa765da5a7a3b1712617ce3b144149"; 1292 3038 }; 1293 3039 }; 3040 + "gunzip-maybe-1.4.1" = { 3041 + name = "gunzip-maybe"; 3042 + packageName = "gunzip-maybe"; 3043 + version = "1.4.1"; 3044 + src = fetchurl { 3045 + url = "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.1.tgz"; 3046 + sha512 = "3d6jyhcq21cxy2n6mnalnxcdxl9i00n8qka7awrqamggss8yllz57msx7c480knv037snkzkymq6npl36wlpl71h54x511dlchavnxa"; 3047 + }; 3048 + }; 1294 3049 "har-schema-1.0.5" = { 1295 3050 name = "har-schema"; 1296 3051 packageName = "har-schema"; ··· 1327 3082 sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd"; 1328 3083 }; 1329 3084 }; 3085 + "has-1.0.1" = { 3086 + name = "has"; 3087 + packageName = "has"; 3088 + version = "1.0.1"; 3089 + src = fetchurl { 3090 + url = "https://registry.npmjs.org/has/-/has-1.0.1.tgz"; 3091 + sha1 = "8461733f538b0837c9361e39a9ab9e9704dc2f28"; 3092 + }; 3093 + }; 3094 + "has-ansi-2.0.0" = { 3095 + name = "has-ansi"; 3096 + packageName = "has-ansi"; 3097 + version = "2.0.0"; 3098 + src = fetchurl { 3099 + url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; 3100 + sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 3101 + }; 3102 + }; 3103 + "has-flag-1.0.0" = { 3104 + name = "has-flag"; 3105 + packageName = "has-flag"; 3106 + version = "1.0.0"; 3107 + src = fetchurl { 3108 + url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz"; 3109 + sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa"; 3110 + }; 3111 + }; 1330 3112 "has-flag-2.0.0" = { 1331 3113 name = "has-flag"; 1332 3114 packageName = "has-flag"; ··· 1336 3118 sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51"; 1337 3119 }; 1338 3120 }; 3121 + "has-symbol-support-x-1.4.1" = { 3122 + name = "has-symbol-support-x"; 3123 + packageName = "has-symbol-support-x"; 3124 + version = "1.4.1"; 3125 + src = fetchurl { 3126 + url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.1.tgz"; 3127 + sha512 = "0qgqbqmrlx51w4ixcln9ljr5hs2jj8fvryq7i8cg9a739p7y2c5z8wpplp9jhnfn4a3xn6li2b2npmhfm2x80khm9di3vllyyv9wii6"; 3128 + }; 3129 + }; 3130 + "has-to-string-tag-x-1.4.1" = { 3131 + name = "has-to-string-tag-x"; 3132 + packageName = "has-to-string-tag-x"; 3133 + version = "1.4.1"; 3134 + src = fetchurl { 3135 + url = "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz"; 3136 + sha512 = "0bqvhd628h3lrsydbp1xllh7jp23c58j7d4z0x0v9ddffindkk1zfrqmzm28z47ipjp0zxlmzvmlzk98zf9mzjsc47bmp1ydizcmmmx"; 3137 + }; 3138 + }; 1339 3139 "has-unicode-2.0.1" = { 1340 3140 name = "has-unicode"; 1341 3141 packageName = "has-unicode"; ··· 1390 3190 sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz"; 1391 3191 }; 1392 3192 }; 3193 + "hosted-git-info-2.5.0" = { 3194 + name = "hosted-git-info"; 3195 + packageName = "hosted-git-info"; 3196 + version = "2.5.0"; 3197 + src = fetchurl { 3198 + url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz"; 3199 + sha512 = "355g980qsk8k9hkv60z58llbvpscjl5yqkh4wx719s8jcq2swzn4ynzinj8azmvdgs10r22wb297rmixh9vvsml55sbysdf2i8ipn54"; 3200 + }; 3201 + }; 3202 + "http-cache-semantics-3.8.1" = { 3203 + name = "http-cache-semantics"; 3204 + packageName = "http-cache-semantics"; 3205 + version = "3.8.1"; 3206 + src = fetchurl { 3207 + url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz"; 3208 + sha512 = "3gsj16kpvygynld5ajbvg8ii3n3bka4waamdzx30wwhz72mdr6wvffm20rfnxwzid9fq49d5g333yjq5dz1qqbnk9bwcmrj9f5bda75"; 3209 + }; 3210 + }; 1393 3211 "http-methods-0.1.0" = { 1394 3212 name = "http-methods"; 1395 3213 packageName = "http-methods"; ··· 1399 3217 sha1 = "29691b6fc58f4f7e81a3605dca82682b068e4430"; 1400 3218 }; 1401 3219 }; 3220 + "http-proxy-agent-2.0.0" = { 3221 + name = "http-proxy-agent"; 3222 + packageName = "http-proxy-agent"; 3223 + version = "2.0.0"; 3224 + src = fetchurl { 3225 + url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.0.0.tgz"; 3226 + sha1 = "46482a2f0523a4d6082551709f469cb3e4a85ff4"; 3227 + }; 3228 + }; 1402 3229 "http-signature-1.1.1" = { 1403 3230 name = "http-signature"; 1404 3231 packageName = "http-signature"; ··· 1417 3244 sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 1418 3245 }; 1419 3246 }; 3247 + "https-proxy-agent-2.1.1" = { 3248 + name = "https-proxy-agent"; 3249 + packageName = "https-proxy-agent"; 3250 + version = "2.1.1"; 3251 + src = fetchurl { 3252 + url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.1.1.tgz"; 3253 + sha512 = "0rxbj60hs8fhs3i02lgb6ypcf9m9v8ybd4lfvfvpy0f1iyy54f1686lmv0rvkyxxihwvs4yizjgv8r8jksh385c4c9yjm3z8i0svbic"; 3254 + }; 3255 + }; 3256 + "humanize-ms-1.2.1" = { 3257 + name = "humanize-ms"; 3258 + packageName = "humanize-ms"; 3259 + version = "1.2.1"; 3260 + src = fetchurl { 3261 + url = "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz"; 3262 + sha1 = "c46e3159a293f6b896da29316d8b6fe8bb79bbed"; 3263 + }; 3264 + }; 1420 3265 "hypercore-6.12.0" = { 1421 3266 name = "hypercore"; 1422 3267 packageName = "hypercore"; ··· 1426 3271 sha512 = "00xsmbx8jcjzsibwwgknlpjvndb7zv6jdxik5skqnbizbdssvcwa2r5a7gd1cf7mpr2827067sxqqca9fmmknjnin2vvm16yb1pn5g8"; 1427 3272 }; 1428 3273 }; 1429 - "hypercore-protocol-6.5.1" = { 3274 + "hypercore-protocol-6.5.2" = { 1430 3275 name = "hypercore-protocol"; 1431 3276 packageName = "hypercore-protocol"; 1432 - version = "6.5.1"; 3277 + version = "6.5.2"; 1433 3278 src = fetchurl { 1434 - url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.5.1.tgz"; 1435 - sha512 = "2xy5g8l7wws0bxrvj3pv90qsyb0g12zs8ahhcmd732jdq5y9f1j5jvywp2bvdcwfd0x4kh7hwqz7ma1hir8sh30nhbi5w6w4ig0qqyl"; 3279 + url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.5.2.tgz"; 3280 + sha512 = "03l77nma8ga06ywa469jzqgc13hjk9bg3w2cv95g3fwnqy2fvz8qpczcih65jscvk0ira5kpm3sk2vqh2whzzvnm19jlqrzi78v80n3"; 1436 3281 }; 1437 3282 }; 1438 - "hyperdrive-9.12.1" = { 3283 + "hyperdrive-9.12.2" = { 1439 3284 name = "hyperdrive"; 1440 3285 packageName = "hyperdrive"; 1441 - version = "9.12.1"; 3286 + version = "9.12.2"; 1442 3287 src = fetchurl { 1443 - url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.1.tgz"; 1444 - sha512 = "12z4ajhk7h587vm8vdm766xy59fwv9whbnmhc4a8ns51gx3zavgspk48fywffk3p8kk16pnam3lk8zx17daxb281lll1qwa1mw73061"; 3288 + url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.2.tgz"; 3289 + sha512 = "133iwkp8w88awfxffdjjfxl2wsrj99cdw1p2rvbv65q7mgficva14skid7vsd55r750lrvg0wbmlz0h4m44w6ypd7cvpb4hjvb2f815"; 1445 3290 }; 1446 3291 }; 1447 3292 "hyperdrive-http-4.2.2" = { ··· 1471 3316 sha1 = "d96c92732076f072711b6b10fd7d4f65ad8ee23d"; 1472 3317 }; 1473 3318 }; 3319 + "iconv-lite-0.4.19" = { 3320 + name = "iconv-lite"; 3321 + packageName = "iconv-lite"; 3322 + version = "0.4.19"; 3323 + src = fetchurl { 3324 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz"; 3325 + sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1"; 3326 + }; 3327 + }; 3328 + "ieee754-1.1.8" = { 3329 + name = "ieee754"; 3330 + packageName = "ieee754"; 3331 + version = "1.1.8"; 3332 + src = fetchurl { 3333 + url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz"; 3334 + sha1 = "be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"; 3335 + }; 3336 + }; 3337 + "iferr-0.1.5" = { 3338 + name = "iferr"; 3339 + packageName = "iferr"; 3340 + version = "0.1.5"; 3341 + src = fetchurl { 3342 + url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz"; 3343 + sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"; 3344 + }; 3345 + }; 3346 + "ignore-3.3.7" = { 3347 + name = "ignore"; 3348 + packageName = "ignore"; 3349 + version = "3.3.7"; 3350 + src = fetchurl { 3351 + url = "https://registry.npmjs.org/ignore/-/ignore-3.3.7.tgz"; 3352 + sha512 = "0f6xhxww989yic6hwdm8mbylcyakfkrrn22a39wdcc9k842xxyyhzfxkmi79s9gjk3rp3h07n265lf4n51z8yafpdm78d617dxbfqb0"; 3353 + }; 3354 + }; 3355 + "ignore-walk-3.0.1" = { 3356 + name = "ignore-walk"; 3357 + packageName = "ignore-walk"; 3358 + version = "3.0.1"; 3359 + src = fetchurl { 3360 + url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz"; 3361 + sha512 = "2ajgs5klg786rkdxs37mbxn0p8ah2ai0nj0bjv5vbrfir4y0pvrhxxadv46s8g1hqkq5p3fjssys3n6qvz60p4jzjsgfq683lrnad8d"; 3362 + }; 3363 + }; 3364 + "import-lazy-2.1.0" = { 3365 + name = "import-lazy"; 3366 + packageName = "import-lazy"; 3367 + version = "2.1.0"; 3368 + src = fetchurl { 3369 + url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz"; 3370 + sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43"; 3371 + }; 3372 + }; 3373 + "imurmurhash-0.1.4" = { 3374 + name = "imurmurhash"; 3375 + packageName = "imurmurhash"; 3376 + version = "0.1.4"; 3377 + src = fetchurl { 3378 + url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; 3379 + sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; 3380 + }; 3381 + }; 3382 + "individual-3.0.0" = { 3383 + name = "individual"; 3384 + packageName = "individual"; 3385 + version = "3.0.0"; 3386 + src = fetchurl { 3387 + url = "https://registry.npmjs.org/individual/-/individual-3.0.0.tgz"; 3388 + sha1 = "e7ca4f85f8957b018734f285750dc22ec2f9862d"; 3389 + }; 3390 + }; 1474 3391 "inflight-1.0.6" = { 1475 3392 name = "inflight"; 1476 3393 packageName = "inflight"; ··· 1498 3415 sha512 = "1rjbvf1rg5ywhnba08sgagn2qf23lab330qrqmh7d891zap3xpxcyfyj1cblpf0f0rypglcfacybzyrpd4996aa1mbc820awa33k5j5"; 1499 3416 }; 1500 3417 }; 3418 + "init-package-json-1.10.1" = { 3419 + name = "init-package-json"; 3420 + packageName = "init-package-json"; 3421 + version = "1.10.1"; 3422 + src = fetchurl { 3423 + url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.10.1.tgz"; 3424 + sha1 = "cd873a167796befb99612b28762a0b6393fd8f6a"; 3425 + }; 3426 + }; 3427 + "into-stream-2.0.1" = { 3428 + name = "into-stream"; 3429 + packageName = "into-stream"; 3430 + version = "2.0.1"; 3431 + src = fetchurl { 3432 + url = "https://registry.npmjs.org/into-stream/-/into-stream-2.0.1.tgz"; 3433 + sha1 = "db9b003694453eae091d8a5c84cc11507b781d31"; 3434 + }; 3435 + }; 3436 + "into-stream-3.1.0" = { 3437 + name = "into-stream"; 3438 + packageName = "into-stream"; 3439 + version = "3.1.0"; 3440 + src = fetchurl { 3441 + url = "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz"; 3442 + sha1 = "96fb0a936c12babd6ff1752a17d05616abd094c6"; 3443 + }; 3444 + }; 3445 + "invert-kv-1.0.0" = { 3446 + name = "invert-kv"; 3447 + packageName = "invert-kv"; 3448 + version = "1.0.0"; 3449 + src = fetchurl { 3450 + url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz"; 3451 + sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; 3452 + }; 3453 + }; 1501 3454 "ip-1.1.5" = { 1502 3455 name = "ip"; 1503 3456 packageName = "ip"; ··· 1507 3460 sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a"; 1508 3461 }; 1509 3462 }; 3463 + "is-arrayish-0.2.1" = { 3464 + name = "is-arrayish"; 3465 + packageName = "is-arrayish"; 3466 + version = "0.2.1"; 3467 + src = fetchurl { 3468 + url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; 3469 + sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; 3470 + }; 3471 + }; 1510 3472 "is-buffer-1.1.6" = { 1511 3473 name = "is-buffer"; 1512 3474 packageName = "is-buffer"; ··· 1516 3478 sha512 = "3kr8dm9qyklmm2xyiz75s8db90bfilfals4x0g276kncihrrrz0ar4y6dqpvc7pwy7h43jay1bayi1r62x97nzvcswkk4ap18pl1irm"; 1517 3479 }; 1518 3480 }; 3481 + "is-builtin-module-1.0.0" = { 3482 + name = "is-builtin-module"; 3483 + packageName = "is-builtin-module"; 3484 + version = "1.0.0"; 3485 + src = fetchurl { 3486 + url = "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz"; 3487 + sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe"; 3488 + }; 3489 + }; 3490 + "is-bzip2-1.0.0" = { 3491 + name = "is-bzip2"; 3492 + packageName = "is-bzip2"; 3493 + version = "1.0.0"; 3494 + src = fetchurl { 3495 + url = "https://registry.npmjs.org/is-bzip2/-/is-bzip2-1.0.0.tgz"; 3496 + sha1 = "5ee58eaa5a2e9c80e21407bedf23ae5ac091b3fc"; 3497 + }; 3498 + }; 3499 + "is-callable-1.1.3" = { 3500 + name = "is-callable"; 3501 + packageName = "is-callable"; 3502 + version = "1.1.3"; 3503 + src = fetchurl { 3504 + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz"; 3505 + sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2"; 3506 + }; 3507 + }; 3508 + "is-ci-1.1.0" = { 3509 + name = "is-ci"; 3510 + packageName = "is-ci"; 3511 + version = "1.1.0"; 3512 + src = fetchurl { 3513 + url = "https://registry.npmjs.org/is-ci/-/is-ci-1.1.0.tgz"; 3514 + sha512 = "0m66alrh568wj40xwshf8q99gsjfk1jr0czp4jc2sm519wfzzzprkl5zjvw2r5h49p72d50ywj9qg67dnyazq0ijy4flgny2b1ygd3k"; 3515 + }; 3516 + }; 3517 + "is-cidr-1.0.0" = { 3518 + name = "is-cidr"; 3519 + packageName = "is-cidr"; 3520 + version = "1.0.0"; 3521 + src = fetchurl { 3522 + url = "https://registry.npmjs.org/is-cidr/-/is-cidr-1.0.0.tgz"; 3523 + sha1 = "fb5aacf659255310359da32cae03e40c6a1c2afc"; 3524 + }; 3525 + }; 3526 + "is-date-object-1.0.1" = { 3527 + name = "is-date-object"; 3528 + packageName = "is-date-object"; 3529 + version = "1.0.1"; 3530 + src = fetchurl { 3531 + url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz"; 3532 + sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; 3533 + }; 3534 + }; 3535 + "is-deflate-1.0.0" = { 3536 + name = "is-deflate"; 3537 + packageName = "is-deflate"; 3538 + version = "1.0.0"; 3539 + src = fetchurl { 3540 + url = "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz"; 3541 + sha1 = "c862901c3c161fb09dac7cdc7e784f80e98f2f14"; 3542 + }; 3543 + }; 1519 3544 "is-dotfile-1.0.3" = { 1520 3545 name = "is-dotfile"; 1521 3546 packageName = "is-dotfile"; ··· 1588 3613 sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863"; 1589 3614 }; 1590 3615 }; 3616 + "is-gzip-1.0.0" = { 3617 + name = "is-gzip"; 3618 + packageName = "is-gzip"; 3619 + version = "1.0.0"; 3620 + src = fetchurl { 3621 + url = "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz"; 3622 + sha1 = "6ca8b07b99c77998025900e555ced8ed80879a83"; 3623 + }; 3624 + }; 3625 + "is-inner-link-2.0.2" = { 3626 + name = "is-inner-link"; 3627 + packageName = "is-inner-link"; 3628 + version = "2.0.2"; 3629 + src = fetchurl { 3630 + url = "https://registry.npmjs.org/is-inner-link/-/is-inner-link-2.0.2.tgz"; 3631 + sha512 = "2xbj75av7s092kdl27ic28ckwnfnxvl4wr3x879djhamp0waw1js8c0zrakfnbjbsp5vh087brimykngrg319zfzhgwjvni994m2bv1"; 3632 + }; 3633 + }; 3634 + "is-installed-globally-0.1.0" = { 3635 + name = "is-installed-globally"; 3636 + packageName = "is-installed-globally"; 3637 + version = "0.1.0"; 3638 + src = fetchurl { 3639 + url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz"; 3640 + sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80"; 3641 + }; 3642 + }; 3643 + "is-npm-1.0.0" = { 3644 + name = "is-npm"; 3645 + packageName = "is-npm"; 3646 + version = "1.0.0"; 3647 + src = fetchurl { 3648 + url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz"; 3649 + sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4"; 3650 + }; 3651 + }; 1591 3652 "is-number-2.1.0" = { 1592 3653 name = "is-number"; 1593 3654 packageName = "is-number"; ··· 1606 3667 sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; 1607 3668 }; 1608 3669 }; 3670 + "is-obj-1.0.1" = { 3671 + name = "is-obj"; 3672 + packageName = "is-obj"; 3673 + version = "1.0.1"; 3674 + src = fetchurl { 3675 + url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"; 3676 + sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; 3677 + }; 3678 + }; 3679 + "is-object-1.0.1" = { 3680 + name = "is-object"; 3681 + packageName = "is-object"; 3682 + version = "1.0.1"; 3683 + src = fetchurl { 3684 + url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz"; 3685 + sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470"; 3686 + }; 3687 + }; 3688 + "is-path-inside-1.0.1" = { 3689 + name = "is-path-inside"; 3690 + packageName = "is-path-inside"; 3691 + version = "1.0.1"; 3692 + src = fetchurl { 3693 + url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz"; 3694 + sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"; 3695 + }; 3696 + }; 3697 + "is-plain-obj-1.1.0" = { 3698 + name = "is-plain-obj"; 3699 + packageName = "is-plain-obj"; 3700 + version = "1.1.0"; 3701 + src = fetchurl { 3702 + url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; 3703 + sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; 3704 + }; 3705 + }; 1609 3706 "is-posix-bracket-0.1.1" = { 1610 3707 name = "is-posix-bracket"; 1611 3708 packageName = "is-posix-bracket"; ··· 1624 3721 sha1 = "207bab91638499c07b2adf240a41a87210034575"; 1625 3722 }; 1626 3723 }; 3724 + "is-property-1.0.2" = { 3725 + name = "is-property"; 3726 + packageName = "is-property"; 3727 + version = "1.0.2"; 3728 + src = fetchurl { 3729 + url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"; 3730 + sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; 3731 + }; 3732 + }; 3733 + "is-redirect-1.0.0" = { 3734 + name = "is-redirect"; 3735 + packageName = "is-redirect"; 3736 + version = "1.0.0"; 3737 + src = fetchurl { 3738 + url = "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz"; 3739 + sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"; 3740 + }; 3741 + }; 3742 + "is-regex-1.0.4" = { 3743 + name = "is-regex"; 3744 + packageName = "is-regex"; 3745 + version = "1.0.4"; 3746 + src = fetchurl { 3747 + url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz"; 3748 + sha1 = "5517489b547091b0930e095654ced25ee97e9491"; 3749 + }; 3750 + }; 3751 + "is-retry-allowed-1.1.0" = { 3752 + name = "is-retry-allowed"; 3753 + packageName = "is-retry-allowed"; 3754 + version = "1.1.0"; 3755 + src = fetchurl { 3756 + url = "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz"; 3757 + sha1 = "11a060568b67339444033d0125a61a20d564fb34"; 3758 + }; 3759 + }; 3760 + "is-ssh-1.3.0" = { 3761 + name = "is-ssh"; 3762 + packageName = "is-ssh"; 3763 + version = "1.3.0"; 3764 + src = fetchurl { 3765 + url = "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.0.tgz"; 3766 + sha1 = "ebea1169a2614da392a63740366c3ce049d8dff6"; 3767 + }; 3768 + }; 3769 + "is-stream-1.1.0" = { 3770 + name = "is-stream"; 3771 + packageName = "is-stream"; 3772 + version = "1.1.0"; 3773 + src = fetchurl { 3774 + url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; 3775 + sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 3776 + }; 3777 + }; 1627 3778 "is-string-1.0.4" = { 1628 3779 name = "is-string"; 1629 3780 packageName = "is-string"; ··· 1633 3784 sha1 = "cc3a9b69857d621e963725a24caeec873b826e64"; 1634 3785 }; 1635 3786 }; 3787 + "is-subdir-1.0.2" = { 3788 + name = "is-subdir"; 3789 + packageName = "is-subdir"; 3790 + version = "1.0.2"; 3791 + src = fetchurl { 3792 + url = "https://registry.npmjs.org/is-subdir/-/is-subdir-1.0.2.tgz"; 3793 + sha512 = "2czdnl66p1ls8xjwh0vx5ydk118b9m1zhnc4khf16v7bh9n8nwjhafr4aigvd6kj2igl0ylbzznc181pf0ppxm4bgiv9kwyvlryyzfq"; 3794 + }; 3795 + }; 3796 + "is-symbol-1.0.1" = { 3797 + name = "is-symbol"; 3798 + packageName = "is-symbol"; 3799 + version = "1.0.1"; 3800 + src = fetchurl { 3801 + url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz"; 3802 + sha1 = "3cc59f00025194b6ab2e38dbae6689256b660572"; 3803 + }; 3804 + }; 1636 3805 "is-typedarray-1.0.0" = { 1637 3806 name = "is-typedarray"; 1638 3807 packageName = "is-typedarray"; ··· 1642 3811 sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; 1643 3812 }; 1644 3813 }; 3814 + "is-windows-1.0.1" = { 3815 + name = "is-windows"; 3816 + packageName = "is-windows"; 3817 + version = "1.0.1"; 3818 + src = fetchurl { 3819 + url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.1.tgz"; 3820 + sha1 = "310db70f742d259a16a369202b51af84233310d9"; 3821 + }; 3822 + }; 3823 + "isarray-0.0.1" = { 3824 + name = "isarray"; 3825 + packageName = "isarray"; 3826 + version = "0.0.1"; 3827 + src = fetchurl { 3828 + url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; 3829 + sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; 3830 + }; 3831 + }; 1645 3832 "isarray-1.0.0" = { 1646 3833 name = "isarray"; 1647 3834 packageName = "isarray"; ··· 1678 3865 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; 1679 3866 }; 1680 3867 }; 3868 + "isurl-1.0.0" = { 3869 + name = "isurl"; 3870 + packageName = "isurl"; 3871 + version = "1.0.0"; 3872 + src = fetchurl { 3873 + url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz"; 3874 + sha512 = "3vs53bpdrwiwwcql2xs20jmd8qha27k4iypdhr0b3isgdaj18vz80nhxwvvqxk6y3x5vj3slchxl0r91gjhz487xmkkp52gridg5zyl"; 3875 + }; 3876 + }; 3877 + "iterate-object-1.3.2" = { 3878 + name = "iterate-object"; 3879 + packageName = "iterate-object"; 3880 + version = "1.3.2"; 3881 + src = fetchurl { 3882 + url = "https://registry.npmjs.org/iterate-object/-/iterate-object-1.3.2.tgz"; 3883 + sha1 = "24ec15affa5d0039e8839695a21c2cae1f45b66b"; 3884 + }; 3885 + }; 1681 3886 "iterators-0.1.0" = { 1682 3887 name = "iterators"; 1683 3888 packageName = "iterators"; ··· 1687 3892 sha1 = "d03f666ca4e6130138565997cacea54164203156"; 1688 3893 }; 1689 3894 }; 3895 + "js-yaml-3.10.0" = { 3896 + name = "js-yaml"; 3897 + packageName = "js-yaml"; 3898 + version = "3.10.0"; 3899 + src = fetchurl { 3900 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz"; 3901 + sha512 = "0h26sq1bwxc45bm0hvlcadrbk4bizzaw729wvw690ya7mpys45bqfzdqwhjkdrnq0i44dzxckykz4bix22jfdyfg1asybg3yzczjsrv"; 3902 + }; 3903 + }; 1690 3904 "jsbn-0.1.1" = { 1691 3905 name = "jsbn"; 1692 3906 packageName = "jsbn"; ··· 1696 3910 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; 1697 3911 }; 1698 3912 }; 3913 + "json-buffer-3.0.0" = { 3914 + name = "json-buffer"; 3915 + packageName = "json-buffer"; 3916 + version = "3.0.0"; 3917 + src = fetchurl { 3918 + url = "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz"; 3919 + sha1 = "5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"; 3920 + }; 3921 + }; 3922 + "json-parse-better-errors-1.0.1" = { 3923 + name = "json-parse-better-errors"; 3924 + packageName = "json-parse-better-errors"; 3925 + version = "1.0.1"; 3926 + src = fetchurl { 3927 + url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz"; 3928 + sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967"; 3929 + }; 3930 + }; 1699 3931 "json-schema-0.2.3" = { 1700 3932 name = "json-schema"; 1701 3933 packageName = "json-schema"; ··· 1732 3964 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 1733 3965 }; 1734 3966 }; 3967 + "json2yaml-1.1.0" = { 3968 + name = "json2yaml"; 3969 + packageName = "json2yaml"; 3970 + version = "1.1.0"; 3971 + src = fetchurl { 3972 + url = "https://registry.npmjs.org/json2yaml/-/json2yaml-1.1.0.tgz"; 3973 + sha1 = "5414d907f9816586b80c513ec2e3aeb2ab819a6c"; 3974 + }; 3975 + }; 1735 3976 "jsonify-0.0.0" = { 1736 3977 name = "jsonify"; 1737 3978 packageName = "jsonify"; ··· 1741 3982 sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; 1742 3983 }; 1743 3984 }; 3985 + "jsonparse-1.3.1" = { 3986 + name = "jsonparse"; 3987 + packageName = "jsonparse"; 3988 + version = "1.3.1"; 3989 + src = fetchurl { 3990 + url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"; 3991 + sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280"; 3992 + }; 3993 + }; 1744 3994 "jsprim-1.4.1" = { 1745 3995 name = "jsprim"; 1746 3996 packageName = "jsprim"; ··· 1777 4027 sha512 = "02w1ih1lh86i5ap7c3dy2ml7g5a11r0w300iyxdf6v02qr0j1x3vf78hx5q9dgg3drifab018mgm851m457zzzi05i2z2r1s3zlflc3"; 1778 4028 }; 1779 4029 }; 4030 + "keyv-3.0.0" = { 4031 + name = "keyv"; 4032 + packageName = "keyv"; 4033 + version = "3.0.0"; 4034 + src = fetchurl { 4035 + url = "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz"; 4036 + sha512 = "32ga97c763vprf4sjbb2f7gbngfppq9n1hy4cpq2h4yb1msrhh2zjimxib7p09mzgynm6askbigxlsqsm11p644avp4sf5nmng8f2vs"; 4037 + }; 4038 + }; 1780 4039 "kind-of-3.2.2" = { 1781 4040 name = "kind-of"; 1782 4041 packageName = "kind-of"; ··· 1804 4063 sha1 = "c1bfd0cbcb46790ec9156b8d1aee8fcb86cda22a"; 1805 4064 }; 1806 4065 }; 4066 + "latest-version-3.1.0" = { 4067 + name = "latest-version"; 4068 + packageName = "latest-version"; 4069 + version = "3.1.0"; 4070 + src = fetchurl { 4071 + url = "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz"; 4072 + sha1 = "a205383fea322b33b5ae3b18abee0dc2f356ee15"; 4073 + }; 4074 + }; 4075 + "lazy-property-1.0.0" = { 4076 + name = "lazy-property"; 4077 + packageName = "lazy-property"; 4078 + version = "1.0.0"; 4079 + src = fetchurl { 4080 + url = "https://registry.npmjs.org/lazy-property/-/lazy-property-1.0.0.tgz"; 4081 + sha1 = "84ddc4b370679ba8bd4cdcfa4c06b43d57111147"; 4082 + }; 4083 + }; 4084 + "lcid-1.0.0" = { 4085 + name = "lcid"; 4086 + packageName = "lcid"; 4087 + version = "1.0.0"; 4088 + src = fetchurl { 4089 + url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz"; 4090 + sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; 4091 + }; 4092 + }; 4093 + "le-table-4.0.0" = { 4094 + name = "le-table"; 4095 + packageName = "le-table"; 4096 + version = "4.0.0"; 4097 + src = fetchurl { 4098 + url = "https://registry.npmjs.org/le-table/-/le-table-4.0.0.tgz"; 4099 + sha1 = "3bfeb72d24cbfc37752f01539f9006d711d9be93"; 4100 + }; 4101 + }; 1807 4102 "length-prefixed-message-3.0.3" = { 1808 4103 name = "length-prefixed-message"; 1809 4104 packageName = "length-prefixed-message"; ··· 1813 4108 sha1 = "245474d69abc0614dca368dc35aa8074982a23ac"; 1814 4109 }; 1815 4110 }; 4111 + "libnpx-9.6.0" = { 4112 + name = "libnpx"; 4113 + packageName = "libnpx"; 4114 + version = "9.6.0"; 4115 + src = fetchurl { 4116 + url = "https://registry.npmjs.org/libnpx/-/libnpx-9.6.0.tgz"; 4117 + sha512 = "28v6bsd92dcqj92yr2bk9r29ajwbqx46fd46mriva2934nr7s6hhkxy6f7xbf4nd7p93fxsbpzfx0ghq0y788x1zj8gnh1iswgd89sz"; 4118 + }; 4119 + }; 4120 + "load-json-file-2.0.0" = { 4121 + name = "load-json-file"; 4122 + packageName = "load-json-file"; 4123 + version = "2.0.0"; 4124 + src = fetchurl { 4125 + url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"; 4126 + sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; 4127 + }; 4128 + }; 4129 + "load-json-file-4.0.0" = { 4130 + name = "load-json-file"; 4131 + packageName = "load-json-file"; 4132 + version = "4.0.0"; 4133 + src = fetchurl { 4134 + url = "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"; 4135 + sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b"; 4136 + }; 4137 + }; 4138 + "load-yaml-file-0.1.0" = { 4139 + name = "load-yaml-file"; 4140 + packageName = "load-yaml-file"; 4141 + version = "0.1.0"; 4142 + src = fetchurl { 4143 + url = "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.1.0.tgz"; 4144 + sha1 = "f680066e691b3eeb45017672e4a3956af5b83b89"; 4145 + }; 4146 + }; 4147 + "locate-path-2.0.0" = { 4148 + name = "locate-path"; 4149 + packageName = "locate-path"; 4150 + version = "2.0.0"; 4151 + src = fetchurl { 4152 + url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"; 4153 + sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"; 4154 + }; 4155 + }; 4156 + "lockfile-1.0.3" = { 4157 + name = "lockfile"; 4158 + packageName = "lockfile"; 4159 + version = "1.0.3"; 4160 + src = fetchurl { 4161 + url = "https://registry.npmjs.org/lockfile/-/lockfile-1.0.3.tgz"; 4162 + sha1 = "2638fc39a0331e9cac1a04b71799931c9c50df79"; 4163 + }; 4164 + }; 4165 + "lodash-3.10.1" = { 4166 + name = "lodash"; 4167 + packageName = "lodash"; 4168 + version = "3.10.1"; 4169 + src = fetchurl { 4170 + url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"; 4171 + sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6"; 4172 + }; 4173 + }; 1816 4174 "lodash-4.17.4" = { 1817 4175 name = "lodash"; 1818 4176 packageName = "lodash"; ··· 1822 4180 sha1 = "78203a4d1c328ae1d86dca6460e369b57f4055ae"; 1823 4181 }; 1824 4182 }; 4183 + "lodash._baseuniq-4.6.0" = { 4184 + name = "lodash._baseuniq"; 4185 + packageName = "lodash._baseuniq"; 4186 + version = "4.6.0"; 4187 + src = fetchurl { 4188 + url = "https://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz"; 4189 + sha1 = "0ebb44e456814af7905c6212fa2c9b2d51b841e8"; 4190 + }; 4191 + }; 4192 + "lodash._createset-4.0.3" = { 4193 + name = "lodash._createset"; 4194 + packageName = "lodash._createset"; 4195 + version = "4.0.3"; 4196 + src = fetchurl { 4197 + url = "https://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.3.tgz"; 4198 + sha1 = "0f4659fbb09d75194fa9e2b88a6644d363c9fe26"; 4199 + }; 4200 + }; 4201 + "lodash._root-3.0.1" = { 4202 + name = "lodash._root"; 4203 + packageName = "lodash._root"; 4204 + version = "3.0.1"; 4205 + src = fetchurl { 4206 + url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz"; 4207 + sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692"; 4208 + }; 4209 + }; 4210 + "lodash.clonedeep-4.5.0" = { 4211 + name = "lodash.clonedeep"; 4212 + packageName = "lodash.clonedeep"; 4213 + version = "4.5.0"; 4214 + src = fetchurl { 4215 + url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"; 4216 + sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef"; 4217 + }; 4218 + }; 1825 4219 "lodash.flattendeep-4.4.0" = { 1826 4220 name = "lodash.flattendeep"; 1827 4221 packageName = "lodash.flattendeep"; ··· 1840 4234 sha1 = "c23e91b710242ac70c37f1e1cda9274cc39bf2f4"; 1841 4235 }; 1842 4236 }; 4237 + "lodash.union-4.6.0" = { 4238 + name = "lodash.union"; 4239 + packageName = "lodash.union"; 4240 + version = "4.6.0"; 4241 + src = fetchurl { 4242 + url = "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz"; 4243 + sha1 = "48bb5088409f16f1821666641c44dd1aaae3cd88"; 4244 + }; 4245 + }; 4246 + "lodash.uniq-4.5.0" = { 4247 + name = "lodash.uniq"; 4248 + packageName = "lodash.uniq"; 4249 + version = "4.5.0"; 4250 + src = fetchurl { 4251 + url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz"; 4252 + sha1 = "d0225373aeb652adc1bc82e4945339a842754773"; 4253 + }; 4254 + }; 4255 + "lodash.without-4.4.0" = { 4256 + name = "lodash.without"; 4257 + packageName = "lodash.without"; 4258 + version = "4.4.0"; 4259 + src = fetchurl { 4260 + url = "https://registry.npmjs.org/lodash.without/-/lodash.without-4.4.0.tgz"; 4261 + sha1 = "3cd4574a00b67bae373a94b748772640507b7aac"; 4262 + }; 4263 + }; 4264 + "log-update-2.3.0" = { 4265 + name = "log-update"; 4266 + packageName = "log-update"; 4267 + version = "2.3.0"; 4268 + src = fetchurl { 4269 + url = "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz"; 4270 + sha1 = "88328fd7d1ce7938b29283746f0b1bc126b24708"; 4271 + }; 4272 + }; 4273 + "loud-rejection-1.6.0" = { 4274 + name = "loud-rejection"; 4275 + packageName = "loud-rejection"; 4276 + version = "1.6.0"; 4277 + src = fetchurl { 4278 + url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz"; 4279 + sha1 = "5b46f80147edee578870f086d04821cf998e551f"; 4280 + }; 4281 + }; 4282 + "lowercase-keys-1.0.0" = { 4283 + name = "lowercase-keys"; 4284 + packageName = "lowercase-keys"; 4285 + version = "1.0.0"; 4286 + src = fetchurl { 4287 + url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz"; 4288 + sha1 = "4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"; 4289 + }; 4290 + }; 1843 4291 "lru-2.0.1" = { 1844 4292 name = "lru"; 1845 4293 packageName = "lru"; ··· 1858 4306 sha1 = "ea7fb8546d83733396a13091d76cfeb4c06837d5"; 1859 4307 }; 1860 4308 }; 4309 + "lru-cache-4.1.1" = { 4310 + name = "lru-cache"; 4311 + packageName = "lru-cache"; 4312 + version = "4.1.1"; 4313 + src = fetchurl { 4314 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz"; 4315 + sha512 = "1xz91sizgyzh8plz5jx1labzpygapm6xy3qpxriaj00yvnhy4lnmhqcb20qln4lh80c5g3yzp4j5i6g63njq1r5sl9c0zlkh9xjk2xb"; 4316 + }; 4317 + }; 4318 + "make-dir-1.1.0" = { 4319 + name = "make-dir"; 4320 + packageName = "make-dir"; 4321 + version = "1.1.0"; 4322 + src = fetchurl { 4323 + url = "https://registry.npmjs.org/make-dir/-/make-dir-1.1.0.tgz"; 4324 + sha512 = "1q7686aqgkxk9l6nqhzbil3599f9pxiz364kdbfy7pdr9sny7zylpm6yf4rwz4i0aa11lmf35mh8jmj7g7vxm37pvqvl9qbij5jxyfh"; 4325 + }; 4326 + }; 4327 + "make-fetch-happen-2.6.0" = { 4328 + name = "make-fetch-happen"; 4329 + packageName = "make-fetch-happen"; 4330 + version = "2.6.0"; 4331 + src = fetchurl { 4332 + url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-2.6.0.tgz"; 4333 + sha512 = "1kmyri7r2lpf3fjzwbbdramk86mhplv53x5pl535frn1vryq9xl7hmzkb3awxw6c31n19w0i20mv0h3zj8mmcw5yjkiysrlsaab8nhl"; 4334 + }; 4335 + }; 4336 + "meant-1.0.1" = { 4337 + name = "meant"; 4338 + packageName = "meant"; 4339 + version = "1.0.1"; 4340 + src = fetchurl { 4341 + url = "https://registry.npmjs.org/meant/-/meant-1.0.1.tgz"; 4342 + sha512 = "2b6yi25bkxg4hd38w2cpfjy0xyka4iqiyzhsnkklx3nxwbgnzr4hfl07xxpflccjvnb03zvnssw0y9fspxdk2fmq3abd4fab0n1baai"; 4343 + }; 4344 + }; 4345 + "mem-1.1.0" = { 4346 + name = "mem"; 4347 + packageName = "mem"; 4348 + version = "1.1.0"; 4349 + src = fetchurl { 4350 + url = "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz"; 4351 + sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76"; 4352 + }; 4353 + }; 4354 + "mem-3.0.0" = { 4355 + name = "mem"; 4356 + packageName = "mem"; 4357 + version = "3.0.0"; 4358 + src = fetchurl { 4359 + url = "https://registry.npmjs.org/mem/-/mem-3.0.0.tgz"; 4360 + sha1 = "84e58ad4dfbdf5d105b26b6548a398b2b3aa8a21"; 4361 + }; 4362 + }; 1861 4363 "memory-pager-1.1.0" = { 1862 4364 name = "memory-pager"; 1863 4365 packageName = "memory-pager"; ··· 1912 4414 sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a"; 1913 4415 }; 1914 4416 }; 4417 + "mimic-fn-1.1.0" = { 4418 + name = "mimic-fn"; 4419 + packageName = "mimic-fn"; 4420 + version = "1.1.0"; 4421 + src = fetchurl { 4422 + url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz"; 4423 + sha1 = "e667783d92e89dbd342818b5230b9d62a672ad18"; 4424 + }; 4425 + }; 4426 + "mimic-response-1.0.0" = { 4427 + name = "mimic-response"; 4428 + packageName = "mimic-response"; 4429 + version = "1.0.0"; 4430 + src = fetchurl { 4431 + url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz"; 4432 + sha1 = "df3d3652a73fded6b9b0b24146e6fd052353458e"; 4433 + }; 4434 + }; 1915 4435 "min-document-2.19.0" = { 1916 4436 name = "min-document"; 1917 4437 packageName = "min-document"; ··· 1948 4468 sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; 1949 4469 }; 1950 4470 }; 4471 + "minipass-2.2.1" = { 4472 + name = "minipass"; 4473 + packageName = "minipass"; 4474 + version = "2.2.1"; 4475 + src = fetchurl { 4476 + url = "https://registry.npmjs.org/minipass/-/minipass-2.2.1.tgz"; 4477 + sha512 = "3yy9s65iwrx5hndcqbxrks88xi9cf8hra6zalgf8xfr4ahpp31s0i8lv6jpyb42p0y7z55ac3390sbqxcgcvan3xls449agbjb98mmv"; 4478 + }; 4479 + }; 4480 + "minizlib-1.1.0" = { 4481 + name = "minizlib"; 4482 + packageName = "minizlib"; 4483 + version = "1.1.0"; 4484 + src = fetchurl { 4485 + url = "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz"; 4486 + sha512 = "2agpbdf9h90nhafdam3jwrw8gcz3jw1i40cx6bhwaw8qaf2s863gi2b77l73dc3hmf5dx491hv5km1rqzabgsbpkjxrvdcwy6pr8gp1"; 4487 + }; 4488 + }; 1951 4489 "mirror-folder-2.1.1" = { 1952 4490 name = "mirror-folder"; 1953 4491 packageName = "mirror-folder"; ··· 1957 4495 sha1 = "1ad3b777b39e403cc27bf52086c23e41ef4c9604"; 1958 4496 }; 1959 4497 }; 4498 + "mississippi-1.3.1" = { 4499 + name = "mississippi"; 4500 + packageName = "mississippi"; 4501 + version = "1.3.1"; 4502 + src = fetchurl { 4503 + url = "https://registry.npmjs.org/mississippi/-/mississippi-1.3.1.tgz"; 4504 + sha512 = "2vfagk7xiqrqmyp78yz1cpnjsaibgix7q22cgxggwzf5kqr7y1p21dbi67vcvsvip1g2s6mrvskw7d8a2288sala5n0nv65hpqw3apz"; 4505 + }; 4506 + }; 1960 4507 "mkdirp-0.5.1" = { 1961 4508 name = "mkdirp"; 1962 4509 packageName = "mkdirp"; ··· 1966 4513 sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 1967 4514 }; 1968 4515 }; 4516 + "mkdirp-promise-5.0.1" = { 4517 + name = "mkdirp-promise"; 4518 + packageName = "mkdirp-promise"; 4519 + version = "5.0.1"; 4520 + src = fetchurl { 4521 + url = "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz"; 4522 + sha1 = "e9b8f68e552c68a9c1713b84883f7a1dd039b8a1"; 4523 + }; 4524 + }; 4525 + "months-1.2.0" = { 4526 + name = "months"; 4527 + packageName = "months"; 4528 + version = "1.2.0"; 4529 + src = fetchurl { 4530 + url = "https://registry.npmjs.org/months/-/months-1.2.0.tgz"; 4531 + sha512 = "0wl48vfgi3c46vwy8cfa0j4z65rbar2j8cwgns9jcgi3cc3n79fm7yjg6wlbd90y3jhhfj03i2xs0as0sv3kkb0jc32d2bk9a2knlyc"; 4532 + }; 4533 + }; 4534 + "most-1.7.2" = { 4535 + name = "most"; 4536 + packageName = "most"; 4537 + version = "1.7.2"; 4538 + src = fetchurl { 4539 + url = "https://registry.npmjs.org/most/-/most-1.7.2.tgz"; 4540 + sha512 = "1jxsiagsdkjmd2h0ys7kkc34rw79bswfdlyijd2fv434d0sxk8i8j055fhmpfs4ca1j9wgi6pj9k4b2cyq7di528vykwgf7mr8v6d4c"; 4541 + }; 4542 + }; 4543 + "most-last-1.0.0" = { 4544 + name = "most-last"; 4545 + packageName = "most-last"; 4546 + version = "1.0.0"; 4547 + src = fetchurl { 4548 + url = "https://registry.npmjs.org/most-last/-/most-last-1.0.0.tgz"; 4549 + sha1 = "4e3f0b289c24cf90b9d8384676de90a26e376171"; 4550 + }; 4551 + }; 4552 + "move-concurrently-1.0.1" = { 4553 + name = "move-concurrently"; 4554 + packageName = "move-concurrently"; 4555 + version = "1.0.1"; 4556 + src = fetchurl { 4557 + url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz"; 4558 + sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92"; 4559 + }; 4560 + }; 1969 4561 "ms-2.0.0" = { 1970 4562 name = "ms"; 1971 4563 packageName = "ms"; ··· 1973 4565 src = fetchurl { 1974 4566 url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; 1975 4567 sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 4568 + }; 4569 + }; 4570 + "ms-2.1.1" = { 4571 + name = "ms"; 4572 + packageName = "ms"; 4573 + version = "2.1.1"; 4574 + src = fetchurl { 4575 + url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz"; 4576 + sha512 = "352z145jr1zx0w6kmlz2jxcaw6j2pwwg9va3x4gk731zw1agka2b213avw12zx6hgn071ibm0f3p80n5cdv896npay4s6jwbrv7w2mn"; 1976 4577 }; 1977 4578 }; 1978 4579 "multi-random-access-2.1.1" = { ··· 2020 4621 sha512 = "2hha5ly9j3v9pqpfvkbq8spn9sz7qz5bv8p303zmdisskhcn6i7ia5dviv8xhs3xlwi9562i4r4rm6mkk5gg0abm34zm1dkvp2z76m2"; 2021 4622 }; 2022 4623 }; 4624 + "mz-2.7.0" = { 4625 + name = "mz"; 4626 + packageName = "mz"; 4627 + version = "2.7.0"; 4628 + src = fetchurl { 4629 + url = "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz"; 4630 + sha512 = "3cpmwzmngnmxhklvicnsbl5dchvsy0yikzgf705cq1cplyps3waa03xbjp306bjf167wnplibwki0csnavz98dihq2877g7xqs4dkfg"; 4631 + }; 4632 + }; 2023 4633 "nan-2.8.0" = { 2024 4634 name = "nan"; 2025 4635 packageName = "nan"; ··· 2065 4675 sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246"; 2066 4676 }; 2067 4677 }; 4678 + "ncp-2.0.0" = { 4679 + name = "ncp"; 4680 + packageName = "ncp"; 4681 + version = "2.0.0"; 4682 + src = fetchurl { 4683 + url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"; 4684 + sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; 4685 + }; 4686 + }; 4687 + "ndjson-1.5.0" = { 4688 + name = "ndjson"; 4689 + packageName = "ndjson"; 4690 + version = "1.5.0"; 4691 + src = fetchurl { 4692 + url = "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz"; 4693 + sha1 = "ae603b36b134bcec347b452422b0bf98d5832ec8"; 4694 + }; 4695 + }; 4696 + "neat-csv-2.1.0" = { 4697 + name = "neat-csv"; 4698 + packageName = "neat-csv"; 4699 + version = "2.1.0"; 4700 + src = fetchurl { 4701 + url = "https://registry.npmjs.org/neat-csv/-/neat-csv-2.1.0.tgz"; 4702 + sha1 = "06f58360c4c3b955bd467ddc85ae4511a3907a4c"; 4703 + }; 4704 + }; 2068 4705 "neat-log-1.1.2" = { 2069 4706 name = "neat-log"; 2070 4707 packageName = "neat-log"; ··· 2074 4711 sha512 = "15fbq2bchsjk85zklc34xl74skmdxbipsf0zjf1k6jfq1fr31h5bn7c6438ff55i9yzrhf11k85ahvahyb73khfjl4sj59zjrqksj9d"; 2075 4712 }; 2076 4713 }; 4714 + "nerf-dart-1.0.0" = { 4715 + name = "nerf-dart"; 4716 + packageName = "nerf-dart"; 4717 + version = "1.0.0"; 4718 + src = fetchurl { 4719 + url = "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz"; 4720 + sha1 = "e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a"; 4721 + }; 4722 + }; 2077 4723 "nets-3.2.0" = { 2078 4724 name = "nets"; 2079 4725 packageName = "nets"; ··· 2092 4738 sha1 = "4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e"; 2093 4739 }; 2094 4740 }; 4741 + "node-abi-2.1.2" = { 4742 + name = "node-abi"; 4743 + packageName = "node-abi"; 4744 + version = "2.1.2"; 4745 + src = fetchurl { 4746 + url = "https://registry.npmjs.org/node-abi/-/node-abi-2.1.2.tgz"; 4747 + sha512 = "1sd6l8zqa18mlzackwy8vns51zjp8xyrd97nc514b0yvndd0y0wsyx2q9h8zr0k9kra5ys1yq75ggkv5av69cyzxji19rdvr5pjsrc6"; 4748 + }; 4749 + }; 4750 + "node-fetch-npm-2.0.2" = { 4751 + name = "node-fetch-npm"; 4752 + packageName = "node-fetch-npm"; 4753 + version = "2.0.2"; 4754 + src = fetchurl { 4755 + url = "https://registry.npmjs.org/node-fetch-npm/-/node-fetch-npm-2.0.2.tgz"; 4756 + sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw"; 4757 + }; 4758 + }; 4759 + "node-gyp-3.6.2" = { 4760 + name = "node-gyp"; 4761 + packageName = "node-gyp"; 4762 + version = "3.6.2"; 4763 + src = fetchurl { 4764 + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz"; 4765 + sha1 = "9bfbe54562286284838e750eac05295853fa1c60"; 4766 + }; 4767 + }; 2095 4768 "node-gyp-build-3.2.2" = { 2096 4769 name = "node-gyp-build"; 2097 4770 packageName = "node-gyp-build"; ··· 2101 4774 sha512 = "34hwi28wvvh5nn8bv71n0fb83xjyk84jsn8j9zgkaqnfigpv2hk6fs9jaffsn7qi3yi4n7iwd9yjyagd1rh74ckzdf5s6l59b8vzidp"; 2102 4775 }; 2103 4776 }; 4777 + "noop-logger-0.1.1" = { 4778 + name = "noop-logger"; 4779 + packageName = "noop-logger"; 4780 + version = "0.1.1"; 4781 + src = fetchurl { 4782 + url = "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz"; 4783 + sha1 = "94a2b1633c4f1317553007d8966fd0e841b6a4c2"; 4784 + }; 4785 + }; 4786 + "noop6-1.0.7" = { 4787 + name = "noop6"; 4788 + packageName = "noop6"; 4789 + version = "1.0.7"; 4790 + src = fetchurl { 4791 + url = "https://registry.npmjs.org/noop6/-/noop6-1.0.7.tgz"; 4792 + sha1 = "96767bf2058ba59ca8cb91559347ddc80239fa8e"; 4793 + }; 4794 + }; 2104 4795 "nopt-3.0.6" = { 2105 4796 name = "nopt"; 2106 4797 packageName = "nopt"; ··· 2119 4810 sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d"; 2120 4811 }; 2121 4812 }; 4813 + "normalize-package-data-2.4.0" = { 4814 + name = "normalize-package-data"; 4815 + packageName = "normalize-package-data"; 4816 + version = "2.4.0"; 4817 + src = fetchurl { 4818 + url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz"; 4819 + sha512 = "01wzws79ps84ylshjb7rfpjykgiqxnpr89s52p2yyzfx8nfvyh5flvf1almiiavsi75xgi8g3s5davc1mmgz7gn8yvlqz6gnhax8f7n"; 4820 + }; 4821 + }; 2122 4822 "normalize-path-2.1.1" = { 2123 4823 name = "normalize-path"; 2124 4824 packageName = "normalize-path"; ··· 2128 4828 sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; 2129 4829 }; 2130 4830 }; 4831 + "normalize-registry-url-1.0.0" = { 4832 + name = "normalize-registry-url"; 4833 + packageName = "normalize-registry-url"; 4834 + version = "1.0.0"; 4835 + src = fetchurl { 4836 + url = "https://registry.npmjs.org/normalize-registry-url/-/normalize-registry-url-1.0.0.tgz"; 4837 + sha512 = "3s6mrnn04pf7i9gqc04l6c4mnwdwy08235c4rd1rzw080z1a27bs1xwh2fcbzc8p1lbm4xjbby1g11pd38i4wsfjarbsvvmrvir7znj"; 4838 + }; 4839 + }; 4840 + "normalize-ssh-1.0.0" = { 4841 + name = "normalize-ssh"; 4842 + packageName = "normalize-ssh"; 4843 + version = "1.0.0"; 4844 + src = fetchurl { 4845 + url = "https://registry.npmjs.org/normalize-ssh/-/normalize-ssh-1.0.0.tgz"; 4846 + sha1 = "22a8308fa7cd932bdb49af74ecac644cf4a6196b"; 4847 + }; 4848 + }; 4849 + "normalize-url-2.0.1" = { 4850 + name = "normalize-url"; 4851 + packageName = "normalize-url"; 4852 + version = "2.0.1"; 4853 + src = fetchurl { 4854 + url = "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz"; 4855 + sha512 = "0rykwifg14xfgm9m6md48rkqqxa2cya4xdsv7jjciacis2nz6dzaccpzyldlpvy14rvihpxbdiysfn49a8x8x5jw84klmxzh9di98qg"; 4856 + }; 4857 + }; 4858 + "not-bundled-npm-5.5.1" = { 4859 + name = "not-bundled-npm"; 4860 + packageName = "not-bundled-npm"; 4861 + version = "5.5.1"; 4862 + src = fetchurl { 4863 + url = "https://registry.npmjs.org/not-bundled-npm/-/not-bundled-npm-5.5.1.tgz"; 4864 + sha512 = "1mzbw8sibjcs0c9ldxq90v7z5nrni5jz1khkbv7yvxf2gxqdp12b85fzs9qw3lrxjjcxk5w32rzadaz0q0llpqs72ikxcpi3i4wak9a"; 4865 + }; 4866 + }; 4867 + "npm-bundled-1.0.3" = { 4868 + name = "npm-bundled"; 4869 + packageName = "npm-bundled"; 4870 + version = "1.0.3"; 4871 + src = fetchurl { 4872 + url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.3.tgz"; 4873 + sha512 = "0xk8ky1cjf8q2wkbgfzplpn04sm9xnl6i71dwnc29rfh8m2glan5nd6l4k3q7ikci7xpwfpcmyy3frr873zndjmhbr344grkyh3f907"; 4874 + }; 4875 + }; 4876 + "npm-cache-filename-1.0.2" = { 4877 + name = "npm-cache-filename"; 4878 + packageName = "npm-cache-filename"; 4879 + version = "1.0.2"; 4880 + src = fetchurl { 4881 + url = "https://registry.npmjs.org/npm-cache-filename/-/npm-cache-filename-1.0.2.tgz"; 4882 + sha1 = "ded306c5b0bfc870a9e9faf823bc5f283e05ae11"; 4883 + }; 4884 + }; 4885 + "npm-install-checks-3.0.0" = { 4886 + name = "npm-install-checks"; 4887 + packageName = "npm-install-checks"; 4888 + version = "3.0.0"; 4889 + src = fetchurl { 4890 + url = "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-3.0.0.tgz"; 4891 + sha1 = "d4aecdfd51a53e3723b7b2f93b2ee28e307bc0d7"; 4892 + }; 4893 + }; 4894 + "npm-lifecycle-1.0.3" = { 4895 + name = "npm-lifecycle"; 4896 + packageName = "npm-lifecycle"; 4897 + version = "1.0.3"; 4898 + src = fetchurl { 4899 + url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-1.0.3.tgz"; 4900 + sha512 = "0iapgirmdb46ia3apm6fsb9qv9c0hi4k9jflrxlgnrm0jhliqgas49lmpz06xafncx1sxgjngl0fw3gr472c7kapzdvpivf0fp5miqa"; 4901 + }; 4902 + }; 4903 + "npm-lifecycle-2.0.0" = { 4904 + name = "npm-lifecycle"; 4905 + packageName = "npm-lifecycle"; 4906 + version = "2.0.0"; 4907 + src = fetchurl { 4908 + url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-2.0.0.tgz"; 4909 + sha512 = "1rwl5baayxqs7bcgbrjjbrl8lj46p9r4b4k9ad9gnkvgcs5ghsdr9fi6s4xmd0a9dlli0hfwf5mrd9h0rxmlh9zbn553lwfbp9wfkk8"; 4910 + }; 4911 + }; 4912 + "npm-package-arg-5.1.2" = { 4913 + name = "npm-package-arg"; 4914 + packageName = "npm-package-arg"; 4915 + version = "5.1.2"; 4916 + src = fetchurl { 4917 + url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-5.1.2.tgz"; 4918 + sha512 = "36g1gm57qcvdgb4lm6ibl9pgma8lgx8l8i2jzap6w3v36wfzsqa7vb411zd26yp9rgcq23951vl5j6pac22qd5h9x7jm9raznnnr460"; 4919 + }; 4920 + }; 4921 + "npm-package-arg-6.0.0" = { 4922 + name = "npm-package-arg"; 4923 + packageName = "npm-package-arg"; 4924 + version = "6.0.0"; 4925 + src = fetchurl { 4926 + url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-6.0.0.tgz"; 4927 + sha512 = "15a1x3fjip5waxap8dbjkm88j0c2bcnay8pw14p74h1499wznynw2if91shrqlrbzwia09x4xiphp6wkxga5z8vf9k08bjarn1vn047"; 4928 + }; 4929 + }; 4930 + "npm-packlist-1.1.10" = { 4931 + name = "npm-packlist"; 4932 + packageName = "npm-packlist"; 4933 + version = "1.1.10"; 4934 + src = fetchurl { 4935 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.10.tgz"; 4936 + sha512 = "1c5z9bibdf07na26xffshagxk8gfnsbaav802dkvbrlgj4mixz4giji96yb1zs7p9yl9n28mlkhjp9jklq55j27c0i837vk507v8001"; 4937 + }; 4938 + }; 4939 + "npm-pick-manifest-1.0.4" = { 4940 + name = "npm-pick-manifest"; 4941 + packageName = "npm-pick-manifest"; 4942 + version = "1.0.4"; 4943 + src = fetchurl { 4944 + url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-1.0.4.tgz"; 4945 + sha512 = "02pmkjkn2nbr1ypwzwybyd6bfckdwr8cr0nah5bwadz21yd7cd9fbvxqalfdc41n88p1zv8qbgp149knkaixnrl8l7jnrwfxislvb1h"; 4946 + }; 4947 + }; 4948 + "npm-profile-2.0.5" = { 4949 + name = "npm-profile"; 4950 + packageName = "npm-profile"; 4951 + version = "2.0.5"; 4952 + src = fetchurl { 4953 + url = "https://registry.npmjs.org/npm-profile/-/npm-profile-2.0.5.tgz"; 4954 + sha512 = "2325avpmbzxl4vi1hxnxv96rw9j0y712ym3mph3hrsvgq4p8d0yh44vnja22plnw9vplskcx661j2spzqka65zsszzngvwm806skfdl"; 4955 + }; 4956 + }; 4957 + "npm-registry-client-8.5.0" = { 4958 + name = "npm-registry-client"; 4959 + packageName = "npm-registry-client"; 4960 + version = "8.5.0"; 4961 + src = fetchurl { 4962 + url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.5.0.tgz"; 4963 + sha512 = "1nwp5cfjmy4k14g6ziz7zpia8f66ximhrdhw49cj2w173bibq1sgc4d5w951ql5dqf0hcmia956ld9y7qs2q1fx6s2j446zhvdk0irn"; 4964 + }; 4965 + }; 4966 + "npm-run-path-2.0.2" = { 4967 + name = "npm-run-path"; 4968 + packageName = "npm-run-path"; 4969 + version = "2.0.2"; 4970 + src = fetchurl { 4971 + url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; 4972 + sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; 4973 + }; 4974 + }; 4975 + "npm-user-validate-1.0.0" = { 4976 + name = "npm-user-validate"; 4977 + packageName = "npm-user-validate"; 4978 + version = "1.0.0"; 4979 + src = fetchurl { 4980 + url = "https://registry.npmjs.org/npm-user-validate/-/npm-user-validate-1.0.0.tgz"; 4981 + sha1 = "8ceca0f5cea04d4e93519ef72d0557a75122e951"; 4982 + }; 4983 + }; 2131 4984 "npmlog-4.1.2" = { 2132 4985 name = "npmlog"; 2133 4986 packageName = "npmlog"; ··· 2164 5017 sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 2165 5018 }; 2166 5019 }; 5020 + "object-keys-1.0.11" = { 5021 + name = "object-keys"; 5022 + packageName = "object-keys"; 5023 + version = "1.0.11"; 5024 + src = fetchurl { 5025 + url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz"; 5026 + sha1 = "c54601778ad560f1142ce0e01bcca8b56d13426d"; 5027 + }; 5028 + }; 5029 + "object.getownpropertydescriptors-2.0.3" = { 5030 + name = "object.getownpropertydescriptors"; 5031 + packageName = "object.getownpropertydescriptors"; 5032 + version = "2.0.3"; 5033 + src = fetchurl { 5034 + url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz"; 5035 + sha1 = "8758c846f5b407adab0f236e0986f14b051caa16"; 5036 + }; 5037 + }; 2167 5038 "object.omit-2.0.1" = { 2168 5039 name = "object.omit"; 2169 5040 packageName = "object.omit"; ··· 2173 5044 sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"; 2174 5045 }; 2175 5046 }; 5047 + "observatory-1.0.0" = { 5048 + name = "observatory"; 5049 + packageName = "observatory"; 5050 + version = "1.0.0"; 5051 + src = fetchurl { 5052 + url = "https://registry.npmjs.org/observatory/-/observatory-1.0.0.tgz"; 5053 + sha1 = "2baa606e8299e6866914ec9c8a4db6a41136e59b"; 5054 + }; 5055 + }; 2176 5056 "once-1.4.0" = { 2177 5057 name = "once"; 2178 5058 packageName = "once"; ··· 2182 5062 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 2183 5063 }; 2184 5064 }; 5065 + "onetime-2.0.1" = { 5066 + name = "onetime"; 5067 + packageName = "onetime"; 5068 + version = "2.0.1"; 5069 + src = fetchurl { 5070 + url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz"; 5071 + sha1 = "067428230fd67443b2794b22bba528b6867962d4"; 5072 + }; 5073 + }; 5074 + "opener-1.4.3" = { 5075 + name = "opener"; 5076 + packageName = "opener"; 5077 + version = "1.4.3"; 5078 + src = fetchurl { 5079 + url = "https://registry.npmjs.org/opener/-/opener-1.4.3.tgz"; 5080 + sha1 = "5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8"; 5081 + }; 5082 + }; 2185 5083 "optparse-1.0.5" = { 2186 5084 name = "optparse"; 2187 5085 packageName = "optparse"; ··· 2200 5098 sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; 2201 5099 }; 2202 5100 }; 5101 + "os-locale-2.1.0" = { 5102 + name = "os-locale"; 5103 + packageName = "os-locale"; 5104 + version = "2.1.0"; 5105 + src = fetchurl { 5106 + url = "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz"; 5107 + sha512 = "0lafrp0i2ajapsnma0x74q7zscn97a56i5hh58a0nyig2igfx9fqn4ain9kvjrr06as5gzdrv2wdf52qc5m861fd0f4cv69ghdjbjyy"; 5108 + }; 5109 + }; 2203 5110 "os-tmpdir-1.0.2" = { 2204 5111 name = "os-tmpdir"; 2205 5112 packageName = "os-tmpdir"; ··· 2218 5125 sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644"; 2219 5126 }; 2220 5127 }; 5128 + "overlap-2.0.0" = { 5129 + name = "overlap"; 5130 + packageName = "overlap"; 5131 + version = "2.0.0"; 5132 + src = fetchurl { 5133 + url = "https://registry.npmjs.org/overlap/-/overlap-2.0.0.tgz"; 5134 + sha1 = "b29b6bb2ad7569c4e66faef28cb5d74361179cb4"; 5135 + }; 5136 + }; 5137 + "p-cancelable-0.3.0" = { 5138 + name = "p-cancelable"; 5139 + packageName = "p-cancelable"; 5140 + version = "0.3.0"; 5141 + src = fetchurl { 5142 + url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz"; 5143 + sha512 = "35jir2yjv2l3v8aj062w0hfinzgwpb1sbhmaym8h4xn78j498naj7mkf4rpv74n5bfkysxb7l893l2yw3dpqk5dgb2yiwr8pcydjmj5"; 5144 + }; 5145 + }; 5146 + "p-defer-1.0.0" = { 5147 + name = "p-defer"; 5148 + packageName = "p-defer"; 5149 + version = "1.0.0"; 5150 + src = fetchurl { 5151 + url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz"; 5152 + sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"; 5153 + }; 5154 + }; 5155 + "p-every-1.0.2" = { 5156 + name = "p-every"; 5157 + packageName = "p-every"; 5158 + version = "1.0.2"; 5159 + src = fetchurl { 5160 + url = "https://registry.npmjs.org/p-every/-/p-every-1.0.2.tgz"; 5161 + sha1 = "4e01d85c23da19ed71a4afba319bdb4d94c85e00"; 5162 + }; 5163 + }; 5164 + "p-filter-1.0.0" = { 5165 + name = "p-filter"; 5166 + packageName = "p-filter"; 5167 + version = "1.0.0"; 5168 + src = fetchurl { 5169 + url = "https://registry.npmjs.org/p-filter/-/p-filter-1.0.0.tgz"; 5170 + sha1 = "629d317150209c8fd508ba137713ef4bb920e9db"; 5171 + }; 5172 + }; 5173 + "p-finally-1.0.0" = { 5174 + name = "p-finally"; 5175 + packageName = "p-finally"; 5176 + version = "1.0.0"; 5177 + src = fetchurl { 5178 + url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"; 5179 + sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; 5180 + }; 5181 + }; 5182 + "p-is-promise-1.1.0" = { 5183 + name = "p-is-promise"; 5184 + packageName = "p-is-promise"; 5185 + version = "1.1.0"; 5186 + src = fetchurl { 5187 + url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz"; 5188 + sha1 = "9c9456989e9f6588017b0434d56097675c3da05e"; 5189 + }; 5190 + }; 5191 + "p-limit-1.2.0" = { 5192 + name = "p-limit"; 5193 + packageName = "p-limit"; 5194 + version = "1.2.0"; 5195 + src = fetchurl { 5196 + url = "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz"; 5197 + sha512 = "2g0r6r6bbcdp6lrxbj2zbcihr1byd55kycm1ijz80l2zvmcvhqsbd7rhmfqylp004d61fibvmwzk4ig89dbyk4azpwgll7dllhsvwv3"; 5198 + }; 5199 + }; 5200 + "p-locate-2.0.0" = { 5201 + name = "p-locate"; 5202 + packageName = "p-locate"; 5203 + version = "2.0.0"; 5204 + src = fetchurl { 5205 + url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz"; 5206 + sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43"; 5207 + }; 5208 + }; 5209 + "p-map-1.2.0" = { 5210 + name = "p-map"; 5211 + packageName = "p-map"; 5212 + version = "1.2.0"; 5213 + src = fetchurl { 5214 + url = "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz"; 5215 + sha512 = "084pyivsr35xi3fdmpznf0c0nc9jz15hak8iyh3v24n25b376blg13ngb4mgpm71zdnfp9b17zbyn728z0jjz1r674k71hd4c0cmb5g"; 5216 + }; 5217 + }; 5218 + "p-queue-2.3.0" = { 5219 + name = "p-queue"; 5220 + packageName = "p-queue"; 5221 + version = "2.3.0"; 5222 + src = fetchurl { 5223 + url = "https://registry.npmjs.org/p-queue/-/p-queue-2.3.0.tgz"; 5224 + sha1 = "65d55e71bc1500fc413122da98ae457ff8a7c038"; 5225 + }; 5226 + }; 5227 + "p-reduce-1.0.0" = { 5228 + name = "p-reduce"; 5229 + packageName = "p-reduce"; 5230 + version = "1.0.0"; 5231 + src = fetchurl { 5232 + url = "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz"; 5233 + sha1 = "18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"; 5234 + }; 5235 + }; 5236 + "p-series-1.0.0" = { 5237 + name = "p-series"; 5238 + packageName = "p-series"; 5239 + version = "1.0.0"; 5240 + src = fetchurl { 5241 + url = "https://registry.npmjs.org/p-series/-/p-series-1.0.0.tgz"; 5242 + sha1 = "7ec9e7b4406cc32066298a6f9860e55e91b36e07"; 5243 + }; 5244 + }; 5245 + "p-timeout-2.0.1" = { 5246 + name = "p-timeout"; 5247 + packageName = "p-timeout"; 5248 + version = "2.0.1"; 5249 + src = fetchurl { 5250 + url = "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz"; 5251 + sha512 = "0h1wg3bw3pyf3vlnxxfnrs3h33lwbx5n1lz4cz8ivh7bi8vjd6makxf6p1xz1d70ww3gj2ghryhbg6w1myxacgirk51ym23qzksdizk"; 5252 + }; 5253 + }; 5254 + "p-try-1.0.0" = { 5255 + name = "p-try"; 5256 + packageName = "p-try"; 5257 + version = "1.0.0"; 5258 + src = fetchurl { 5259 + url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz"; 5260 + sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"; 5261 + }; 5262 + }; 5263 + "package-json-4.0.1" = { 5264 + name = "package-json"; 5265 + packageName = "package-json"; 5266 + version = "4.0.1"; 5267 + src = fetchurl { 5268 + url = "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz"; 5269 + sha1 = "8869a0401253661c4c4ca3da6c2121ed555f5eed"; 5270 + }; 5271 + }; 5272 + "package-store-0.15.2" = { 5273 + name = "package-store"; 5274 + packageName = "package-store"; 5275 + version = "0.15.2"; 5276 + src = fetchurl { 5277 + url = "https://registry.npmjs.org/package-store/-/package-store-0.15.2.tgz"; 5278 + sha512 = "074xsl6ca8j68cvbh8gj3h846g9rxgcxwxhbryab9f72brc5lmcq3dcj80kbjbykkzgpikzxj4qdmvxzwrhj3bilgncbbm0ladlv17r"; 5279 + }; 5280 + }; 5281 + "pacote-6.0.4" = { 5282 + name = "pacote"; 5283 + packageName = "pacote"; 5284 + version = "6.0.4"; 5285 + src = fetchurl { 5286 + url = "https://registry.npmjs.org/pacote/-/pacote-6.0.4.tgz"; 5287 + sha512 = "36bx0mnsvm3fvq0vbcl05j6fsjf4v4gks1hlxqyga0jxz491cis9y38j8q9cmmfdfbx9xaz3n3h93h0ik4bkn82rb3nz2413wk7xfxi"; 5288 + }; 5289 + }; 5290 + "pako-0.2.9" = { 5291 + name = "pako"; 5292 + packageName = "pako"; 5293 + version = "0.2.9"; 5294 + src = fetchurl { 5295 + url = "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz"; 5296 + sha1 = "f3f7522f4ef782348da8161bad9ecfd51bf83a75"; 5297 + }; 5298 + }; 5299 + "parallel-transform-1.1.0" = { 5300 + name = "parallel-transform"; 5301 + packageName = "parallel-transform"; 5302 + version = "1.1.0"; 5303 + src = fetchurl { 5304 + url = "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz"; 5305 + sha1 = "d410f065b05da23081fcd10f28854c29bda33b06"; 5306 + }; 5307 + }; 2221 5308 "parse-glob-3.0.4" = { 2222 5309 name = "parse-glob"; 2223 5310 packageName = "parse-glob"; ··· 2236 5323 sha1 = "6ae83a7aa25a9d9b700acc28698cd1f1ed7e9536"; 2237 5324 }; 2238 5325 }; 5326 + "parse-it-1.0.8" = { 5327 + name = "parse-it"; 5328 + packageName = "parse-it"; 5329 + version = "1.0.8"; 5330 + src = fetchurl { 5331 + url = "https://registry.npmjs.org/parse-it/-/parse-it-1.0.8.tgz"; 5332 + sha1 = "e9a53bde18c8049e7bb415b73e16d3292df8eae7"; 5333 + }; 5334 + }; 5335 + "parse-json-2.2.0" = { 5336 + name = "parse-json"; 5337 + packageName = "parse-json"; 5338 + version = "2.2.0"; 5339 + src = fetchurl { 5340 + url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; 5341 + sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; 5342 + }; 5343 + }; 5344 + "parse-json-4.0.0" = { 5345 + name = "parse-json"; 5346 + packageName = "parse-json"; 5347 + version = "4.0.0"; 5348 + src = fetchurl { 5349 + url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz"; 5350 + sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0"; 5351 + }; 5352 + }; 5353 + "parse-npm-tarball-url-1.0.2" = { 5354 + name = "parse-npm-tarball-url"; 5355 + packageName = "parse-npm-tarball-url"; 5356 + version = "1.0.2"; 5357 + src = fetchurl { 5358 + url = "https://registry.npmjs.org/parse-npm-tarball-url/-/parse-npm-tarball-url-1.0.2.tgz"; 5359 + sha512 = "26zvr85a2wbbkqrwzyy3226waj0p5z3vrh19gxxvkgxf98qgvl1jdz20hvsr20x5f1viwqm9n2yr8yi61kkb9h0cd1kszw2yv8542cs"; 5360 + }; 5361 + }; 5362 + "parse-url-1.3.11" = { 5363 + name = "parse-url"; 5364 + packageName = "parse-url"; 5365 + version = "1.3.11"; 5366 + src = fetchurl { 5367 + url = "https://registry.npmjs.org/parse-url/-/parse-url-1.3.11.tgz"; 5368 + sha1 = "57c15428ab8a892b1f43869645c711d0e144b554"; 5369 + }; 5370 + }; 5371 + "path-absolute-1.0.0" = { 5372 + name = "path-absolute"; 5373 + packageName = "path-absolute"; 5374 + version = "1.0.0"; 5375 + src = fetchurl { 5376 + url = "https://registry.npmjs.org/path-absolute/-/path-absolute-1.0.0.tgz"; 5377 + sha512 = "2fjzk70izrnlxrvqprakq310j8b1zcvsln7aji0qfljcl5is8c7aip8bc6ly07v8qg6l4rsrgzyj411rlbzyhmgnsiwzlnlhkr1lk5k"; 5378 + }; 5379 + }; 5380 + "path-exists-3.0.0" = { 5381 + name = "path-exists"; 5382 + packageName = "path-exists"; 5383 + version = "3.0.0"; 5384 + src = fetchurl { 5385 + url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; 5386 + sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; 5387 + }; 5388 + }; 2239 5389 "path-is-absolute-1.0.1" = { 2240 5390 name = "path-is-absolute"; 2241 5391 packageName = "path-is-absolute"; ··· 2245 5395 sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 2246 5396 }; 2247 5397 }; 5398 + "path-is-inside-1.0.2" = { 5399 + name = "path-is-inside"; 5400 + packageName = "path-is-inside"; 5401 + version = "1.0.2"; 5402 + src = fetchurl { 5403 + url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"; 5404 + sha1 = "365417dede44430d1c11af61027facf074bdfc53"; 5405 + }; 5406 + }; 5407 + "path-key-2.0.1" = { 5408 + name = "path-key"; 5409 + packageName = "path-key"; 5410 + version = "2.0.1"; 5411 + src = fetchurl { 5412 + url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"; 5413 + sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; 5414 + }; 5415 + }; 5416 + "path-name-1.0.0" = { 5417 + name = "path-name"; 5418 + packageName = "path-name"; 5419 + version = "1.0.0"; 5420 + src = fetchurl { 5421 + url = "https://registry.npmjs.org/path-name/-/path-name-1.0.0.tgz"; 5422 + sha1 = "8ca063a63de7982dfa95760edaffd10214494f24"; 5423 + }; 5424 + }; 5425 + "path-type-2.0.0" = { 5426 + name = "path-type"; 5427 + packageName = "path-type"; 5428 + version = "2.0.0"; 5429 + src = fetchurl { 5430 + url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz"; 5431 + sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; 5432 + }; 5433 + }; 5434 + "path-type-3.0.0" = { 5435 + name = "path-type"; 5436 + packageName = "path-type"; 5437 + version = "3.0.0"; 5438 + src = fetchurl { 5439 + url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz"; 5440 + sha512 = "2z1csf4c3fmlwl0ahk533z5zqkjdf36ccfx11kakl9xran9f5asxm4cxjq4lx1kwqdp8gki786cgpldvgrkvfc7pcvh07j5ssqm8rjg"; 5441 + }; 5442 + }; 5443 + "peek-stream-1.1.2" = { 5444 + name = "peek-stream"; 5445 + packageName = "peek-stream"; 5446 + version = "1.1.2"; 5447 + src = fetchurl { 5448 + url = "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.2.tgz"; 5449 + sha1 = "97eb76365bcfd8c89e287f55c8b69d4c3e9bcc52"; 5450 + }; 5451 + }; 2248 5452 "performance-now-0.2.0" = { 2249 5453 name = "performance-now"; 2250 5454 packageName = "performance-now"; ··· 2263 5467 sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 2264 5468 }; 2265 5469 }; 5470 + "pify-2.3.0" = { 5471 + name = "pify"; 5472 + packageName = "pify"; 5473 + version = "2.3.0"; 5474 + src = fetchurl { 5475 + url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; 5476 + sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; 5477 + }; 5478 + }; 5479 + "pify-3.0.0" = { 5480 + name = "pify"; 5481 + packageName = "pify"; 5482 + version = "3.0.0"; 5483 + src = fetchurl { 5484 + url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"; 5485 + sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; 5486 + }; 5487 + }; 5488 + "pinkie-2.0.4" = { 5489 + name = "pinkie"; 5490 + packageName = "pinkie"; 5491 + version = "2.0.4"; 5492 + src = fetchurl { 5493 + url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"; 5494 + sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; 5495 + }; 5496 + }; 5497 + "pinkie-promise-2.0.1" = { 5498 + name = "pinkie-promise"; 5499 + packageName = "pinkie-promise"; 5500 + version = "2.0.1"; 5501 + src = fetchurl { 5502 + url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; 5503 + sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 5504 + }; 5505 + }; 2266 5506 "pkginfo-0.3.1" = { 2267 5507 name = "pkginfo"; 2268 5508 packageName = "pkginfo"; ··· 2281 5521 sha1 = "b5418ef0439de5425fc4995042dced14fb2a84ff"; 2282 5522 }; 2283 5523 }; 5524 + "pkgs-graph-2.0.0-0" = { 5525 + name = "pkgs-graph"; 5526 + packageName = "pkgs-graph"; 5527 + version = "2.0.0-0"; 5528 + src = fetchurl { 5529 + url = "https://registry.npmjs.org/pkgs-graph/-/pkgs-graph-2.0.0-0.tgz"; 5530 + sha512 = "3p1llv78shph6qwba9p8vd14hxanjdp1zmzivmn94dzfff2diqkvsc0zar9pj40pl2fwkbqg3p266ilcjbj6ajhzn8kcpmir5fx2f0c"; 5531 + }; 5532 + }; 5533 + "pnpm-default-reporter-0.11.8" = { 5534 + name = "pnpm-default-reporter"; 5535 + packageName = "pnpm-default-reporter"; 5536 + version = "0.11.8"; 5537 + src = fetchurl { 5538 + url = "https://registry.npmjs.org/pnpm-default-reporter/-/pnpm-default-reporter-0.11.8.tgz"; 5539 + sha512 = "2x14yf0yi5q5dvq1777khbvah4wpcm92l4il946nq0f7nyra450llgp09q56161rk6qk6x7gr9hffii97c25b98a35pr7gwgc8yfrwz"; 5540 + }; 5541 + }; 5542 + "pnpm-file-reporter-0.0.1" = { 5543 + name = "pnpm-file-reporter"; 5544 + packageName = "pnpm-file-reporter"; 5545 + version = "0.0.1"; 5546 + src = fetchurl { 5547 + url = "https://registry.npmjs.org/pnpm-file-reporter/-/pnpm-file-reporter-0.0.1.tgz"; 5548 + sha1 = "f7c3e2164c5cc955a0b3ed661314e6357b3f2e63"; 5549 + }; 5550 + }; 5551 + "pnpm-install-checks-1.1.0" = { 5552 + name = "pnpm-install-checks"; 5553 + packageName = "pnpm-install-checks"; 5554 + version = "1.1.0"; 5555 + src = fetchurl { 5556 + url = "https://registry.npmjs.org/pnpm-install-checks/-/pnpm-install-checks-1.1.0.tgz"; 5557 + sha1 = "741d9979762fdfad93f3e469deb4a814d3430008"; 5558 + }; 5559 + }; 5560 + "pnpm-list-2.0.1" = { 5561 + name = "pnpm-list"; 5562 + packageName = "pnpm-list"; 5563 + version = "2.0.1"; 5564 + src = fetchurl { 5565 + url = "https://registry.npmjs.org/pnpm-list/-/pnpm-list-2.0.1.tgz"; 5566 + sha512 = "0rrmch43p1dncghmvb6mwv59c0gan88d87fdbvzsmg4lj6j5l4bkfrr5x6gmi9z8f4nf3lqddf5b5wg8l7bb5if6c5wknim1w3l2vlb"; 5567 + }; 5568 + }; 5569 + "pnpm-logger-0.0.0" = { 5570 + name = "pnpm-logger"; 5571 + packageName = "pnpm-logger"; 5572 + version = "0.0.0"; 5573 + src = fetchurl { 5574 + url = "https://registry.npmjs.org/pnpm-logger/-/pnpm-logger-0.0.0.tgz"; 5575 + sha1 = "28701b97618a1fc32d2fee1bf410746588bb1a85"; 5576 + }; 5577 + }; 5578 + "pnpm-shrinkwrap-5.1.1" = { 5579 + name = "pnpm-shrinkwrap"; 5580 + packageName = "pnpm-shrinkwrap"; 5581 + version = "5.1.1"; 5582 + src = fetchurl { 5583 + url = "https://registry.npmjs.org/pnpm-shrinkwrap/-/pnpm-shrinkwrap-5.1.1.tgz"; 5584 + sha512 = "0nrnbsdiq01q2383pib07a7hrc602bpl9sf2j05pmjk5xn7hipicp90jdwlzf36wln2bqjzi1zgv5a5fhw41zx3zfad6affppkf8c5d"; 5585 + }; 5586 + }; 5587 + "prebuild-install-2.5.0" = { 5588 + name = "prebuild-install"; 5589 + packageName = "prebuild-install"; 5590 + version = "2.5.0"; 5591 + src = fetchurl { 5592 + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-2.5.0.tgz"; 5593 + sha512 = "137vbrb6szyda92qg093yp1l6d2l4s1nb7c0dznjgbyrzsm252spxnrdpmj8nmf170fcq404pgsn0p65sxm4z74p2fyqyd415k742fz"; 5594 + }; 5595 + }; 5596 + "prepend-http-1.0.4" = { 5597 + name = "prepend-http"; 5598 + packageName = "prepend-http"; 5599 + version = "1.0.4"; 5600 + src = fetchurl { 5601 + url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz"; 5602 + sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"; 5603 + }; 5604 + }; 5605 + "prepend-http-2.0.0" = { 5606 + name = "prepend-http"; 5607 + packageName = "prepend-http"; 5608 + version = "2.0.0"; 5609 + src = fetchurl { 5610 + url = "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz"; 5611 + sha1 = "e92434bfa5ea8c19f41cdfd401d741a3c819d897"; 5612 + }; 5613 + }; 2284 5614 "preserve-0.2.0" = { 2285 5615 name = "preserve"; 2286 5616 packageName = "preserve"; ··· 2299 5629 sha1 = "994b02aa46f699c50b6257b5faaa7fe2557e62d6"; 2300 5630 }; 2301 5631 }; 5632 + "pretty-bytes-4.0.2" = { 5633 + name = "pretty-bytes"; 5634 + packageName = "pretty-bytes"; 5635 + version = "4.0.2"; 5636 + src = fetchurl { 5637 + url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz"; 5638 + sha1 = "b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"; 5639 + }; 5640 + }; 2302 5641 "pretty-hash-1.0.1" = { 2303 5642 name = "pretty-hash"; 2304 5643 packageName = "pretty-hash"; ··· 2308 5647 sha1 = "16e0579188def56bdb565892bcd05a5d65324807"; 2309 5648 }; 2310 5649 }; 5650 + "printable-characters-1.0.38" = { 5651 + name = "printable-characters"; 5652 + packageName = "printable-characters"; 5653 + version = "1.0.38"; 5654 + src = fetchurl { 5655 + url = "https://registry.npmjs.org/printable-characters/-/printable-characters-1.0.38.tgz"; 5656 + sha1 = "76ef84accfd7f8366fb7138fb92466a916d599bc"; 5657 + }; 5658 + }; 5659 + "proc-output-1.0.6" = { 5660 + name = "proc-output"; 5661 + packageName = "proc-output"; 5662 + version = "1.0.6"; 5663 + src = fetchurl { 5664 + url = "https://registry.npmjs.org/proc-output/-/proc-output-1.0.6.tgz"; 5665 + sha1 = "9ffcfb3ac6a156ee32b7ebd69f024a4f6d896350"; 5666 + }; 5667 + }; 2311 5668 "process-0.5.2" = { 2312 5669 name = "process"; 2313 5670 packageName = "process"; ··· 2315 5672 src = fetchurl { 2316 5673 url = "https://registry.npmjs.org/process/-/process-0.5.2.tgz"; 2317 5674 sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf"; 5675 + }; 5676 + }; 5677 + "process-exists-3.0.0" = { 5678 + name = "process-exists"; 5679 + packageName = "process-exists"; 5680 + version = "3.0.0"; 5681 + src = fetchurl { 5682 + url = "https://registry.npmjs.org/process-exists/-/process-exists-3.0.0.tgz"; 5683 + sha512 = "3lwxdzkx3bzfvb8qvrjccjdk90advh7p3j52d1b4hn3v2d7cf780k7wbvy94w6chgpq6lrrs6m0n122463q7g8z06aajbjqncq0db9h"; 2318 5684 }; 2319 5685 }; 2320 5686 "process-nextick-args-1.0.7" = { ··· 2335 5701 sha512 = "07n7s98b5fqdx9jspg14zkw0dndfdpbrd12f5nj5c7m6aifvl4nn27qdbrgy6gzb837cs86cakldqh5kwbi7fv6ra9ll9q83qhsya97"; 2336 5702 }; 2337 5703 }; 5704 + "promise-inflight-1.0.1" = { 5705 + name = "promise-inflight"; 5706 + packageName = "promise-inflight"; 5707 + version = "1.0.1"; 5708 + src = fetchurl { 5709 + url = "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz"; 5710 + sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; 5711 + }; 5712 + }; 5713 + "promise-retry-1.1.1" = { 5714 + name = "promise-retry"; 5715 + packageName = "promise-retry"; 5716 + version = "1.1.1"; 5717 + src = fetchurl { 5718 + url = "https://registry.npmjs.org/promise-retry/-/promise-retry-1.1.1.tgz"; 5719 + sha1 = "6739e968e3051da20ce6497fb2b50f6911df3d6d"; 5720 + }; 5721 + }; 2338 5722 "prompt-1.0.0" = { 2339 5723 name = "prompt"; 2340 5724 packageName = "prompt"; ··· 2344 5728 sha1 = "8e57123c396ab988897fb327fd3aedc3e735e4fe"; 2345 5729 }; 2346 5730 }; 5731 + "promzard-0.3.0" = { 5732 + name = "promzard"; 5733 + packageName = "promzard"; 5734 + version = "0.3.0"; 5735 + src = fetchurl { 5736 + url = "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz"; 5737 + sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee"; 5738 + }; 5739 + }; 5740 + "proper-lockfile-2.0.1" = { 5741 + name = "proper-lockfile"; 5742 + packageName = "proper-lockfile"; 5743 + version = "2.0.1"; 5744 + src = fetchurl { 5745 + url = "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-2.0.1.tgz"; 5746 + sha1 = "159fb06193d32003f4b3691dd2ec1a634aa80d1d"; 5747 + }; 5748 + }; 5749 + "proto-list-1.2.4" = { 5750 + name = "proto-list"; 5751 + packageName = "proto-list"; 5752 + version = "1.2.4"; 5753 + src = fetchurl { 5754 + url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz"; 5755 + sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; 5756 + }; 5757 + }; 2347 5758 "protocol-buffers-encodings-1.1.0" = { 2348 5759 name = "protocol-buffers-encodings"; 2349 5760 packageName = "protocol-buffers-encodings"; ··· 2353 5764 sha512 = "28vhf9zv4h6gc3nia9pshzn16jm1h6r58nj2mwmkji35fjbscjwxrxigwy87j82y8wayn29qgc31939b1fyk6dmvvhwv1gp0ywc8s2a"; 2354 5765 }; 2355 5766 }; 5767 + "protocols-1.4.6" = { 5768 + name = "protocols"; 5769 + packageName = "protocols"; 5770 + version = "1.4.6"; 5771 + src = fetchurl { 5772 + url = "https://registry.npmjs.org/protocols/-/protocols-1.4.6.tgz"; 5773 + sha1 = "f8bb263ea1b5fd7a7604d26b8be39bd77678bf8a"; 5774 + }; 5775 + }; 5776 + "protoduck-4.0.0" = { 5777 + name = "protoduck"; 5778 + packageName = "protoduck"; 5779 + version = "4.0.0"; 5780 + src = fetchurl { 5781 + url = "https://registry.npmjs.org/protoduck/-/protoduck-4.0.0.tgz"; 5782 + sha1 = "fe4874d8c7913366cfd9ead12453a22cd3657f8e"; 5783 + }; 5784 + }; 5785 + "prr-1.0.1" = { 5786 + name = "prr"; 5787 + packageName = "prr"; 5788 + version = "1.0.1"; 5789 + src = fetchurl { 5790 + url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz"; 5791 + sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476"; 5792 + }; 5793 + }; 5794 + "ps-list-4.0.0" = { 5795 + name = "ps-list"; 5796 + packageName = "ps-list"; 5797 + version = "4.0.0"; 5798 + src = fetchurl { 5799 + url = "https://registry.npmjs.org/ps-list/-/ps-list-4.0.0.tgz"; 5800 + sha1 = "57c8b3d38161ee8977811cd32a5dc52237fdb299"; 5801 + }; 5802 + }; 5803 + "pseudomap-1.0.2" = { 5804 + name = "pseudomap"; 5805 + packageName = "pseudomap"; 5806 + version = "1.0.2"; 5807 + src = fetchurl { 5808 + url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; 5809 + sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; 5810 + }; 5811 + }; 2356 5812 "pump-1.0.3" = { 2357 5813 name = "pump"; 2358 5814 packageName = "pump"; ··· 2362 5818 sha512 = "2mj8bx34brvh97wd2xcn5phgyd2wh3l1ma2xfd0m53yf68w1izp46pmz0s9az5f36mhlvl0mvfd6hp5abhi75fhyrz9wyx6jnx0jkgj"; 2363 5819 }; 2364 5820 }; 2365 - "pump-2.0.0" = { 5821 + "pump-2.0.1" = { 2366 5822 name = "pump"; 2367 5823 packageName = "pump"; 2368 - version = "2.0.0"; 5824 + version = "2.0.1"; 5825 + src = fetchurl { 5826 + url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz"; 5827 + sha512 = "288hcmlwdnqda84ylx9cv413ic0r59k0dp71hy7a200jsb7h1y63277jwdp1jdp13c1b3pl6g2gzr5gjv9p72f5sp7w3p0d34swrqxf"; 5828 + }; 5829 + }; 5830 + "pumpify-1.4.0" = { 5831 + name = "pumpify"; 5832 + packageName = "pumpify"; 5833 + version = "1.4.0"; 2369 5834 src = fetchurl { 2370 - url = "https://registry.npmjs.org/pump/-/pump-2.0.0.tgz"; 2371 - sha512 = "21jb2lq6ajsmcqs5j3yq4gpfzkpn9zfy514dmwd0rlh6r8c6iknng19c3kmpb607rk2xap7cw467qz5di30zki40phjbdmg6fk35ip8"; 5835 + url = "https://registry.npmjs.org/pumpify/-/pumpify-1.4.0.tgz"; 5836 + sha512 = "1h37biy199n445y10vpyiswwcxv8zigfqp0b1xwgbyjq51f2dhjn1pcggjc4j5ccbd64l1ivfi0bqinx4m5clcawvwggy7jv93qsjfs"; 2372 5837 }; 2373 5838 }; 2374 5839 "punycode-1.4.1" = { ··· 2380 5845 sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; 2381 5846 }; 2382 5847 }; 5848 + "qrcode-terminal-0.11.0" = { 5849 + name = "qrcode-terminal"; 5850 + packageName = "qrcode-terminal"; 5851 + version = "0.11.0"; 5852 + src = fetchurl { 5853 + url = "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz"; 5854 + sha1 = "ffc6c28a2fc0bfb47052b47e23f4f446a5fbdb9e"; 5855 + }; 5856 + }; 2383 5857 "qs-6.4.0" = { 2384 5858 name = "qs"; 2385 5859 packageName = "qs"; ··· 2398 5872 sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r"; 2399 5873 }; 2400 5874 }; 5875 + "query-string-5.0.1" = { 5876 + name = "query-string"; 5877 + packageName = "query-string"; 5878 + version = "5.0.1"; 5879 + src = fetchurl { 5880 + url = "https://registry.npmjs.org/query-string/-/query-string-5.0.1.tgz"; 5881 + sha512 = "0lcnspv96dv03600bgjxk2ypak8mysp77n47jkddpz6ldcgscwyan1akqjrddii4abb2brz6gr6yq9pcbdx63m9i16kk8m5028qrkv8"; 5882 + }; 5883 + }; 5884 + "qw-1.0.1" = { 5885 + name = "qw"; 5886 + packageName = "qw"; 5887 + version = "1.0.1"; 5888 + src = fetchurl { 5889 + url = "https://registry.npmjs.org/qw/-/qw-1.0.1.tgz"; 5890 + sha1 = "efbfdc740f9ad054304426acb183412cc8b996d4"; 5891 + }; 5892 + }; 5893 + "ramda-0.24.1" = { 5894 + name = "ramda"; 5895 + packageName = "ramda"; 5896 + version = "0.24.1"; 5897 + src = fetchurl { 5898 + url = "https://registry.npmjs.org/ramda/-/ramda-0.24.1.tgz"; 5899 + sha1 = "c3b7755197f35b8dc3502228262c4c91ddb6b857"; 5900 + }; 5901 + }; 5902 + "ramda-0.25.0" = { 5903 + name = "ramda"; 5904 + packageName = "ramda"; 5905 + version = "0.25.0"; 5906 + src = fetchurl { 5907 + url = "https://registry.npmjs.org/ramda/-/ramda-0.25.0.tgz"; 5908 + sha512 = "1qixam46hr8jsw2f4g0rvhn8jf493dpjqhi65ggacz83ndqwnal1m8kiy18d3ak9x4lapcjb1fvrx18zj26jfhlxp51vhsghnnmyyhr"; 5909 + }; 5910 + }; 2401 5911 "random-access-file-1.8.1" = { 2402 5912 name = "random-access-file"; 2403 5913 packageName = "random-access-file"; ··· 2461 5971 sha1 = "b3da19bd052431a97671d44a42634adf710b40c4"; 2462 5972 }; 2463 5973 }; 5974 + "read-cmd-shim-1.0.1" = { 5975 + name = "read-cmd-shim"; 5976 + packageName = "read-cmd-shim"; 5977 + version = "1.0.1"; 5978 + src = fetchurl { 5979 + url = "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz"; 5980 + sha1 = "2d5d157786a37c055d22077c32c53f8329e91c7b"; 5981 + }; 5982 + }; 5983 + "read-installed-4.0.3" = { 5984 + name = "read-installed"; 5985 + packageName = "read-installed"; 5986 + version = "4.0.3"; 5987 + src = fetchurl { 5988 + url = "https://registry.npmjs.org/read-installed/-/read-installed-4.0.3.tgz"; 5989 + sha1 = "ff9b8b67f187d1e4c29b9feb31f6b223acd19067"; 5990 + }; 5991 + }; 5992 + "read-package-json-2.0.12" = { 5993 + name = "read-package-json"; 5994 + packageName = "read-package-json"; 5995 + version = "2.0.12"; 5996 + src = fetchurl { 5997 + url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.12.tgz"; 5998 + sha512 = "15w2z3m1iysjf0zwvyc5mix8nypx42shx90alil4sslq6caj3pgk59zsn2ppxn95nls6bs7yw7khl5rmlq9gljv27w3vs2gxg9wigwv"; 5999 + }; 6000 + }; 6001 + "read-package-tree-5.1.6" = { 6002 + name = "read-package-tree"; 6003 + packageName = "read-package-tree"; 6004 + version = "5.1.6"; 6005 + src = fetchurl { 6006 + url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz"; 6007 + sha512 = "0v1k32zqj8bnqzyp5h0jxnkvpgpzpa6z7iyqbpm3p0ylqafbb2zm656mw6gs16zf98l7y218ygpx2kzks00qcycwwx2cny67mlza98l"; 6008 + }; 6009 + }; 6010 + "read-pkg-2.0.0" = { 6011 + name = "read-pkg"; 6012 + packageName = "read-pkg"; 6013 + version = "2.0.0"; 6014 + src = fetchurl { 6015 + url = "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz"; 6016 + sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; 6017 + }; 6018 + }; 6019 + "read-pkg-3.0.0" = { 6020 + name = "read-pkg"; 6021 + packageName = "read-pkg"; 6022 + version = "3.0.0"; 6023 + src = fetchurl { 6024 + url = "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz"; 6025 + sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389"; 6026 + }; 6027 + }; 6028 + "read-pkg-up-2.0.0" = { 6029 + name = "read-pkg-up"; 6030 + packageName = "read-pkg-up"; 6031 + version = "2.0.0"; 6032 + src = fetchurl { 6033 + url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; 6034 + sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; 6035 + }; 6036 + }; 6037 + "readable-stream-1.1.14" = { 6038 + name = "readable-stream"; 6039 + packageName = "readable-stream"; 6040 + version = "1.1.14"; 6041 + src = fetchurl { 6042 + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"; 6043 + sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9"; 6044 + }; 6045 + }; 2464 6046 "readable-stream-2.3.3" = { 2465 6047 name = "readable-stream"; 2466 6048 packageName = "readable-stream"; ··· 2470 6052 sha512 = "1wlizkv2wnz2nyb0lfxgs1m27zzcvasp3n5cfrd7hm4ch1wn79df2nbhzfadba5qqdfb28vhmw3drhp46vk2q6xk524qagvr76v7slv"; 2471 6053 }; 2472 6054 }; 6055 + "readdir-scoped-modules-1.0.2" = { 6056 + name = "readdir-scoped-modules"; 6057 + packageName = "readdir-scoped-modules"; 6058 + version = "1.0.2"; 6059 + src = fetchurl { 6060 + url = "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz"; 6061 + sha1 = "9fafa37d286be5d92cbaebdee030dc9b5f406747"; 6062 + }; 6063 + }; 2473 6064 "readdirp-2.1.0" = { 2474 6065 name = "readdirp"; 2475 6066 packageName = "readdirp"; ··· 2488 6079 sha1 = "912e2d62a83c8b388d288c4343495f247bc43f8e"; 2489 6080 }; 2490 6081 }; 6082 + "regenerator-runtime-0.11.1" = { 6083 + name = "regenerator-runtime"; 6084 + packageName = "regenerator-runtime"; 6085 + version = "0.11.1"; 6086 + src = fetchurl { 6087 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; 6088 + sha512 = "03d4l8l8cyywh93wf5vw84lq56jh1b1d7jll4ny4z060j9hvx7w5q3q0b8q227jm93749k1c9h86r2pz0bm2xq5vp14g3r2kbvqc2rj"; 6089 + }; 6090 + }; 2491 6091 "regex-cache-0.4.4" = { 2492 6092 name = "regex-cache"; 2493 6093 packageName = "regex-cache"; ··· 2497 6097 sha512 = "1crfmf19zkv0imnbbkj7bwrcyin3zxa88cs86b6apkxj8qrsmkxnydhsy2ia75q4ld10rhi2s2c36h7g77a997mh9c2z453s311jllx"; 2498 6098 }; 2499 6099 }; 6100 + "regex-escape-3.4.8" = { 6101 + name = "regex-escape"; 6102 + packageName = "regex-escape"; 6103 + version = "3.4.8"; 6104 + src = fetchurl { 6105 + url = "https://registry.npmjs.org/regex-escape/-/regex-escape-3.4.8.tgz"; 6106 + sha512 = "15ylzlxx4y88jldg7cgwv0dmw3ljpq27f9qf17d3g76dqh6ir1ig7dzvqv9nqpr3da1yd2r5ay8jqa6yk7ni5fbbrzgkhf3yha1av8c"; 6107 + }; 6108 + }; 6109 + "registry-auth-token-3.3.1" = { 6110 + name = "registry-auth-token"; 6111 + packageName = "registry-auth-token"; 6112 + version = "3.3.1"; 6113 + src = fetchurl { 6114 + url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz"; 6115 + sha1 = "fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006"; 6116 + }; 6117 + }; 6118 + "registry-url-3.1.0" = { 6119 + name = "registry-url"; 6120 + packageName = "registry-url"; 6121 + version = "3.1.0"; 6122 + src = fetchurl { 6123 + url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz"; 6124 + sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942"; 6125 + }; 6126 + }; 6127 + "remedial-1.0.7" = { 6128 + name = "remedial"; 6129 + packageName = "remedial"; 6130 + version = "1.0.7"; 6131 + src = fetchurl { 6132 + url = "https://registry.npmjs.org/remedial/-/remedial-1.0.7.tgz"; 6133 + sha1 = "d6674413a65676007be00dd400980987b2c300c1"; 6134 + }; 6135 + }; 6136 + "remove-all-except-outer-links-1.0.3" = { 6137 + name = "remove-all-except-outer-links"; 6138 + packageName = "remove-all-except-outer-links"; 6139 + version = "1.0.3"; 6140 + src = fetchurl { 6141 + url = "https://registry.npmjs.org/remove-all-except-outer-links/-/remove-all-except-outer-links-1.0.3.tgz"; 6142 + sha512 = "27mlgakm2rw58mad07fnzfmjk893mr23qqi393b30qsqv2wyng86j0mqn1d06wi2cjzhlcq86zxzz1i3rvd58ajhq71crrm27dyblw7"; 6143 + }; 6144 + }; 2500 6145 "remove-trailing-separator-1.1.0" = { 2501 6146 name = "remove-trailing-separator"; 2502 6147 packageName = "remove-trailing-separator"; ··· 2506 6151 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; 2507 6152 }; 2508 6153 }; 6154 + "rename-overwrite-1.0.0" = { 6155 + name = "rename-overwrite"; 6156 + packageName = "rename-overwrite"; 6157 + version = "1.0.0"; 6158 + src = fetchurl { 6159 + url = "https://registry.npmjs.org/rename-overwrite/-/rename-overwrite-1.0.0.tgz"; 6160 + sha1 = "b45a74ceb93d1073e31c5b701c428de5796523d8"; 6161 + }; 6162 + }; 2509 6163 "repeat-element-1.1.2" = { 2510 6164 name = "repeat-element"; 2511 6165 packageName = "repeat-element"; ··· 2524 6178 sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 2525 6179 }; 2526 6180 }; 6181 + "replace-string-1.1.0" = { 6182 + name = "replace-string"; 6183 + packageName = "replace-string"; 6184 + version = "1.1.0"; 6185 + src = fetchurl { 6186 + url = "https://registry.npmjs.org/replace-string/-/replace-string-1.1.0.tgz"; 6187 + sha1 = "87062117f823fe5800c306bacb2cfa359b935fea"; 6188 + }; 6189 + }; 2527 6190 "request-2.81.0" = { 2528 6191 name = "request"; 2529 6192 packageName = "request"; ··· 2542 6205 sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm"; 2543 6206 }; 2544 6207 }; 6208 + "require-directory-2.1.1" = { 6209 + name = "require-directory"; 6210 + packageName = "require-directory"; 6211 + version = "2.1.1"; 6212 + src = fetchurl { 6213 + url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; 6214 + sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 6215 + }; 6216 + }; 6217 + "require-main-filename-1.0.1" = { 6218 + name = "require-main-filename"; 6219 + packageName = "require-main-filename"; 6220 + version = "1.0.1"; 6221 + src = fetchurl { 6222 + url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz"; 6223 + sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; 6224 + }; 6225 + }; 2545 6226 "resolve-1.1.7" = { 2546 6227 name = "resolve"; 2547 6228 packageName = "resolve"; ··· 2551 6232 sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b"; 2552 6233 }; 2553 6234 }; 6235 + "resolve-from-4.0.0" = { 6236 + name = "resolve-from"; 6237 + packageName = "resolve-from"; 6238 + version = "4.0.0"; 6239 + src = fetchurl { 6240 + url = "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"; 6241 + sha512 = "3i345pdv74jb3xbprqb38xq1zfhsbxzm6b1h0mbcvhfpzz907m4amq35s0spijdj3phs508sha4cnr3incg4w8in4r0kd7ccmicrgx5"; 6242 + }; 6243 + }; 6244 + "resolve-link-target-1.0.1" = { 6245 + name = "resolve-link-target"; 6246 + packageName = "resolve-link-target"; 6247 + version = "1.0.1"; 6248 + src = fetchurl { 6249 + url = "https://registry.npmjs.org/resolve-link-target/-/resolve-link-target-1.0.1.tgz"; 6250 + sha512 = "144pdhsw05w6zrwzh2daxd63x0qv6qgf5cimbkbvz9m4ncclp5z9xj6ym5ayhd6xvc2s7pwymj4x439k00czm5jz2h7z1dhgzipf9xs"; 6251 + }; 6252 + }; 6253 + "responselike-1.0.2" = { 6254 + name = "responselike"; 6255 + packageName = "responselike"; 6256 + version = "1.0.2"; 6257 + src = fetchurl { 6258 + url = "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz"; 6259 + sha1 = "918720ef3b631c5642be068f15ade5a46f4ba1e7"; 6260 + }; 6261 + }; 6262 + "restore-cursor-2.0.0" = { 6263 + name = "restore-cursor"; 6264 + packageName = "restore-cursor"; 6265 + version = "2.0.0"; 6266 + src = fetchurl { 6267 + url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz"; 6268 + sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; 6269 + }; 6270 + }; 6271 + "retry-0.10.1" = { 6272 + name = "retry"; 6273 + packageName = "retry"; 6274 + version = "0.10.1"; 6275 + src = fetchurl { 6276 + url = "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz"; 6277 + sha1 = "e76388d217992c252750241d3d3956fed98d8ff4"; 6278 + }; 6279 + }; 2554 6280 "revalidator-0.1.8" = { 2555 6281 name = "revalidator"; 2556 6282 packageName = "revalidator"; ··· 2569 6295 sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn"; 2570 6296 }; 2571 6297 }; 6298 + "rimraf-then-1.0.1" = { 6299 + name = "rimraf-then"; 6300 + packageName = "rimraf-then"; 6301 + version = "1.0.1"; 6302 + src = fetchurl { 6303 + url = "https://registry.npmjs.org/rimraf-then/-/rimraf-then-1.0.1.tgz"; 6304 + sha1 = "bd4458a79eb561b7548aaec0ac3753ef429fe70b"; 6305 + }; 6306 + }; 6307 + "run-queue-1.0.3" = { 6308 + name = "run-queue"; 6309 + packageName = "run-queue"; 6310 + version = "1.0.3"; 6311 + src = fetchurl { 6312 + url = "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz"; 6313 + sha1 = "e848396f057d223f24386924618e25694161ec47"; 6314 + }; 6315 + }; 2572 6316 "rusha-0.8.12" = { 2573 6317 name = "rusha"; 2574 6318 packageName = "rusha"; ··· 2585 6329 src = fetchurl { 2586 6330 url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz"; 2587 6331 sha512 = "1p28rllll1w65yzq5azi4izx962399xdsdlfbaynn7vmp981hiss05jhiy9hm7sbbfk3b4dhlcv0zy07fc59mnc07hdv6wcgqkcvawh"; 6332 + }; 6333 + }; 6334 + "sec-1.0.0" = { 6335 + name = "sec"; 6336 + packageName = "sec"; 6337 + version = "1.0.0"; 6338 + src = fetchurl { 6339 + url = "https://registry.npmjs.org/sec/-/sec-1.0.0.tgz"; 6340 + sha1 = "033d60a3ad20ecf2e00940d14f97823465774335"; 2588 6341 }; 2589 6342 }; 2590 6343 "semver-5.3.0" = { ··· 2596 6349 sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; 2597 6350 }; 2598 6351 }; 6352 + "semver-5.4.1" = { 6353 + name = "semver"; 6354 + packageName = "semver"; 6355 + version = "5.4.1"; 6356 + src = fetchurl { 6357 + url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz"; 6358 + sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar"; 6359 + }; 6360 + }; 2599 6361 "semver-5.5.0" = { 2600 6362 name = "semver"; 2601 6363 packageName = "semver"; ··· 2605 6367 sha512 = "0h32zh035y8m6dzcqhcymbhwgmc8839fa1hhj0jfh9ivp9kmqfj1sbwnsnkzcn9qm3sqn38sa8ys2g4c638lpnmzjr0a0qndmv7f8p1"; 2606 6368 }; 2607 6369 }; 6370 + "semver-diff-2.1.0" = { 6371 + name = "semver-diff"; 6372 + packageName = "semver-diff"; 6373 + version = "2.1.0"; 6374 + src = fetchurl { 6375 + url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz"; 6376 + sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"; 6377 + }; 6378 + }; 6379 + "semver-regex-1.0.0" = { 6380 + name = "semver-regex"; 6381 + packageName = "semver-regex"; 6382 + version = "1.0.0"; 6383 + src = fetchurl { 6384 + url = "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz"; 6385 + sha1 = "92a4969065f9c70c694753d55248fc68f8f652c9"; 6386 + }; 6387 + }; 2608 6388 "set-blocking-2.0.0" = { 2609 6389 name = "set-blocking"; 2610 6390 packageName = "set-blocking"; ··· 2623 6403 sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"; 2624 6404 }; 2625 6405 }; 6406 + "sha-2.0.1" = { 6407 + name = "sha"; 6408 + packageName = "sha"; 6409 + version = "2.0.1"; 6410 + src = fetchurl { 6411 + url = "https://registry.npmjs.org/sha/-/sha-2.0.1.tgz"; 6412 + sha1 = "6030822fbd2c9823949f8f72ed6411ee5cf25aae"; 6413 + }; 6414 + }; 6415 + "shebang-command-1.2.0" = { 6416 + name = "shebang-command"; 6417 + packageName = "shebang-command"; 6418 + version = "1.2.0"; 6419 + src = fetchurl { 6420 + url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; 6421 + sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; 6422 + }; 6423 + }; 6424 + "shebang-regex-1.0.0" = { 6425 + name = "shebang-regex"; 6426 + packageName = "shebang-regex"; 6427 + version = "1.0.0"; 6428 + src = fetchurl { 6429 + url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; 6430 + sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; 6431 + }; 6432 + }; 2626 6433 "signal-exit-3.0.2" = { 2627 6434 name = "signal-exit"; 2628 6435 packageName = "signal-exit"; ··· 2641 6448 sha1 = "50a9989da7c98c2c61dad119bc97470ef8528129"; 2642 6449 }; 2643 6450 }; 6451 + "simple-get-1.4.3" = { 6452 + name = "simple-get"; 6453 + packageName = "simple-get"; 6454 + version = "1.4.3"; 6455 + src = fetchurl { 6456 + url = "https://registry.npmjs.org/simple-get/-/simple-get-1.4.3.tgz"; 6457 + sha1 = "e9755eda407e96da40c5e5158c9ea37b33becbeb"; 6458 + }; 6459 + }; 2644 6460 "simple-sha1-2.1.0" = { 2645 6461 name = "simple-sha1"; 2646 6462 packageName = "simple-sha1"; ··· 2659 6475 sha512 = "17nq5vsq9227bsp0msljjp4lfra2d2f0338xk2z2m1523s3d990appvqrar9j9l3akw6bbjmbw92b9g386fggqiqz76xslvj88q8c4w"; 2660 6476 }; 2661 6477 }; 6478 + "slash-1.0.0" = { 6479 + name = "slash"; 6480 + packageName = "slash"; 6481 + version = "1.0.0"; 6482 + src = fetchurl { 6483 + url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"; 6484 + sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; 6485 + }; 6486 + }; 2662 6487 "slasp-0.0.4" = { 2663 6488 name = "slasp"; 2664 6489 packageName = "slasp"; ··· 2677 6502 sha512 = "1xd3zsk02nck4y601rn98n8cicrphaw5bdix278mk1yizmjv9s0wpa6akcqggd7d99c55s3byf4ylqdxkshyfsfnfx7lvwbmq2b3siw"; 2678 6503 }; 2679 6504 }; 6505 + "slide-1.1.6" = { 6506 + name = "slide"; 6507 + packageName = "slide"; 6508 + version = "1.1.6"; 6509 + src = fetchurl { 6510 + url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz"; 6511 + sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"; 6512 + }; 6513 + }; 6514 + "smart-buffer-1.1.15" = { 6515 + name = "smart-buffer"; 6516 + packageName = "smart-buffer"; 6517 + version = "1.1.15"; 6518 + src = fetchurl { 6519 + url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz"; 6520 + sha1 = "7f114b5b65fab3e2a35aa775bb12f0d1c649bf16"; 6521 + }; 6522 + }; 2680 6523 "sntp-1.0.9" = { 2681 6524 name = "sntp"; 2682 6525 packageName = "sntp"; ··· 2695 6538 sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l"; 2696 6539 }; 2697 6540 }; 6541 + "socks-1.1.10" = { 6542 + name = "socks"; 6543 + packageName = "socks"; 6544 + version = "1.1.10"; 6545 + src = fetchurl { 6546 + url = "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz"; 6547 + sha1 = "5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a"; 6548 + }; 6549 + }; 6550 + "socks-proxy-agent-3.0.1" = { 6551 + name = "socks-proxy-agent"; 6552 + packageName = "socks-proxy-agent"; 6553 + version = "3.0.1"; 6554 + src = fetchurl { 6555 + url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.1.tgz"; 6556 + sha512 = "2a5lsw4fry6nqk3jdxvwqrnpasypvl8c4d0kg32912820lc72l7s9jzidfsrn2an9c66xqicspxb2vnir5cjspprs9qklxnd75060b7"; 6557 + }; 6558 + }; 2698 6559 "sodium-javascript-0.5.4" = { 2699 6560 name = "sodium-javascript"; 2700 6561 packageName = "sodium-javascript"; ··· 2722 6583 sha512 = "2rd6r7v2i3z76rzvllqx9ywk5f64q23944njcf14vv7x3l0illqn41bgdiifik4kswgys99mxsrqinq8akf3n7b15r9871km74mbivj"; 2723 6584 }; 2724 6585 }; 6586 + "sort-keys-2.0.0" = { 6587 + name = "sort-keys"; 6588 + packageName = "sort-keys"; 6589 + version = "2.0.0"; 6590 + src = fetchurl { 6591 + url = "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz"; 6592 + sha1 = "658535584861ec97d730d6cf41822e1f56684128"; 6593 + }; 6594 + }; 2725 6595 "sorted-array-functions-1.1.0" = { 2726 6596 name = "sorted-array-functions"; 2727 6597 packageName = "sorted-array-functions"; ··· 2740 6610 sha1 = "17c742ff7cf187e2f59a15df9b81f17a62ce0899"; 2741 6611 }; 2742 6612 }; 6613 + "sorted-object-2.0.1" = { 6614 + name = "sorted-object"; 6615 + packageName = "sorted-object"; 6616 + version = "2.0.1"; 6617 + src = fetchurl { 6618 + url = "https://registry.npmjs.org/sorted-object/-/sorted-object-2.0.1.tgz"; 6619 + sha1 = "7d631f4bd3a798a24af1dffcfbfe83337a5df5fc"; 6620 + }; 6621 + }; 6622 + "sorted-union-stream-2.1.3" = { 6623 + name = "sorted-union-stream"; 6624 + packageName = "sorted-union-stream"; 6625 + version = "2.1.3"; 6626 + src = fetchurl { 6627 + url = "https://registry.npmjs.org/sorted-union-stream/-/sorted-union-stream-2.1.3.tgz"; 6628 + sha1 = "c7794c7e077880052ff71a8d4a2dbb4a9a638ac7"; 6629 + }; 6630 + }; 6631 + "source-map-0.6.1" = { 6632 + name = "source-map"; 6633 + packageName = "source-map"; 6634 + version = "0.6.1"; 6635 + src = fetchurl { 6636 + url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; 6637 + sha512 = "3p7hw8p69ikj5mwapmqkacsjnbvdfk5ylyamjg9x5izkl717xvzj0vk3fnmx1n4pf54h5rs7r8ig5kk4jv4ycqqj0hv75cnx6k1lf2j"; 6638 + }; 6639 + }; 2743 6640 "sparse-bitfield-3.0.3" = { 2744 6641 name = "sparse-bitfield"; 2745 6642 packageName = "sparse-bitfield"; ··· 2749 6646 sha1 = "ff4ae6e68656056ba4b3e792ab3334d38273ca11"; 2750 6647 }; 2751 6648 }; 6649 + "spawno-2.0.7" = { 6650 + name = "spawno"; 6651 + packageName = "spawno"; 6652 + version = "2.0.7"; 6653 + src = fetchurl { 6654 + url = "https://registry.npmjs.org/spawno/-/spawno-2.0.7.tgz"; 6655 + sha512 = "0h8xflvrqwdvz8gadif970wlj5mby4vxhar40h0g96ld6qv6b696msspl89rs2l6n8zv3d9yd5lm85v1g5qk7fpjhqiai2862anzyrc"; 6656 + }; 6657 + }; 6658 + "spdx-correct-1.0.2" = { 6659 + name = "spdx-correct"; 6660 + packageName = "spdx-correct"; 6661 + version = "1.0.2"; 6662 + src = fetchurl { 6663 + url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz"; 6664 + sha1 = "4b3073d933ff51f3912f03ac5519498a4150db40"; 6665 + }; 6666 + }; 6667 + "spdx-expression-parse-1.0.4" = { 6668 + name = "spdx-expression-parse"; 6669 + packageName = "spdx-expression-parse"; 6670 + version = "1.0.4"; 6671 + src = fetchurl { 6672 + url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz"; 6673 + sha1 = "9bdf2f20e1f40ed447fbe273266191fced51626c"; 6674 + }; 6675 + }; 6676 + "spdx-license-ids-1.2.2" = { 6677 + name = "spdx-license-ids"; 6678 + packageName = "spdx-license-ids"; 6679 + version = "1.2.2"; 6680 + src = fetchurl { 6681 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz"; 6682 + sha1 = "c9df7a3424594ade6bd11900d596696dc06bac57"; 6683 + }; 6684 + }; 2752 6685 "speedometer-1.0.0" = { 2753 6686 name = "speedometer"; 2754 6687 packageName = "speedometer"; ··· 2758 6691 sha1 = "cd671cb06752c22bca3370e2f334440be4fc62e2"; 2759 6692 }; 2760 6693 }; 6694 + "split2-2.2.0" = { 6695 + name = "split2"; 6696 + packageName = "split2"; 6697 + version = "2.2.0"; 6698 + src = fetchurl { 6699 + url = "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz"; 6700 + sha512 = "1plzy1n554n2gwfpavi4azb4y45dm2mwj7dq8ma99yg1z55xcdxmkibsfhsh1h19qgsrcamm0ha5qi2c3has6skvx4bix5p67czc1j4"; 6701 + }; 6702 + }; 6703 + "sprintf-js-1.0.3" = { 6704 + name = "sprintf-js"; 6705 + packageName = "sprintf-js"; 6706 + version = "1.0.3"; 6707 + src = fetchurl { 6708 + url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; 6709 + sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 6710 + }; 6711 + }; 2761 6712 "sshpk-1.13.1" = { 2762 6713 name = "sshpk"; 2763 6714 packageName = "sshpk"; ··· 2767 6718 sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3"; 2768 6719 }; 2769 6720 }; 6721 + "ssri-4.1.6" = { 6722 + name = "ssri"; 6723 + packageName = "ssri"; 6724 + version = "4.1.6"; 6725 + src = fetchurl { 6726 + url = "https://registry.npmjs.org/ssri/-/ssri-4.1.6.tgz"; 6727 + sha512 = "283n1p781cl2pj3jk32blcvwjdlaixng0v5x2f9qi3ndxrmyg3hk4clsjpcfsszkymy40q426yz5skax4ivsmll2p9hhcc00ivc4ijr"; 6728 + }; 6729 + }; 6730 + "ssri-5.0.0" = { 6731 + name = "ssri"; 6732 + packageName = "ssri"; 6733 + version = "5.0.0"; 6734 + src = fetchurl { 6735 + url = "https://registry.npmjs.org/ssri/-/ssri-5.0.0.tgz"; 6736 + sha512 = "0g0vz6pdy8f13fqnadimwxx39hq1ix1my6gv0cm308vpv7i06f7gk4ywp7q9aw5sbhrakf86x37ai9fn2y4jvw6lashjw8h5bih6vzg"; 6737 + }; 6738 + }; 6739 + "ssri-5.1.0" = { 6740 + name = "ssri"; 6741 + packageName = "ssri"; 6742 + version = "5.1.0"; 6743 + src = fetchurl { 6744 + url = "https://registry.npmjs.org/ssri/-/ssri-5.1.0.tgz"; 6745 + sha512 = "11f7imn7d4s1vs4z45yk8gkis18gbb5qn1z4v5liidy6vwairj5426xciyk10yh3gnxj77bkamzffip8v7v9mjr8ggs8h1iz3qw5ssd"; 6746 + }; 6747 + }; 2770 6748 "stack-trace-0.0.10" = { 2771 6749 name = "stack-trace"; 2772 6750 packageName = "stack-trace"; ··· 2776 6754 sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0"; 2777 6755 }; 2778 6756 }; 6757 + "stacktracey-1.2.100" = { 6758 + name = "stacktracey"; 6759 + packageName = "stacktracey"; 6760 + version = "1.2.100"; 6761 + src = fetchurl { 6762 + url = "https://registry.npmjs.org/stacktracey/-/stacktracey-1.2.100.tgz"; 6763 + sha1 = "9e32c7a7fa643eaf69a8f9572361339a8afb6b59"; 6764 + }; 6765 + }; 6766 + "static-methods-1.0.10" = { 6767 + name = "static-methods"; 6768 + packageName = "static-methods"; 6769 + version = "1.0.10"; 6770 + src = fetchurl { 6771 + url = "https://registry.npmjs.org/static-methods/-/static-methods-1.0.10.tgz"; 6772 + sha512 = "2vn92wnri9w5d8san58a7nyyz1ai56gl2qaic9w430bbyyscw98k0a89h3nhk3fkpg9p47hdizwmgp4cnx2g6kxjgk7la5mclk7vb2y"; 6773 + }; 6774 + }; 2779 6775 "status-logger-3.1.1" = { 2780 6776 name = "status-logger"; 2781 6777 packageName = "status-logger"; ··· 2803 6799 sha512 = "2h4ymczmf5aqldga4sj8acqlzc3almazi2vwiv7kx63k28sz1wwkqgzzv1hn47jf49k1x94w25fmmi001h5mj3n6g9in1s6b1n5vkcr"; 2804 6800 }; 2805 6801 }; 6802 + "stream-iterate-1.2.0" = { 6803 + name = "stream-iterate"; 6804 + packageName = "stream-iterate"; 6805 + version = "1.2.0"; 6806 + src = fetchurl { 6807 + url = "https://registry.npmjs.org/stream-iterate/-/stream-iterate-1.2.0.tgz"; 6808 + sha1 = "2bd7c77296c1702a46488b8ad41f79865eecd4e1"; 6809 + }; 6810 + }; 2806 6811 "stream-parser-0.3.1" = { 2807 6812 name = "stream-parser"; 2808 6813 packageName = "stream-parser"; ··· 2821 6826 sha1 = "d5c752825e5367e786f78e18e445ea223a155952"; 2822 6827 }; 2823 6828 }; 6829 + "strict-uri-encode-1.1.0" = { 6830 + name = "strict-uri-encode"; 6831 + packageName = "strict-uri-encode"; 6832 + version = "1.1.0"; 6833 + src = fetchurl { 6834 + url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"; 6835 + sha1 = "279b225df1d582b1f54e65addd4352e18faa0713"; 6836 + }; 6837 + }; 2824 6838 "string-width-1.0.2" = { 2825 6839 name = "string-width"; 2826 6840 packageName = "string-width"; ··· 2837 6851 src = fetchurl { 2838 6852 url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; 2839 6853 sha512 = "29s1fqgr4mnhfxwczgdghfmmc1f792m9hysvcjxw2h5lfj8ndf2b6gm02m96qk5m75g4aisijvng4pk618anwbr8i9ay2jyszkqgslw"; 6854 + }; 6855 + }; 6856 + "string_decoder-0.10.31" = { 6857 + name = "string_decoder"; 6858 + packageName = "string_decoder"; 6859 + version = "0.10.31"; 6860 + src = fetchurl { 6861 + url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; 6862 + sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; 2840 6863 }; 2841 6864 }; 2842 6865 "string_decoder-1.0.3" = { ··· 2875 6898 sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; 2876 6899 }; 2877 6900 }; 6901 + "strip-bom-3.0.0" = { 6902 + name = "strip-bom"; 6903 + packageName = "strip-bom"; 6904 + version = "3.0.0"; 6905 + src = fetchurl { 6906 + url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"; 6907 + sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; 6908 + }; 6909 + }; 6910 + "strip-color-0.1.0" = { 6911 + name = "strip-color"; 6912 + packageName = "strip-color"; 6913 + version = "0.1.0"; 6914 + src = fetchurl { 6915 + url = "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz"; 6916 + sha1 = "106f65d3d3e6a2d9401cac0eb0ce8b8a702b4f7b"; 6917 + }; 6918 + }; 6919 + "strip-eof-1.0.0" = { 6920 + name = "strip-eof"; 6921 + packageName = "strip-eof"; 6922 + version = "1.0.0"; 6923 + src = fetchurl { 6924 + url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"; 6925 + sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; 6926 + }; 6927 + }; 2878 6928 "strip-json-comments-2.0.1" = { 2879 6929 name = "strip-json-comments"; 2880 6930 packageName = "strip-json-comments"; ··· 2893 6943 sha1 = "5e4ceca5a3779e3365b1511e05f866877302f760"; 2894 6944 }; 2895 6945 }; 6946 + "supi-0.12.1" = { 6947 + name = "supi"; 6948 + packageName = "supi"; 6949 + version = "0.12.1"; 6950 + src = fetchurl { 6951 + url = "https://registry.npmjs.org/supi/-/supi-0.12.1.tgz"; 6952 + sha512 = "1fb6fkng687rhx89agz3mqa854p424b8nwj1ix6ckfv40gnkz3saydxs0di4nildpccn2rgwf01flxk922pj2rap6wqg8fdr2c8crz7"; 6953 + }; 6954 + }; 6955 + "supports-color-2.0.0" = { 6956 + name = "supports-color"; 6957 + packageName = "supports-color"; 6958 + version = "2.0.0"; 6959 + src = fetchurl { 6960 + url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; 6961 + sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; 6962 + }; 6963 + }; 6964 + "supports-color-3.2.3" = { 6965 + name = "supports-color"; 6966 + packageName = "supports-color"; 6967 + version = "3.2.3"; 6968 + src = fetchurl { 6969 + url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz"; 6970 + sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"; 6971 + }; 6972 + }; 2896 6973 "supports-color-4.4.0" = { 2897 6974 name = "supports-color"; 2898 6975 packageName = "supports-color"; ··· 2909 6986 src = fetchurl { 2910 6987 url = "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz"; 2911 6988 sha1 = "be7a0de484dec5c5cddf8b3d59125044912f635b"; 6989 + }; 6990 + }; 6991 + "symbol-observable-1.1.0" = { 6992 + name = "symbol-observable"; 6993 + packageName = "symbol-observable"; 6994 + version = "1.1.0"; 6995 + src = fetchurl { 6996 + url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.1.0.tgz"; 6997 + sha512 = "19pk4fk1ddq50all5c15bb58iwchzck5lvmsvlx5va17sfrq89pda0qrrnlma34m1kzay4q3k3ghmfp32hlqvk8njlfnhvavdvj42km"; 6998 + }; 6999 + }; 7000 + "symlink-dir-1.1.2" = { 7001 + name = "symlink-dir"; 7002 + packageName = "symlink-dir"; 7003 + version = "1.1.2"; 7004 + src = fetchurl { 7005 + url = "https://registry.npmjs.org/symlink-dir/-/symlink-dir-1.1.2.tgz"; 7006 + sha512 = "2bzpdrkxnd1iysdlc7n6i5pqwqm98s2m2srfp9br9872qdvv8pbnm3i7r27rqxbad6pypj2lzhkxf8zghfzp3psl9psk9bkbp02yw8r"; 2912 7007 }; 2913 7008 }; 2914 7009 "tar-2.2.1" = { ··· 2920 7015 sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"; 2921 7016 }; 2922 7017 }; 7018 + "tar-4.0.2" = { 7019 + name = "tar"; 7020 + packageName = "tar"; 7021 + version = "4.0.2"; 7022 + src = fetchurl { 7023 + url = "https://registry.npmjs.org/tar/-/tar-4.0.2.tgz"; 7024 + sha512 = "1mm9s6jly4lwfv9cak7kpiagqx3j6n1dh50k7nlnqy761ckfvn394asfgq1vdnxpjr164h5ybgcfysr8wgm70bwd0y3qnq4w3i8smg2"; 7025 + }; 7026 + }; 7027 + "tar-fs-1.16.0" = { 7028 + name = "tar-fs"; 7029 + packageName = "tar-fs"; 7030 + version = "1.16.0"; 7031 + src = fetchurl { 7032 + url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.0.tgz"; 7033 + sha512 = "1i39d75rgrl2a3v3x65w7bz6az06sg7xdvp7j9zk5bqilj5znclmr7r5n9l6la6nkqikn4lkhnfrgp4hzbvp6ph77nn53g6zvmdpni3"; 7034 + }; 7035 + }; 2923 7036 "tar-pack-3.4.1" = { 2924 7037 name = "tar-pack"; 2925 7038 packageName = "tar-pack"; ··· 2929 7042 sha512 = "0mgk8jd55vr7i3i29r1skhxwwbqkqfz6mbr32r5nn8h6v5xns8d2rc7835y7wj0zmppckxai7nm8r4s65kkg6yhirnwx33yixn75x1w"; 2930 7043 }; 2931 7044 }; 7045 + "tar-stream-1.5.5" = { 7046 + name = "tar-stream"; 7047 + packageName = "tar-stream"; 7048 + version = "1.5.5"; 7049 + src = fetchurl { 7050 + url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.5.tgz"; 7051 + sha512 = "219gn10gvilrq6h3yshbhn25fx46n0wlgg66h0v326jhzz8gmpxsinb8bnhx1py35z0cv2248v91k2vy6vmkajmvpmkfmizywn601wr"; 7052 + }; 7053 + }; 7054 + "tasklist-3.1.0" = { 7055 + name = "tasklist"; 7056 + packageName = "tasklist"; 7057 + version = "3.1.0"; 7058 + src = fetchurl { 7059 + url = "https://registry.npmjs.org/tasklist/-/tasklist-3.1.0.tgz"; 7060 + sha1 = "873a98a4e45cbdecfa2c2ee18865353057e63696"; 7061 + }; 7062 + }; 7063 + "term-size-1.2.0" = { 7064 + name = "term-size"; 7065 + packageName = "term-size"; 7066 + version = "1.2.0"; 7067 + src = fetchurl { 7068 + url = "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz"; 7069 + sha1 = "458b83887f288fc56d6fffbfad262e26638efa69"; 7070 + }; 7071 + }; 7072 + "text-table-0.2.0" = { 7073 + name = "text-table"; 7074 + packageName = "text-table"; 7075 + version = "0.2.0"; 7076 + src = fetchurl { 7077 + url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"; 7078 + sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; 7079 + }; 7080 + }; 7081 + "thenify-3.3.0" = { 7082 + name = "thenify"; 7083 + packageName = "thenify"; 7084 + version = "3.3.0"; 7085 + src = fetchurl { 7086 + url = "https://registry.npmjs.org/thenify/-/thenify-3.3.0.tgz"; 7087 + sha1 = "e69e38a1babe969b0108207978b9f62b88604839"; 7088 + }; 7089 + }; 7090 + "thenify-all-1.6.0" = { 7091 + name = "thenify-all"; 7092 + packageName = "thenify-all"; 7093 + version = "1.6.0"; 7094 + src = fetchurl { 7095 + url = "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz"; 7096 + sha1 = "1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"; 7097 + }; 7098 + }; 2932 7099 "throttle-1.0.3" = { 2933 7100 name = "throttle"; 2934 7101 packageName = "throttle"; ··· 2936 7103 src = fetchurl { 2937 7104 url = "https://registry.npmjs.org/throttle/-/throttle-1.0.3.tgz"; 2938 7105 sha1 = "8a32e4a15f1763d997948317c5ebe3ad8a41e4b7"; 7106 + }; 7107 + }; 7108 + "through-2.3.8" = { 7109 + name = "through"; 7110 + packageName = "through"; 7111 + version = "2.3.8"; 7112 + src = fetchurl { 7113 + url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 7114 + sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 2939 7115 }; 2940 7116 }; 2941 7117 "through2-2.0.3" = { ··· 2965 7141 sha1 = "a862e018e3fb1ea2ec3fce5d55605cf57f247371"; 2966 7142 }; 2967 7143 }; 7144 + "timed-out-4.0.1" = { 7145 + name = "timed-out"; 7146 + packageName = "timed-out"; 7147 + version = "4.0.1"; 7148 + src = fetchurl { 7149 + url = "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz"; 7150 + sha1 = "f32eacac5a175bea25d7fab565ab3ed8741ef56f"; 7151 + }; 7152 + }; 7153 + "timeout-then-1.1.0" = { 7154 + name = "timeout-then"; 7155 + packageName = "timeout-then"; 7156 + version = "1.1.0"; 7157 + src = fetchurl { 7158 + url = "https://registry.npmjs.org/timeout-then/-/timeout-then-1.1.0.tgz"; 7159 + sha1 = "0145b06070159c17e2146fd292b01a1bd81e5fbc"; 7160 + }; 7161 + }; 2968 7162 "to-buffer-1.1.0" = { 2969 7163 name = "to-buffer"; 2970 7164 packageName = "to-buffer"; ··· 2974 7168 sha1 = "375bc03edae5c35a8fa0b3fe95a1f3985db1dcfa"; 2975 7169 }; 2976 7170 }; 2977 - "toiletdb-1.4.0" = { 7171 + "toiletdb-1.4.1" = { 2978 7172 name = "toiletdb"; 2979 7173 packageName = "toiletdb"; 2980 - version = "1.4.0"; 7174 + version = "1.4.1"; 2981 7175 src = fetchurl { 2982 - url = "https://registry.npmjs.org/toiletdb/-/toiletdb-1.4.0.tgz"; 2983 - sha1 = "6c6f871834b22178c5490f9f832b58c3c7cba852"; 7176 + url = "https://registry.npmjs.org/toiletdb/-/toiletdb-1.4.1.tgz"; 7177 + sha512 = "0c9ayp39hvxd1lzl6cxvsxcys0jzfb698i3as3xrw3n9zpxwmx4sqwisv63bfsmdl10c6v4inpj5kvckhlr3nd3ny1pj264r0qags0l"; 2984 7178 }; 2985 7179 }; 2986 7180 "tough-cookie-2.3.3" = { ··· 3001 7195 sha512 = "3da1j7ba37apy5kqlv436dz265b8ni63ca069gy4wrj9krq236j7sp0r259ia6jk1a8d7qqg37kkk8kwmnaqwcy90wnwnjxxp8bnf78"; 3002 7196 }; 3003 7197 }; 7198 + "tree-kill-1.2.0" = { 7199 + name = "tree-kill"; 7200 + packageName = "tree-kill"; 7201 + version = "1.2.0"; 7202 + src = fetchurl { 7203 + url = "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz"; 7204 + sha512 = "1r0mixygpdqrm2fn92z4cyxzbnvimm16k5gdm2m2jxx8wrj3w0mql9s748hcqp2nzcnybnw74wkm211zlr9ld0j2x1q8f153mszlm8f"; 7205 + }; 7206 + }; 3004 7207 "trim-0.0.1" = { 3005 7208 name = "trim"; 3006 7209 packageName = "trim"; ··· 3046 7249 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 3047 7250 }; 3048 7251 }; 7252 + "typpy-2.0.0" = { 7253 + name = "typpy"; 7254 + packageName = "typpy"; 7255 + version = "2.0.0"; 7256 + src = fetchurl { 7257 + url = "https://registry.npmjs.org/typpy/-/typpy-2.0.0.tgz"; 7258 + sha1 = "adef3bacc12ff47aff920fab03a8ff3279d737d6"; 7259 + }; 7260 + }; 7261 + "typpy-2.3.10" = { 7262 + name = "typpy"; 7263 + packageName = "typpy"; 7264 + version = "2.3.10"; 7265 + src = fetchurl { 7266 + url = "https://registry.npmjs.org/typpy/-/typpy-2.3.10.tgz"; 7267 + sha512 = "2m116608xyx0v7pl2hwvw0z7gw1yyxqx7yhp0l3a2nxrlsn7xav33rnys72xrc6jr0dwsg0r71f7qj42pdzgza15fz8l5wphycr5a0c"; 7268 + }; 7269 + }; 3049 7270 "uid-number-0.0.6" = { 3050 7271 name = "uid-number"; 3051 7272 packageName = "uid-number"; ··· 3064 7285 sha1 = "a310d94e4e5e0b02a95d678e33323f802bdc8428"; 3065 7286 }; 3066 7287 }; 7288 + "ul-5.0.0" = { 7289 + name = "ul"; 7290 + packageName = "ul"; 7291 + version = "5.0.0"; 7292 + src = fetchurl { 7293 + url = "https://registry.npmjs.org/ul/-/ul-5.0.0.tgz"; 7294 + sha1 = "ca80d793025f3fd5dc9bf83469818d310a7c9a62"; 7295 + }; 7296 + }; 7297 + "ul-5.2.13" = { 7298 + name = "ul"; 7299 + packageName = "ul"; 7300 + version = "5.2.13"; 7301 + src = fetchurl { 7302 + url = "https://registry.npmjs.org/ul/-/ul-5.2.13.tgz"; 7303 + sha1 = "9ff0504ea35ca1f74c0bf59e6480def009bad7b5"; 7304 + }; 7305 + }; 7306 + "umask-1.1.0" = { 7307 + name = "umask"; 7308 + packageName = "umask"; 7309 + version = "1.1.0"; 7310 + src = fetchurl { 7311 + url = "https://registry.npmjs.org/umask/-/umask-1.1.0.tgz"; 7312 + sha1 = "f29cebf01df517912bb58ff9c4e50fde8e33320d"; 7313 + }; 7314 + }; 7315 + "unbzip2-stream-1.2.5" = { 7316 + name = "unbzip2-stream"; 7317 + packageName = "unbzip2-stream"; 7318 + version = "1.2.5"; 7319 + src = fetchurl { 7320 + url = "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz"; 7321 + sha512 = "0xgvidx384p6cc8zh4m0qq000cn140dsckkijf95ka6iqi9j5nsrjrrf3mr3gxnybcvf2l4hxkaf0j7cqxncm3lnpq4ripw2j7zfc4b"; 7322 + }; 7323 + }; 7324 + "unique-filename-1.1.0" = { 7325 + name = "unique-filename"; 7326 + packageName = "unique-filename"; 7327 + version = "1.1.0"; 7328 + src = fetchurl { 7329 + url = "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.0.tgz"; 7330 + sha1 = "d05f2fe4032560871f30e93cbe735eea201514f3"; 7331 + }; 7332 + }; 7333 + "unique-slug-2.0.0" = { 7334 + name = "unique-slug"; 7335 + packageName = "unique-slug"; 7336 + version = "2.0.0"; 7337 + src = fetchurl { 7338 + url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.0.tgz"; 7339 + sha1 = "db6676e7c7cc0629878ff196097c78855ae9f4ab"; 7340 + }; 7341 + }; 7342 + "unique-string-1.0.0" = { 7343 + name = "unique-string"; 7344 + packageName = "unique-string"; 7345 + version = "1.0.0"; 7346 + src = fetchurl { 7347 + url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz"; 7348 + sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a"; 7349 + }; 7350 + }; 3067 7351 "unixify-1.0.0" = { 3068 7352 name = "unixify"; 3069 7353 packageName = "unixify"; ··· 3100 7384 sha1 = "985a27e975baa20b8263aea7a791e9300941a9ec"; 3101 7385 }; 3102 7386 }; 7387 + "unpack-stream-3.0.1" = { 7388 + name = "unpack-stream"; 7389 + packageName = "unpack-stream"; 7390 + version = "3.0.1"; 7391 + src = fetchurl { 7392 + url = "https://registry.npmjs.org/unpack-stream/-/unpack-stream-3.0.1.tgz"; 7393 + sha512 = "3m37z48fshadh46ay1hibdw9fawz3rgx1c16wx63mgplka0bs71364xnn72awwzc83dns0gkhnv3slmk071k1mdrm1bzvbi8z1br8f9"; 7394 + }; 7395 + }; 7396 + "unpipe-1.0.0" = { 7397 + name = "unpipe"; 7398 + packageName = "unpipe"; 7399 + version = "1.0.0"; 7400 + src = fetchurl { 7401 + url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; 7402 + sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; 7403 + }; 7404 + }; 3103 7405 "untildify-3.0.2" = { 3104 7406 name = "untildify"; 3105 7407 packageName = "untildify"; ··· 3109 7411 sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1"; 3110 7412 }; 3111 7413 }; 7414 + "unzip-response-1.0.2" = { 7415 + name = "unzip-response"; 7416 + packageName = "unzip-response"; 7417 + version = "1.0.2"; 7418 + src = fetchurl { 7419 + url = "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz"; 7420 + sha1 = "b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe"; 7421 + }; 7422 + }; 7423 + "unzip-response-2.0.1" = { 7424 + name = "unzip-response"; 7425 + packageName = "unzip-response"; 7426 + version = "2.0.1"; 7427 + src = fetchurl { 7428 + url = "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz"; 7429 + sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97"; 7430 + }; 7431 + }; 7432 + "update-notifier-2.2.0" = { 7433 + name = "update-notifier"; 7434 + packageName = "update-notifier"; 7435 + version = "2.2.0"; 7436 + src = fetchurl { 7437 + url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.2.0.tgz"; 7438 + sha1 = "1b5837cf90c0736d88627732b661c138f86de72f"; 7439 + }; 7440 + }; 7441 + "update-notifier-2.3.0" = { 7442 + name = "update-notifier"; 7443 + packageName = "update-notifier"; 7444 + version = "2.3.0"; 7445 + src = fetchurl { 7446 + url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.3.0.tgz"; 7447 + sha1 = "4e8827a6bb915140ab093559d7014e3ebb837451"; 7448 + }; 7449 + }; 7450 + "url-parse-lax-1.0.0" = { 7451 + name = "url-parse-lax"; 7452 + packageName = "url-parse-lax"; 7453 + version = "1.0.0"; 7454 + src = fetchurl { 7455 + url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz"; 7456 + sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73"; 7457 + }; 7458 + }; 7459 + "url-parse-lax-3.0.0" = { 7460 + name = "url-parse-lax"; 7461 + packageName = "url-parse-lax"; 7462 + version = "3.0.0"; 7463 + src = fetchurl { 7464 + url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz"; 7465 + sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c"; 7466 + }; 7467 + }; 7468 + "url-to-options-1.0.1" = { 7469 + name = "url-to-options"; 7470 + packageName = "url-to-options"; 7471 + version = "1.0.1"; 7472 + src = fetchurl { 7473 + url = "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz"; 7474 + sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9"; 7475 + }; 7476 + }; 3112 7477 "util-deprecate-1.0.2" = { 3113 7478 name = "util-deprecate"; 3114 7479 packageName = "util-deprecate"; ··· 3118 7483 sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 3119 7484 }; 3120 7485 }; 7486 + "util-extend-1.0.3" = { 7487 + name = "util-extend"; 7488 + packageName = "util-extend"; 7489 + version = "1.0.3"; 7490 + src = fetchurl { 7491 + url = "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz"; 7492 + sha1 = "a7c216d267545169637b3b6edc6ca9119e2ff93f"; 7493 + }; 7494 + }; 7495 + "util.promisify-1.0.0" = { 7496 + name = "util.promisify"; 7497 + packageName = "util.promisify"; 7498 + version = "1.0.0"; 7499 + src = fetchurl { 7500 + url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz"; 7501 + sha512 = "28cvjkydplc2vpnqff8vylscx8851srnkl54y6i54pl6lhpr6548plvyj833jk2mfaf8h31gbn60s00azd28rzc5q5gm1hgcc1smvlb"; 7502 + }; 7503 + }; 3121 7504 "utile-0.3.0" = { 3122 7505 name = "utile"; 3123 7506 packageName = "utile"; ··· 3136 7519 sha512 = "2mcnn6w5as2dvz6rj4fb33174z3a1rl9bm2cfazrr4084gq7aal0bkmkwr1cjpkvy1zgni3zdk0570fx7cmnd0k0hg18wfb2hvbigfg"; 3137 7520 }; 3138 7521 }; 7522 + "uuid-3.1.0" = { 7523 + name = "uuid"; 7524 + packageName = "uuid"; 7525 + version = "3.1.0"; 7526 + src = fetchurl { 7527 + url = "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz"; 7528 + sha512 = "3x5mi85l1559nkb35pfksjjgiyfyqrcvmcf0nly1xjl1kb0d37jnxd6sk0b8d331waadnqbf60nfssb563x9pvnjcw87lrh976sv18c"; 7529 + }; 7530 + }; 3139 7531 "uuid-3.2.1" = { 3140 7532 name = "uuid"; 3141 7533 packageName = "uuid"; ··· 3145 7537 sha512 = "0843vl1c974n8kw5kn0kvhvhwk8y8jydr0xkwwl2963xxmkw4ingk6xj9c8m48jw2i95giglxzq5aw5v5mij9kv7fzln8pxav1cr6cd"; 3146 7538 }; 3147 7539 }; 7540 + "validate-npm-package-license-3.0.1" = { 7541 + name = "validate-npm-package-license"; 7542 + packageName = "validate-npm-package-license"; 7543 + version = "3.0.1"; 7544 + src = fetchurl { 7545 + url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz"; 7546 + sha1 = "2804babe712ad3379459acfbe24746ab2c303fbc"; 7547 + }; 7548 + }; 7549 + "validate-npm-package-name-3.0.0" = { 7550 + name = "validate-npm-package-name"; 7551 + packageName = "validate-npm-package-name"; 7552 + version = "3.0.0"; 7553 + src = fetchurl { 7554 + url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz"; 7555 + sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e"; 7556 + }; 7557 + }; 3148 7558 "varint-3.0.1" = { 3149 7559 name = "varint"; 3150 7560 packageName = "varint"; ··· 3181 7591 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 3182 7592 }; 3183 7593 }; 7594 + "version-selector-type-2.0.0" = { 7595 + name = "version-selector-type"; 7596 + packageName = "version-selector-type"; 7597 + version = "2.0.0"; 7598 + src = fetchurl { 7599 + url = "https://registry.npmjs.org/version-selector-type/-/version-selector-type-2.0.0.tgz"; 7600 + sha512 = "3n7bidjd5r4lph1qq3sz6kyjk3isb2hjvvaccsqqsspphm2in151xgga6lzjimydbvl9a6cr9jy8q06qdgvalq4nxyggs1v49i150qm"; 7601 + }; 7602 + }; 7603 + "wcwidth-1.0.1" = { 7604 + name = "wcwidth"; 7605 + packageName = "wcwidth"; 7606 + version = "1.0.1"; 7607 + src = fetchurl { 7608 + url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"; 7609 + sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"; 7610 + }; 7611 + }; 3184 7612 "which-1.3.0" = { 3185 7613 name = "which"; 3186 7614 packageName = "which"; ··· 3190 7618 sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5"; 3191 7619 }; 3192 7620 }; 7621 + "which-module-2.0.0" = { 7622 + name = "which-module"; 7623 + packageName = "which-module"; 7624 + version = "2.0.0"; 7625 + src = fetchurl { 7626 + url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; 7627 + sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; 7628 + }; 7629 + }; 3193 7630 "wide-align-1.1.2" = { 3194 7631 name = "wide-align"; 3195 7632 packageName = "wide-align"; ··· 3199 7636 sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a"; 3200 7637 }; 3201 7638 }; 7639 + "widest-line-2.0.0" = { 7640 + name = "widest-line"; 7641 + packageName = "widest-line"; 7642 + version = "2.0.0"; 7643 + src = fetchurl { 7644 + url = "https://registry.npmjs.org/widest-line/-/widest-line-2.0.0.tgz"; 7645 + sha1 = "0142a4e8a243f8882c0233aa0e0281aa76152273"; 7646 + }; 7647 + }; 3202 7648 "winston-2.1.1" = { 3203 7649 name = "winston"; 3204 7650 packageName = "winston"; ··· 3208 7654 sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e"; 3209 7655 }; 3210 7656 }; 7657 + "worker-farm-1.5.2" = { 7658 + name = "worker-farm"; 7659 + packageName = "worker-farm"; 7660 + version = "1.5.2"; 7661 + src = fetchurl { 7662 + url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.5.2.tgz"; 7663 + sha512 = "28xgfshjpa79hz7v39axfrfnjhhjl371w30vy7dhs0kdzsdd42xi8lz85yjs2m0fp481iydiwscsy61gr99igkmkak7xrjd8vv9062z"; 7664 + }; 7665 + }; 7666 + "wrap-ansi-2.1.0" = { 7667 + name = "wrap-ansi"; 7668 + packageName = "wrap-ansi"; 7669 + version = "2.1.0"; 7670 + src = fetchurl { 7671 + url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; 7672 + sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; 7673 + }; 7674 + }; 3211 7675 "wrap-ansi-3.0.1" = { 3212 7676 name = "wrap-ansi"; 3213 7677 packageName = "wrap-ansi"; ··· 3226 7690 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 3227 7691 }; 3228 7692 }; 7693 + "write-file-atomic-1.3.4" = { 7694 + name = "write-file-atomic"; 7695 + packageName = "write-file-atomic"; 7696 + version = "1.3.4"; 7697 + src = fetchurl { 7698 + url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz"; 7699 + sha1 = "f807a4f0b1d9e913ae7a48112e6cc3af1991b45f"; 7700 + }; 7701 + }; 7702 + "write-file-atomic-2.1.0" = { 7703 + name = "write-file-atomic"; 7704 + packageName = "write-file-atomic"; 7705 + version = "2.1.0"; 7706 + src = fetchurl { 7707 + url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.1.0.tgz"; 7708 + sha512 = "0jpbx5znf640m7icywa21hdgyss5h6c811z27mzk7mh1yhv8sqcqd2y0cwgkrnigx57k2chv5cqwv0z8ff8z32gpdw8jw5imz8pcdni"; 7709 + }; 7710 + }; 7711 + "write-file-atomic-2.3.0" = { 7712 + name = "write-file-atomic"; 7713 + packageName = "write-file-atomic"; 7714 + version = "2.3.0"; 7715 + src = fetchurl { 7716 + url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz"; 7717 + sha512 = "2sgqxmcqzjd7nq9gjh6jz7vfb0gs0ag4jvqzdq93afq3bw3jrm88mhxql9sryyb04f3ipw5jkgjfiigsmdwlz9fgsnnm3cxhcmxxqy6"; 7718 + }; 7719 + }; 7720 + "write-json-file-2.3.0" = { 7721 + name = "write-json-file"; 7722 + packageName = "write-json-file"; 7723 + version = "2.3.0"; 7724 + src = fetchurl { 7725 + url = "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz"; 7726 + sha1 = "2b64c8a33004d54b8698c76d585a77ceb61da32f"; 7727 + }; 7728 + }; 7729 + "write-pkg-3.1.0" = { 7730 + name = "write-pkg"; 7731 + packageName = "write-pkg"; 7732 + version = "3.1.0"; 7733 + src = fetchurl { 7734 + url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.1.0.tgz"; 7735 + sha1 = "030a9994cc9993d25b4e75a9f1a1923607291ce9"; 7736 + }; 7737 + }; 7738 + "write-yaml-file-1.0.0" = { 7739 + name = "write-yaml-file"; 7740 + packageName = "write-yaml-file"; 7741 + version = "1.0.0"; 7742 + src = fetchurl { 7743 + url = "https://registry.npmjs.org/write-yaml-file/-/write-yaml-file-1.0.0.tgz"; 7744 + sha1 = "7b4bd0df72ca13fbe9d6b0178fd83c077b8ea86b"; 7745 + }; 7746 + }; 7747 + "x256-0.0.2" = { 7748 + name = "x256"; 7749 + packageName = "x256"; 7750 + version = "0.0.2"; 7751 + src = fetchurl { 7752 + url = "https://registry.npmjs.org/x256/-/x256-0.0.2.tgz"; 7753 + sha1 = "c9af18876f7a175801d564fe70ad9e8317784934"; 7754 + }; 7755 + }; 7756 + "xdg-basedir-3.0.0" = { 7757 + name = "xdg-basedir"; 7758 + packageName = "xdg-basedir"; 7759 + version = "3.0.0"; 7760 + src = fetchurl { 7761 + url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz"; 7762 + sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4"; 7763 + }; 7764 + }; 3229 7765 "xhr-2.4.1" = { 3230 7766 name = "xhr"; 3231 7767 packageName = "xhr"; ··· 3253 7789 sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; 3254 7790 }; 3255 7791 }; 7792 + "y18n-3.2.1" = { 7793 + name = "y18n"; 7794 + packageName = "y18n"; 7795 + version = "3.2.1"; 7796 + src = fetchurl { 7797 + url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz"; 7798 + sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41"; 7799 + }; 7800 + }; 7801 + "yallist-2.1.2" = { 7802 + name = "yallist"; 7803 + packageName = "yallist"; 7804 + version = "2.1.2"; 7805 + src = fetchurl { 7806 + url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; 7807 + sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; 7808 + }; 7809 + }; 7810 + "yallist-3.0.2" = { 7811 + name = "yallist"; 7812 + packageName = "yallist"; 7813 + version = "3.0.2"; 7814 + src = fetchurl { 7815 + url = "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz"; 7816 + sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"; 7817 + }; 7818 + }; 7819 + "yargs-8.0.2" = { 7820 + name = "yargs"; 7821 + packageName = "yargs"; 7822 + version = "8.0.2"; 7823 + src = fetchurl { 7824 + url = "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz"; 7825 + sha1 = "6299a9055b1cefc969ff7e79c1d918dceb22c360"; 7826 + }; 7827 + }; 7828 + "yargs-parser-7.0.0" = { 7829 + name = "yargs-parser"; 7830 + packageName = "yargs-parser"; 7831 + version = "7.0.0"; 7832 + src = fetchurl { 7833 + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz"; 7834 + sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"; 7835 + }; 7836 + }; 7837 + "zen-observable-0.7.1" = { 7838 + name = "zen-observable"; 7839 + packageName = "zen-observable"; 7840 + version = "0.7.1"; 7841 + src = fetchurl { 7842 + url = "https://registry.npmjs.org/zen-observable/-/zen-observable-0.7.1.tgz"; 7843 + sha512 = "134nwk2ggcx46rx0n2cy1fqmlixar7c4sygxkym7kpd8wkqvdnlg1win4kns4zcxx99mxmbpr57jppq8bkva5z2ladfmjdl4wqrb3iq"; 7844 + }; 7845 + }; 7846 + "zen-push-0.2.1" = { 7847 + name = "zen-push"; 7848 + packageName = "zen-push"; 7849 + version = "0.2.1"; 7850 + src = fetchurl { 7851 + url = "https://registry.npmjs.org/zen-push/-/zen-push-0.2.1.tgz"; 7852 + sha512 = "3bx83jgamf9vq3n0150j5h8ndbxck5psnhw21fwifmq7jz37vcmlm7wmirbxh824jhq3kv16lc4h6iki1kwxx0zsjwyf8hrryyjmzj2"; 7853 + }; 7854 + }; 3256 7855 }; 3257 7856 in 3258 7857 { ··· 3328 7927 ]; 3329 7928 }) 3330 7929 sources."blake2b-2.1.2" 3331 - sources."blake2b-wasm-1.1.5" 7930 + sources."blake2b-wasm-1.1.7" 3332 7931 sources."body-0.1.0" 3333 7932 sources."boom-4.3.1" 3334 7933 sources."brace-expansion-1.1.8" ··· 3460 8059 sources."varint-5.0.0" 3461 8060 ]; 3462 8061 }) 3463 - sources."hypercore-protocol-6.5.1" 3464 - (sources."hyperdrive-9.12.1" // { 8062 + sources."hypercore-protocol-6.5.2" 8063 + (sources."hyperdrive-9.12.2" // { 3465 8064 dependencies = [ 3466 8065 sources."varint-4.0.1" 3467 8066 ]; ··· 3560 8159 ]; 3561 8160 }) 3562 8161 sources."protocol-buffers-encodings-1.1.0" 3563 - sources."pump-2.0.0" 8162 + sources."pump-2.0.1" 3564 8163 sources."punycode-1.4.1" 3565 8164 sources."qs-6.5.1" 3566 8165 (sources."random-access-file-1.8.1" // { ··· 3629 8228 sources."through2-2.0.3" 3630 8229 sources."thunky-1.0.2" 3631 8230 sources."to-buffer-1.1.0" 3632 - sources."toiletdb-1.4.0" 8231 + sources."toiletdb-1.4.1" 3633 8232 sources."tough-cookie-2.3.3" 3634 8233 sources."township-client-1.3.2" 3635 8234 sources."trim-0.0.1" ··· 4038 8637 description = "Node.js native addon binary install tool"; 4039 8638 homepage = "https://github.com/mapbox/node-pre-gyp#readme"; 4040 8639 license = "BSD-3-Clause"; 8640 + }; 8641 + production = true; 8642 + bypassCache = true; 8643 + }; 8644 + pnpm = nodeEnv.buildNodePackage { 8645 + name = "pnpm"; 8646 + packageName = "pnpm"; 8647 + version = "1.31.0"; 8648 + src = fetchurl { 8649 + url = "https://registry.npmjs.org/pnpm/-/pnpm-1.31.0.tgz"; 8650 + sha1 = "7d971bb0e48c25d4e04db420eee8ee0bcb4c66d4"; 8651 + }; 8652 + dependencies = [ 8653 + sources."@most/multicast-1.3.0" 8654 + sources."@most/prelude-1.7.0" 8655 + sources."@pnpm/check-package-1.0.0" 8656 + (sources."@pnpm/default-fetcher-0.3.2" // { 8657 + dependencies = [ 8658 + sources."@types/node-9.3.0" 8659 + sources."debug-3.1.0" 8660 + sources."ms-2.0.0" 8661 + sources."ssri-5.0.0" 8662 + ]; 8663 + }) 8664 + (sources."@pnpm/default-resolver-0.1.2" // { 8665 + dependencies = [ 8666 + sources."@types/node-9.3.0" 8667 + ]; 8668 + }) 8669 + sources."@pnpm/fs-locker-1.0.1" 8670 + sources."@pnpm/git-fetcher-0.2.0" 8671 + sources."@pnpm/git-resolver-0.3.0" 8672 + sources."@pnpm/local-resolver-0.1.1" 8673 + (sources."@pnpm/logger-1.0.0" // { 8674 + dependencies = [ 8675 + sources."minimist-1.2.0" 8676 + ]; 8677 + }) 8678 + sources."@pnpm/npm-resolver-0.3.11" 8679 + (sources."@pnpm/outdated-0.2.5" // { 8680 + dependencies = [ 8681 + sources."@types/node-9.3.0" 8682 + sources."pify-2.3.0" 8683 + ]; 8684 + }) 8685 + sources."@pnpm/package-requester-0.7.1" 8686 + sources."@pnpm/pkgid-to-filename-1.0.0" 8687 + (sources."@pnpm/server-0.7.1" // { 8688 + dependencies = [ 8689 + sources."@types/node-9.3.0" 8690 + ]; 8691 + }) 8692 + sources."@pnpm/tarball-fetcher-0.3.4" 8693 + (sources."@pnpm/tarball-resolver-0.1.0" // { 8694 + dependencies = [ 8695 + sources."@types/node-8.5.9" 8696 + ]; 8697 + }) 8698 + sources."@pnpm/types-1.7.0" 8699 + sources."@sindresorhus/is-0.7.0" 8700 + sources."@types/archy-0.0.31" 8701 + sources."@types/byline-4.2.31" 8702 + sources."@types/chalk-0.4.31" 8703 + sources."@types/common-tags-1.4.0" 8704 + sources."@types/get-port-3.2.0" 8705 + sources."@types/got-7.1.6" 8706 + sources."@types/load-json-file-2.0.7" 8707 + sources."@types/mem-1.1.2" 8708 + sources."@types/mz-0.0.32" 8709 + sources."@types/node-8.5.9" 8710 + sources."@types/nopt-3.0.29" 8711 + sources."@types/npm-2.0.29" 8712 + sources."@types/p-limit-1.1.2" 8713 + sources."@types/p-queue-1.1.0" 8714 + sources."@types/p-series-1.0.1" 8715 + sources."@types/ramda-0.25.16" 8716 + sources."@types/rc-0.0.1" 8717 + sources."@types/retry-0.10.2" 8718 + sources."@types/semver-5.4.0" 8719 + sources."@types/update-notifier-1.0.3" 8720 + sources."@types/uuid-3.4.3" 8721 + sources."@types/write-json-file-2.2.1" 8722 + sources."@zkochan/cmd-shim-2.2.4" 8723 + (sources."@zkochan/libnpx-9.6.1" // { 8724 + dependencies = [ 8725 + sources."ansi-regex-3.0.0" 8726 + sources."execa-0.7.0" 8727 + sources."is-fullwidth-code-point-2.0.0" 8728 + sources."load-json-file-2.0.0" 8729 + sources."mem-1.1.0" 8730 + sources."pify-2.3.0" 8731 + sources."strip-ansi-4.0.0" 8732 + ]; 8733 + }) 8734 + sources."@zkochan/npm-package-arg-1.0.0" 8735 + sources."JSONStream-1.3.2" 8736 + sources."abbrev-1.1.1" 8737 + sources."add-subtract-date-1.0.13" 8738 + sources."agent-base-4.2.0" 8739 + sources."agentkeepalive-3.3.0" 8740 + sources."ajv-5.5.2" 8741 + sources."ansi-align-2.0.0" 8742 + sources."ansi-escapes-3.0.0" 8743 + sources."ansi-parser-3.2.8" 8744 + sources."ansi-regex-2.1.1" 8745 + sources."ansi-styles-3.2.0" 8746 + sources."ansicolors-0.3.2" 8747 + sources."ansistyles-0.1.3" 8748 + sources."ansy-1.0.13" 8749 + sources."any-promise-1.3.0" 8750 + sources."aproba-1.2.0" 8751 + sources."archy-1.0.0" 8752 + sources."are-we-there-yet-1.1.4" 8753 + sources."argparse-1.0.9" 8754 + sources."arr-flatten-1.1.0" 8755 + sources."array-find-index-1.0.2" 8756 + sources."array-flatten-2.1.1" 8757 + sources."array-includes-3.0.3" 8758 + sources."array-union-1.0.2" 8759 + sources."array-uniq-1.0.3" 8760 + sources."arrify-1.0.1" 8761 + sources."as-table-1.0.31" 8762 + sources."asap-2.0.6" 8763 + sources."asn1-0.2.3" 8764 + sources."assert-plus-1.0.0" 8765 + sources."asynckit-0.4.0" 8766 + sources."aws-sign2-0.7.0" 8767 + sources."aws4-1.6.0" 8768 + sources."babel-runtime-6.26.0" 8769 + sources."balanced-match-1.0.0" 8770 + sources."base64-js-0.0.8" 8771 + sources."bcrypt-pbkdf-1.0.1" 8772 + sources."bindings-1.3.0" 8773 + sources."bl-1.2.1" 8774 + sources."block-stream-0.0.9" 8775 + sources."bluebird-3.5.1" 8776 + sources."bole-3.0.2" 8777 + sources."boom-4.3.1" 8778 + (sources."boxen-1.3.0" // { 8779 + dependencies = [ 8780 + sources."chalk-2.3.0" 8781 + ]; 8782 + }) 8783 + sources."brace-expansion-1.1.8" 8784 + sources."browserify-zlib-0.1.4" 8785 + sources."buffer-3.6.0" 8786 + sources."bug-killer-4.4.4" 8787 + sources."builtin-modules-1.1.1" 8788 + sources."builtins-1.0.3" 8789 + sources."byline-5.0.0" 8790 + sources."bzip2-maybe-1.0.0" 8791 + sources."cacache-10.0.2" 8792 + sources."cacheable-request-2.1.4" 8793 + sources."call-limit-1.1.0" 8794 + sources."camelcase-4.1.0" 8795 + sources."capture-stack-trace-1.0.0" 8796 + sources."caseless-0.12.0" 8797 + sources."chalk-2.3.0" 8798 + sources."chownr-1.0.1" 8799 + sources."ci-info-1.1.2" 8800 + sources."cidr-regex-1.0.6" 8801 + sources."class-methods-1.0.10" 8802 + sources."cli-box-5.0.0" 8803 + sources."cli-boxes-1.0.0" 8804 + sources."cli-cursor-2.1.0" 8805 + (sources."cli-table2-0.2.0" // { 8806 + dependencies = [ 8807 + sources."ansi-regex-2.1.1" 8808 + sources."strip-ansi-3.0.1" 8809 + ]; 8810 + }) 8811 + (sources."cliui-3.2.0" // { 8812 + dependencies = [ 8813 + sources."string-width-1.0.2" 8814 + ]; 8815 + }) 8816 + sources."clone-1.0.3" 8817 + sources."clone-response-1.0.2" 8818 + (sources."clp-3.2.1" // { 8819 + dependencies = [ 8820 + sources."typpy-2.0.0" 8821 + sources."ul-5.0.0" 8822 + ]; 8823 + }) 8824 + sources."cmd-shim-2.0.2" 8825 + sources."co-4.6.0" 8826 + sources."code-point-at-1.1.0" 8827 + sources."color-convert-1.9.1" 8828 + sources."color-name-1.1.3" 8829 + sources."colors-1.1.2" 8830 + (sources."columnify-1.5.4" // { 8831 + dependencies = [ 8832 + sources."ansi-regex-2.1.1" 8833 + sources."strip-ansi-3.0.1" 8834 + ]; 8835 + }) 8836 + sources."combined-stream-1.0.5" 8837 + sources."common-tags-1.7.2" 8838 + sources."concat-map-0.0.1" 8839 + sources."concat-stream-1.6.0" 8840 + sources."config-chain-1.1.11" 8841 + sources."configstore-3.1.1" 8842 + sources."console-control-strings-1.1.0" 8843 + sources."copy-concurrently-1.0.5" 8844 + sources."core-js-2.5.3" 8845 + sources."core-util-is-1.0.2" 8846 + sources."couleurs-6.0.9" 8847 + sources."create-error-class-3.0.2" 8848 + sources."credentials-by-uri-1.0.0" 8849 + sources."cross-spawn-5.1.0" 8850 + (sources."cryptiles-3.1.2" // { 8851 + dependencies = [ 8852 + sources."boom-5.2.0" 8853 + ]; 8854 + }) 8855 + sources."crypto-random-string-1.0.0" 8856 + sources."csv-parser-1.12.0" 8857 + sources."currently-unhandled-0.4.1" 8858 + sources."custom-return-1.0.10" 8859 + sources."cyclist-0.2.2" 8860 + sources."dashdash-1.14.1" 8861 + sources."data-uri-to-buffer-2.0.0" 8862 + sources."date-unit-ms-1.1.12" 8863 + sources."daty-1.1.4" 8864 + sources."days-1.1.1" 8865 + sources."debug-2.6.9" 8866 + sources."debuglog-1.0.1" 8867 + sources."decamelize-1.2.0" 8868 + sources."decode-uri-component-0.2.0" 8869 + sources."decompress-maybe-1.0.0" 8870 + sources."decompress-response-3.3.0" 8871 + sources."deep-extend-0.4.2" 8872 + sources."defaults-1.0.3" 8873 + sources."deffy-2.2.2" 8874 + sources."define-properties-1.1.2" 8875 + sources."delay-2.0.0" 8876 + sources."delayed-stream-1.0.0" 8877 + sources."delegates-1.0.0" 8878 + sources."dependencies-hierarchy-2.0.1" 8879 + sources."dependency-path-1.2.0" 8880 + sources."detect-indent-5.0.0" 8881 + sources."detect-libc-1.0.3" 8882 + sources."dezalgo-1.0.3" 8883 + (sources."diable-4.0.1" // { 8884 + dependencies = [ 8885 + sources."ansi-parser-2.0.0" 8886 + sources."couleurs-5.0.0" 8887 + sources."deffy-2.0.0" 8888 + sources."has-flag-1.0.0" 8889 + sources."supports-color-3.2.3" 8890 + ]; 8891 + }) 8892 + sources."diff-dates-1.0.11" 8893 + sources."dint-2.0.2" 8894 + sources."dir-glob-2.0.0" 8895 + sources."dot-prop-4.2.0" 8896 + sources."dotenv-4.0.0" 8897 + (sources."drive-by-path-1.0.0" // { 8898 + dependencies = [ 8899 + sources."ramda-0.24.1" 8900 + ]; 8901 + }) 8902 + sources."drivelist-5.2.12" 8903 + sources."duplexer3-0.1.4" 8904 + sources."duplexify-3.5.3" 8905 + sources."ecc-jsbn-0.1.1" 8906 + sources."editor-1.0.0" 8907 + sources."encode-registry-1.1.0" 8908 + sources."encoding-0.1.12" 8909 + sources."end-of-stream-1.4.1" 8910 + sources."err-code-1.1.2" 8911 + sources."errno-0.1.6" 8912 + sources."error-ex-1.3.1" 8913 + sources."es-abstract-1.10.0" 8914 + sources."es-to-primitive-1.1.1" 8915 + sources."es6-promise-4.2.4" 8916 + sources."es6-promisify-5.0.0" 8917 + sources."escape-string-regexp-1.0.5" 8918 + sources."esprima-4.0.0" 8919 + sources."exclude-arr-1.0.9" 8920 + sources."execa-0.8.0" 8921 + sources."expand-template-1.1.0" 8922 + sources."extend-3.0.1" 8923 + sources."extsprintf-1.3.0" 8924 + sources."fast-deep-equal-1.0.0" 8925 + sources."fast-json-stable-stringify-2.0.0" 8926 + sources."fast-safe-stringify-1.1.13" 8927 + (sources."fetch-from-npm-registry-0.1.0" // { 8928 + dependencies = [ 8929 + sources."@types/node-8.5.9" 8930 + ]; 8931 + }) 8932 + sources."fillo-1.0.11" 8933 + (sources."find-packages-2.1.2" // { 8934 + dependencies = [ 8935 + sources."path-type-3.0.0" 8936 + sources."read-pkg-3.0.0" 8937 + ]; 8938 + }) 8939 + sources."find-up-2.1.0" 8940 + sources."flat-colors-3.0.0" 8941 + sources."flush-write-stream-1.0.2" 8942 + sources."foreach-2.0.5" 8943 + sources."forever-agent-0.6.1" 8944 + sources."form-data-2.3.1" 8945 + sources."formatoid-1.2.2" 8946 + sources."from2-2.3.0" 8947 + sources."fs-vacuum-1.2.10" 8948 + sources."fs-write-stream-atomic-1.0.10" 8949 + sources."fs.realpath-1.0.0" 8950 + sources."fstream-1.0.11" 8951 + sources."function-bind-1.1.1" 8952 + sources."function.name-1.0.10" 8953 + sources."gauge-2.7.4" 8954 + sources."generate-function-1.1.0" 8955 + sources."generate-object-property-1.2.0" 8956 + sources."genfun-4.0.1" 8957 + sources."get-caller-file-1.0.2" 8958 + sources."get-npm-tarball-url-2.0.1" 8959 + sources."get-port-3.2.0" 8960 + sources."get-source-1.0.24" 8961 + sources."get-stream-3.0.0" 8962 + sources."getpass-0.1.7" 8963 + sources."github-from-package-0.0.0" 8964 + sources."glob-7.1.2" 8965 + sources."global-dirs-0.1.1" 8966 + sources."globby-7.1.1" 8967 + sources."got-8.0.3" 8968 + sources."graceful-fs-4.1.11" 8969 + sources."graceful-git-1.0.1" 8970 + sources."graph-sequencer-2.0.0" 8971 + sources."gunzip-maybe-1.4.1" 8972 + sources."har-schema-2.0.0" 8973 + sources."har-validator-5.0.3" 8974 + sources."has-1.0.1" 8975 + sources."has-ansi-2.0.0" 8976 + sources."has-flag-2.0.0" 8977 + sources."has-symbol-support-x-1.4.1" 8978 + sources."has-to-string-tag-x-1.4.1" 8979 + sources."has-unicode-2.0.1" 8980 + sources."hawk-6.0.2" 8981 + sources."hoek-4.2.0" 8982 + sources."hosted-git-info-2.5.0" 8983 + sources."http-cache-semantics-3.8.1" 8984 + sources."http-proxy-agent-2.0.0" 8985 + sources."http-signature-1.2.0" 8986 + sources."https-proxy-agent-2.1.1" 8987 + sources."humanize-ms-1.2.1" 8988 + sources."iconv-lite-0.4.19" 8989 + sources."ieee754-1.1.8" 8990 + sources."iferr-0.1.5" 8991 + sources."ignore-3.3.7" 8992 + sources."ignore-walk-3.0.1" 8993 + sources."import-lazy-2.1.0" 8994 + sources."imurmurhash-0.1.4" 8995 + sources."individual-3.0.0" 8996 + sources."inflight-1.0.6" 8997 + sources."inherits-2.0.3" 8998 + sources."ini-1.3.5" 8999 + sources."init-package-json-1.10.1" 9000 + sources."into-stream-3.1.0" 9001 + sources."invert-kv-1.0.0" 9002 + sources."ip-1.1.5" 9003 + sources."is-arrayish-0.2.1" 9004 + sources."is-builtin-module-1.0.0" 9005 + sources."is-bzip2-1.0.0" 9006 + sources."is-callable-1.1.3" 9007 + sources."is-ci-1.1.0" 9008 + sources."is-cidr-1.0.0" 9009 + sources."is-date-object-1.0.1" 9010 + sources."is-deflate-1.0.0" 9011 + sources."is-fullwidth-code-point-1.0.0" 9012 + sources."is-gzip-1.0.0" 9013 + sources."is-inner-link-2.0.2" 9014 + sources."is-installed-globally-0.1.0" 9015 + sources."is-npm-1.0.0" 9016 + sources."is-obj-1.0.1" 9017 + sources."is-object-1.0.1" 9018 + sources."is-path-inside-1.0.1" 9019 + sources."is-plain-obj-1.1.0" 9020 + sources."is-property-1.0.2" 9021 + sources."is-redirect-1.0.0" 9022 + sources."is-regex-1.0.4" 9023 + sources."is-retry-allowed-1.1.0" 9024 + sources."is-ssh-1.3.0" 9025 + sources."is-stream-1.1.0" 9026 + sources."is-subdir-1.0.2" 9027 + sources."is-symbol-1.0.1" 9028 + sources."is-typedarray-1.0.0" 9029 + sources."is-windows-1.0.1" 9030 + sources."isarray-1.0.0" 9031 + sources."isexe-2.0.0" 9032 + sources."isstream-0.1.2" 9033 + sources."isurl-1.0.0" 9034 + sources."iterate-object-1.3.2" 9035 + sources."js-yaml-3.10.0" 9036 + sources."jsbn-0.1.1" 9037 + sources."json-buffer-3.0.0" 9038 + sources."json-parse-better-errors-1.0.1" 9039 + sources."json-schema-0.2.3" 9040 + sources."json-schema-traverse-0.3.1" 9041 + sources."json-stringify-safe-5.0.1" 9042 + sources."json2yaml-1.1.0" 9043 + sources."jsonparse-1.3.1" 9044 + sources."jsprim-1.4.1" 9045 + sources."keyv-3.0.0" 9046 + sources."latest-version-3.1.0" 9047 + sources."lazy-property-1.0.0" 9048 + sources."lcid-1.0.0" 9049 + (sources."le-table-4.0.0" // { 9050 + dependencies = [ 9051 + sources."ansi-parser-3.0.0" 9052 + ]; 9053 + }) 9054 + sources."libnpx-9.6.0" 9055 + (sources."load-json-file-4.0.0" // { 9056 + dependencies = [ 9057 + sources."parse-json-4.0.0" 9058 + ]; 9059 + }) 9060 + sources."load-yaml-file-0.1.0" 9061 + sources."locate-path-2.0.0" 9062 + sources."lockfile-1.0.3" 9063 + sources."lodash-3.10.1" 9064 + sources."lodash._baseuniq-4.6.0" 9065 + sources."lodash._createset-4.0.3" 9066 + sources."lodash._root-3.0.1" 9067 + sources."lodash.clonedeep-4.5.0" 9068 + sources."lodash.union-4.6.0" 9069 + sources."lodash.uniq-4.5.0" 9070 + sources."lodash.without-4.4.0" 9071 + sources."log-update-2.3.0" 9072 + sources."loud-rejection-1.6.0" 9073 + sources."lowercase-keys-1.0.0" 9074 + sources."lru-cache-4.1.1" 9075 + sources."make-dir-1.1.0" 9076 + sources."make-fetch-happen-2.6.0" 9077 + sources."meant-1.0.1" 9078 + sources."mem-3.0.0" 9079 + sources."mime-db-1.30.0" 9080 + sources."mime-types-2.1.17" 9081 + sources."mimic-fn-1.1.0" 9082 + sources."mimic-response-1.0.0" 9083 + sources."minimatch-3.0.4" 9084 + sources."minimist-0.0.8" 9085 + sources."minipass-2.2.1" 9086 + sources."minizlib-1.1.0" 9087 + sources."mississippi-1.3.1" 9088 + sources."mkdirp-0.5.1" 9089 + sources."mkdirp-promise-5.0.1" 9090 + sources."months-1.2.0" 9091 + sources."most-1.7.2" 9092 + sources."most-last-1.0.0" 9093 + sources."move-concurrently-1.0.1" 9094 + sources."ms-2.1.1" 9095 + sources."mute-stream-0.0.7" 9096 + sources."mz-2.7.0" 9097 + sources."nan-2.8.0" 9098 + sources."ncp-2.0.0" 9099 + sources."ndjson-1.5.0" 9100 + sources."neat-csv-2.1.0" 9101 + sources."nerf-dart-1.0.0" 9102 + sources."node-abi-2.1.2" 9103 + sources."node-fetch-npm-2.0.2" 9104 + (sources."node-gyp-3.6.2" // { 9105 + dependencies = [ 9106 + sources."nopt-3.0.6" 9107 + sources."semver-5.3.0" 9108 + sources."tar-2.2.1" 9109 + ]; 9110 + }) 9111 + sources."noop-logger-0.1.1" 9112 + sources."noop6-1.0.7" 9113 + sources."nopt-4.0.1" 9114 + sources."normalize-package-data-2.4.0" 9115 + sources."normalize-path-2.1.1" 9116 + sources."normalize-registry-url-1.0.0" 9117 + sources."normalize-ssh-1.0.0" 9118 + sources."normalize-url-2.0.1" 9119 + (sources."not-bundled-npm-5.5.1" // { 9120 + dependencies = [ 9121 + sources."ansi-regex-3.0.0" 9122 + sources."ansi-styles-2.2.1" 9123 + sources."cacache-9.2.9" 9124 + sources."chalk-1.1.3" 9125 + sources."execa-0.7.0" 9126 + sources."from2-1.3.0" 9127 + sources."got-6.7.1" 9128 + sources."is-fullwidth-code-point-2.0.0" 9129 + sources."isarray-0.0.1" 9130 + sources."minimist-1.2.0" 9131 + sources."prepend-http-1.0.4" 9132 + sources."semver-5.4.1" 9133 + sources."ssri-4.1.6" 9134 + sources."string-width-1.0.2" 9135 + sources."string_decoder-0.10.31" 9136 + sources."strip-ansi-4.0.0" 9137 + sources."supports-color-2.0.0" 9138 + (sources."update-notifier-2.2.0" // { 9139 + dependencies = [ 9140 + sources."ansi-regex-2.1.1" 9141 + sources."string-width-2.1.1" 9142 + sources."strip-ansi-3.0.1" 9143 + ]; 9144 + }) 9145 + sources."url-parse-lax-1.0.0" 9146 + sources."uuid-3.1.0" 9147 + sources."write-file-atomic-2.1.0" 9148 + sources."yallist-3.0.2" 9149 + ]; 9150 + }) 9151 + sources."npm-bundled-1.0.3" 9152 + sources."npm-cache-filename-1.0.2" 9153 + sources."npm-install-checks-3.0.0" 9154 + sources."npm-lifecycle-1.0.3" 9155 + sources."npm-package-arg-5.1.2" 9156 + sources."npm-packlist-1.1.10" 9157 + sources."npm-pick-manifest-1.0.4" 9158 + sources."npm-profile-2.0.5" 9159 + sources."npm-registry-client-8.5.0" 9160 + sources."npm-run-path-2.0.2" 9161 + sources."npm-user-validate-1.0.0" 9162 + (sources."npmlog-4.1.2" // { 9163 + dependencies = [ 9164 + sources."ansi-regex-2.1.1" 9165 + sources."strip-ansi-3.0.1" 9166 + ]; 9167 + }) 9168 + sources."number-is-nan-1.0.1" 9169 + sources."oauth-sign-0.8.2" 9170 + sources."object-assign-4.1.1" 9171 + sources."object-keys-1.0.11" 9172 + sources."object.getownpropertydescriptors-2.0.3" 9173 + sources."observatory-1.0.0" 9174 + sources."once-1.4.0" 9175 + sources."onetime-2.0.1" 9176 + sources."opener-1.4.3" 9177 + sources."os-homedir-1.0.2" 9178 + sources."os-locale-2.1.0" 9179 + sources."os-tmpdir-1.0.2" 9180 + sources."osenv-0.1.4" 9181 + sources."overlap-2.0.0" 9182 + sources."p-cancelable-0.3.0" 9183 + sources."p-defer-1.0.0" 9184 + sources."p-every-1.0.2" 9185 + sources."p-filter-1.0.0" 9186 + sources."p-finally-1.0.0" 9187 + sources."p-is-promise-1.1.0" 9188 + sources."p-limit-1.2.0" 9189 + sources."p-locate-2.0.0" 9190 + sources."p-map-1.2.0" 9191 + sources."p-queue-2.3.0" 9192 + sources."p-reduce-1.0.0" 9193 + sources."p-series-1.0.0" 9194 + sources."p-timeout-2.0.1" 9195 + sources."p-try-1.0.0" 9196 + sources."package-json-4.0.1" 9197 + (sources."package-store-0.15.2" // { 9198 + dependencies = [ 9199 + sources."@types/node-9.3.0" 9200 + sources."debug-3.1.0" 9201 + sources."minimist-1.2.0" 9202 + sources."ms-2.0.0" 9203 + sources."unzip-response-1.0.2" 9204 + ]; 9205 + }) 9206 + sources."pacote-6.0.4" 9207 + sources."pako-0.2.9" 9208 + sources."parallel-transform-1.1.0" 9209 + sources."parse-it-1.0.8" 9210 + sources."parse-json-2.2.0" 9211 + sources."parse-npm-tarball-url-1.0.2" 9212 + sources."parse-url-1.3.11" 9213 + sources."path-absolute-1.0.0" 9214 + sources."path-exists-3.0.0" 9215 + sources."path-is-absolute-1.0.1" 9216 + sources."path-is-inside-1.0.2" 9217 + sources."path-key-2.0.1" 9218 + sources."path-name-1.0.0" 9219 + sources."path-type-2.0.0" 9220 + sources."peek-stream-1.1.2" 9221 + sources."performance-now-2.1.0" 9222 + sources."pify-3.0.0" 9223 + sources."pinkie-2.0.4" 9224 + sources."pinkie-promise-2.0.1" 9225 + (sources."pkgs-graph-2.0.0-0" // { 9226 + dependencies = [ 9227 + sources."npm-package-arg-6.0.0" 9228 + ]; 9229 + }) 9230 + (sources."pnpm-default-reporter-0.11.8" // { 9231 + dependencies = [ 9232 + sources."@types/node-9.3.0" 9233 + sources."ansi-regex-3.0.0" 9234 + sources."strip-ansi-4.0.0" 9235 + sources."wrap-ansi-3.0.1" 9236 + ]; 9237 + }) 9238 + (sources."pnpm-file-reporter-0.0.1" // { 9239 + dependencies = [ 9240 + sources."@types/node-7.0.52" 9241 + sources."ansi-escapes-1.4.0" 9242 + sources."ansi-styles-2.2.1" 9243 + sources."chalk-1.1.3" 9244 + sources."supports-color-2.0.0" 9245 + ]; 9246 + }) 9247 + sources."pnpm-install-checks-1.1.0" 9248 + (sources."pnpm-list-2.0.1" // { 9249 + dependencies = [ 9250 + sources."@types/node-9.3.0" 9251 + sources."npm-package-arg-6.0.0" 9252 + ]; 9253 + }) 9254 + sources."pnpm-logger-0.0.0" 9255 + sources."pnpm-shrinkwrap-5.1.1" 9256 + sources."prebuild-install-2.5.0" 9257 + sources."prepend-http-2.0.0" 9258 + sources."pretty-bytes-4.0.2" 9259 + sources."printable-characters-1.0.38" 9260 + sources."proc-output-1.0.6" 9261 + (sources."process-exists-3.0.0" // { 9262 + dependencies = [ 9263 + sources."get-stream-2.3.1" 9264 + sources."into-stream-2.0.1" 9265 + sources."minimist-1.2.0" 9266 + ]; 9267 + }) 9268 + sources."process-nextick-args-1.0.7" 9269 + sources."promise-inflight-1.0.1" 9270 + sources."promise-retry-1.1.1" 9271 + sources."promzard-0.3.0" 9272 + sources."proper-lockfile-2.0.1" 9273 + sources."proto-list-1.2.4" 9274 + sources."protocols-1.4.6" 9275 + sources."protoduck-4.0.0" 9276 + sources."prr-1.0.1" 9277 + sources."ps-list-4.0.0" 9278 + sources."pseudomap-1.0.2" 9279 + sources."pump-1.0.3" 9280 + (sources."pumpify-1.4.0" // { 9281 + dependencies = [ 9282 + sources."pump-2.0.1" 9283 + ]; 9284 + }) 9285 + sources."punycode-1.4.1" 9286 + sources."qrcode-terminal-0.11.0" 9287 + sources."qs-6.5.1" 9288 + sources."query-string-5.0.1" 9289 + sources."qw-1.0.1" 9290 + sources."ramda-0.25.0" 9291 + sources."rc-1.2.4" 9292 + sources."read-1.0.7" 9293 + sources."read-cmd-shim-1.0.1" 9294 + sources."read-installed-4.0.3" 9295 + sources."read-package-json-2.0.12" 9296 + sources."read-package-tree-5.1.6" 9297 + sources."read-pkg-2.0.0" 9298 + sources."read-pkg-up-2.0.0" 9299 + sources."readable-stream-2.3.3" 9300 + sources."readdir-scoped-modules-1.0.2" 9301 + sources."regenerator-runtime-0.11.1" 9302 + sources."regex-escape-3.4.8" 9303 + sources."registry-auth-token-3.3.1" 9304 + sources."registry-url-3.1.0" 9305 + sources."remedial-1.0.7" 9306 + sources."remove-all-except-outer-links-1.0.3" 9307 + sources."remove-trailing-separator-1.1.0" 9308 + sources."rename-overwrite-1.0.0" 9309 + sources."replace-string-1.1.0" 9310 + sources."request-2.83.0" 9311 + sources."require-directory-2.1.1" 9312 + sources."require-main-filename-1.0.1" 9313 + sources."resolve-from-4.0.0" 9314 + sources."resolve-link-target-1.0.1" 9315 + sources."responselike-1.0.2" 9316 + sources."restore-cursor-2.0.0" 9317 + sources."retry-0.10.1" 9318 + sources."rimraf-2.6.2" 9319 + sources."rimraf-then-1.0.1" 9320 + sources."run-queue-1.0.3" 9321 + sources."safe-buffer-5.1.1" 9322 + sources."sec-1.0.0" 9323 + sources."semver-5.5.0" 9324 + sources."semver-diff-2.1.0" 9325 + sources."semver-regex-1.0.0" 9326 + sources."set-blocking-2.0.0" 9327 + sources."sha-2.0.1" 9328 + sources."shebang-command-1.2.0" 9329 + sources."shebang-regex-1.0.0" 9330 + sources."signal-exit-3.0.2" 9331 + sources."simple-get-1.4.3" 9332 + sources."slash-1.0.0" 9333 + sources."slide-1.1.6" 9334 + sources."smart-buffer-1.1.15" 9335 + sources."sntp-2.1.0" 9336 + sources."socks-1.1.10" 9337 + sources."socks-proxy-agent-3.0.1" 9338 + sources."sort-keys-2.0.0" 9339 + sources."sorted-object-2.0.1" 9340 + (sources."sorted-union-stream-2.1.3" // { 9341 + dependencies = [ 9342 + sources."isarray-1.0.0" 9343 + sources."readable-stream-1.1.14" 9344 + sources."string_decoder-1.0.3" 9345 + ]; 9346 + }) 9347 + sources."source-map-0.6.1" 9348 + sources."spawno-2.0.7" 9349 + sources."spdx-correct-1.0.2" 9350 + sources."spdx-expression-parse-1.0.4" 9351 + sources."spdx-license-ids-1.2.2" 9352 + sources."split2-2.2.0" 9353 + sources."sprintf-js-1.0.3" 9354 + sources."sshpk-1.13.1" 9355 + sources."ssri-5.1.0" 9356 + (sources."stacktracey-1.2.100" // { 9357 + dependencies = [ 9358 + sources."@types/node-8.5.9" 9359 + ]; 9360 + }) 9361 + sources."static-methods-1.0.10" 9362 + sources."stream-each-1.2.2" 9363 + (sources."stream-iterate-1.2.0" // { 9364 + dependencies = [ 9365 + sources."readable-stream-2.3.3" 9366 + ]; 9367 + }) 9368 + sources."stream-shift-1.0.0" 9369 + sources."strict-uri-encode-1.1.0" 9370 + sources."string-width-2.1.1" 9371 + sources."string_decoder-1.0.3" 9372 + sources."stringstream-0.0.5" 9373 + sources."strip-ansi-3.0.1" 9374 + sources."strip-bom-3.0.0" 9375 + sources."strip-color-0.1.0" 9376 + sources."strip-eof-1.0.0" 9377 + sources."strip-json-comments-2.0.1" 9378 + (sources."supi-0.12.1" // { 9379 + dependencies = [ 9380 + sources."@types/node-9.3.0" 9381 + sources."execa-0.9.0" 9382 + sources."npm-lifecycle-2.0.0" 9383 + sources."pify-2.3.0" 9384 + sources."write-file-atomic-1.3.4" 9385 + ]; 9386 + }) 9387 + sources."supports-color-4.5.0" 9388 + sources."symbol-observable-1.1.0" 9389 + sources."symlink-dir-1.1.2" 9390 + sources."tar-4.0.2" 9391 + sources."tar-fs-1.16.0" 9392 + sources."tar-stream-1.5.5" 9393 + (sources."tasklist-3.1.0" // { 9394 + dependencies = [ 9395 + sources."pify-2.3.0" 9396 + ]; 9397 + }) 9398 + sources."term-size-1.2.0" 9399 + sources."text-table-0.2.0" 9400 + sources."thenify-3.3.0" 9401 + sources."thenify-all-1.6.0" 9402 + sources."through-2.3.8" 9403 + sources."through2-2.0.3" 9404 + sources."timed-out-4.0.1" 9405 + sources."timeout-then-1.1.0" 9406 + sources."tough-cookie-2.3.3" 9407 + sources."tree-kill-1.2.0" 9408 + sources."tunnel-agent-0.6.0" 9409 + sources."tweetnacl-0.14.5" 9410 + sources."typedarray-0.0.6" 9411 + sources."typpy-2.3.10" 9412 + sources."uid-number-0.0.6" 9413 + (sources."ul-5.2.13" // { 9414 + dependencies = [ 9415 + sources."deffy-2.2.2" 9416 + ]; 9417 + }) 9418 + sources."umask-1.1.0" 9419 + sources."unbzip2-stream-1.2.5" 9420 + sources."unique-filename-1.1.0" 9421 + sources."unique-slug-2.0.0" 9422 + sources."unique-string-1.0.0" 9423 + sources."unpack-stream-3.0.1" 9424 + sources."unpipe-1.0.0" 9425 + sources."unzip-response-2.0.1" 9426 + sources."update-notifier-2.3.0" 9427 + sources."url-parse-lax-3.0.0" 9428 + sources."url-to-options-1.0.1" 9429 + sources."util-deprecate-1.0.2" 9430 + sources."util-extend-1.0.3" 9431 + sources."util.promisify-1.0.0" 9432 + sources."uuid-3.2.1" 9433 + sources."validate-npm-package-license-3.0.1" 9434 + sources."validate-npm-package-name-3.0.0" 9435 + sources."verror-1.10.0" 9436 + sources."version-selector-type-2.0.0" 9437 + sources."wcwidth-1.0.1" 9438 + sources."which-1.3.0" 9439 + sources."which-module-2.0.0" 9440 + sources."wide-align-1.1.2" 9441 + sources."widest-line-2.0.0" 9442 + sources."worker-farm-1.5.2" 9443 + sources."wrap-ansi-2.1.0" 9444 + sources."wrappy-1.0.2" 9445 + sources."write-file-atomic-2.3.0" 9446 + sources."write-json-file-2.3.0" 9447 + sources."write-pkg-3.1.0" 9448 + sources."write-yaml-file-1.0.0" 9449 + sources."x256-0.0.2" 9450 + sources."xdg-basedir-3.0.0" 9451 + sources."xtend-4.0.1" 9452 + sources."y18n-3.2.1" 9453 + sources."yallist-2.1.2" 9454 + sources."yargs-8.0.2" 9455 + sources."yargs-parser-7.0.0" 9456 + sources."zen-observable-0.7.1" 9457 + sources."zen-push-0.2.1" 9458 + ]; 9459 + buildInputs = globalBuildInputs; 9460 + meta = { 9461 + description = "Fast, disk space efficient package manager"; 9462 + homepage = https://pnpm.js.org/; 9463 + license = "MIT"; 4041 9464 }; 4042 9465 production = true; 4043 9466 bypassCache = true;
+4 -4
pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
··· 1 1 { lib, buildGoPackage, fetchFromGitLab, fetchurl, go-bindata }: 2 2 3 3 let 4 - version = "10.3.0"; 4 + version = "10.4.0"; 5 5 # Gitlab runner embeds some docker images these are prebuilt for arm and x86_64 6 6 docker_x86_64 = fetchurl { 7 7 url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-x86_64.tar.xz"; 8 - sha256 = "0nhxxx2wxnli5nfz8vxqc0mwdjzj836zx3zmywnfyy1k2zybjijv"; 8 + sha256 = "0fcddi1mwgj831abn628zcpwsah3mmvrbdi851pjf8vraynwr2xa"; 9 9 }; 10 10 11 11 docker_arm = fetchurl { 12 12 url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-arm.tar.xz"; 13 - sha256 = "0jacimz4p9k5s9j510g3vn7gg8pybpa20j4cvz4pffrcwl1lgk4i"; 13 + sha256 = "1zlk3i9jzmsqz5r3kzg08z9hyhidw9dpv5ji46bnbjis8q3dlw54"; 14 14 }; 15 15 in 16 16 buildGoPackage rec { ··· 29 29 owner = "gitlab-org"; 30 30 repo = "gitlab-runner"; 31 31 rev = "v${version}"; 32 - sha256 = "0wjy5bbz6bw0na57vglcwzn17q980x6j24qkschqx49rjyk3fz2i"; 32 + sha256 = "0kp6h53d1q652i4wp94hydy1ixlgmqh92sjsc6pqicnfc7nvwgfq"; 33 33 }; 34 34 35 35 patches = [ ./fix-shell-path.patch ];
+2 -2
pkgs/development/tools/dep/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "dep-${version}"; 5 - version = "0.3.1"; 5 + version = "0.4.1"; 6 6 rev = "v${version}"; 7 7 8 8 goPackagePath = "github.com/golang/dep"; ··· 12 12 inherit rev; 13 13 owner = "golang"; 14 14 repo = "dep"; 15 - sha256 = "0dsiaqfrp7ihhx10qapkl6zm3dw3rwdgcr9rkvmq8zprcp7njz90"; 15 + sha256 = "0183xq5l4sinnclynv6xi85vmk69mqpy5wjfsgh8bxwziq3vkd7y"; 16 16 }; 17 17 18 18 buildFlagsArray = ("-ldflags=-s -w -X main.commitHash=${rev} -X main.version=${version}");
-28
pkgs/development/tools/haskell/intero-nix-shim/default.nix
··· 1 - { mkDerivation, base, cabal-install, directory, fetchFromGitHub 2 - , filepath, intero, optparse-applicative, posix-escape, split 3 - , stdenv, unix 4 - }: 5 - mkDerivation { 6 - pname = "intero-nix-shim"; 7 - version = "0.1.2"; 8 - src = fetchFromGitHub { 9 - owner = "michalrus"; 10 - repo = "intero-nix-shim"; 11 - rev = "0.1.2"; 12 - sha256 = "0p1h3w15bgvsbzi7f1n2dxxxz9yq7vmbxmww5igc5d3dm76skgzg"; 13 - }; 14 - isLibrary = false; 15 - isExecutable = true; 16 - executableHaskellDepends = [ 17 - base directory filepath optparse-applicative posix-escape split 18 - unix 19 - ]; 20 - postInstall = '' 21 - mkdir -p $out/libexec 22 - ln -s ${cabal-install}/bin/cabal $out/libexec 23 - ln -s ${intero }/bin/intero $out/libexec 24 - ''; 25 - homepage = https://github.com/michalrus/intero-nix-shim; 26 - license = stdenv.lib.licenses.asl20; 27 - broken = true; # https://hydra.nixos.org/build/66703340 28 - }
-42
pkgs/development/tools/haskell/tinc/default.nix
··· 1 - { mkDerivation, aeson, base, bytestring, Cabal, containers 2 - , directory, exceptions, filelock, filepath, gitrev, graph-wrapper 3 - , hpack, hspec, HUnit, language-dot, mockery, parsec, process 4 - , QuickCheck, safe, stdenv, temporary, time, transformers, unix 5 - , unix-compat, with-location, yaml, fetchFromGitHub 6 - , cabal2nix, cabal-install, makeWrapper 7 - }: 8 - mkDerivation { 9 - pname = "tinc"; 10 - version = "20170624"; 11 - src = fetchFromGitHub { 12 - owner = "sol"; 13 - repo = "tinc"; 14 - rev = "70881515693fd83d381fe045ae76d5257774f5e3"; 15 - sha256 = "0c6sx3vbcnq69dhqhpi01a4p4qss24rwxiz6jmw65rj73adhj4mw"; 16 - }; 17 - isLibrary = false; 18 - isExecutable = true; 19 - executableHaskellDepends = [ 20 - aeson base bytestring Cabal containers directory exceptions 21 - filelock filepath gitrev graph-wrapper hpack language-dot parsec 22 - process temporary time transformers unix-compat with-location yaml 23 - ]; 24 - testHaskellDepends = [ 25 - aeson base bytestring Cabal containers directory exceptions 26 - filelock filepath gitrev graph-wrapper hpack hspec HUnit 27 - language-dot mockery parsec process QuickCheck safe temporary time 28 - transformers unix unix-compat with-location yaml 29 - ]; 30 - postInstall = '' 31 - source ${makeWrapper}/nix-support/setup-hook 32 - wrapProgram $out/bin/tinc \ 33 - --prefix PATH : '${cabal2nix}/bin' \ 34 - --prefix PATH : '${cabal-install}/bin' 35 - ''; 36 - description = "A dependency manager for Haskell"; 37 - homepage = "https://github.com/sol/tinc#readme"; 38 - license = stdenv.lib.licenses.mit; 39 - hydraPlatforms = [ "x86_64-linux" ]; 40 - maintainers = [ stdenv.lib.maintainers.robbinch ]; 41 - broken = true; 42 - }
+5 -8
pkgs/games/cataclysm-dda/default.nix
··· 1 - { fetchFromGitHub, stdenv, makeWrapper, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf, 1 + { fetchFromGitHub, stdenv, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf, 2 2 SDL2_mixer, freetype, gettext, Cocoa, libicns }: 3 3 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "03sdzsk4qdq99qckq0axbsvg1apn6xizscd8pwp5w6kq2fyj5xkv"; 13 13 }; 14 14 15 - nativeBuildInputs = [ makeWrapper pkgconfig ] 15 + nativeBuildInputs = [ pkgconfig ] 16 16 ++ stdenv.lib.optionals stdenv.isDarwin [ libicns ]; 17 17 18 18 buildInputs = [ ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ] ··· 23 23 postPatch = '' 24 24 patchShebangs . 25 25 sed -i Makefile \ 26 - -e 's,-Werror,,g' \ 27 - -e 's,\(DATA_PREFIX=$(PREFIX)/share/\)cataclysm-dda/,\1,g' 26 + -e 's,-Werror,,g' 28 27 29 28 sed '1i#include <cmath>' \ 30 29 -i src/{crafting,skill,weather_data,melee,vehicle,overmap,iuse_actor}.cpp ··· 32 31 33 32 makeFlags = [ 34 33 "PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1" 34 + # "LANGUAGES=all" # vanilla C:DDA installs all translations even without this flag! 35 35 ] ++ stdenv.lib.optionals stdenv.isDarwin [ 36 36 "NATIVE=osx CLANG=1" 37 37 "OSX_MIN=10.6" # SDL for macOS only supports deploying on 10.6 and above ··· 42 42 png2icns data/osx/AppIcon.icns data/osx/AppIcon.iconset/* 43 43 ''; 44 44 45 - postInstall = '' 46 - wrapProgram $out/bin/cataclysm-tiles \ 47 - --add-flags "--datadir $out/share/" 48 - '' + stdenv.lib.optionalString stdenv.isDarwin '' 45 + postInstall = stdenv.lib.optionalString stdenv.isDarwin '' 49 46 app=$out/Applications/Cataclysm.app 50 47 install -D -m 444 data/osx/Info.plist -t $app/Contents 51 48 install -D -m 444 data/osx/AppIcon.icns -t $app/Contents/Resources
+5 -8
pkgs/games/cataclysm-dda/git.nix
··· 1 - { fetchFromGitHub, stdenv, makeWrapper, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf, 1 + { fetchFromGitHub, stdenv, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf, 2 2 SDL2_mixer, freetype, gettext, CoreFoundation, Cocoa }: 3 3 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "1a7kdmx76na4g65zra01qaq98lxp9j2dl9ddv09r0p5yxaizw68z"; 13 13 }; 14 14 15 - nativeBuildInputs = [ makeWrapper pkgconfig ]; 15 + nativeBuildInputs = [ pkgconfig ]; 16 16 17 17 buildInputs = [ ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ] 18 18 ++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Cocoa ]; ··· 22 22 postPatch = '' 23 23 patchShebangs . 24 24 sed -i Makefile \ 25 - -e 's,-Werror,,g' \ 26 - -e 's,\(DATA_PREFIX=$(PREFIX)/share/\)cataclysm-dda/,\1,g' 25 + -e 's,-Werror,,g' 27 26 28 27 sed '1i#include <cmath>' \ 29 28 -i src/{crafting,skill,weather_data,melee,vehicle,overmap,iuse_actor}.cpp ··· 31 30 32 31 makeFlags = [ 33 32 "PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1" 33 + "LANGUAGES=all" 34 34 ] ++ stdenv.lib.optionals stdenv.isDarwin [ 35 35 "NATIVE=osx CLANG=1" 36 36 ]; 37 37 38 - postInstall = '' 39 - wrapProgram $out/bin/cataclysm-tiles \ 40 - --add-flags "--datadir $out/share/cataclysm-dda/" 41 - '' + stdenv.lib.optionalString stdenv.isDarwin '' 38 + postInstall = stdenv.lib.optionalString stdenv.isDarwin '' 42 39 app=$out/Applications/Cataclysm.app 43 40 install -D -m 444 data/osx/Info.plist -t $app/Contents 44 41 install -D -m 444 data/osx/AppIcon.icns -t $app/Contents/Resources
+2
pkgs/games/linux-steam-integration/default.nix
··· 27 27 sed -i -e "s|/usr/|$out/|g" src/shim/shim.c 28 28 sed -i -e "s|/usr/|$out/|g" data/lsi-steam.desktop 29 29 sed -i -e "s|zenity|${zenityBinPath}|g" src/lsi/lsi.c 30 + sed -i -e "s|Name=Linux Steam Integration|Name=Linux Steam Integration Settings|" data/lsi-settings.desktop.in 31 + 30 32 ''; 31 33 32 34 configurePhase = ''
+3 -3
pkgs/misc/emulators/citra/default.nix
··· 1 1 { stdenv, fetchgit, cmake, SDL2, qtbase, boost, curl, gtest }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "citra-2017-07-26"; 4 + name = "citra-2018-01-24"; 5 5 6 6 # Submodules 7 7 src = fetchgit { 8 8 url = "https://github.com/citra-emu/citra"; 9 - rev = "a724fb365787718f9e44adedc14e59d0854905a6"; 10 - sha256 = "0lkrwhxvq85c0smix27xvj8m463bxa67qhy8m8r43g39n0h8d5sf"; 9 + rev = "33b0b5163fdb08bc8aa1d7eb83e0931a14ed3046"; 10 + sha256 = "07z32d8lj84yy3l5iqpk37mnmvzjmppqhyqr64kbx14dh5hb6cbj"; 11 11 }; 12 12 13 13 nativeBuildInputs = [ cmake ];
+7 -4
pkgs/misc/emulators/wine/default.nix
··· 56 56 }); 57 57 58 58 in if wineRelease == "staging" then 59 - callPackage ./staging.nix { 60 - inherit libtxc_dxtn_Name; 61 - wineUnstable = wine-build wineBuild "unstable"; 62 - } 59 + let wineUnstable = wine-build wineBuild "unstable"; in 60 + # wine staging is not yet at 3.0, using unstable 61 + # FIXME update winestaging sources 62 + wineUnstable 63 + # callPackage ./staging.nix { 64 + # inherit libtxc_dxtn_Name wineUnstable; 65 + # } 63 66 else 64 67 wine-build wineBuild wineRelease
+7 -3
pkgs/misc/emulators/wine/sources.nix
··· 39 39 40 40 unstable = fetchurl rec { 41 41 # NOTE: Don't forget to change the SHA256 for staging as well. 42 - version = "2.21"; 43 - url = "https://dl.winehq.org/wine/source/2.x/wine-${version}.tar.xz"; 44 - sha256 = "1vxbnikdpsmca3nx064mqrm83xpjsfshy25mdfxmyg5vrzl09yms"; 42 + version = "3.0"; 43 + url = "https://dl.winehq.org/wine/source/3.0/wine-${version}.tar.xz"; 44 + sha256 = "1v7vq9iinkscbq6wg85fb0d2137660fg2nk5iabxkl2wr850asil"; 45 45 inherit (stable) mono gecko32 gecko64; 46 46 }; 47 47 48 48 staging = fetchFromGitHub rec { 49 + # https://github.com/wine-compholio/wine-staging/releases 49 50 inherit (unstable) version; 51 + # FIXME update winestaging sources, when 3.0 is released 52 + # FIXME then revert the staging derivation in ./default.nix 50 53 sha256 = "1qznp4kgss4mhk1vvr91jmszsi47xg312r64l76jkgwijhypmvb7"; 51 54 owner = "wine-compholio"; 52 55 repo = "wine-staging"; ··· 54 57 }; 55 58 56 59 winetricks = fetchFromGitHub rec { 60 + # https://github.com/Winetricks/winetricks/releases 57 61 version = "20171222"; 58 62 sha256 = "04risg44kqq8z9nsflw7m7dqykw2aii8m8j495z6fgb7p0pi8ny9"; 59 63 owner = "Winetricks";
+2 -2
pkgs/os-specific/linux/kernel/linux-hardened-copperhead.nix
··· 3 3 with stdenv.lib; 4 4 5 5 let 6 - version = "4.14.14"; 6 + version = "4.14.15"; 7 7 revision = "a"; 8 - sha256 = "1jaln2xa6hhnd3vy6zmvhzq0hli2df3kw0ivcyrbrpw7p6h5z4ds"; 8 + sha256 = "1ziw1wbbm35rkj69in4f2b28slplxdsz43w29hxngbp88137h1vx"; 9 9 10 10 # modVersion needs to be x.y.z, will automatically add .0 if needed 11 11 modVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
+32
pkgs/os-specific/linux/rdma-core/default.nix
··· 1 + { stdenv, fetchFromGitHub, cmake, pkgconfig 2 + , ethtool, libnl, libudev, python, perl 3 + } : 4 + 5 + let 6 + version = "16.1"; 7 + 8 + in stdenv.mkDerivation { 9 + name = "rdma-core-${version}"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "linux-rdma"; 13 + repo = "rdma-core"; 14 + rev = "v${version}"; 15 + sha256 = "1fixw6hpf732vzlpczx0b2y84jrhgfjr3cljqxky7makzgh2s7ng"; 16 + }; 17 + 18 + nativeBuildInputs = [ cmake pkgconfig ]; 19 + buildInputs = [ libnl ethtool libudev python perl ]; 20 + 21 + postFixup = '' 22 + substituteInPlace $out/bin/rxe_cfg --replace ethtool "${ethtool}/bin/ethtool" 23 + ''; 24 + 25 + meta = with stdenv.lib; { 26 + description = "RDMA Core Userspace Libraries and Daemons"; 27 + homepage = https://github.com/linux-rdma/rdma-core; 28 + license = licenses.gpl2; 29 + maintainers = with maintainers; [ markuskowa ]; 30 + }; 31 + } 32 +
+6 -12
pkgs/servers/monitoring/prometheus/alertmanager.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "alertmanager-${version}"; 5 - version = "0.9.1"; 5 + version = "0.13.0"; 6 6 rev = "v${version}"; 7 7 8 8 goPackagePath = "github.com/prometheus/alertmanager"; ··· 11 11 inherit rev; 12 12 owner = "prometheus"; 13 13 repo = "alertmanager"; 14 - sha256 = "1lkfj63pp4jf58xmn015r7s42p1wyj6fryihpmdn0k76b0ccwqzj"; 14 + sha256 = "170q5fynwa3g3wm77g61610n1lf5kqirhrgak6slqzn52ji870nc"; 15 15 }; 16 16 17 17 # Tests exist, but seem to clash with the firewall. 18 18 doCheck = false; 19 19 20 - buildFlagsArray = let t = "${goPackagePath}/version"; in '' 20 + buildFlagsArray = let t = "${goPackagePath}/vendor/github.com/prometheus/common/version"; in '' 21 21 -ldflags= 22 22 -X ${t}.Version=${version} 23 - -X ${t}.Revision=unknown 23 + -X ${t}.Revision=${src.rev} 24 24 -X ${t}.Branch=unknown 25 25 -X ${t}.BuildUser=nix@nixpkgs 26 26 -X ${t}.BuildDate=unknown 27 27 -X ${t}.GoVersion=${stdenv.lib.getVersion go} 28 28 ''; 29 29 30 - postBuild = '' 31 - $NIX_BUILD_TOP/go/bin/artifacts 32 - ''; 33 - 34 30 postInstall = '' 35 - rm $bin/bin/artifacts 36 - mkdir -p $bin/share/man/man1 $bin/etc/bash_completion.d 37 - cp -v amtool*.1 $bin/share/man/man1 38 - cp -v amtool_completion.sh $bin/etc/bash_completion.d 31 + mkdir -p $bin/etc/bash_completion.d 32 + $NIX_BUILD_TOP/go/bin/amtool --completion-script-bash > $bin/etc/bash_completion.d/amtool_completion.sh 39 33 ''; 40 34 41 35 meta = with stdenv.lib; {
+93
pkgs/servers/monitoring/prometheus/dovecot-exporter-deps.nix
··· 1 + # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 + [ 3 + { 4 + goPackagePath = "github.com/alecthomas/template"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/alecthomas/template"; 8 + rev = "a0175ee3bccc567396460bf5acd36800cb10c49c"; 9 + sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"; 10 + }; 11 + } 12 + { 13 + goPackagePath = "github.com/alecthomas/units"; 14 + fetch = { 15 + type = "git"; 16 + url = "https://github.com/alecthomas/units"; 17 + rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a"; 18 + sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; 19 + }; 20 + } 21 + { 22 + goPackagePath = "github.com/beorn7/perks"; 23 + fetch = { 24 + type = "git"; 25 + url = "https://github.com/beorn7/perks"; 26 + rev = "4c0e84591b9aa9e6dcfdf3e020114cd81f89d5f9"; 27 + sha256 = "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y"; 28 + }; 29 + } 30 + { 31 + goPackagePath = "github.com/golang/protobuf"; 32 + fetch = { 33 + type = "git"; 34 + url = "https://github.com/golang/protobuf"; 35 + rev = "c65a0412e71e8b9b3bfd22925720d23c0f054237"; 36 + sha256 = "1ch3czyzq5abl6zm1l0dfsi09xj43ql9jcbmbhfhxz954pw03v3v"; 37 + }; 38 + } 39 + { 40 + goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; 41 + fetch = { 42 + type = "git"; 43 + url = "https://github.com/matttproud/golang_protobuf_extensions"; 44 + rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c"; 45 + sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; 46 + }; 47 + } 48 + { 49 + goPackagePath = "github.com/prometheus/client_golang"; 50 + fetch = { 51 + type = "git"; 52 + url = "https://github.com/prometheus/client_golang"; 53 + rev = "06bc6e01f4baf4ee783ffcd23abfcb0b0f9dfada"; 54 + sha256 = "0dvv21214sn702kc25y5l0gd9d11358976d3w31fgwx7456mjx26"; 55 + }; 56 + } 57 + { 58 + goPackagePath = "github.com/prometheus/client_model"; 59 + fetch = { 60 + type = "git"; 61 + url = "https://github.com/prometheus/client_model"; 62 + rev = "99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c"; 63 + sha256 = "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998"; 64 + }; 65 + } 66 + { 67 + goPackagePath = "github.com/prometheus/common"; 68 + fetch = { 69 + type = "git"; 70 + url = "https://github.com/prometheus/common"; 71 + rev = "89604d197083d4781071d3c65855d24ecfb0a563"; 72 + sha256 = "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn"; 73 + }; 74 + } 75 + { 76 + goPackagePath = "github.com/prometheus/procfs"; 77 + fetch = { 78 + type = "git"; 79 + url = "https://github.com/prometheus/procfs"; 80 + rev = "cb4147076ac75738c9a7d279075a253c0cc5acbd"; 81 + sha256 = "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca"; 82 + }; 83 + } 84 + { 85 + goPackagePath = "gopkg.in/alecthomas/kingpin.v2"; 86 + fetch = { 87 + type = "git"; 88 + url = "https://gopkg.in/alecthomas/kingpin.v2"; 89 + rev = "947dcec5ba9c011838740e680966fd7087a71d0d"; 90 + sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"; 91 + }; 92 + } 93 + ]
+25
pkgs/servers/monitoring/prometheus/dovecot-exporter.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "dovecot_exporter-unstable-${version}"; 5 + version = "2018-01-18"; 6 + rev = "4e831356533e2321031df73ebd25dd55dbd8d385"; 7 + 8 + goPackagePath = "github.com/kumina/dovecot_exporter"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "kumina"; 12 + repo = "dovecot_exporter"; 13 + inherit rev; 14 + sha256 = "0iky1i7m5mlknkhlpsxpjgigssg5m02nx5y7i4biddkqilfic74n"; 15 + }; 16 + 17 + goDeps = ./dovecot-exporter-deps.nix; 18 + 19 + meta = with stdenv.lib; { 20 + inherit (src.meta) homepage; 21 + description = "Prometheus metrics exporter for Dovecot"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ willibutz ]; 24 + }; 25 + }
+66
pkgs/servers/monitoring/prometheus/postfix-exporter-deps.nix
··· 1 + # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 + [ 3 + { 4 + goPackagePath = "github.com/beorn7/perks"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/beorn7/perks"; 8 + rev = "4c0e84591b9aa9e6dcfdf3e020114cd81f89d5f9"; 9 + sha256 = "1hrybsql68xw57brzj805xx2mghydpdiysv3gbhr7f5wlxj2514y"; 10 + }; 11 + } 12 + { 13 + goPackagePath = "github.com/golang/protobuf"; 14 + fetch = { 15 + type = "git"; 16 + url = "https://github.com/golang/protobuf"; 17 + rev = "c65a0412e71e8b9b3bfd22925720d23c0f054237"; 18 + sha256 = "1ch3czyzq5abl6zm1l0dfsi09xj43ql9jcbmbhfhxz954pw03v3v"; 19 + }; 20 + } 21 + { 22 + goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; 23 + fetch = { 24 + type = "git"; 25 + url = "https://github.com/matttproud/golang_protobuf_extensions"; 26 + rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c"; 27 + sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; 28 + }; 29 + } 30 + { 31 + goPackagePath = "github.com/prometheus/client_golang"; 32 + fetch = { 33 + type = "git"; 34 + url = "https://github.com/prometheus/client_golang"; 35 + rev = "06bc6e01f4baf4ee783ffcd23abfcb0b0f9dfada"; 36 + sha256 = "0dvv21214sn702kc25y5l0gd9d11358976d3w31fgwx7456mjx26"; 37 + }; 38 + } 39 + { 40 + goPackagePath = "github.com/prometheus/client_model"; 41 + fetch = { 42 + type = "git"; 43 + url = "https://github.com/prometheus/client_model"; 44 + rev = "99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c"; 45 + sha256 = "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998"; 46 + }; 47 + } 48 + { 49 + goPackagePath = "github.com/prometheus/common"; 50 + fetch = { 51 + type = "git"; 52 + url = "https://github.com/prometheus/common"; 53 + rev = "89604d197083d4781071d3c65855d24ecfb0a563"; 54 + sha256 = "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn"; 55 + }; 56 + } 57 + { 58 + goPackagePath = "github.com/prometheus/procfs"; 59 + fetch = { 60 + type = "git"; 61 + url = "https://github.com/prometheus/procfs"; 62 + rev = "cb4147076ac75738c9a7d279075a253c0cc5acbd"; 63 + sha256 = "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca"; 64 + }; 65 + } 66 + ]
+25
pkgs/servers/monitoring/prometheus/postfix-exporter.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "postfix_exporter-unstable-${version}"; 5 + version = "2017-06-01"; 6 + rev = "a8b4bed735a03f234fcfffba85302f51025e6b1d"; 7 + 8 + goPackagePath = "github.com/kumina/postfix_exporter"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "kumina"; 12 + repo = "postfix_exporter"; 13 + inherit rev; 14 + sha256 = "0rxvjpyjcvr1y8k8skq5f1bnl0mpgvaa04dn8c44v7afqnv78riy"; 15 + }; 16 + 17 + goDeps = ./postfix-exporter-deps.nix; 18 + 19 + meta = with stdenv.lib; { 20 + inherit (src.meta) homepage; 21 + description = "A Prometheus exporter for Postfix"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ willibutz ]; 24 + }; 25 + }
+2 -2
pkgs/servers/monitoring/uchiwa/bower-packages.nix
··· 1 1 # Generated by bower2nix v3.2.0 (https://github.com/rvl/bower2nix) 2 2 { fetchbower, buildEnv }: 3 3 buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [ 4 - (fetchbower "uchiwa-web" "1.1.1" "1.1.1" "19f9xprmjkhk4wbb88xmnp1fhqp2zc3gazzi4iczg65jzak4xzw0") 4 + (fetchbower "uchiwa-web" "1.1.2" "1.1.2" "174flmnqjm0avpvi71ii5cvas2wkgz42is38r7n4zyrhagzlj66k") 5 5 (fetchbower "angular" "1.6.8" "~1.6.3" "07bwbahxaz5myjj7sqv7k211avs23a9j7msl373h1qvp05fblajf") 6 6 (fetchbower "angular-bootstrap" "2.2.0" "~2.2.0" "11r2nlwp6xrim2y6lnrr8v064mx3bmlxchqpg1i803v9zxz3q53d") 7 7 (fetchbower "angular-cookies" "1.6.8" "~1.6.3" "0p3skdg2pmzgwm9a0gyl1vhq4lcwyrymmii7lxlrmypjhwm83il6") ··· 21 21 (fetchbower "moment-picker" "0.9.11" "~0.9.7" "0p2g6rp2kcixydrga9lfihg4bxb598rvpi8n8l59mp549diy7vsb") 22 22 (fetchbower "ua-parser-js" "0.7.17" "~0.7.12" "1dx46rm9han9fj409rjxrlnrk9zxmaqbnn62ljnh32ihngd4yxh0") 23 23 (fetchbower "jsoneditor" "5.5.11" "~5.5.10" "1gfsf8jqnd3hb3r9s9246mg40iqxk2ix8k4bjnrsbfmg6cd3xw6x") 24 - (fetchbower "jquery" "3.2.1" ">= 1.9.0" "03vn0kq07yxl3i5shc6b0mjck1vdbz1x0jspd3wwb169mvlsxxn3") 24 + (fetchbower "jquery" "3.3.1" ">= 1.9.0" "1l891s3vgnpi1g8ksplid9jvrvnnv6lci8vraix4ssy50i264rkx") 25 25 ]; }
+2 -2
pkgs/servers/monitoring/uchiwa/src.nix
··· 1 1 { 2 - version = "1.1.1-1"; 3 - sha256 = "1j1l5cmhiz19k6lhvaxqhgkj7v5m3fyxpkspvbrdbmp461g4j9bi"; 2 + version = "1.1.2-1"; 3 + sha256 = "0fmzpjwmv7fkl0ihy2gzcgfd384k3wnifg42gzap770d6kl6yj1c"; 4 4 }
+15
pkgs/servers/samba/4.x-no-persistent-install-dynconfig.patch
··· 1 + diff -ru3 samba-4.4.6/dynconfig/wscript samba-4.4.6-new/dynconfig/wscript 2 + --- samba-4.4.6/dynconfig/wscript 2016-01-26 14:45:46.000000000 +0300 3 + +++ samba-4.4.6-new/dynconfig/wscript 2016-10-15 22:21:18.159705132 +0300 4 + @@ -416,11 +416,3 @@ 5 + public_headers=os_path_relpath(os.path.join(Options.launch_dir, version_header), bld.curdir), 6 + header_path='samba', 7 + cflags=cflags) 8 + - 9 + - # install some extra empty directories 10 + - bld.INSTALL_DIRS("", "${CONFIGDIR} ${PRIVATE_DIR} ${LOGFILEBASE}"); 11 + - bld.INSTALL_DIRS("", "${PRIVATE_DIR} ${PRIVILEGED_SOCKET_DIR}") 12 + - bld.INSTALL_DIRS("", "${STATEDIR} ${CACHEDIR}"); 13 + - 14 + - # these might be on non persistent storage 15 + - bld.INSTALL_DIRS("", "${LOCKDIR} ${PIDDIR} ${SOCKET_DIR}")
-15
pkgs/servers/samba/4.x-no-persistent-install.patch
··· 37 37 # Unit tests 38 38 ctdb_unit_tests = [ 39 39 'db_hash_test', 40 - diff -ru3 samba-4.4.6/dynconfig/wscript samba-4.4.6-new/dynconfig/wscript 41 - --- samba-4.4.6/dynconfig/wscript 2016-01-26 14:45:46.000000000 +0300 42 - +++ samba-4.4.6-new/dynconfig/wscript 2016-10-15 22:21:18.159705132 +0300 43 - @@ -416,11 +416,3 @@ 44 - public_headers=os_path_relpath(os.path.join(Options.launch_dir, version_header), bld.curdir), 45 - header_path='samba', 46 - cflags=cflags) 47 - - 48 - - # install some extra empty directories 49 - - bld.INSTALL_DIRS("", "${CONFIGDIR} ${PRIVATE_DIR} ${LOGFILEBASE}"); 50 - - bld.INSTALL_DIRS("", "${PRIVATE_DIR} ${PRIVILEGED_SOCKET_DIR}") 51 - - bld.INSTALL_DIRS("", "${STATEDIR} ${CACHEDIR}"); 52 - - 53 - - # these might be on non persistent storage 54 - - bld.INSTALL_DIRS("", "${LOCKDIR} ${PIDDIR} ${SOCKET_DIR}")
+1
pkgs/servers/samba/4.x.nix
··· 31 31 patches = 32 32 [ ./4.x-no-persistent-install.patch 33 33 ./patch-source3__libads__kerberos_keytab.c.patch 34 + ./4.x-no-persistent-install-dynconfig.patch 34 35 ]; 35 36 36 37 buildInputs =
+29
pkgs/servers/samba/master.nix
··· 1 + { lib, stdenv, fetchFromGitHub 2 + , samba4 3 + , nettle 4 + } : 5 + 6 + (samba4.overrideAttrs(oldAttrs: rec { 7 + name = "samba-master${version}"; 8 + version = "4.8.0_2018-01-25"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "samba-team"; 12 + repo = "samba"; 13 + rev = "849169a7b6ed0beb78bbddf25537521c1ed2f8e1"; 14 + sha256 = "1535w787cy1x5ia9arjrg6hhf926wi8wm9qj0k0jgydy3600zpbv"; 15 + }; 16 + 17 + # Remove unnecessary install flags, same as <4.8 patch 18 + postPatch = oldAttrs.postPatch + '' 19 + sed -i '423,433d' dynconfig/wscript 20 + ''; 21 + 22 + patches = [ ./4.x-no-persistent-install.patch ]; 23 + buildInputs = [ nettle ] ++ oldAttrs.buildInputs; 24 + meta.branch = "master"; 25 + })).override { 26 + # samba4.8+ removed the ability to disable LDAP. 27 + # Enable for base derivation here: 28 + enableLDAP = true; 29 + }
+2 -2
pkgs/servers/search/groonga/default.nix
··· 7 7 stdenv.mkDerivation rec { 8 8 9 9 name = "groonga-${version}"; 10 - version = "7.0.8"; 10 + version = "7.1.0"; 11 11 12 12 src = fetchurl { 13 13 url = "http://packages.groonga.org/source/groonga/${name}.tar.gz"; 14 - sha256 = "1j5biji86dicm8whbqjgjmyycxsfl5qfyxqfc4bxaspd6w18vj87"; 14 + sha256 = "1v0dyahlq7801bgcyvawj8waw6z84r0sr90x2b8nnrisrac3b8m7"; 15 15 }; 16 16 17 17 buildInputs = with stdenv.lib;
+2 -2
pkgs/servers/traefik/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "traefik-${version}"; 5 - version = "1.4.6"; 5 + version = "1.5.0"; 6 6 7 7 goPackagePath = "github.com/containous/traefik"; 8 8 ··· 10 10 owner = "containous"; 11 11 repo = "traefik"; 12 12 rev = "v${version}"; 13 - sha256 = "1sd7wfp1hvq505lgybbaiq9d1hyygzf5jgl0qidn103xnf1yqaw0"; 13 + sha256 = "0yvmw99knjdfgaa3snk4fmrbf3bqnj78ix5hr0mcqj5pwjx1dihb"; 14 14 }; 15 15 16 16 buildInputs = [ go-bindata bash ];
+4 -3
pkgs/tools/audio/abcmidi/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "abcMIDI-${version}"; 5 - version = "2018.01.02"; 5 + version = "2018.01.25"; 6 6 7 - # You can find new releases on http://ifdo.ca/~seymour/runabc/top.html 8 7 src = fetchzip { 9 8 url = "http://ifdo.ca/~seymour/runabc/${name}.zip"; 10 - sha256 = "0s8wm637dgzgpgdxba3a6fh06i0c4iwvv9cdghh8msnx428k68iw"; 9 + sha256 = "18h6gqhh75qdi8krpp0m2pxbxi0n08wrh8xay477jm3vaggyr8s9"; 11 10 }; 12 11 13 12 # There is also a file called "makefile" which seems to be preferred by the standard build phase ··· 15 14 16 15 meta = with stdenv.lib; { 17 16 homepage = http://abc.sourceforge.net/abcMIDI/; 17 + downloadPage = https://ifdo.ca/~seymour/runabc/top.html; 18 18 license = licenses.gpl2Plus; 19 19 description = "Utilities for converting between abc and MIDI"; 20 + platforms = platforms.unix; 20 21 maintainers = [ maintainers.dotlambda ]; 21 22 }; 22 23 }
+12
pkgs/tools/compression/brotli/default.nix
··· 17 17 18 18 outputs = [ "out" "dev" "lib" ]; 19 19 20 + doCheck = true; 21 + 22 + checkTarget = "test"; 23 + 20 24 # This breaks on Darwin because our cmake hook tries to make a build folder 21 25 # and the wonderful bazel BUILD file is already there (yay case-insensitivity?) 22 26 prePatch = "rm BUILD"; 27 + 28 + # Don't bother with "man" output for now, 29 + # it currently only makes the manpages hard to use. 30 + postInstall = '' 31 + mkdir -p $out/share/man/man{1,3} 32 + cp ../docs/*.1 $out/share/man/man1/ 33 + cp ../docs/*.3 $out/share/man/man3/ 34 + ''; 23 35 24 36 meta = with stdenv.lib; { 25 37 inherit (src.meta) homepage;
+5 -7
pkgs/tools/misc/clipster/default.nix
··· 1 - {fetchFromGitHub , stdenv, makeWrapper, python3, gtk3, libwnck3 }: 1 + {fetchFromGitHub , stdenv, python3, gtk3, libwnck3, 2 + gobjectIntrospection, wrapGAppsHook }: 2 3 3 4 stdenv.mkDerivation rec { 4 5 name = "clipster-${version}"; 5 - version = "1.4.1"; 6 + version = "1.5.0"; 6 7 7 8 src = fetchFromGitHub { 8 9 owner = "mrichar1"; 9 10 repo = "clipster"; 10 11 rev = "${version}"; 11 - sha256 = "16gdrm985qwbrsmsqjfyh33glcmx678abl2jpq49djk2qrbhm49k"; 12 + sha256 = "0bj7fk19z3c29vxm3mcp3s7vggkigmz3hrn4pcsqgfh96i5i5203"; 12 13 }; 13 14 14 15 pythonEnv = python3.withPackages(ps: with ps; [ pygobject3 ]); 15 16 16 - buildInputs = [ pythonEnv gtk3 libwnck3 ]; 17 - nativeBuildInputs = [ makeWrapper ]; 17 + buildInputs = [ pythonEnv gtk3 libwnck3 gobjectIntrospection wrapGAppsHook ]; 18 18 19 19 installPhase = '' 20 20 sed -i 's/python/python3/g' clipster 21 21 mkdir -p $out/bin/ 22 22 cp clipster $out/bin/ 23 - wrapProgram "$out/bin/clipster" \ 24 - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" 25 23 ''; 26 24 27 25 meta = with stdenv.lib; {
+2 -2
pkgs/tools/misc/parallel/default.nix
··· 1 1 { fetchurl, stdenv, perl, makeWrapper, procps }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "parallel-20171022"; 4 + name = "parallel-20180122"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://gnu/parallel/${name}.tar.bz2"; 8 - sha256 = "18pq10npl7g764ww7cy9r5n5s3kiy984jclf932qfgndcxsbpqpp"; 8 + sha256 = "1wkbppb4mc56grl6jsp803sf0hm7mg5ff7qmxalp7sd0vxqw41p9"; 9 9 }; 10 10 11 11 nativeBuildInputs = [ makeWrapper perl ];
+23
pkgs/tools/misc/you-get/default.nix
··· 1 + { stdenv, buildPythonApplication, fetchPypi }: 2 + 3 + buildPythonApplication rec { 4 + pname = "you-get"; 5 + version = "0.4.1011"; 6 + 7 + # Tests aren't packaged, but they all hit the real network so 8 + # probably aren't suitable for a build environment anyway. 9 + doCheck = false; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "0h6aspnfic30s89xsv6qss1jfka9px4ll60bqrjbds4y0k3h818g"; 14 + }; 15 + 16 + meta = with stdenv.lib; { 17 + description = "A tiny command line utility to download media contents from the web"; 18 + homepage = https://you-get.org; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ ryneeverett ]; 21 + platforms = platforms.all; 22 + }; 23 + }
+2 -2
pkgs/tools/misc/yubikey-personalization/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "yubikey-personalization-${version}"; 5 - version = "1.18.0"; 5 + version = "1.18.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://developers.yubico.com/yubikey-personalization/Releases/ykpers-${version}.tar.gz"; 9 - sha256 = "1bc2z6y2x7bbqn7ink2dg3wrgqzlcq2zxxg0cdcxy6jm7c9kwcyg"; 9 + sha256 = "0mjjkk6p8d0kblj6vzld4v188y40ynprvd2hnfh7m1hs28wbkzcz"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkgconfig ];
+2 -2
pkgs/tools/networking/aria2/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "aria2-${version}"; 8 - version = "1.33.0"; 8 + version = "1.33.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aria2"; 12 12 repo = "aria2"; 13 13 rev = "release-${version}"; 14 - sha256 = "07i9wrj7bs9770ppx943zgn8j9zvffxg2pib4w5ljxapqldhwrsq"; 14 + sha256 = "0ai84ijgsvnixwhxkj8if2mj9hcg2a41w81vy8bdvi89h3bmq9zf"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ pkgconfig autoreconfHook ];
+11 -9
pkgs/tools/networking/pykms/default.nix
··· 1 - { stdenv, fetchFromGitHub, python2Packages, writeText, writeScript 1 + { stdenv, fetchFromGitHub, python3Packages, writeText, writeScript 2 2 , coreutils, sqlite }: 3 + 4 + with python3Packages; 3 5 4 6 let 5 7 dbSql = writeText "create_pykms_db.sql" '' ··· 27 29 fi 28 30 ''); 29 31 30 - in python2Packages.buildPythonApplication rec { 32 + in buildPythonApplication rec { 31 33 name = "pykms-${version}"; 32 - version = "20170719"; 34 + version = "20171224"; 33 35 34 36 src = fetchFromGitHub { 35 37 owner = "ThunderEX"; 36 38 repo = "py-kms"; 37 - rev = "27355d88affd740330174a7c2bae9f50b9efce56"; 38 - sha256 = "0cpywj73jmyijjc5hs3b00argjsdwpqzmhawbxkx3mc2l4sgzc88"; 39 + rev = "885f67904f002042d7758e38f9c5426461c5cdc7"; 40 + sha256 = "155khy1285f8xkzi6bsqm9vzz043jsjmp039va1qsh675gz3q9ha"; 39 41 }; 40 42 41 - propagatedBuildInputs = with python2Packages; [ argparse pytz ]; 43 + propagatedBuildInputs = [ argparse pytz ]; 42 44 43 45 prePatch = '' 44 - siteDir=$out/${python2Packages.python.sitePackages} 46 + siteDir=$out/${python.sitePackages} 45 47 46 48 substituteInPlace kmsBase.py \ 47 49 --replace "'KmsDataBase.xml'" "'$siteDir/KmsDataBase.xml'" ··· 60 62 mv * $siteDir 61 63 for b in client server ; do 62 64 chmod 0755 $siteDir/$b.py 63 - makeWrapper ${python2Packages.python.interpreter} $out/bin/$b.py \ 65 + makeWrapper ${python.interpreter} $out/bin/$b.py \ 64 66 --add-flags $siteDir/$b.py 65 67 done 66 68 ··· 68 70 69 71 mv $siteDir/README.md $out/share/doc/pykms/ 70 72 71 - ${python2Packages.python.interpreter} -m compileall $siteDir 73 + ${python.interpreter} -m compileall $siteDir 72 74 73 75 runHook postInstall 74 76 '';
+2 -2
pkgs/tools/networking/whois/default.nix
··· 1 1 { stdenv, fetchFromGitHub, perl, gettext, pkgconfig, libidn2, libiconv }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "5.2.20"; 4 + version = "5.3.0"; 5 5 name = "whois-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rfc1036"; 9 9 repo = "whois"; 10 10 rev = "v${version}"; 11 - sha256 = "1aamasivfnghr9my1j6c1rf0dfal45axjcjf3mpv0g942bkxqp5b"; 11 + sha256 = "01pfl1ap62hc27574sx1a4yaaf7hr2zkksspn5z97sgacl6h1rnf"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ perl gettext pkgconfig ];
+10 -19
pkgs/tools/security/clamav/default.nix
··· 1 - { stdenv, fetchurl, fetchpatch, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl 2 - , libmilter, pcre }: 1 + { stdenv, fetchurl, fetchpatch, pkgconfig 2 + , zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre 3 + }: 3 4 4 5 stdenv.mkDerivation rec { 5 6 name = "clamav-${version}"; 6 - version = "0.99.2"; 7 + version = "0.99.3"; 7 8 8 9 src = fetchurl { 9 10 url = "https://www.clamav.net/downloads/production/${name}.tar.gz"; 10 - sha256 = "0yh2q318bnmf2152g2h1yvzgqbswn0wvbzb8p4kf7v057shxcyqn"; 11 + sha256 = "114f7qk3h0klgm0zzn2394n5spcn91vjc9mq6m03l2p0ls955yh0"; 11 12 }; 12 13 13 - patches = [ 14 - (fetchpatch { 15 - name = "CVE-2017-6420.patch"; 16 - url = "https://github.com/vrtadmin/clamav-devel/commit/dfc00cd3301a42b571454b51a6102eecf58407bc.patch"; 17 - sha256 = "08w3p3a4pmi0cmcmyxkagsbn3g0jgx1jqlc34pn141x0qzrlqr60"; 18 - }) 19 - ]; 20 - 21 14 # don't install sample config files into the absolute sysconfdir folder 22 15 postPatch = '' 23 16 substituteInPlace Makefile.in --replace ' etc ' ' ' 24 17 ''; 25 18 19 + nativeBuildInputs = [ pkgconfig ]; 26 20 buildInputs = [ 27 21 zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre 28 22 ]; 29 23 24 + patches = [ ./fd-leak.patch ]; 25 + 30 26 configureFlags = [ 31 27 "--sysconfdir=/etc/clamav" 32 - "--with-zlib=${zlib.dev}" 33 - "--disable-zlib-vcheck" # it fails to recognize that 1.2.10 >= 1.2.2 34 28 "--disable-llvm" # enabling breaks the build at the moment 35 - "--with-libbz2-prefix=${bzip2.dev}" 36 - "--with-iconv-dir=${libiconv}" 29 + "--with-zlib=${zlib.dev}" 37 30 "--with-xml=${libxml2.dev}" 38 31 "--with-openssl=${openssl.dev}" 39 - "--with-libncurses-prefix=${ncurses.dev}" 40 32 "--with-libcurl=${curl.dev}" 41 - "--with-pcre=${pcre.dev}" 42 33 "--enable-milter" 43 34 ]; 44 35 ··· 51 42 homepage = http://www.clamav.net; 52 43 description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats"; 53 44 license = licenses.gpl2; 54 - maintainers = with maintainers; [ phreedom robberer qknight ]; 45 + maintainers = with maintainers; [ phreedom robberer qknight fpletz ]; 55 46 platforms = platforms.linux; 56 47 }; 57 48 }
+49
pkgs/tools/security/clamav/fd-leak.patch
··· 1 + --- a/libclamav/scanners.c 2018-01-26 16:59:00.820231425 +0100 2 + +++ b/libclamav/scanners.c 2018-01-26 17:39:07.523633805 +0100 3 + @@ -1366,12 +1366,14 @@ 4 + 5 + if ((ret = cli_ac_initdata(&tmdata, troot?troot->ac_partsigs:0, troot?troot->ac_lsigs:0, troot?troot->ac_reloff_num:0, CLI_DEFAULT_AC_TRACKLEN))) { 6 + free(tmpname); 7 + + free(normalized); 8 + return ret; 9 + } 10 + 11 + if ((ret = cli_ac_initdata(&gmdata, groot->ac_partsigs, groot->ac_lsigs, groot->ac_reloff_num, CLI_DEFAULT_AC_TRACKLEN))) { 12 + cli_ac_freedata(&tmdata); 13 + free(tmpname); 14 + + free(normalized); 15 + return ret; 16 + } 17 + 18 + @@ -1390,6 +1392,7 @@ 19 + cli_errmsg("cli_scanscript: can't write to file %s\n",tmpname); 20 + close(ofd); 21 + free(tmpname); 22 + + free(normalized); 23 + return CL_EWRITE; 24 + } 25 + text_normalize_reset(&state); 26 + @@ -1424,6 +1427,8 @@ 27 + if (ret) { 28 + cli_ac_freedata(&tmdata); 29 + free(tmpname); 30 + + free(normalized); 31 + + close(ofd); 32 + return ret; 33 + } 34 + } 35 + @@ -1466,11 +1471,9 @@ 36 + 37 + } 38 + 39 + - if(ctx->engine->keeptmp) { 40 + - free(tmpname); 41 + - if (ofd >= 0) 42 + - close(ofd); 43 + - } 44 + + if (ofd >= 0) 45 + + close(ofd); 46 + + free(tmpname); 47 + free(normalized); 48 + 49 + if(ret != CL_VIRUS || SCAN_ALL) {
-1
pkgs/top-level/aliases.nix
··· 79 79 htmlTidy = html-tidy; # added 2014-12-06 80 80 iana_etc = iana-etc; # added 2017-03-08 81 81 idea = jetbrains; # added 2017-04-03 82 - inherit (haskell.compiler) uhc; # 2015-05-15 83 82 inotifyTools = inotify-tools; 84 83 joseki = apache-jena-fuseki; # added 2016-02-28 85 84 jquery_ui = jquery-ui; # added 2014-09-07
+24 -6
pkgs/top-level/all-packages.nix
··· 4327 4327 4328 4328 rc = callPackage ../shells/rc { }; 4329 4329 4330 + rdma-core = callPackage ../os-specific/linux/rdma-core { }; 4331 + 4330 4332 read-edid = callPackage ../os-specific/linux/read-edid { }; 4331 4333 4332 4334 redir = callPackage ../tools/networking/redir { }; ··· 5363 5365 # Ben Nanonote system 5364 5366 crossSystem = { 5365 5367 config = crossPrefix; 5366 - bigEndian = true; 5367 5368 arch = "mips"; 5368 5369 float = "soft"; 5369 - withTLS = true; 5370 5370 libc = "uclibc"; 5371 5371 platform = { 5372 5372 name = "ben_nanonote"; ··· 5459 5459 yi = callPackage ../applications/editors/yi/wrapper.nix { }; 5460 5460 5461 5461 yle-dl = callPackage ../tools/misc/yle-dl {}; 5462 + 5463 + you-get = python3Packages.callPackage ../tools/misc/you-get { }; 5462 5464 5463 5465 zbackup = callPackage ../tools/backup/zbackup {}; 5464 5466 ··· 6479 6481 6480 6482 buildRustCrate = callPackage ../build-support/rust/build-rust-crate.nix { }; 6481 6483 6482 - carnix = (callPackage ../build-support/rust/carnix.nix { }).carnix_0_5_2; 6484 + carnix = 6485 + let carnix = callPackage ../build-support/rust/carnix.nix { }; 6486 + carnixFeatures = carnix.carnix_0_6_0_features {}; 6487 + in 6488 + carnix.carnix_0_6_0 carnixFeatures; 6483 6489 6484 6490 defaultCrateOverrides = callPackage ../build-support/rust/default-crate-overrides.nix { }; 6485 6491 ··· 12244 12250 prometheus-blackbox-exporter = callPackage ../servers/monitoring/prometheus/blackbox-exporter.nix { }; 12245 12251 prometheus-collectd-exporter = callPackage ../servers/monitoring/prometheus/collectd-exporter.nix { }; 12246 12252 prometheus-consul-exporter = callPackage ../servers/monitoring/prometheus/consul-exporter.nix { }; 12253 + prometheus-dovecot-exporter = callPackage ../servers/monitoring/prometheus/dovecot-exporter.nix { }; 12247 12254 prometheus-fritzbox-exporter = callPackage ../servers/monitoring/prometheus/fritzbox-exporter.nix { }; 12248 12255 prometheus-haproxy-exporter = callPackage ../servers/monitoring/prometheus/haproxy-exporter.nix { }; 12249 12256 prometheus-json-exporter = callPackage ../servers/monitoring/prometheus/json-exporter.nix { }; ··· 12253 12260 prometheus-nginx-exporter = callPackage ../servers/monitoring/prometheus/nginx-exporter.nix { }; 12254 12261 prometheus-node-exporter = callPackage ../servers/monitoring/prometheus/node-exporter.nix { }; 12255 12262 prometheus-openvpn-exporter = callPackage ../servers/monitoring/prometheus/openvpn-exporter.nix { }; 12263 + prometheus-postfix-exporter = callPackage ../servers/monitoring/prometheus/postfix-exporter.nix { }; 12256 12264 prometheus-pushgateway = callPackage ../servers/monitoring/prometheus/pushgateway.nix { }; 12257 12265 prometheus-rabbitmq-exporter = callPackage ../servers/monitoring/prometheus/rabbitmq-exporter.nix { }; 12258 12266 prometheus-snmp-exporter = callPackage ../servers/monitoring/prometheus/snmp-exporter.nix { }; ··· 12322 12330 12323 12331 samba4 = callPackage ../servers/samba/4.x.nix { 12324 12332 python = python2; 12325 - # enableLDAP 12326 12333 }; 12327 12334 12335 + sambaMaster = callPackage ../servers/samba/master.nix { }; 12336 + 12328 12337 samba = samba4; 12329 12338 12330 12339 smbclient = samba; ··· 14017 14026 14018 14027 ttf-envy-code-r = callPackage ../data/fonts/ttf-envy-code-r {}; 14019 14028 14029 + twemoji-color-font = callPackage ../data/fonts/twemoji-color-font { 14030 + inherit (nodePackages) svgo; 14031 + inherit (pythonPackages) scfbuild; 14032 + }; 14033 + 14020 14034 tzdata = callPackage ../data/misc/tzdata { }; 14021 14035 14022 14036 ubuntu_font_family = callPackage ../data/fonts/ubuntu-font-family { }; ··· 15516 15530 hipchat = callPackage ../applications/networking/instant-messengers/hipchat { }; 15517 15531 15518 15532 hledger = haskell.lib.justStaticExecutables haskellPackages.hledger; 15533 + hledger-ui = haskell.lib.justStaticExecutables haskellPackages.hledger-ui; 15519 15534 hledger-web = haskell.lib.justStaticExecutables haskellPackages.hledger-web; 15520 15535 15521 15536 homebank = callPackage ../applications/office/homebank { ··· 16033 16048 16034 16049 meld = callPackage ../applications/version-management/meld { }; 16035 16050 16051 + meme = callPackage ../applications/graphics/meme { }; 16052 + 16036 16053 mcomix = callPackage ../applications/graphics/mcomix { }; 16037 16054 16038 16055 mendeley = libsForQt5.callPackage ../applications/office/mendeley { ··· 18033 18050 18034 18051 yoshimi = callPackage ../applications/audio/yoshimi { }; 18035 18052 18036 - inherit (python3Packages) you-get; 18037 - 18038 18053 inherit (pythonPackages) youtube-dl; 18039 18054 18040 18055 youtube-viewer = perlPackages.WWWYoutubeViewer; ··· 18818 18833 dash-to-panel = callPackage ../desktops/gnome-3/extensions/dash-to-panel { }; 18819 18834 mediaplayer = callPackage ../desktops/gnome-3/extensions/mediaplayer { }; 18820 18835 nohotcorner = callPackage ../desktops/gnome-3/extensions/nohotcorner { }; 18836 + pixel-saver = callPackage ../desktops/gnome-3/extensions/pixel-saver { }; 18821 18837 topicons-plus = callPackage ../desktops/gnome-3/extensions/topicons-plus { }; 18822 18838 }; 18823 18839 ··· 18946 18962 iv = callPackage ../applications/science/biology/iv { 18947 18963 neuron-version = neuron.version; 18948 18964 }; 18965 + 18966 + kallisto = callPackage ../applications/science/biology/kallisto { }; 18949 18967 18950 18968 neuron = callPackage ../applications/science/biology/neuron { 18951 18969 python = null;
+2 -32
pkgs/top-level/haskell-packages.nix
··· 6 6 let 7 7 # These are attributes in compiler and packages that don't support integer-simple. 8 8 integerSimpleExcludes = [ 9 - "ghc6102Binary" 10 9 "ghc704Binary" 11 10 "ghc742Binary" 12 11 "ghc784Binary" 13 12 "ghc7103Binary" 14 13 "ghc821Binary" 15 - "ghc6104" 16 - "ghc6123" 17 14 "ghc704" 18 15 "ghc763" 19 16 "ghcjs" 20 17 "ghcjsHEAD" 21 18 "ghcCross" 22 - "uhc" 23 19 "integer-simple" 24 20 ]; 25 21 ··· 35 31 36 32 compiler = { 37 33 38 - ghc6102Binary = callPackage ../development/compilers/ghc/6.10.2-binary.nix { 39 - gmp = pkgs.gmp4; 40 - }; 41 - ghc704Binary = callPackage ../development/compilers/ghc/7.0.4-binary.nix { 42 - gmp = pkgs.gmp4; 43 - }; 44 - ghc742Binary = callPackage ../development/compilers/ghc/7.4.2-binary.nix { 45 - gmp = pkgs.gmp4; 46 - }; 34 + ghc704Binary = callPackage ../development/compilers/ghc/7.0.4-binary.nix { gmp = pkgs.gmp4; }; 35 + ghc742Binary = callPackage ../development/compilers/ghc/7.4.2-binary.nix { gmp = pkgs.gmp4; }; 47 36 ghc784Binary = callPackage ../development/compilers/ghc/7.8.4-binary.nix { }; 48 37 ghc7103Binary = callPackage ../development/compilers/ghc/7.10.3-binary.nix { }; 49 38 ghc821Binary = callPackage ../development/compilers/ghc/8.2.1-binary.nix { }; 50 39 51 - ghc6104 = callPackage ../development/compilers/ghc/6.10.4.nix { ghc = compiler.ghc6102Binary; }; 52 - ghc6123 = callPackage ../development/compilers/ghc/6.12.3.nix { ghc = compiler.ghc6102Binary; }; 53 40 ghc704 = callPackage ../development/compilers/ghc/7.0.4.nix { 54 41 ghc = compiler.ghc704Binary; 55 42 }; 56 - ghc722 = callPackage ../development/compilers/ghc/7.2.2.nix { 57 - ghc = compiler.ghc704Binary; 58 - }; 59 43 ghc742 = callPackage ../development/compilers/ghc/7.4.2.nix { 60 44 ghc = compiler.ghc704Binary; 61 45 }; ··· 106 90 bootPkgs = packages.ghc802; 107 91 inherit (pkgs) cabal-install; 108 92 }; 109 - ghcHaLVM240 = callPackage ../development/compilers/halvm/2.4.0.nix rec { 110 - bootPkgs = packages.ghc7103Binary; 111 - inherit (bootPkgs) hscolour alex happy; 112 - }; 113 - 114 - uhc = callPackage ../development/compilers/uhc/default.nix ({ 115 - stdenv = pkgs.clangStdenv; 116 - inherit (packages.ghc7103Binary) ghcWithPackages; 117 - }); 118 93 119 94 # The integer-simple attribute set contains all the GHC compilers 120 95 # build with integer-simple instead of integer-gmp. ··· 176 151 ghc = bh.compiler.ghcjsHEAD; 177 152 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.0.x.nix { }; 178 153 packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { }; 179 - }; 180 - ghcHaLVM240 = callPackage ../development/haskell-modules { 181 - buildHaskellPackages = bh.packages.ghcHaLVM240; 182 - ghc = bh.compiler.ghcHaLVM240; 183 - compilerConfig = callPackage ../development/haskell-modules/configuration-halvm-2.4.0.nix { }; 184 154 }; 185 155 186 156 # The integer-simple attribute set contains package sets for all the GHC compilers
-23
pkgs/top-level/python-packages.nix
··· 18730 18730 }; 18731 18731 }; 18732 18732 18733 - you-get = buildPythonApplication rec { 18734 - version = "0.4.390"; 18735 - name = "you-get-${version}"; 18736 - disabled = !isPy3k; 18737 - 18738 - # Tests aren't packaged, but they all hit the real network so 18739 - # probably aren't suitable for a build environment anyway. 18740 - doCheck = false; 18741 - 18742 - src = pkgs.fetchurl { 18743 - url = "mirror://pypi/y/you-get/${name}.tar.gz"; 18744 - sha256 = "17hs0g9yvgvkmr7p1cz39mbbvb40q65qkc31j3ixc2f873gahagw"; 18745 - }; 18746 - 18747 - meta = { 18748 - description = "A tiny command line utility to download media contents from the web"; 18749 - homepage = https://you-get.org; 18750 - license = licenses.mit; 18751 - maintainers = with maintainers; [ ryneeverett ]; 18752 - platforms = platforms.all; 18753 - }; 18754 - }; 18755 - 18756 18733 zetup = callPackage ../development/python-modules/zetup { }; 18757 18734 18758 18735 zope_broken = buildPythonPackage rec {